summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-03-11 05:52:42 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-03-11 05:52:42 +0000
commita6a7aae35e35b50d737f171617e4c0a920a8e85b (patch)
treec0e9736fe0e7edd770087cf83a306607c6b29343
parent2011-03-10 Sebastian Huber <sebastian.huber@embedded-brains.de> (diff)
downloadrtems-a6a7aae35e35b50d737f171617e4c0a920a8e85b.tar.bz2
Remove (Obsolete).
-rw-r--r--bspkit/README6
-rw-r--r--bspkit/avr/bare/ChangeLog8
-rw-r--r--bspkit/avr/bare/cfg/bare-avr3.cfg36
-rw-r--r--bspkit/avr/bare/cfg/bare-avr5.cfg36
4 files changed, 0 insertions, 86 deletions
diff --git a/bspkit/README b/bspkit/README
deleted file mode 100644
index 051a4ba236..0000000000
--- a/bspkit/README
+++ /dev/null
@@ -1,6 +0,0 @@
-WARNING
-=======
-
-All files in here are considered to be unstable and experimental.
-
-They are subject to change at any time without prior notice.
diff --git a/bspkit/avr/bare/ChangeLog b/bspkit/avr/bare/ChangeLog
deleted file mode 100644
index 7b202cd568..0000000000
--- a/bspkit/avr/bare/ChangeLog
+++ /dev/null
@@ -1,8 +0,0 @@
-2008-09-18 Joel Sherrill <joel.sherrill@OARcorp.com>
-
- * cfg/bare-avr3.cfg, cfg/bare-avr5.cfg: Eliminate START_BASE and
- START_FILE.
-
-2004-10-22 Ralf Corsepius <ralf_corsepius@rtems.org>
-
- * cfg/bare-avr3.cfg, cfg/bare-avr5.cfg: New.
diff --git a/bspkit/avr/bare/cfg/bare-avr3.cfg b/bspkit/avr/bare/cfg/bare-avr3.cfg
deleted file mode 100644
index 9fd61a297c..0000000000
--- a/bspkit/avr/bare/cfg/bare-avr3.cfg
+++ /dev/null
@@ -1,36 +0,0 @@
-#
-# Config file for the "bare" BSP
-#
-# $Id$
-#
-
-# This is the actual bsp directory used during the build process.
-RTEMS_BSP_FAMILY=bare
-
-RTEMS_CPU_MODEL=avr3
-
-CPU_CFLAGS=-mmcu=avr3
-
-include $(RTEMS_ROOT)/make/custom/default.cfg
-
-# optimize flag: typically -0, could use -O4 or -fast
-# -O4 is ok for RTEMS
-CFLAGS_OPTIMIZE_V=-Os -fomit-frame-pointer
-
-# The following are definitions of make-exe which will work using ld as
-# is currently required. It is expected that as of gcc 2.8, the end user
-# will be able to override parts of the compilers specs and link using gcc.
-
-define make-exe
- @echo "*** Cannot do a link with the bare bsp. ***"
- @echo "#!/bin/sh" > $(basename $@).exe
- @echo "echo \"Cannot do a link with the bare bsp.\"" >> $(basename $@).exe
-endef
-
-define make-cxx-exe
- @echo "*** Cannot do a link with the bare bsp. ***"
- @echo "#!/bin/sh" > $(basename $@).exe
- @echo "echo \"Cannot do a link with the bare bsp.\"" >> $(basename $@).exe
-endef
-
-# Miscellaneous additions go here
diff --git a/bspkit/avr/bare/cfg/bare-avr5.cfg b/bspkit/avr/bare/cfg/bare-avr5.cfg
deleted file mode 100644
index f7111585d9..0000000000
--- a/bspkit/avr/bare/cfg/bare-avr5.cfg
+++ /dev/null
@@ -1,36 +0,0 @@
-#
-# Config file for the "bare" BSP
-#
-# $Id$
-#
-
-# This is the actual bsp directory used during the build process.
-RTEMS_BSP_FAMILY=bare
-
-RTEMS_CPU_MODEL=avr5
-
-CPU_CFLAGS=-mmcu=avr5
-
-include $(RTEMS_ROOT)/make/custom/default.cfg
-
-# optimize flag: typically -0, could use -O4 or -fast
-# -O4 is ok for RTEMS
-CFLAGS_OPTIMIZE_V=-O4 -fomit-frame-pointer
-
-# The following are definitions of make-exe which will work using ld as
-# is currently required. It is expected that as of gcc 2.8, the end user
-# will be able to override parts of the compilers specs and link using gcc.
-
-define make-exe
- @echo "*** Cannot do a link with the bare bsp. ***"
- @echo "#!/bin/sh" > $(basename $@).exe
- @echo "echo \"Cannot do a link with the bare bsp.\"" >> $(basename $@).exe
-endef
-
-define make-cxx-exe
- @echo "*** Cannot do a link with the bare bsp. ***"
- @echo "#!/bin/sh" > $(basename $@).exe
- @echo "echo \"Cannot do a link with the bare bsp.\"" >> $(basename $@).exe
-endef
-
-# Miscellaneous additions go here