diff options
Diffstat (limited to 'uart-monitor/mkconfig')
m--------- | uart-monitor | 0 | ||||
-rwxr-xr-x | uart-monitor/mkconfig | 61 |
2 files changed, 61 insertions, 0 deletions
diff --git a/uart-monitor b/uart-monitor deleted file mode 160000 -Subproject eb8b047c29a2027fbdd841cd1289fa27ddb22d7 diff --git a/uart-monitor/mkconfig b/uart-monitor/mkconfig new file mode 100755 index 0000000..43b6f09 --- /dev/null +++ b/uart-monitor/mkconfig @@ -0,0 +1,61 @@ +#!/bin/sh -e + +# Script to create header files and links to configure +# X-Loader for a specific board. +# +# Parameters: Target Architecture CPU Board +# +# (C) 2004 Texas Instruments +# (C) 2002 DENX Software Engineering, Wolfgang Denk <wd@denx.de> +# + +APPEND=no # Default: Create new config file + +while [ $# -gt 0 ] ; do + case "$1" in + --) shift ; break ;; + -a) shift ; APPEND=yes ;; + *) break ;; + esac +done + +[ $# -lt 4 ] && exit 1 +[ $# -gt 5 ] && exit 1 + +echo "Configuring for $1 board..." + +cd ./include + +# +# Create link to architecture specific headers +# +rm -f asm/arch +ln -s arch-$3 asm/arch + +if [ "$2" = "arm" ] ; then + rm -f asm/proc + ln -s proc-armv asm/proc +fi + +# +# Create include file for Make +# +echo "ARCH = $2" > config.mk +echo "CPU = $3" >> config.mk +echo "BOARD = $4" >> config.mk + +[ "$5" ] && echo "VENDOR = $5" >> config.mk + +# +# Create board specific header file +# +if [ "$APPEND" = "yes" ] # Append to existing config file +then + echo >> config.h +else + > config.h # Create new config file +fi +echo "/* Automatically generated - do not edit */" >>config.h +echo "#include <configs/$1.h>" >>config.h + +exit 0 |