From 96782c63d3bd4067623895b8691ed2823c715f1d Mon Sep 17 00:00:00 2001 From: Wolfgang Denk Date: Sun, 9 Oct 2005 00:22:48 +0200 Subject: Cleanup warnings for cpu/arm720t & cpu/arm1136 files. sed the linker scripts, rather than pre-process them. Patch by Peter Pearse, 07 Oct 2005 --- board/versatile/split_by_variant.sh | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) (limited to 'board/versatile/split_by_variant.sh') diff --git a/board/versatile/split_by_variant.sh b/board/versatile/split_by_variant.sh index ea705da1c6..35c663e6a5 100755 --- a/board/versatile/split_by_variant.sh +++ b/board/versatile/split_by_variant.sh @@ -2,26 +2,17 @@ # --------------------------------------------------------- # Set the core module defines according to Core Module # --------------------------------------------------------- -CC=${CROSS_COMPILE}gcc -config="versatilepb_config" - -if [ "$2" == "" ] -then - echo "$0:: No preprocessor parameter - using ${CROSS_COMPILE}gcc" -else - CC=$2 -fi - - # --------------------------------------------------------- # Set up the Versatile type define # --------------------------------------------------------- +variant=PB926EJ-S if [ "$1" == "" ] then - echo "$0:: No parameters - using ${CROSS_COMPILE}gcc versatilepb_config" - + echo "$0:: No parameters - using versatilepb_config" + echo "#define CONFIG_ARCH_VERSATILE_PB" > ./include/config.h + variant=PB926EJ-S else - case "$config" in + case "$1" in versatilepb_config | \ versatile_config) echo "#define CONFIG_ARCH_VERSATILE_PB" > ./include/config.h @@ -29,11 +20,14 @@ else versatileab_config) echo "#define CONFIG_ARCH_VERSATILE_AB" > ./include/config.h + variant=AB926EJ-S ;; *) echo "$0:: Unrecognised config - using versatilepb_config" + echo "#define CONFIG_ARCH_VERSATILE_PB" > ./include/config.h + variant=PB926EJ-S ;; esac @@ -43,3 +37,4 @@ fi # Complete the configuration # --------------------------------------------------------- ./mkconfig -a versatile arm arm926ejs versatile +echo "Variant:: $variant" -- cgit v1.2.1