mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-18 21:21:37 +00:00
ARM: versatile: delete split_by_variant.sh
Since commit d388298a59
by
Stefano Babic this file is no longer needed so delete it.
Cc: Stefano Babic <sbabic@denx.de>
Cc: Loïc Minier <loic.minier@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
0dcfb0fcb8
commit
94acfed1ae
1 changed files with 0 additions and 42 deletions
|
@ -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 armltd versatile
|
||||
echo "Variant:: $variant"
|
Loading…
Add table
Reference in a new issue