summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/psim
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/powerpc/psim')
-rw-r--r--c/src/lib/libbsp/powerpc/psim/Makefile.am4
-rw-r--r--c/src/lib/libbsp/powerpc/psim/README4
-rw-r--r--c/src/lib/libbsp/powerpc/psim/configure.ac2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/console/console-io.c2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/console/consupp.S2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/include/bsp.h2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/include/coverhd.h2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/include/psim.h2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/include/tm27.h2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/irq/irq.h2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/irq/irq_init.c2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/make/custom/psim.cfg2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/network/if_sim.c2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/shmsupp/README4
-rw-r--r--c/src/lib/libbsp/powerpc/psim/shmsupp/addrconv.c2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/shmsupp/getcfg.c2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/shmsupp/lock.c2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/shmsupp/mpisr.c2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/start/start.S2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/startup/bspstart.c2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/startup/linkcmds2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/startup/psim_registers.c2
-rw-r--r--c/src/lib/libbsp/powerpc/psim/vectors/README4
-rw-r--r--c/src/lib/libbsp/powerpc/psim/vectors/align_h.S2
24 files changed, 0 insertions, 56 deletions
diff --git a/c/src/lib/libbsp/powerpc/psim/Makefile.am b/c/src/lib/libbsp/powerpc/psim/Makefile.am
index c02edb90a8..a99f23ee2a 100644
--- a/c/src/lib/libbsp/powerpc/psim/Makefile.am
+++ b/c/src/lib/libbsp/powerpc/psim/Makefile.am
@@ -1,7 +1,3 @@
-##
-## $Id$
-##
-
ACLOCAL_AMFLAGS = -I ../../../../aclocal
include $(top_srcdir)/../../../../automake/compile.am
diff --git a/c/src/lib/libbsp/powerpc/psim/README b/c/src/lib/libbsp/powerpc/psim/README
index d0d6d5fa57..8fcf8ee33e 100644
--- a/c/src/lib/libbsp/powerpc/psim/README
+++ b/c/src/lib/libbsp/powerpc/psim/README
@@ -1,7 +1,3 @@
-#
-# $Id$
-#
-
BSP NAME: psim
BOARD: PowerPC Simulator
BUS: N/A
diff --git a/c/src/lib/libbsp/powerpc/psim/configure.ac b/c/src/lib/libbsp/powerpc/psim/configure.ac
index a25872879d..85d88783d7 100644
--- a/c/src/lib/libbsp/powerpc/psim/configure.ac
+++ b/c/src/lib/libbsp/powerpc/psim/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-powerpc-psim],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
diff --git a/c/src/lib/libbsp/powerpc/psim/console/console-io.c b/c/src/lib/libbsp/powerpc/psim/console/console-io.c
index ab6dd90062..6470a7f30f 100644
--- a/c/src/lib/libbsp/powerpc/psim/console/console-io.c
+++ b/c/src/lib/libbsp/powerpc/psim/console/console-io.c
@@ -8,8 +8,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/powerpc/psim/console/consupp.S b/c/src/lib/libbsp/powerpc/psim/console/consupp.S
index b2d1da2aa7..bb9e834fc6 100644
--- a/c/src/lib/libbsp/powerpc/psim/console/consupp.S
+++ b/c/src/lib/libbsp/powerpc/psim/console/consupp.S
@@ -13,8 +13,6 @@
* and need not follow the licensing terms described here, provided that
* the new terms are clearly indicated on the first page of each file where
* they apply.
- *
- * $Id$
*/
#include "ppc-asm.h"
diff --git a/c/src/lib/libbsp/powerpc/psim/include/bsp.h b/c/src/lib/libbsp/powerpc/psim/include/bsp.h
index 1150b80ffd..a90aecb77a 100644
--- a/c/src/lib/libbsp/powerpc/psim/include/bsp.h
+++ b/c/src/lib/libbsp/powerpc/psim/include/bsp.h
@@ -25,8 +25,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 _BSP_H
diff --git a/c/src/lib/libbsp/powerpc/psim/include/coverhd.h b/c/src/lib/libbsp/powerpc/psim/include/coverhd.h
index f39d324eaa..025488c730 100644
--- a/c/src/lib/libbsp/powerpc/psim/include/coverhd.h
+++ b/c/src/lib/libbsp/powerpc/psim/include/coverhd.h
@@ -20,8 +20,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$
*/
/*
diff --git a/c/src/lib/libbsp/powerpc/psim/include/psim.h b/c/src/lib/libbsp/powerpc/psim/include/psim.h
index e74331771c..e7b6fa7578 100644
--- a/c/src/lib/libbsp/powerpc/psim/include/psim.h
+++ b/c/src/lib/libbsp/powerpc/psim/include/psim.h
@@ -1,8 +1,6 @@
/*
* PSIM addresses and constants based upon the configuration
* of devices used in the script provided by RTEMS.
- *
- * $Id$
*/
#ifndef __PSIM_h
diff --git a/c/src/lib/libbsp/powerpc/psim/include/tm27.h b/c/src/lib/libbsp/powerpc/psim/include/tm27.h
index d98cdd1ba8..c12e74c10f 100644
--- a/c/src/lib/libbsp/powerpc/psim/include/tm27.h
+++ b/c/src/lib/libbsp/powerpc/psim/include/tm27.h
@@ -4,8 +4,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 _RTEMS_TMTEST27
diff --git a/c/src/lib/libbsp/powerpc/psim/irq/irq.h b/c/src/lib/libbsp/powerpc/psim/irq/irq.h
index 21b97be3da..4d92f23b40 100644
--- a/c/src/lib/libbsp/powerpc/psim/irq/irq.h
+++ b/c/src/lib/libbsp/powerpc/psim/irq/irq.h
@@ -14,8 +14,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 LIBBSP_POWERPC_IRQ_H
diff --git a/c/src/lib/libbsp/powerpc/psim/irq/irq_init.c b/c/src/lib/libbsp/powerpc/psim/irq/irq_init.c
index 9068a7248c..27f5cdd19b 100644
--- a/c/src/lib/libbsp/powerpc/psim/irq/irq_init.c
+++ b/c/src/lib/libbsp/powerpc/psim/irq/irq_init.c
@@ -11,8 +11,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 <libcpu/io.h>
diff --git a/c/src/lib/libbsp/powerpc/psim/make/custom/psim.cfg b/c/src/lib/libbsp/powerpc/psim/make/custom/psim.cfg
index 605a433605..459abbcf8a 100644
--- a/c/src/lib/libbsp/powerpc/psim/make/custom/psim.cfg
+++ b/c/src/lib/libbsp/powerpc/psim/make/custom/psim.cfg
@@ -1,8 +1,6 @@
#
# Config file for the PowerPC 60x simulator - psim
#
-# $Id$
-#
include $(RTEMS_ROOT)/make/custom/default.cfg
diff --git a/c/src/lib/libbsp/powerpc/psim/network/if_sim.c b/c/src/lib/libbsp/powerpc/psim/network/if_sim.c
index d46d4892d0..12d617d8a2 100644
--- a/c/src/lib/libbsp/powerpc/psim/network/if_sim.c
+++ b/c/src/lib/libbsp/powerpc/psim/network/if_sim.c
@@ -1,5 +1,3 @@
-/* $Id$ */
-
/* Trivial driver for PSIM's emulated ethernet device 'hw_ethtap'.
*
* NOTE: At the time of this writing (2009/1) 'hw_ethtap' requires
diff --git a/c/src/lib/libbsp/powerpc/psim/shmsupp/README b/c/src/lib/libbsp/powerpc/psim/shmsupp/README
index f355851c74..ba2d67752f 100644
--- a/c/src/lib/libbsp/powerpc/psim/shmsupp/README
+++ b/c/src/lib/libbsp/powerpc/psim/shmsupp/README
@@ -1,7 +1,3 @@
-#
-# $Id$
-#
-
This shared memory driver support code works with a modified version
of the PowerPC Simulator. The modifications are not yet merged
into the mainsteam distribution.
diff --git a/c/src/lib/libbsp/powerpc/psim/shmsupp/addrconv.c b/c/src/lib/libbsp/powerpc/psim/shmsupp/addrconv.c
index 444c1e4d87..5de6aedf0c 100644
--- a/c/src/lib/libbsp/powerpc/psim/shmsupp/addrconv.c
+++ b/c/src/lib/libbsp/powerpc/psim/shmsupp/addrconv.c
@@ -14,8 +14,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 <rtems.h>
diff --git a/c/src/lib/libbsp/powerpc/psim/shmsupp/getcfg.c b/c/src/lib/libbsp/powerpc/psim/shmsupp/getcfg.c
index 0ff2a3599b..51cf888fb8 100644
--- a/c/src/lib/libbsp/powerpc/psim/shmsupp/getcfg.c
+++ b/c/src/lib/libbsp/powerpc/psim/shmsupp/getcfg.c
@@ -18,8 +18,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 <rtems.h>
diff --git a/c/src/lib/libbsp/powerpc/psim/shmsupp/lock.c b/c/src/lib/libbsp/powerpc/psim/shmsupp/lock.c
index 12209fb1a2..5ce2e82a2e 100644
--- a/c/src/lib/libbsp/powerpc/psim/shmsupp/lock.c
+++ b/c/src/lib/libbsp/powerpc/psim/shmsupp/lock.c
@@ -12,8 +12,6 @@
* The license and distribution terms for this file may in
* the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#include <rtems.h>
diff --git a/c/src/lib/libbsp/powerpc/psim/shmsupp/mpisr.c b/c/src/lib/libbsp/powerpc/psim/shmsupp/mpisr.c
index 18f83828d6..68e816a25d 100644
--- a/c/src/lib/libbsp/powerpc/psim/shmsupp/mpisr.c
+++ b/c/src/lib/libbsp/powerpc/psim/shmsupp/mpisr.c
@@ -8,8 +8,6 @@
* The license and distribution terms for this file may in
* the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
- *
- * $Id$
*/
#include <rtems.h>
diff --git a/c/src/lib/libbsp/powerpc/psim/start/start.S b/c/src/lib/libbsp/powerpc/psim/start/start.S
index 0e2967698a..4d4c16ae95 100644
--- a/c/src/lib/libbsp/powerpc/psim/start/start.S
+++ b/c/src/lib/libbsp/powerpc/psim/start/start.S
@@ -13,8 +13,6 @@
* and need not follow the licensing terms described here, provided that
* the new terms are clearly indicated on the first page of each file where
* they apply.
- *
- * $Id$
*/
#include <rtems/asm.h>
diff --git a/c/src/lib/libbsp/powerpc/psim/startup/bspstart.c b/c/src/lib/libbsp/powerpc/psim/startup/bspstart.c
index d6fba2e6f5..29cbb7635c 100644
--- a/c/src/lib/libbsp/powerpc/psim/startup/bspstart.c
+++ b/c/src/lib/libbsp/powerpc/psim/startup/bspstart.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 <string.h>
diff --git a/c/src/lib/libbsp/powerpc/psim/startup/linkcmds b/c/src/lib/libbsp/powerpc/psim/startup/linkcmds
index f313375440..07dae94fc9 100644
--- a/c/src/lib/libbsp/powerpc/psim/startup/linkcmds
+++ b/c/src/lib/libbsp/powerpc/psim/startup/linkcmds
@@ -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$
*/
OUTPUT_FORMAT("elf32-powerpc", "elf32-powerpc", "elf32-powerpc")
diff --git a/c/src/lib/libbsp/powerpc/psim/startup/psim_registers.c b/c/src/lib/libbsp/powerpc/psim/startup/psim_registers.c
index f3de59b3c5..894f1de4a5 100644
--- a/c/src/lib/libbsp/powerpc/psim/startup/psim_registers.c
+++ b/c/src/lib/libbsp/powerpc/psim/startup/psim_registers.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/powerpc/psim/vectors/README b/c/src/lib/libbsp/powerpc/psim/vectors/README
index 4081ae2525..02ab163dfd 100644
--- a/c/src/lib/libbsp/powerpc/psim/vectors/README
+++ b/c/src/lib/libbsp/powerpc/psim/vectors/README
@@ -1,7 +1,3 @@
-#
-# $Id$
-#
-
The location of the vectors file object is critical.
From the comments at the head of vectors.s:
diff --git a/c/src/lib/libbsp/powerpc/psim/vectors/align_h.S b/c/src/lib/libbsp/powerpc/psim/vectors/align_h.S
index b1bcfb1566..deec4e1484 100644
--- a/c/src/lib/libbsp/powerpc/psim/vectors/align_h.S
+++ b/c/src/lib/libbsp/powerpc/psim/vectors/align_h.S
@@ -39,8 +39,6 @@
* software without specific, written prior permission.
* i-cubed limited makes no representations about the suitability
* of this software for any purpose.
- *
- * $Id$
*/
#include <rtems/asm.h>