Copy Global Data Pointer to r29 for DECLARE_GLOBAL_DATA_PTR
[platform/kernel/u-boot.git] / mkconfig
old mode 100644 (file)
new mode 100755 (executable)
index 266addd..4fe6e44
--- a/mkconfig
+++ b/mkconfig
@@ -9,19 +9,23 @@
 #
 
 APPEND=no      # Default: Create new config file
+BOARD_NAME=""  # Name to print in make output
 
 while [ $# -gt 0 ] ; do
        case "$1" in
        --) shift ; break ;;
        -a) shift ; APPEND=yes ;;
+       -n) shift ; BOARD_NAME="${1%%_config}" ; shift ;;
        *)  break ;;
        esac
 done
 
+[ "${BOARD_NAME}" ] || BOARD_NAME="$1"
+
 [ $# -lt 4 ] && exit 1
 [ $# -gt 6 ] && exit 1
 
-echo "Configuring for $1 board..."
+echo "Configuring for ${BOARD_NAME} board..."
 
 cd ./include
 
@@ -31,7 +35,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