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-2010 DENX Software Engineering, Wolfgang Denk <wd@denx.de>
11 APPEND=no # Default: Create new config file
12 BOARD_NAME="" # Name to print in make output
22 if [ \( $# -eq 2 \) -a \( "$1" = "-A" \) ] ; then
24 line=`egrep -i "^[[:space:]]*${2}[[:space:]]" boards.cfg` || {
25 echo "make: *** No rule to make target \`$2_config'. Stop." >&2
30 # add default board name if needed
31 [ $# = 3 ] && set ${line} ${1}
32 elif [ "${MAKEFLAGS+set}${MAKELEVEL+set}" = "setset" ] ; then
33 # only warn when using a config target in the Makefile
36 warning: Please migrate to boards.cfg. Failure to do so will
37 mean removal of your board in the next release.
43 while [ $# -gt 0 ] ; do
46 -a) shift ; APPEND=yes ;;
47 -n) shift ; BOARD_NAME="${1%_config}" ; shift ;;
48 -t) shift ; TARGETS="`echo $1 | sed 's:_: :g'` ${TARGETS}" ; shift ;;
53 [ $# -lt 4 ] && exit 1
54 [ $# -gt 7 ] && exit 1
56 # Strip all options and/or _config suffixes
57 CONFIG_NAME="${1%_config}"
59 [ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}"
64 if [ "$tmp" != "$cpu" ] ; then
68 if [ "$4" = "-" ] ; then
73 [ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5"
74 [ $# -gt 5 ] && [ "$6" != "-" ] && soc="$6"
75 [ $# -gt 6 ] && [ "$7" != "-" ] && {
76 # check if we have a board config name in the options field
77 # the options field mave have a board config name and a list
78 # of options, both separated by a colon (':'); the options are
79 # separated by commas (',').
81 # Check for board name
86 # Check if we only have a colon...
87 if [ "${tmp}" != "$7" ] ; then
89 TARGETS="`echo ${options} | sed 's:,: :g'` ${TARGETS}"
93 if [ "${ARCH}" -a "${ARCH}" != "${arch}" ]; then
94 echo "Failed: \$ARCH=${ARCH}, should be '${arch}' for ${BOARD_NAME}" 1>&2
98 if [ "$options" ] ; then
99 echo "Configuring for ${BOARD_NAME} - Board: ${CONFIG_NAME}, Options: ${options}"
101 echo "Configuring for ${BOARD_NAME} board..."
105 # Create link to architecture specific headers
107 if [ "$SRCTREE" != "$OBJTREE" ] ; then
108 mkdir -p ${OBJTREE}/include
109 mkdir -p ${OBJTREE}/include2
110 cd ${OBJTREE}/include2
112 ln -s ${SRCTREE}/arch/${arch}/include/asm asm
113 LNPREFIX=${SRCTREE}/arch/${arch}/include/asm/
119 ln -s ../arch/${arch}/include/asm asm
124 if [ -z "${soc}" ] ; then
125 ln -s ${LNPREFIX}arch-${cpu} asm/arch
127 ln -s ${LNPREFIX}arch-${soc} asm/arch
130 if [ "${arch}" = "arm" ] ; then
132 ln -s ${LNPREFIX}proc-armv asm/proc
136 # Create include file for Make
138 echo "ARCH = ${arch}" > config.mk
139 if [ ! -z "$spl_cpu" ] ; then
140 echo 'ifeq ($(CONFIG_SPL_BUILD),y)' >> config.mk
141 echo "CPU = ${spl_cpu}" >> config.mk
142 echo "else" >> config.mk
143 echo "CPU = ${cpu}" >> config.mk
144 echo "endif" >> config.mk
146 echo "CPU = ${cpu}" >> config.mk
148 echo "BOARD = ${board}" >> config.mk
150 [ "${vendor}" ] && echo "VENDOR = ${vendor}" >> config.mk
152 [ "${soc}" ] && echo "SOC = ${soc}" >> config.mk
154 # Assign board directory to BOARDIR variable
155 if [ -z "${vendor}" ] ; then
158 BOARDDIR=${vendor}/${board}
162 # Create board specific header file
164 if [ "$APPEND" = "yes" ] # Append to existing config file
168 > config.h # Create new config file
170 echo "/* Automatically generated - do not edit */" >>config.h
172 for i in ${TARGETS} ; do
173 i="`echo ${i} | sed '/=/ {s/=/ /;q; } ; { s/$/ 1/; }'`"
174 echo "#define CONFIG_${i}" >>config.h ;
177 echo "#define CONFIG_SYS_ARCH \"${arch}\"" >> config.h
178 echo "#define CONFIG_SYS_CPU \"${cpu}\"" >> config.h
179 echo "#define CONFIG_SYS_BOARD \"${board}\"" >> config.h
181 [ "${vendor}" ] && echo "#define CONFIG_SYS_VENDOR \"${vendor}\"" >> config.h
183 [ "${soc}" ] && echo "#define CONFIG_SYS_SOC \"${soc}\"" >> config.h
185 cat << EOF >> config.h
186 #define CONFIG_BOARDDIR board/$BOARDDIR
187 #include <config_cmd_defaults.h>
188 #include <config_defaults.h>
189 #include <configs/${CONFIG_NAME}.h>
190 #include <asm/config.h>
191 #include <config_fallbacks.h>