All right, I added the required years and now everything should be correct
and ready to apply.
Patch attached.

On Mon, Nov 12, 2018 at 7:34 AM Sebastian Huber <
sebastian.hu...@embedded-brains.de> wrote:

> On 11/11/2018 15:05, Marçal wrote:
> > Ok, thanks, but now I was fixing the patch with the format you told me
> > and I noticed that
> > rtems/bsps/m68k/mcf52235/start/bspgetcpuclockspeed.c, which already
> > had the copyright notice, uses a dash instead of a comma and a dot at
> > the end of the line (COPYRIGHT (c) 1989-2008.)
> > So, do I follow the IBM format or the bspgetcpuclockspeed.c format?
>
> I would follow the IBM format.
>
> --
> Sebastian Huber, embedded brains GmbH
>
> Address : Dornierstr. 4, D-82178 Puchheim, Germany
> Phone   : +49 89 189 47 41-16
> Fax     : +49 89 189 47 41-09
> E-Mail  : sebastian.hu...@embedded-brains.de
> PGP     : Public key available on request.
>
> Diese Nachricht ist keine geschäftliche Mitteilung im Sinne des EHUG.
>
>
From 11eee4139bdd85f29b0162037f2820add688ec90 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Mar=C3=A7al=20Comajoan=20Cara?= <mcomajoanc...@gmail.com>
Date: Mon, 12 Nov 2018 17:25:19 +0100
Subject: [PATCH] m68k/mcf52235: Add missing Copyright/License notices

This work was part of GCI 2018.

Closes #2541.
---
 bsps/m68k/mcf52235/btimer/btimer.c            | 11 +++++---
 bsps/m68k/mcf52235/clock/clock.c              | 13 ++++++++++
 bsps/m68k/mcf52235/console/console.c          | 26 +++++++++++++++----
 bsps/m68k/mcf52235/console/debugio.c          | 19 ++++++++++----
 bsps/m68k/mcf52235/include/bsp.h              | 14 +++++++++-
 bsps/m68k/mcf52235/include/tm27.h             | 10 ++++++-
 .../m68k/mcf52235/start/bspgetcpuclockspeed.c |  2 +-
 bsps/m68k/mcf52235/start/init52235.c          | 12 +++++++++
 bsps/m68k/mcf52235/start/linkcmds             | 11 +++++---
 bsps/m68k/mcf52235/start/start.S              |  9 +++++--
 10 files changed, 105 insertions(+), 22 deletions(-)

diff --git a/bsps/m68k/mcf52235/btimer/btimer.c b/bsps/m68k/mcf52235/btimer/btimer.c
index f9122542c2..2f0d54b00b 100644
--- a/bsps/m68k/mcf52235/btimer/btimer.c
+++ b/bsps/m68k/mcf52235/btimer/btimer.c
@@ -2,10 +2,13 @@
  *  Timer Init
  *
  *  Use the last DMA timer (DTIM3) as the diagnostic timer.
- *
- *  Author: W. Eric Norum <nor...@aps.anl.gov>
- *
- *  COPYRIGHT (c) 2005.
+ */
+
+/*
+ *  COPYRIGHT (c) 2005, 2018
+ *  Eric Norum <weno...@lbl.gov>
+ *  Matthew Riek <matthew.r...@ibiscomputer.com.au>
+ *  Ralf Corsepius <ralf.corsep...@rtems.org>
  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
diff --git a/bsps/m68k/mcf52235/clock/clock.c b/bsps/m68k/mcf52235/clock/clock.c
index d5e1817536..101d0a9d93 100644
--- a/bsps/m68k/mcf52235/clock/clock.c
+++ b/bsps/m68k/mcf52235/clock/clock.c
@@ -2,6 +2,19 @@
  * Use the last periodic interval timer (PIT2) as the system clock.
  */
 
+/*
+ *  COPYRIGHT (c) 2008, 2018
+ *  Alexander Krutwig <alexander.krut...@embedded-brains.de>
+ *  Matthew Riek <matthew.r...@ibiscomputer.com.au>
+ *  Ralf Corsepius <ralf.corsep...@rtems.org>
+ *  Sebastian Huber <sebastian.hu...@embedded-brains.de>
+ *  On-Line Applications Research Corporation (OAR).
+ *
+ *  The license and distribution terms for this file may be
+ *  found in the file LICENSE in this distribution or at
+ *  http://www.rtems.org/license/LICENSE.
+ */
+
 #include <rtems.h>
 #include <rtems/timecounter.h>
 #include <bsp.h>
diff --git a/bsps/m68k/mcf52235/console/console.c b/bsps/m68k/mcf52235/console/console.c
index c2b6e36bfa..705dbceee5 100644
--- a/bsps/m68k/mcf52235/console/console.c
+++ b/bsps/m68k/mcf52235/console/console.c
@@ -1,8 +1,24 @@
- /*
-  *  Multi UART console serial I/O.
-  *
-  * TO DO: Add DMA input/output
-  */
+/*
+ *  Multi UART console serial I/O.
+ *
+ *  TO DO: Add DMA input/output
+ */
+
+/*
+ *  COPYRIGHT (c) 2005, 2018
+ *  Eric Norum <weno...@lbl.gov>
+ *  Kevin Kirspel <kevin-kirs...@idexx.com>
+ *  Matthew Riek <matthew.r...@ibiscomputer.com.au>
+ *  Mike Bertosh <mbert...@motioncontrol.org>
+ *  Ralf Corsepius <ralf.corsep...@rtems.org>
+ *  Sebastian Huber <sebastian.hu...@embedded-brains.de>
+ *  Thomas Doerfler <thomas.doerf...@embedded-brains.de>
+ *  On-Line Applications Research Corporation (OAR).
+ *
+ *  The license and distribution terms for this file may be
+ *  found in the file LICENSE in this distribution or at
+ *  http://www.rtems.org/license/LICENSE.
+ */
 
 #include <stdio.h>
 #include <fcntl.h>
diff --git a/bsps/m68k/mcf52235/console/debugio.c b/bsps/m68k/mcf52235/console/debugio.c
index 1fbf4b09d7..d6177505af 100644
--- a/bsps/m68k/mcf52235/console/debugio.c
+++ b/bsps/m68k/mcf52235/console/debugio.c
@@ -1,8 +1,17 @@
- /*
-  *  Multi UART console serial I/O.
-  *
-  * TO DO: Add DMA input/output
-  */
+/*
+ *  Multi UART console serial I/O.
+ *
+ *  TO DO: Add DMA input/output
+ */
+
+/*
+ *  COPYRIGHT (c) 2008, 2018
+ *  On-Line Applications Research Corporation (OAR).
+ *
+ *  The license and distribution terms for this file may be
+ *  found in the file LICENSE in this distribution or at
+ *  http://www.rtems.org/license/LICENSE.
+ */
 
 #include <stdio.h>
 #include <fcntl.h>
diff --git a/bsps/m68k/mcf52235/include/bsp.h b/bsps/m68k/mcf52235/include/bsp.h
index ef3b928a24..0901c9df74 100644
--- a/bsps/m68k/mcf52235/include/bsp.h
+++ b/bsps/m68k/mcf52235/include/bsp.h
@@ -7,7 +7,19 @@
  */
 
 /*
- *  mcf52235 BSP header file
+ *  COPYRIGHT (c) 2005, 2018
+ *  Chris Johns <chr...@rtems.org>
+ *  Eric Norum <weno...@lbl.gov>
+ *  Gedare Bloom <ged...@rtems.org>
+ *  Matthew Riek <matthew.r...@ibiscomputer.com.au>
+ *  Mike Bertosh <mbert...@motioncontrol.org>
+ *  Ralf Corsepius <ralf.corsep...@rtems.org>
+ *  Sebastian Huber <sebastian.hu...@embedded-brains.de>
+ *  On-Line Applications Research Corporation (OAR).
+ *
+ *  The license and distribution terms for this file may be
+ *  found in the file LICENSE in this distribution or at
+ *  http://www.rtems.org/license/LICENSE.
  */
 
 #ifndef LIBBSP_M68K_MCF52235_BSP_H
diff --git a/bsps/m68k/mcf52235/include/tm27.h b/bsps/m68k/mcf52235/include/tm27.h
index b4b62ef721..f86c86a4c0 100644
--- a/bsps/m68k/mcf52235/include/tm27.h
+++ b/bsps/m68k/mcf52235/include/tm27.h
@@ -1,10 +1,18 @@
-/*
+/**
  * @file
+ *
  * @ingroup m68k_mcf52235
+ *
  * @brief Implementations for interrupt mechanisms for Time Test 27
  */
 
 /*
+ *  COPYRIGHT (c) 2004, 2018
+ *  Chris Johns <chr...@rtems.org>
+ *  Matthew Riek <matthew.r...@ibiscomputer.com.au>
+ *  Mike Bertosh <mbert...@motioncontrol.org>
+ *  Ralf Corsepius <ralf.corsep...@rtems.org>
+ *
  *  The license and distribution terms for this file may be
  *  found in the file LICENSE in this distribution or at
  *  http://www.rtems.org/license/LICENSE.
diff --git a/bsps/m68k/mcf52235/start/bspgetcpuclockspeed.c b/bsps/m68k/mcf52235/start/bspgetcpuclockspeed.c
index 563044394a..554371006a 100644
--- a/bsps/m68k/mcf52235/start/bspgetcpuclockspeed.c
+++ b/bsps/m68k/mcf52235/start/bspgetcpuclockspeed.c
@@ -1,5 +1,5 @@
 /*
- *  COPYRIGHT (c) 1989-2008.
+ *  COPYRIGHT (c) 1989, 2018
  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
diff --git a/bsps/m68k/mcf52235/start/init52235.c b/bsps/m68k/mcf52235/start/init52235.c
index d54b624fdd..6eed60eae4 100644
--- a/bsps/m68k/mcf52235/start/init52235.c
+++ b/bsps/m68k/mcf52235/start/init52235.c
@@ -4,6 +4,18 @@
  *  functions can be called from here.
  */
 
+/*
+ *  COPYRIGHT (c) 2008, 2018
+ *  Chris Johns <chr...@rtems.org>
+ *  Matthew Riek <matthew.r...@ibiscomputer.com.au>
+ *  Sebastian Huber <sebastian.hu...@embedded-brains.de>
+ *  On-Line Applications Research Corporation (OAR).
+ *
+ *  The license and distribution terms for this file may be
+ *  found in the file LICENSE in this distribution or at
+ *  http://www.rtems.org/license/LICENSE.
+ */
+
 #include <bsp.h>
 #include <bsp/bootcard.h>
 
diff --git a/bsps/m68k/mcf52235/start/linkcmds b/bsps/m68k/mcf52235/start/linkcmds
index 0c4d15fe08..cf9471c816 100644
--- a/bsps/m68k/mcf52235/start/linkcmds
+++ b/bsps/m68k/mcf52235/start/linkcmds
@@ -1,13 +1,18 @@
 /*
  *  This file contains directives for the GNU linker which are specific
  *  to the Freescale ColdFire mcf52235
- *
- *  COPYRIGHT (c) 1989-1999.
+ */
+
+/*
+ *  COPYRIGHT (c) 1989, 2018
+ *  Chris Johns <chr...@rtems.org>
+ *  Matthew Riek <matthew.r...@ibiscomputer.com.au>
+ *  Sebastian Huber <sebastian.hu...@embedded-brains.de>
  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
  *  found in the file LICENSE in this distribution or at
- *  http://www.rtems.org/license/LICENSE.e
+ *  http://www.rtems.org/license/LICENSE.
  */
 
 /*
diff --git a/bsps/m68k/mcf52235/start/start.S b/bsps/m68k/mcf52235/start/start.S
index c71f4fed8a..9e9d3a475f 100644
--- a/bsps/m68k/mcf52235/start/start.S
+++ b/bsps/m68k/mcf52235/start/start.S
@@ -5,8 +5,13 @@
  *  The name of this entry point is compiler dependent.
  *  It jumps to the BSP which is responsible for performing
  *  all initialization.
- *
- *  COPYRIGHT (c) 1989-1998.
+ */
+
+/*
+ *  COPYRIGHT (c) 1989, 2018
+ *  Chris Johns <chr...@rtems.org>
+ *  Matthew Riek <matthew.r...@ibiscomputer.com.au>
+ *  Sebastian Huber <sebastian.hu...@embedded-brains.de>
  *  On-Line Applications Research Corporation (OAR).
  *
  *  The license and distribution terms for this file may be
-- 
2.19.1

_______________________________________________
devel mailing list
devel@rtems.org
http://lists.rtems.org/mailman/listinfo/devel

Reply via email to