summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/idp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--c/src/lib/libbsp/m68k/idp/Makefile.am4
-rw-r--r--c/src/lib/libbsp/m68k/idp/README4
-rw-r--r--c/src/lib/libbsp/m68k/idp/clock/ckinit.c2
-rw-r--r--c/src/lib/libbsp/m68k/idp/configure.ac2
-rw-r--r--c/src/lib/libbsp/m68k/idp/console/console.c2
-rw-r--r--c/src/lib/libbsp/m68k/idp/console/duart.c4
-rw-r--r--c/src/lib/libbsp/m68k/idp/console/leds.c2
-rw-r--r--c/src/lib/libbsp/m68k/idp/console/mc68ec.c2
-rw-r--r--c/src/lib/libbsp/m68k/idp/include/README4
-rw-r--r--c/src/lib/libbsp/m68k/idp/include/bsp.h2
-rw-r--r--c/src/lib/libbsp/m68k/idp/include/leds.h2
-rw-r--r--c/src/lib/libbsp/m68k/idp/make/custom/idp.cfg2
-rw-r--r--c/src/lib/libbsp/m68k/idp/startup/bspstart.c2
-rw-r--r--c/src/lib/libbsp/m68k/idp/startup/linkcmds2
-rw-r--r--c/src/lib/libbsp/m68k/idp/timer/timer.c2
-rw-r--r--c/src/lib/libbsp/m68k/idp/timer/timerisr.S2
-rw-r--r--c/src/lib/libbsp/m68k/idp/times2
17 files changed, 0 insertions, 42 deletions
diff --git a/c/src/lib/libbsp/m68k/idp/Makefile.am b/c/src/lib/libbsp/m68k/idp/Makefile.am
index c1979c3652..f13f028768 100644
--- a/c/src/lib/libbsp/m68k/idp/Makefile.am
+++ b/c/src/lib/libbsp/m68k/idp/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/idp/README b/c/src/lib/libbsp/m68k/idp/README
index f02ced80b9..5479acf383 100644
--- a/c/src/lib/libbsp/m68k/idp/README
+++ b/c/src/lib/libbsp/m68k/idp/README
@@ -1,7 +1,3 @@
-#
-# $Id$
-#
-
This board support package has not been tested with multiprocessor
or the timing support. The uniprocessor IDP package was tested though
with a fairly large application (although bugs may exist). The
diff --git a/c/src/lib/libbsp/m68k/idp/clock/ckinit.c b/c/src/lib/libbsp/m68k/idp/clock/ckinit.c
index 9eec08b673..efc4aa58a2 100644
--- a/c/src/lib/libbsp/m68k/idp/clock/ckinit.c
+++ b/c/src/lib/libbsp/m68k/idp/clock/ckinit.c
@@ -19,8 +19,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 <stdlib.h>
diff --git a/c/src/lib/libbsp/m68k/idp/configure.ac b/c/src/lib/libbsp/m68k/idp/configure.ac
index 442fb5f406..bd12d3ca0f 100644
--- a/c/src/lib/libbsp/m68k/idp/configure.ac
+++ b/c/src/lib/libbsp/m68k/idp/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-idp],[_RTEMS_VERSION],[http://www.rtems.org/bugzilla])
diff --git a/c/src/lib/libbsp/m68k/idp/console/console.c b/c/src/lib/libbsp/m68k/idp/console/console.c
index 2709325d5d..dd41e70441 100644
--- a/c/src/lib/libbsp/m68k/idp/console/console.c
+++ b/c/src/lib/libbsp/m68k/idp/console/console.c
@@ -5,8 +5,6 @@
* Based off of the board support packages of RTEMS
*
* Updated to RTEMS 3.2.0 by Joel Sherrill.
- *
- * $Id$
*/
#define MIDP_INIT
diff --git a/c/src/lib/libbsp/m68k/idp/console/duart.c b/c/src/lib/libbsp/m68k/idp/console/duart.c
index 8e4304f880..d0a7d9af4d 100644
--- a/c/src/lib/libbsp/m68k/idp/console/duart.c
+++ b/c/src/lib/libbsp/m68k/idp/console/duart.c
@@ -1,7 +1,3 @@
-/*
- * $Id$
- */
-
/*#########################################################
#
# This code is a modified version of what you will find at the
diff --git a/c/src/lib/libbsp/m68k/idp/console/leds.c b/c/src/lib/libbsp/m68k/idp/console/leds.c
index 479b91efff..d2478c5d84 100644
--- a/c/src/lib/libbsp/m68k/idp/console/leds.c
+++ b/c/src/lib/libbsp/m68k/idp/console/leds.c
@@ -1,8 +1,6 @@
/*
* leds.c -- control the led's on a Motorola mc68ec0x0 board.
* Written by rob@cygnus.com (Rob Savoye)
- *
- * $Id$
*/
#include "leds.h"
diff --git a/c/src/lib/libbsp/m68k/idp/console/mc68ec.c b/c/src/lib/libbsp/m68k/idp/console/mc68ec.c
index de1f05bf09..3063af8335 100644
--- a/c/src/lib/libbsp/m68k/idp/console/mc68ec.c
+++ b/c/src/lib/libbsp/m68k/idp/console/mc68ec.c
@@ -1,8 +1,6 @@
/*
* mc68ec.c -- Low level support for the Motorola mc68ec0x0 board.
* Written by rob@cygnus.com (Rob Savoye)
- *
- * $Id$
*/
#include "leds.h"
diff --git a/c/src/lib/libbsp/m68k/idp/include/README b/c/src/lib/libbsp/m68k/idp/include/README
index 940cadb13d..165175f0a6 100644
--- a/c/src/lib/libbsp/m68k/idp/include/README
+++ b/c/src/lib/libbsp/m68k/idp/include/README
@@ -1,7 +1,3 @@
-#
-# $Id$
-#
-
The following files really should be made generic and allowed to
be shared between BSPs:
diff --git a/c/src/lib/libbsp/m68k/idp/include/bsp.h b/c/src/lib/libbsp/m68k/idp/include/bsp.h
index aace39c825..72795f99e2 100644
--- a/c/src/lib/libbsp/m68k/idp/include/bsp.h
+++ b/c/src/lib/libbsp/m68k/idp/include/bsp.h
@@ -1,8 +1,6 @@
/* bsp.h
*
* This include file contains all Motorola 680x0 IDP board IO definitions.
- *
- * $Id$
*/
#ifndef _BSP_H
diff --git a/c/src/lib/libbsp/m68k/idp/include/leds.h b/c/src/lib/libbsp/m68k/idp/include/leds.h
index f2c3257dd4..79df8488d8 100644
--- a/c/src/lib/libbsp/m68k/idp/include/leds.h
+++ b/c/src/lib/libbsp/m68k/idp/include/leds.h
@@ -1,8 +1,6 @@
/*
* leds.c -- control the led's on a Motorola mc68ec0x0 board.
* Written by rob@cygnus.com (Rob Savoye)
- *
- * $Id$
*/
#ifndef __LEDS_H__
diff --git a/c/src/lib/libbsp/m68k/idp/make/custom/idp.cfg b/c/src/lib/libbsp/m68k/idp/make/custom/idp.cfg
index b4b2bdc644..937ce30f68 100644
--- a/c/src/lib/libbsp/m68k/idp/make/custom/idp.cfg
+++ b/c/src/lib/libbsp/m68k/idp/make/custom/idp.cfg
@@ -1,8 +1,6 @@
#
# Config file for the IDP BSP
#
-# $Id$
-#
include $(RTEMS_ROOT)/make/custom/default.cfg
diff --git a/c/src/lib/libbsp/m68k/idp/startup/bspstart.c b/c/src/lib/libbsp/m68k/idp/startup/bspstart.c
index 423564809d..8026e1f72c 100644
--- a/c/src/lib/libbsp/m68k/idp/startup/bspstart.c
+++ b/c/src/lib/libbsp/m68k/idp/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 <bsp.h>
diff --git a/c/src/lib/libbsp/m68k/idp/startup/linkcmds b/c/src/lib/libbsp/m68k/idp/startup/linkcmds
index b6d74fcd71..247b48d28b 100644
--- a/c/src/lib/libbsp/m68k/idp/startup/linkcmds
+++ b/c/src/lib/libbsp/m68k/idp/startup/linkcmds
@@ -2,8 +2,6 @@
* for the idp.ld file. That file, it appears, was originally written by
* Rob Savoye. Other ideas came from Joel Sherrill for the RTEMS linkcmds
* file (this is basically a mixture of the two).
- *
- * $Id$
*/
/*
diff --git a/c/src/lib/libbsp/m68k/idp/timer/timer.c b/c/src/lib/libbsp/m68k/idp/timer/timer.c
index 0e5786100a..ae1f4967ab 100644
--- a/c/src/lib/libbsp/m68k/idp/timer/timer.c
+++ b/c/src/lib/libbsp/m68k/idp/timer/timer.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 <rtems.h>
diff --git a/c/src/lib/libbsp/m68k/idp/timer/timerisr.S b/c/src/lib/libbsp/m68k/idp/timer/timerisr.S
index 680fcd8ebc..9d58561d05 100644
--- a/c/src/lib/libbsp/m68k/idp/timer/timerisr.S
+++ b/c/src/lib/libbsp/m68k/idp/timer/timerisr.S
@@ -17,8 +17,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/asm.h>
diff --git a/c/src/lib/libbsp/m68k/idp/times b/c/src/lib/libbsp/m68k/idp/times
index 92864585f3..c457bd3fec 100644
--- a/c/src/lib/libbsp/m68k/idp/times
+++ b/c/src/lib/libbsp/m68k/idp/times
@@ -1,8 +1,6 @@
#
# Timing Test Suite Results for the Motorola IDP BSP
#
-# $Id$
-#
NOTE: This BSP is used submitted and no information is currently available.