upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
#!/bin/sh
|
|
# ---------------------------------------------------------
|
|
# Set the core module defines according to Core Module
|
|
# ---------------------------------------------------------
|
|
# ---------------------------------------------------------
|
|
# Set up the Versatile type define
|
|
# ---------------------------------------------------------
|
|
variant=PB926EJ-S
|
|
if [ "$1" == "" ]
|
|
then
|
|
echo "$0:: No parameters - using versatilepb_config"
|
|
echo "#define CONFIG_ARCH_VERSATILE_PB" > ./include/config.h
|
|
variant=PB926EJ-S
|
|
else
|
|
case "$1" in
|
|
versatilepb_config | \
|
|
versatile_config)
|
|
echo "#define CONFIG_ARCH_VERSATILE_PB" > ./include/config.h
|
|
;;
|
|
|
|
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
|
|
|
|
fi
|
|
# ---------------------------------------------------------
|
|
# Complete the configuration
|
|
# ---------------------------------------------------------
|
|
./mkconfig -a versatile arm arm926ejs versatile
|
|
echo "Variant:: $variant"
|
|
|