]>
Commit | Line | Data |
---|---|---|
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 <[email protected]> |
7ebf7443 WD |
9 | # |
10 | ||
11 | APPEND=no # Default: Create new config file | |
5078cce8 | 12 | BOARD_NAME="" # Name to print in make output |
804d83a5 | 13 | TARGETS="" |
7ebf7443 | 14 | |
a6862bc1 WD |
15 | arch="" |
16 | cpu="" | |
17 | board="" | |
18 | vendor="" | |
19 | soc="" | |
9329cdfb | 20 | options="" |
a6862bc1 WD |
21 | |
22 | if [ \( $# -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 |
32 | elif [ "${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 |
41 | fi |
42 | ||
7ebf7443 WD |
43 | while [ $# -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 | |
51 | done | |
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 |
57 | CONFIG_NAME="${1%_config}" |
58 | ||
9329cdfb | 59 | [ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}" |
a6862bc1 WD |
60 | |
61 | arch="$2" | |
62 | cpu="$3" | |
63 | if [ "$4" = "-" ] ; then | |
64 | board=${BOARD_NAME} | |
65 | else | |
66 | board="$4" | |
67 | fi | |
68 | [ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5" | |
69 | [ $# -gt 5 ] && [ "$6" != "-" ] && soc="$6" | |
9329cdfb MV |
70 | [ $# -gt 6 ] && [ "$7" != "-" ] && { |
71 | # check if we have a board config name in the options field | |
72 | # the options field mave have a board config name and a list | |
73 | # of options, both separated by a colon (':'); the options are | |
74 | # separated by commas (','). | |
75 | # | |
76 | # Check for board name | |
77 | tmp="${7%:*}" | |
78 | if [ "$tmp" ] ; then | |
79 | CONFIG_NAME="$tmp" | |
80 | fi | |
81 | # Check if we only have a colon... | |
82 | if [ "${tmp}" != "$7" ] ; then | |
83 | options=${7#*:} | |
84 | TARGETS="`echo ${options} | sed 's:,: :g'` ${TARGETS}" | |
85 | fi | |
86 | } | |
a6862bc1 WD |
87 | |
88 | if [ "${ARCH}" -a "${ARCH}" != "${arch}" ]; then | |
89 | echo "Failed: \$ARCH=${ARCH}, should be '${arch}' for ${BOARD_NAME}" 1>&2 | |
a8fa379d NM |
90 | exit 1 |
91 | fi | |
92 | ||
9329cdfb MV |
93 | if [ "$options" ] ; then |
94 | echo "Configuring for ${BOARD_NAME} - Board: ${CONFIG_NAME}, Options: ${options}" | |
95 | else | |
96 | echo "Configuring for ${BOARD_NAME} board..." | |
97 | fi | |
7ebf7443 | 98 | |
7ebf7443 WD |
99 | # |
100 | # Create link to architecture specific headers | |
101 | # | |
f9328639 MB |
102 | if [ "$SRCTREE" != "$OBJTREE" ] ; then |
103 | mkdir -p ${OBJTREE}/include | |
104 | mkdir -p ${OBJTREE}/include2 | |
105 | cd ${OBJTREE}/include2 | |
106 | rm -f asm | |
a6862bc1 WD |
107 | ln -s ${SRCTREE}/arch/${arch}/include/asm asm |
108 | LNPREFIX=${SRCTREE}/arch/${arch}/include/asm/ | |
f9328639 | 109 | cd ../include |
a9d8bc98 | 110 | mkdir -p asm |
f9328639 MB |
111 | else |
112 | cd ./include | |
113 | rm -f asm | |
a6862bc1 | 114 | ln -s ../arch/${arch}/include/asm asm |
f9328639 MB |
115 | fi |
116 | ||
819833af | 117 | rm -f asm/arch |
86c98882 | 118 | |
a6862bc1 WD |
119 | if [ -z "${soc}" ] ; then |
120 | ln -s ${LNPREFIX}arch-${cpu} asm/arch | |
86c98882 | 121 | else |
a6862bc1 | 122 | ln -s ${LNPREFIX}arch-${soc} asm/arch |
86c98882 | 123 | fi |
7ebf7443 | 124 | |
a6862bc1 | 125 | if [ "${arch}" = "arm" ] ; then |
819833af PT |
126 | rm -f asm/proc |
127 | ln -s ${LNPREFIX}proc-armv asm/proc | |
b783edae WD |
128 | fi |
129 | ||
7ebf7443 WD |
130 | # |
131 | # Create include file for Make | |
132 | # | |
a6862bc1 WD |
133 | echo "ARCH = ${arch}" > config.mk |
134 | echo "CPU = ${cpu}" >> config.mk | |
135 | echo "BOARD = ${board}" >> config.mk | |
7ebf7443 | 136 | |
a6862bc1 | 137 | [ "${vendor}" ] && echo "VENDOR = ${vendor}" >> config.mk |
1d9f4105 | 138 | |
a6862bc1 | 139 | [ "${soc}" ] && echo "SOC = ${soc}" >> config.mk |
7ebf7443 | 140 | |
7ec1fedd | 141 | # Assign board directory to BOARDIR variable |
a6862bc1 WD |
142 | if [ -z "${vendor}" ] ; then |
143 | BOARDDIR=${board} | |
7ec1fedd | 144 | else |
a6862bc1 | 145 | BOARDDIR=${vendor}/${board} |
7ec1fedd SR |
146 | fi |
147 | ||
7ebf7443 WD |
148 | # |
149 | # Create board specific header file | |
150 | # | |
151 | if [ "$APPEND" = "yes" ] # Append to existing config file | |
152 | then | |
153 | echo >> config.h | |
154 | else | |
155 | > config.h # Create new config file | |
156 | fi | |
157 | echo "/* Automatically generated - do not edit */" >>config.h | |
804d83a5 WD |
158 | |
159 | for i in ${TARGETS} ; do | |
2901f889 | 160 | i="`echo ${i} | sed '/=/ {s/=/ /;q; } ; { s/$/ 1/; }'`" |
d24f2d32 | 161 | echo "#define CONFIG_${i}" >>config.h ; |
804d83a5 WD |
162 | done |
163 | ||
10c32ff5 MF |
164 | cat << EOF >> config.h |
165 | #define CONFIG_BOARDDIR board/$BOARDDIR | |
52f0aa83 | 166 | #include <config_cmd_defaults.h> |
10c32ff5 | 167 | #include <config_defaults.h> |
a6862bc1 | 168 | #include <configs/${CONFIG_NAME}.h> |
10c32ff5 | 169 | #include <asm/config.h> |
26750c8a | 170 | #include <config_fallbacks.h> |
10c32ff5 | 171 | EOF |
7ebf7443 WD |
172 | |
173 | exit 0 |