]> git.sur5r.net Git - u-boot/blobdiff - mkconfig
Add support for KARO TX25 board
[u-boot] / mkconfig
index 10755107900cf190e664596be862d196cd0a4f30..27d9f2bac7ca500f51a771000030d42081c8be3b 100755 (executable)
--- a/mkconfig
+++ b/mkconfig
@@ -79,6 +79,13 @@ echo "BOARD  = $4" >> config.mk
 
 [ "$6" ] && [ "$6" != "NULL" ] && echo "SOC    = $6" >> config.mk
 
+# Assign board directory to BOARDIR variable
+if [ -z "$5" -o "$5" = "NULL" ] ; then
+    BOARDDIR=$4
+else
+    BOARDDIR=$5/$4
+fi
+
 #
 # Create board specific header file
 #
@@ -94,6 +101,8 @@ for i in ${TARGETS} ; do
        echo "#define CONFIG_MK_${i} 1" >>config.h ;
 done
 
+echo "#define CONFIG_BOARDDIR board/$BOARDDIR" >>config.h
+
 echo "#include <configs/$1.h>" >>config.h
 echo "#include <asm/config.h>" >>config.h