X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=mkconfig;h=84f5a7765b94b9bad19c8c345861d3253bd193f1;hb=3ea664c7c339a788341b47f1eb0aa98eee18a721;hp=106bd896a86953548ab238bebacf753a9b6dae07;hpb=b783edaee8252bfdba3f7b3fd29519a81ce71e42;p=u-boot diff --git a/mkconfig b/mkconfig old mode 100644 new mode 100755 index 106bd896a8..84f5a7765b --- a/mkconfig +++ b/mkconfig @@ -3,49 +3,151 @@ # 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 +# (C) 2002-2013 DENX Software Engineering, Wolfgang Denk +# +# SPDX-License-Identifier: GPL-2.0+ # APPEND=no # Default: Create new config file +BOARD_NAME="" # Name to print in make output +TARGETS="" + +arch="" +cpu="" +board="" +vendor="" +soc="" +options="" + +if [ \( $# -eq 2 \) -a \( "$1" = "-A" \) ] ; then + # Automatic mode + line=`awk '($0 !~ /^#/ && $7 ~ /^'"$2"'$/) { print $1, $2, $3, $4, $5, $6, $7, $8 }' $srctree/boards.cfg` + if [ -z "$line" ] ; then + echo "make: *** No rule to make target \`$2_config'. Stop." >&2 + exit 1 + fi + + set ${line} + # add default board name if needed + [ $# = 3 ] && set ${line} ${1} +fi while [ $# -gt 0 ] ; do case "$1" in --) shift ; break ;; -a) shift ; APPEND=yes ;; + -n) shift ; BOARD_NAME="${7%_config}" ; shift ;; + -t) shift ; TARGETS="`echo $1 | sed 's:_: :g'` ${TARGETS}" ; shift ;; *) break ;; esac done -[ $# -lt 4 ] && exit 1 -[ $# -gt 5 ] && exit 1 +[ $# -lt 7 ] && exit 1 +[ $# -gt 8 ] && exit 1 + +# Strip all options and/or _config suffixes +CONFIG_NAME="${7%_config}" + +[ "${BOARD_NAME}" ] || BOARD_NAME="${7%_config}" + +arch="$2" +cpu=`echo $3 | awk 'BEGIN {FS = ":"} ; {print $1}'` +spl_cpu=`echo $3 | awk 'BEGIN {FS = ":"} ; {print $2}'` -echo "Configuring for $1 board..." +if [ "$cpu" = "-" ] ; then + cpu= +fi + +[ "$6" != "-" ] && board="$6" +[ "$5" != "-" ] && vendor="$5" +[ "$4" != "-" ] && soc="$4" +[ $# -gt 7 ] && [ "$8" != "-" ] && { + # check if we have a board config name in the options field + # the options field mave have a board config name and a list + # of options, both separated by a colon (':'); the options are + # separated by commas (','). + # + # Check for board name + tmp="${8%:*}" + if [ "$tmp" ] ; then + CONFIG_NAME="$tmp" + fi + # Check if we only have a colon... + if [ "${tmp}" != "$8" ] ; then + options=${8#*:} + TARGETS="`echo ${options} | sed 's:,: :g'` ${TARGETS}" + fi +} + +if [ "${ARCH}" -a "${ARCH}" != "${arch}" ]; then + echo "Failed: \$ARCH=${ARCH}, should be '${arch}' for ${BOARD_NAME}" 1>&2 + exit 1 +fi + +# +# Test above needed aarch64, now we need arm +# +if [ "${arch}" = "aarch64" ]; then + arch="arm" +fi -cd ./include +if [ "$options" ] ; then + echo "Configuring for ${BOARD_NAME} - Board: ${CONFIG_NAME}, Options: ${options}" +else + echo "Configuring for ${BOARD_NAME} board..." +fi # # Create link to architecture specific headers # -rm -f asm -ln -s asm-$2 asm -rm -f asm-$2/arch -ln -s arch-$3 asm-$2/arch +if [ -n "$KBUILD_SRC" ] ; then + mkdir -p ${objtree}/include + LNPREFIX=${srctree}/arch/${arch}/include/asm/ + cd ${objtree}/include + mkdir -p asm +else + cd arch/${arch}/include +fi -if [ "$2" = "arm" ] ; then - rm -f asm-$2/proc - ln -s proc-armv asm-$2/proc +rm -f asm/arch + +if [ "${soc}" ] ; then + ln -s ${LNPREFIX}arch-${soc} asm/arch +elif [ "${cpu}" ] ; then + ln -s ${LNPREFIX}arch-${cpu} asm/arch +fi + +if [ -z "$KBUILD_SRC" ] ; then + cd ${srctree}/include fi # # Create include file for Make # -echo "ARCH = $2" > config.mk -echo "CPU = $3" >> config.mk -echo "BOARD = $4" >> config.mk +( echo "ARCH = ${arch}" + if [ ! -z "$spl_cpu" ] ; then + echo 'ifeq ($(CONFIG_SPL_BUILD),y)' + echo "CPU = ${spl_cpu}" + echo "else" + echo "CPU = ${cpu}" + echo "endif" + else + echo "CPU = ${cpu}" + fi + echo "BOARD = ${board}" + + [ "${vendor}" ] && echo "VENDOR = ${vendor}" + [ "${soc}" ] && echo "SOC = ${soc}" + exit 0 ) > config.mk -[ "$5" ] && echo "VENDOR = $5" >> config.mk +# Assign board directory to BOARDIR variable +if [ -z "${vendor}" ] ; then + BOARDDIR=${board} +else + BOARDDIR=${vendor}/${board} +fi # # Create board specific header file @@ -57,6 +159,28 @@ else > config.h # Create new config file fi echo "/* Automatically generated - do not edit */" >>config.h -echo "#include " >>config.h + +for i in ${TARGETS} ; do + i="`echo ${i} | sed '/=/ {s/=/ /;q; } ; { s/$/ 1/; }'`" + echo "#define CONFIG_${i}" >>config.h ; +done + +echo "#define CONFIG_SYS_ARCH \"${arch}\"" >> config.h +echo "#define CONFIG_SYS_CPU \"${cpu}\"" >> config.h +echo "#define CONFIG_SYS_BOARD \"${board}\"" >> config.h + +[ "${vendor}" ] && echo "#define CONFIG_SYS_VENDOR \"${vendor}\"" >> config.h + +[ "${soc}" ] && echo "#define CONFIG_SYS_SOC \"${soc}\"" >> config.h + +[ "${board}" ] && echo "#define CONFIG_BOARDDIR board/$BOARDDIR" >> config.h +cat << EOF >> config.h +#include +#include +#include +#include +#include +#include +EOF exit 0