3 # Script to create header files and links to configure
4 # U-Boot for a specific board.
6 # Parameters: Target Architecture CPU Board [VENDOR] [SOC]
8 # (C) 2002-2013 DENX Software Engineering, Wolfgang Denk <wd@denx.de>
10 # SPDX-License-Identifier: GPL-2.0+
13 APPEND=no # Default: Create new config file
14 BOARD_NAME="" # Name to print in make output
24 if [ \( $# -eq 2 \) -a \( "$1" = "-A" \) ] ; then
26 line=`awk '($0 !~ /^#/ && $7 ~ /^'"$2"'$/) { print $1, $2, $3, $4, $5, $6, $7, $8 }' boards.cfg`
27 if [ -z "$line" ] ; then
28 echo "make: *** No rule to make target \`$2_config'. Stop." >&2
33 # add default board name if needed
34 [ $# = 3 ] && set ${line} ${1}
37 while [ $# -gt 0 ] ; do
40 -a) shift ; APPEND=yes ;;
41 -n) shift ; BOARD_NAME="${7%_config}" ; shift ;;
42 -t) shift ; TARGETS="`echo $1 | sed 's:_: :g'` ${TARGETS}" ; shift ;;
47 [ $# -lt 7 ] && exit 1
48 [ $# -gt 8 ] && exit 1
50 # Strip all options and/or _config suffixes
51 CONFIG_NAME="${7%_config}"
53 [ "${BOARD_NAME}" ] || BOARD_NAME="${7%_config}"
56 cpu=`echo $3 | awk 'BEGIN {FS = ":"} ; {print $1}'`
57 spl_cpu=`echo $3 | awk 'BEGIN {FS = ":"} ; {print $2}'`
58 if [ "$6" = "-" ] ; then
63 [ "$5" != "-" ] && vendor="$5"
64 [ "$4" != "-" ] && soc="$4"
65 [ $# -gt 7 ] && [ "$8" != "-" ] && {
66 # check if we have a board config name in the options field
67 # the options field mave have a board config name and a list
68 # of options, both separated by a colon (':'); the options are
69 # separated by commas (',').
71 # Check for board name
76 # Check if we only have a colon...
77 if [ "${tmp}" != "$8" ] ; then
79 TARGETS="`echo ${options} | sed 's:,: :g'` ${TARGETS}"
83 if [ "${ARCH}" -a "${ARCH}" != "${arch}" ]; then
84 echo "Failed: \$ARCH=${ARCH}, should be '${arch}' for ${BOARD_NAME}" 1>&2
89 # Test above needed aarch64, now we need arm
91 if [ "${arch}" = "aarch64" ]; then
95 if [ "$options" ] ; then
96 echo "Configuring for ${BOARD_NAME} - Board: ${CONFIG_NAME}, Options: ${options}"
98 echo "Configuring for ${BOARD_NAME} board..."
102 # Create link to architecture specific headers
104 if [ "$SRCTREE" != "$OBJTREE" ] ; then
105 mkdir -p ${OBJTREE}/include
106 LNPREFIX=${SRCTREE}/arch/${arch}/include/asm/
107 cd ${OBJTREE}/include
110 cd arch/${arch}/include
115 if [ -z "${soc}" ] ; then
116 ln -s ${LNPREFIX}arch-${cpu} asm/arch
118 ln -s ${LNPREFIX}arch-${soc} asm/arch
121 if [ "${arch}" = "arm" ] ; then
123 ln -s ${LNPREFIX}proc-armv asm/proc
126 if [ "$SRCTREE" = "$OBJTREE" ] ; then
127 cd ${SRCTREE}/include
131 # Create include file for Make
133 ( echo "ARCH = ${arch}"
134 if [ ! -z "$spl_cpu" ] ; then
135 echo 'ifeq ($(CONFIG_SPL_BUILD),y)'
136 echo "CPU = ${spl_cpu}"
143 echo "BOARD = ${board}"
145 [ "${vendor}" ] && echo "VENDOR = ${vendor}"
146 [ "${soc}" ] && echo "SOC = ${soc}"
149 # Assign board directory to BOARDIR variable
150 if [ -z "${vendor}" ] ; then
153 BOARDDIR=${vendor}/${board}
157 # Create board specific header file
159 if [ "$APPEND" = "yes" ] # Append to existing config file
163 > config.h # Create new config file
165 echo "/* Automatically generated - do not edit */" >>config.h
167 for i in ${TARGETS} ; do
168 i="`echo ${i} | sed '/=/ {s/=/ /;q; } ; { s/$/ 1/; }'`"
169 echo "#define CONFIG_${i}" >>config.h ;
172 echo "#define CONFIG_SYS_ARCH \"${arch}\"" >> config.h
173 echo "#define CONFIG_SYS_CPU \"${cpu}\"" >> config.h
174 echo "#define CONFIG_SYS_BOARD \"${board}\"" >> config.h
176 [ "${vendor}" ] && echo "#define CONFIG_SYS_VENDOR \"${vendor}\"" >> config.h
178 [ "${soc}" ] && echo "#define CONFIG_SYS_SOC \"${soc}\"" >> config.h
180 cat << EOF >> config.h
181 #define CONFIG_BOARDDIR board/$BOARDDIR
182 #include <config_cmd_defaults.h>
183 #include <config_defaults.h>
184 #include <configs/${CONFIG_NAME}.h>
185 #include <asm/config.h>
186 #include <config_fallbacks.h>
187 #include <config_uncmd_spl.h>