summaryrefslogtreecommitdiff
path: root/board/versatile/split_by_variant.sh
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <[email protected]>2009-01-29 12:07:21 +0100
committerJean-Christophe PLAGNIOL-VILLARD <[email protected]>2009-01-29 12:07:21 +0100
commite4943ec57466ea5dfa085e7a9e0ec44cb93c4e1e (patch)
treeb667a6a1977763d98c3fd53265b194669cc81562 /board/versatile/split_by_variant.sh
parent7379f45a7bc71941c3920c2f6b3c3faa4d7fd315 (diff)
move ARM Ltd. to vendor dir
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <[email protected]>
Diffstat (limited to 'board/versatile/split_by_variant.sh')
-rwxr-xr-xboard/versatile/split_by_variant.sh42
1 files changed, 0 insertions, 42 deletions
diff --git a/board/versatile/split_by_variant.sh b/board/versatile/split_by_variant.sh
deleted file mode 100755
index ccded7e8cfc..00000000000
--- a/board/versatile/split_by_variant.sh
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/bin/sh
-# ---------------------------------------------------------
-# Set the core module defines according to Core Module
-# ---------------------------------------------------------
-# ---------------------------------------------------------
-# Set up the Versatile type define
-# ---------------------------------------------------------
-
-mkdir -p ${obj}include
-variant=PB926EJ-S
-if [ "$1" = "" ]
-then
- echo "$0:: No parameters - using versatilepb_config"
- echo "#define CONFIG_ARCH_VERSATILE_PB" > ${obj}include/config.h
- variant=PB926EJ-S
-else
- case "$1" in
- versatilepb_config | \
- versatile_config)
- echo "#define CONFIG_ARCH_VERSATILE_PB" > ${obj}include/config.h
- ;;
-
- versatileab_config)
- echo "#define CONFIG_ARCH_VERSATILE_AB" > ${obj}include/config.h
- variant=AB926EJ-S
- ;;
-
-
- *)
- echo "$0:: Unrecognised config - using versatilepb_config"
- echo "#define CONFIG_ARCH_VERSATILE_PB" > ${obj}include/config.h
- variant=PB926EJ-S
- ;;
-
- esac
-
-fi
-# ---------------------------------------------------------
-# Complete the configuration
-# ---------------------------------------------------------
-$MKCONFIG -a versatile arm arm926ejs versatile NULL versatile
-echo "Variant:: $variant"