summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/sim68000
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2012-05-03 10:09:24 -0500
committerJoel Sherrill <joel.sherrill@oarcorp.com>2012-05-11 08:44:13 -0500
commit9b4422a2513e9c7f4c705050948d82b75331aaba (patch)
treea95a795dedb39af8ad097197d5fd82e3dcb6e4ac /c/src/lib/libbsp/m68k/sim68000
parentMiscellaneous - Clean up file headers so patterns followed (diff)
downloadrtems-9b4422a2513e9c7f4c705050948d82b75331aaba.tar.bz2
Remove All CVS Id Strings Possible Using a Script
Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
Diffstat (limited to 'c/src/lib/libbsp/m68k/sim68000')
-rw-r--r--c/src/lib/libbsp/m68k/sim68000/Makefile.am4
-rw-r--r--c/src/lib/libbsp/m68k/sim68000/README4
-rw-r--r--c/src/lib/libbsp/m68k/sim68000/clock/clockdrv.c2
-rw-r--r--c/src/lib/libbsp/m68k/sim68000/configure.ac2
-rw-r--r--c/src/lib/libbsp/m68k/sim68000/console/conscfg.c2
-rw-r--r--c/src/lib/libbsp/m68k/sim68000/console/debugio.c2
-rw-r--r--c/src/lib/libbsp/m68k/sim68000/include/bsp.h2
-rw-r--r--c/src/lib/libbsp/m68k/sim68000/make/custom/sim68000.cfg2
-rw-r--r--c/src/lib/libbsp/m68k/sim68000/make/custom/simcpu32.cfg2
-rw-r--r--c/src/lib/libbsp/m68k/sim68000/start/start.S2
-rw-r--r--c/src/lib/libbsp/m68k/sim68000/startup/bsppredriverhook.c2
-rw-r--r--c/src/lib/libbsp/m68k/sim68000/startup/linkcmds2
-rw-r--r--c/src/lib/libbsp/m68k/sim68000/startup/spurious_assistant.c2
13 files changed, 0 insertions, 30 deletions
diff --git a/c/src/lib/libbsp/m68k/sim68000/Makefile.am b/c/src/lib/libbsp/m68k/sim68000/Makefile.am
index c8d5223fca..ba7d98df1b 100644
--- a/c/src/lib/libbsp/m68k/sim68000/Makefile.am
+++ b/c/src/lib/libbsp/m68k/sim68000/Makefile.am
@@ -1,7 +1,3 @@
-##
-## $Id$
-##
-
ACLOCAL_AMFLAGS = -I ../../../../aclocal
include $(top_srcdir)/../../../../automake/compile.am
diff --git a/c/src/lib/libbsp/m68k/sim68000/README b/c/src/lib/libbsp/m68k/sim68000/README
index 5db6f31b18..4b082cb116 100644
--- a/c/src/lib/libbsp/m68k/sim68000/README
+++ b/c/src/lib/libbsp/m68k/sim68000/README
@@ -1,7 +1,3 @@
-#
-# $Id$
-#
-
BSP for the BSVC 68000 simulator. This is definitely under construction.
The initialization/setup script for BSVC is the part that likely needs
work. I have written the timer based on the timer sample included with
diff --git a/c/src/lib/libbsp/m68k/sim68000/clock/clockdrv.c b/c/src/lib/libbsp/m68k/sim68000/clock/clockdrv.c
index 1c15550a85..911cc4f91a 100644
--- a/c/src/lib/libbsp/m68k/sim68000/clock/clockdrv.c
+++ b/c/src/lib/libbsp/m68k/sim68000/clock/clockdrv.c
@@ -1,7 +1,5 @@
/*
* Instantiate the clock driver shell.
- *
- * $Id$
*/
#include <bsp.h>
diff --git a/c/src/lib/libbsp/m68k/sim68000/configure.ac b/c/src/lib/libbsp/m68k/sim68000/configure.ac
index a2a24fcb97..cde8a1827a 100644
--- a/c/src/lib/libbsp/m68k/sim68000/configure.ac
+++ b/c/src/lib/libbsp/m68k/sim68000/configure.ac
@@ -1,6 +1,4 @@
## Process this file with autoconf to produce a configure script.
-##
-## $Id$
AC_PREREQ([2.68])
AC_INIT([rtems-c-src-lib-libbsp-m68k-sim68000],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
diff --git a/c/src/lib/libbsp/m68k/sim68000/console/conscfg.c b/c/src/lib/libbsp/m68k/sim68000/console/conscfg.c
index 0a878cc588..20fbc117de 100644
--- a/c/src/lib/libbsp/m68k/sim68000/console/conscfg.c
+++ b/c/src/lib/libbsp/m68k/sim68000/console/conscfg.c
@@ -7,8 +7,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#include <bsp.h>
diff --git a/c/src/lib/libbsp/m68k/sim68000/console/debugio.c b/c/src/lib/libbsp/m68k/sim68000/console/debugio.c
index b788114b05..594f7b2d8a 100644
--- a/c/src/lib/libbsp/m68k/sim68000/console/debugio.c
+++ b/c/src/lib/libbsp/m68k/sim68000/console/debugio.c
@@ -10,8 +10,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#include <unistd.h> /* write */
diff --git a/c/src/lib/libbsp/m68k/sim68000/include/bsp.h b/c/src/lib/libbsp/m68k/sim68000/include/bsp.h
index 3d6b71cc84..aedbd4d52e 100644
--- a/c/src/lib/libbsp/m68k/sim68000/include/bsp.h
+++ b/c/src/lib/libbsp/m68k/sim68000/include/bsp.h
@@ -9,8 +9,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#ifndef __BSVC_SIM
diff --git a/c/src/lib/libbsp/m68k/sim68000/make/custom/sim68000.cfg b/c/src/lib/libbsp/m68k/sim68000/make/custom/sim68000.cfg
index 7f34886ff2..bb3354a4a8 100644
--- a/c/src/lib/libbsp/m68k/sim68000/make/custom/sim68000.cfg
+++ b/c/src/lib/libbsp/m68k/sim68000/make/custom/sim68000.cfg
@@ -1,8 +1,6 @@
#
# Config file for a BSVC m68k simulator
#
-# $Id$
-#
include $(RTEMS_ROOT)/make/custom/default.cfg
diff --git a/c/src/lib/libbsp/m68k/sim68000/make/custom/simcpu32.cfg b/c/src/lib/libbsp/m68k/sim68000/make/custom/simcpu32.cfg
index 6694950245..939a1e1f04 100644
--- a/c/src/lib/libbsp/m68k/sim68000/make/custom/simcpu32.cfg
+++ b/c/src/lib/libbsp/m68k/sim68000/make/custom/simcpu32.cfg
@@ -1,8 +1,6 @@
#
# Configuration file for a simcpu32 in BSCV
#
-# $Id$
-#
include $(RTEMS_ROOT)/make/custom/default.cfg
diff --git a/c/src/lib/libbsp/m68k/sim68000/start/start.S b/c/src/lib/libbsp/m68k/sim68000/start/start.S
index 4085ee4144..70b7a3cc4c 100644
--- a/c/src/lib/libbsp/m68k/sim68000/start/start.S
+++ b/c/src/lib/libbsp/m68k/sim68000/start/start.S
@@ -1,6 +1,4 @@
/*
- * $Id$
- *
* Re-written the gen68302 start-up code.
*
* Uses gas syntax only, removed the OAR asm.h.
diff --git a/c/src/lib/libbsp/m68k/sim68000/startup/bsppredriverhook.c b/c/src/lib/libbsp/m68k/sim68000/startup/bsppredriverhook.c
index 6b82cfceb3..a30da5cd4f 100644
--- a/c/src/lib/libbsp/m68k/sim68000/startup/bsppredriverhook.c
+++ b/c/src/lib/libbsp/m68k/sim68000/startup/bsppredriverhook.c
@@ -5,8 +5,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#include <bsp.h>
diff --git a/c/src/lib/libbsp/m68k/sim68000/startup/linkcmds b/c/src/lib/libbsp/m68k/sim68000/startup/linkcmds
index b89980a8cf..eeae18b9e3 100644
--- a/c/src/lib/libbsp/m68k/sim68000/startup/linkcmds
+++ b/c/src/lib/libbsp/m68k/sim68000/startup/linkcmds
@@ -1,6 +1,4 @@
/*
- * $Id$
- *
* MC68302 Linker command file
*
*/
diff --git a/c/src/lib/libbsp/m68k/sim68000/startup/spurious_assistant.c b/c/src/lib/libbsp/m68k/sim68000/startup/spurious_assistant.c
index 10fa03b9e3..7f4446a235 100644
--- a/c/src/lib/libbsp/m68k/sim68000/startup/spurious_assistant.c
+++ b/c/src/lib/libbsp/m68k/sim68000/startup/spurious_assistant.c
@@ -7,8 +7,6 @@
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#include <bsp.h>