to make u-boot work for fat32 filesystem
[jz_uboot.git] / board / versatile / split_by_variant.sh
blob25461c2c01ff1a74c324ef7dff308024ad068684
1 #!/bin/sh
2 # ---------------------------------------------------------
3 # Set the core module defines according to Core Module
4 # ---------------------------------------------------------
5 # ---------------------------------------------------------
6 # Set up the Versatile type define
7 # ---------------------------------------------------------
9 mkdir -p ${obj}include
10 variant=PB926EJ-S
11 if [ "$1" == "" ]
12 then
13 echo "$0:: No parameters - using versatilepb_config"
14 echo "#define CONFIG_ARCH_VERSATILE_PB" > ${obj}include/config.h
15 variant=PB926EJ-S
16 else
17 case "$1" in
18 versatilepb_config | \
19 versatile_config)
20 echo "#define CONFIG_ARCH_VERSATILE_PB" > ${obj}include/config.h
23 versatileab_config)
24 echo "#define CONFIG_ARCH_VERSATILE_AB" > ${obj}include/config.h
25 variant=AB926EJ-S
30 echo "$0:: Unrecognised config - using versatilepb_config"
31 echo "#define CONFIG_ARCH_VERSATILE_PB" > ${obj}include/config.h
32 variant=PB926EJ-S
35 esac
38 # ---------------------------------------------------------
39 # Complete the configuration
40 # ---------------------------------------------------------
41 $MKCONFIG -a versatile arm arm926ejs versatile NULL versatile
42 echo "Variant:: $variant"