]> git.ipfire.org Git - thirdparty/u-boot.git/blame - mkconfig
Prepare v2013.01.01
[thirdparty/u-boot.git] / mkconfig
CommitLineData
7ebf7443
WD
1#!/bin/sh -e
2
3# Script to create header files and links to configure
4# U-Boot for a specific board.
5#
1d9f4105 6# Parameters: Target Architecture CPU Board [VENDOR] [SOC]
7ebf7443 7#
9329cdfb 8# (C) 2002-2010 DENX Software Engineering, Wolfgang Denk <wd@denx.de>
7ebf7443
WD
9#
10
11APPEND=no # Default: Create new config file
5078cce8 12BOARD_NAME="" # Name to print in make output
804d83a5 13TARGETS=""
7ebf7443 14
a6862bc1
WD
15arch=""
16cpu=""
17board=""
18vendor=""
19soc=""
9329cdfb 20options=""
a6862bc1
WD
21
22if [ \( $# -eq 2 \) -a \( "$1" = "-A" \) ] ; then
23 # Automatic mode
24 line=`egrep -i "^[[:space:]]*${2}[[:space:]]" boards.cfg` || {
25 echo "make: *** No rule to make target \`$2_config'. Stop." >&2
26 exit 1
27 }
28
29 set ${line}
30 # add default board name if needed
31 [ $# = 3 ] && set ${line} ${1}
1285a280
MF
32elif [ "${MAKEFLAGS+set}${MAKELEVEL+set}" = "setset" ] ; then
33 # only warn when using a config target in the Makefile
34 cat <<-EOF
35
36 warning: Please migrate to boards.cfg. Failure to do so will
37 mean removal of your board in the next release.
38
39 EOF
40 sleep 5
a6862bc1
WD
41fi
42
7ebf7443
WD
43while [ $# -gt 0 ] ; do
44 case "$1" in
45 --) shift ; break ;;
46 -a) shift ; APPEND=yes ;;
ed7a196c 47 -n) shift ; BOARD_NAME="${1%_config}" ; shift ;;
804d83a5 48 -t) shift ; TARGETS="`echo $1 | sed 's:_: :g'` ${TARGETS}" ; shift ;;
7ebf7443
WD
49 *) break ;;
50 esac
51done
52
53[ $# -lt 4 ] && exit 1
9329cdfb 54[ $# -gt 7 ] && exit 1
7ebf7443 55
9329cdfb 56# Strip all options and/or _config suffixes
a6862bc1
WD
57CONFIG_NAME="${1%_config}"
58
9329cdfb 59[ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}"
a6862bc1
WD
60
61arch="$2"
0fd37b82
AM
62cpu=`echo $3 | awk 'BEGIN {FS = ":"} ; {print $1}'`
63spl_cpu=`echo $3 | awk 'BEGIN {FS = ":"} ; {print $2}'`
a6862bc1
WD
64if [ "$4" = "-" ] ; then
65 board=${BOARD_NAME}
66else
67 board="$4"
68fi
69[ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5"
70[ $# -gt 5 ] && [ "$6" != "-" ] && soc="$6"
9329cdfb
MV
71[ $# -gt 6 ] && [ "$7" != "-" ] && {
72 # check if we have a board config name in the options field
73 # the options field mave have a board config name and a list
74 # of options, both separated by a colon (':'); the options are
75 # separated by commas (',').
76 #
77 # Check for board name
78 tmp="${7%:*}"
79 if [ "$tmp" ] ; then
80 CONFIG_NAME="$tmp"
81 fi
82 # Check if we only have a colon...
83 if [ "${tmp}" != "$7" ] ; then
84 options=${7#*:}
85 TARGETS="`echo ${options} | sed 's:,: :g'` ${TARGETS}"
86 fi
87}
a6862bc1
WD
88
89if [ "${ARCH}" -a "${ARCH}" != "${arch}" ]; then
90 echo "Failed: \$ARCH=${ARCH}, should be '${arch}' for ${BOARD_NAME}" 1>&2
a8fa379d
NM
91 exit 1
92fi
93
9329cdfb
MV
94if [ "$options" ] ; then
95 echo "Configuring for ${BOARD_NAME} - Board: ${CONFIG_NAME}, Options: ${options}"
96else
97 echo "Configuring for ${BOARD_NAME} board..."
98fi
7ebf7443 99
7ebf7443
WD
100#
101# Create link to architecture specific headers
102#
f9328639
MB
103if [ "$SRCTREE" != "$OBJTREE" ] ; then
104 mkdir -p ${OBJTREE}/include
105 mkdir -p ${OBJTREE}/include2
106 cd ${OBJTREE}/include2
107 rm -f asm
a6862bc1
WD
108 ln -s ${SRCTREE}/arch/${arch}/include/asm asm
109 LNPREFIX=${SRCTREE}/arch/${arch}/include/asm/
f9328639 110 cd ../include
a9d8bc98 111 mkdir -p asm
f9328639
MB
112else
113 cd ./include
114 rm -f asm
a6862bc1 115 ln -s ../arch/${arch}/include/asm asm
f9328639
MB
116fi
117
819833af 118rm -f asm/arch
86c98882 119
a6862bc1
WD
120if [ -z "${soc}" ] ; then
121 ln -s ${LNPREFIX}arch-${cpu} asm/arch
86c98882 122else
a6862bc1 123 ln -s ${LNPREFIX}arch-${soc} asm/arch
86c98882 124fi
7ebf7443 125
a6862bc1 126if [ "${arch}" = "arm" ] ; then
819833af
PT
127 rm -f asm/proc
128 ln -s ${LNPREFIX}proc-armv asm/proc
b783edae
WD
129fi
130
7ebf7443
WD
131#
132# Create include file for Make
133#
0fd37b82
AM
134( echo "ARCH = ${arch}"
135 if [ ! -z "$spl_cpu" ] ; then
136 echo 'ifeq ($(CONFIG_SPL_BUILD),y)'
137 echo "CPU = ${spl_cpu}"
138 echo "else"
139 echo "CPU = ${cpu}"
140 echo "endif"
141 else
142 echo "CPU = ${cpu}"
143 fi
144 echo "BOARD = ${board}"
145
146 [ "${vendor}" ] && echo "VENDOR = ${vendor}"
147 [ "${soc}" ] && echo "SOC = ${soc}"
148 exit 0 ) > config.mk
7ebf7443 149
7ec1fedd 150# Assign board directory to BOARDIR variable
a6862bc1
WD
151if [ -z "${vendor}" ] ; then
152 BOARDDIR=${board}
7ec1fedd 153else
a6862bc1 154 BOARDDIR=${vendor}/${board}
7ec1fedd
SR
155fi
156
7ebf7443
WD
157#
158# Create board specific header file
159#
160if [ "$APPEND" = "yes" ] # Append to existing config file
161then
162 echo >> config.h
163else
164 > config.h # Create new config file
165fi
166echo "/* Automatically generated - do not edit */" >>config.h
804d83a5
WD
167
168for i in ${TARGETS} ; do
2901f889 169 i="`echo ${i} | sed '/=/ {s/=/ /;q; } ; { s/$/ 1/; }'`"
d24f2d32 170 echo "#define CONFIG_${i}" >>config.h ;
804d83a5
WD
171done
172
5e724ca2
SW
173echo "#define CONFIG_SYS_ARCH \"${arch}\"" >> config.h
174echo "#define CONFIG_SYS_CPU \"${cpu}\"" >> config.h
175echo "#define CONFIG_SYS_BOARD \"${board}\"" >> config.h
176
177[ "${vendor}" ] && echo "#define CONFIG_SYS_VENDOR \"${vendor}\"" >> config.h
178
179[ "${soc}" ] && echo "#define CONFIG_SYS_SOC \"${soc}\"" >> config.h
180
10c32ff5
MF
181cat << EOF >> config.h
182#define CONFIG_BOARDDIR board/$BOARDDIR
52f0aa83 183#include <config_cmd_defaults.h>
10c32ff5 184#include <config_defaults.h>
a6862bc1 185#include <configs/${CONFIG_NAME}.h>
10c32ff5 186#include <asm/config.h>
26750c8a 187#include <config_fallbacks.h>
7ac2fe2d 188#include <config_uncmd_spl.h>
10c32ff5 189EOF
7ebf7443
WD
190
191exit 0