]> git.kernelconcepts.de Git - karo-tx-uboot.git/blobdiff - mkconfig
Add test tool to exercise SDRAM accesses in burst mode
[karo-tx-uboot.git] / mkconfig
index 106bd896a86953548ab238bebacf753a9b6dae07..e366267181696f7c777ae2f960adf6aaeb8d42e7 100644 (file)
--- a/mkconfig
+++ b/mkconfig
@@ -3,7 +3,7 @@
 # Script to create header files and links to configure
 # U-Boot for a specific board.
 #
-# Parameters:  Target  Architecture  CPU  Board
+# Parameters:  Target  Architecture  CPU  Board [VENDOR] [SOC]
 #
 # (C) 2002 DENX Software Engineering, Wolfgang Denk <wd@denx.de>
 #
@@ -19,7 +19,7 @@ while [ $# -gt 0 ] ; do
 done
 
 [ $# -lt 4 ] && exit 1
-[ $# -gt 5 ] && exit 1
+[ $# -gt 6 ] && exit 1
 
 echo "Configuring for $1 board..."
 
@@ -31,7 +31,12 @@ cd ./include
 rm -f asm
 ln -s asm-$2 asm
 rm -f asm-$2/arch
-ln -s arch-$3 asm-$2/arch
+
+if [ -z "$6" -o "$6" == "NULL" ] ; then
+       ln -s arch-$3 asm-$2/arch
+else
+       ln -s arch-$6 asm-$2/arch
+fi
 
 if [ "$2" = "arm" ] ; then
        rm -f asm-$2/proc
@@ -41,11 +46,13 @@ fi
 #
 # Create include file for Make
 #
-echo "ARCH  = $2" >  config.mk
-echo "CPU   = $3" >> config.mk
-echo "BOARD = $4" >> config.mk
+echo "ARCH   = $2" >  config.mk
+echo "CPU    = $3" >> config.mk
+echo "BOARD  = $4" >> config.mk
+
+[ "$5" ] && [ "$5" != "NULL" ] && echo "VENDOR = $5" >> config.mk
 
-[ "$5" ] && echo "VENDOR = $5" >> config.mk
+[ "$6" ] && [ "$6" != "NULL" ] && echo "SOC    = $6" >> config.mk
 
 #
 # Create board specific header file