summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRalph Holmes <ralph@ybden.com>2015-12-19 16:07:53 +0000
committerGedare Bloom <gedare@rtems.org>2015-12-19 14:59:08 -0500
commita452c5727244c608379b08b1f6d720858cb41a78 (patch)
treef82a75a221abe8ae888616d8b5962e54ac15c21e
parent858eea4b9f10f562a823ca6b3bf5fd4807e5e063 (diff)
avr/avrtest: Remove avrtest references.
Closes #2442.
-rwxr-xr-xdejagnu/boards/rtems-avr-avrtest.exp40
-rw-r--r--gcc/RTEMS_GCC_Testing.txt2
-rwxr-xr-xgcc/do_one1
-rwxr-xr-xgcc/parallelize_build1
-rwxr-xr-xgcc/test_driver1
-rwxr-xr-xrtems/bit_all_bsps1
-rw-r--r--sim-scripts/.gitignore1
-rw-r--r--sim-scripts/Makefile7
8 files changed, 2 insertions, 52 deletions
diff --git a/dejagnu/boards/rtems-avr-avrtest.exp b/dejagnu/boards/rtems-avr-avrtest.exp
deleted file mode 100755
index 143467d..0000000
--- a/dejagnu/boards/rtems-avr-avrtest.exp
+++ /dev/null
@@ -1,40 +0,0 @@
-# This is a list of toolchains that are supported on this board.
-set_board_info target_install {}
-
-# Load the generic configuration for this board, This will define a basic
-# set of routines needed by the tool to communicate with the board.
-load_generic_config "sim"
-
-# basic-sim.exp is a basic description for the standard Cygnus simulator.
-load_base_board_description "basic-sim"
-
-# The name of the simulator is "nosim"
-setup_sim nosim
-
-# No multilib flags needed by default.
-process_multilib_options ""
-
-# The compiler used to build for this board. This has *nothing* to do
-# with what compiler is tested if we're testing gcc.
-set_board_info compiler "[find_gcc]"
-
-set_board_info cflags "[newlib_include_flags] -m5200 -B${RTEMS_MAKEFILE_PATH}/lib/ -specs bsp_specs -qrtems"
-set_board_info ldflags "[newlib_link_flags] ${RTEMS_CONFIG_OBJ}"
-
-# The simulator isn't really remote.
-set_board_info isremote 0
-# We only have a small stack available to us
-set_board_info gcc,stack_size 2048
-
-# wrapper script which handles the device tree
-set_board_info sim "avrtest"
-set_board_info sim,options "-i"
-
-# No support for signals on this target.
-set_board_info gdb,nosignals 1
-
-# The simulator doesn't return exit statuses and we need to indicate this.
-set_board_info needs_status_wrapper 1
-
-# Can't call functions from GDB.
-# set_board_info gdb,cannot_call_functions 1
diff --git a/gcc/RTEMS_GCC_Testing.txt b/gcc/RTEMS_GCC_Testing.txt
index 7dbf97b..044c41d 100644
--- a/gcc/RTEMS_GCC_Testing.txt
+++ b/gcc/RTEMS_GCC_Testing.txt
@@ -127,7 +127,7 @@ this target
|==================================================
| Target | BSP | Simulator
| arm-rtems* | edb7312 | Skyeye
-| avr-rtems* | avrtest | avrtest
+| avr-rtems* | N/A | not supported
| bfin-rtems* | eZKit533 | Skyeye
| h8300-rtems* | N/A | not supported
| i386-rtems* | pc386 | qemu
diff --git a/gcc/do_one b/gcc/do_one
index 08342fd..6aa8464 100755
--- a/gcc/do_one
+++ b/gcc/do_one
@@ -356,7 +356,6 @@ if [ ${needCPU} = yes -a ${needBSP} = yes -a \
case ${cpu}-${bsp} in
arm-edb7312) dejacfg=rtems-arm-edb7312 ;;
arm-realview_pbx_a9_qemu) dejacfg=rtems-arm-realview_pbx_a9_qemu ;;
- avr-avrtest) dejacfg=rtems-avr-avrtest ;;
bfin-eZKit533) dejacfg=rtems-bfin-nosim ;;
i386-pc386|i386-qemu) dejacfg=rtems-i386-qemu ;;
lm32-lm32_evr) dejacfg=rtems-lm32-lm32_evr ;;
diff --git a/gcc/parallelize_build b/gcc/parallelize_build
index 9d5381c..0ea1e20 100755
--- a/gcc/parallelize_build
+++ b/gcc/parallelize_build
@@ -179,7 +179,6 @@ if [ ${do_tools} = "yes" ] ; then
parallel --verbose ${JOBS} ${dryrun} <<EOF
${BASEDIR}/rtems-testing/gcc/do_one -B1 -A ${args} arm edb7312
-${BASEDIR}/rtems-testing/gcc/do_one -B1 -A ${args} avr avrtest
${BASEDIR}/rtems-testing/gcc/do_one -B1 -A ${args} bfin eZKit533
${BASEDIR}/rtems-testing/gcc/do_one -B1 -A ${args} h8300
${BASEDIR}/rtems-testing/gcc/do_one -B1 -A ${args} i386 pc386
diff --git a/gcc/test_driver b/gcc/test_driver
index d08f45a..3fe8be3 100755
--- a/gcc/test_driver
+++ b/gcc/test_driver
@@ -258,7 +258,6 @@ build_cpu()
do
case $cpu in
arm) bsp=edb7312 ;;
- avr) bsp=avrtest ;;
bfin) bsp=eZKit533 ;;
h8300) bsp=h8sim ;;
i386) bsp=pc386 ;;
diff --git a/rtems/bit_all_bsps b/rtems/bit_all_bsps
index 9504785..6df79f5 100755
--- a/rtems/bit_all_bsps
+++ b/rtems/bit_all_bsps
@@ -124,7 +124,6 @@ get_bsps()
else
# RTEMS before 4.10
case $CPU in
- avr) all_bsps="avrtest" ;;
bfin) all_bsps="eZKit533 bf537Stamp" ;;
arm) all_bsps="csb336 csb337 csb637 edb7312"
all_bsps="${all_bsps} rtl22xx rtl22xx_t smdk2410"
diff --git a/sim-scripts/.gitignore b/sim-scripts/.gitignore
index 762a237..2d21e9e 100644
--- a/sim-scripts/.gitignore
+++ b/sim-scripts/.gitignore
@@ -1,6 +1,5 @@
ant5206
ant5206-gdb
-avrtest
bf537Stamp
bf537Stamp-gdb
bf537Stamp-skyeye
diff --git a/sim-scripts/Makefile b/sim-scripts/Makefile
index 7dcd68e..4413ede 100644
--- a/sim-scripts/Makefile
+++ b/sim-scripts/Makefile
@@ -9,12 +9,11 @@ QEMU_SCRIPTS=pc386 qemuppc qemu-gumstix qemu-leon2 qemu-lm32_evr qemu-or1k \
uC5282 lm3s6965 realview_pbx_a9_qemu realview_pbx_a9_qemu_smp \
xilinx_zynq_a9_qemu
-OTHER_SCRIPTS=avrtest
GENERATED_SCRIPTS=\
${GDBSIM_SCRIPTS} $(GDBSIM_SCRIPTS:%=%-gdb) \
${SKYEYE_SCRIPTS} $(SKYEYE_SCRIPTS:%=%-gdb) \
${TSIM_SCRIPTS} $(TSIM_SCRIPTS:%=%-gdb) \
- ${QEMU_SCRIPTS} ${OTHER_SCRIPTS}
+ ${QEMU_SCRIPTS}
COMPILED_PROGRAMS=usleep
UNPROCESSED_SCRIPTS=nosim check_endof \
@@ -151,10 +150,6 @@ simsh simsh-gdb: gdb-sim-run.in gdb-sim.in simsh.in
v850sim v850sim-gdb: gdb-sim-run.in gdb-sim.in v850sim.in
./mkrun yes V850 v850 v850sim
-## AVR Test (uses Simulavrxx)
-avrtest: gdb-sim-run.in avrtest.in
- ./mkrun no AVR avr avrtest
-
clean:
rm -f ${GENERATED_SCRIPTS} ${COMPILED_PROGRAMS}