]>
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 <wd@denx.de> |
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} | |
32 | fi | |
33 | ||
7ebf7443 WD |
34 | while [ $# -gt 0 ] ; do |
35 | case "$1" in | |
36 | --) shift ; break ;; | |
37 | -a) shift ; APPEND=yes ;; | |
ed7a196c | 38 | -n) shift ; BOARD_NAME="${1%_config}" ; shift ;; |
804d83a5 | 39 | -t) shift ; TARGETS="`echo $1 | sed 's:_: :g'` ${TARGETS}" ; shift ;; |
7ebf7443 WD |
40 | *) break ;; |
41 | esac | |
42 | done | |
43 | ||
44 | [ $# -lt 4 ] && exit 1 | |
9329cdfb | 45 | [ $# -gt 7 ] && exit 1 |
7ebf7443 | 46 | |
9329cdfb | 47 | # Strip all options and/or _config suffixes |
a6862bc1 WD |
48 | CONFIG_NAME="${1%_config}" |
49 | ||
9329cdfb | 50 | [ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}" |
a6862bc1 WD |
51 | |
52 | arch="$2" | |
53 | cpu="$3" | |
54 | if [ "$4" = "-" ] ; then | |
55 | board=${BOARD_NAME} | |
56 | else | |
57 | board="$4" | |
58 | fi | |
59 | [ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5" | |
60 | [ $# -gt 5 ] && [ "$6" != "-" ] && soc="$6" | |
9329cdfb MV |
61 | [ $# -gt 6 ] && [ "$7" != "-" ] && { |
62 | # check if we have a board config name in the options field | |
63 | # the options field mave have a board config name and a list | |
64 | # of options, both separated by a colon (':'); the options are | |
65 | # separated by commas (','). | |
66 | # | |
67 | # Check for board name | |
68 | tmp="${7%:*}" | |
69 | if [ "$tmp" ] ; then | |
70 | CONFIG_NAME="$tmp" | |
71 | fi | |
72 | # Check if we only have a colon... | |
73 | if [ "${tmp}" != "$7" ] ; then | |
74 | options=${7#*:} | |
75 | TARGETS="`echo ${options} | sed 's:,: :g'` ${TARGETS}" | |
76 | fi | |
77 | } | |
a6862bc1 WD |
78 | |
79 | if [ "${ARCH}" -a "${ARCH}" != "${arch}" ]; then | |
80 | echo "Failed: \$ARCH=${ARCH}, should be '${arch}' for ${BOARD_NAME}" 1>&2 | |
a8fa379d NM |
81 | exit 1 |
82 | fi | |
83 | ||
9329cdfb MV |
84 | if [ "$options" ] ; then |
85 | echo "Configuring for ${BOARD_NAME} - Board: ${CONFIG_NAME}, Options: ${options}" | |
86 | else | |
87 | echo "Configuring for ${BOARD_NAME} board..." | |
88 | fi | |
7ebf7443 | 89 | |
7ebf7443 WD |
90 | # |
91 | # Create link to architecture specific headers | |
92 | # | |
f9328639 MB |
93 | if [ "$SRCTREE" != "$OBJTREE" ] ; then |
94 | mkdir -p ${OBJTREE}/include | |
95 | mkdir -p ${OBJTREE}/include2 | |
96 | cd ${OBJTREE}/include2 | |
97 | rm -f asm | |
a6862bc1 WD |
98 | ln -s ${SRCTREE}/arch/${arch}/include/asm asm |
99 | LNPREFIX=${SRCTREE}/arch/${arch}/include/asm/ | |
f9328639 | 100 | cd ../include |
a9d8bc98 | 101 | mkdir -p asm |
f9328639 MB |
102 | else |
103 | cd ./include | |
104 | rm -f asm | |
a6862bc1 | 105 | ln -s ../arch/${arch}/include/asm asm |
f9328639 MB |
106 | fi |
107 | ||
819833af | 108 | rm -f asm/arch |
86c98882 | 109 | |
a6862bc1 WD |
110 | if [ -z "${soc}" ] ; then |
111 | ln -s ${LNPREFIX}arch-${cpu} asm/arch | |
86c98882 | 112 | else |
a6862bc1 | 113 | ln -s ${LNPREFIX}arch-${soc} asm/arch |
86c98882 | 114 | fi |
7ebf7443 | 115 | |
a6862bc1 | 116 | if [ "${arch}" = "arm" ] ; then |
819833af PT |
117 | rm -f asm/proc |
118 | ln -s ${LNPREFIX}proc-armv asm/proc | |
b783edae WD |
119 | fi |
120 | ||
7ebf7443 WD |
121 | # |
122 | # Create include file for Make | |
123 | # | |
a6862bc1 WD |
124 | echo "ARCH = ${arch}" > config.mk |
125 | echo "CPU = ${cpu}" >> config.mk | |
126 | echo "BOARD = ${board}" >> config.mk | |
7ebf7443 | 127 | |
a6862bc1 | 128 | [ "${vendor}" ] && echo "VENDOR = ${vendor}" >> config.mk |
1d9f4105 | 129 | |
a6862bc1 | 130 | [ "${soc}" ] && echo "SOC = ${soc}" >> config.mk |
7ebf7443 | 131 | |
7ec1fedd | 132 | # Assign board directory to BOARDIR variable |
a6862bc1 WD |
133 | if [ -z "${vendor}" ] ; then |
134 | BOARDDIR=${board} | |
7ec1fedd | 135 | else |
a6862bc1 | 136 | BOARDDIR=${vendor}/${board} |
7ec1fedd SR |
137 | fi |
138 | ||
7ebf7443 WD |
139 | # |
140 | # Create board specific header file | |
141 | # | |
142 | if [ "$APPEND" = "yes" ] # Append to existing config file | |
143 | then | |
144 | echo >> config.h | |
145 | else | |
146 | > config.h # Create new config file | |
147 | fi | |
148 | echo "/* Automatically generated - do not edit */" >>config.h | |
804d83a5 WD |
149 | |
150 | for i in ${TARGETS} ; do | |
9329cdfb | 151 | i="`echo ${i} | sed '/=/ {s/=/\t/;q } ; { s/$/\t1/ }'`" |
d24f2d32 | 152 | echo "#define CONFIG_${i}" >>config.h ; |
804d83a5 WD |
153 | done |
154 | ||
10c32ff5 MF |
155 | cat << EOF >> config.h |
156 | #define CONFIG_BOARDDIR board/$BOARDDIR | |
52f0aa83 | 157 | #include <config_cmd_defaults.h> |
10c32ff5 | 158 | #include <config_defaults.h> |
a6862bc1 | 159 | #include <configs/${CONFIG_NAME}.h> |
10c32ff5 MF |
160 | #include <asm/config.h> |
161 | EOF | |
7ebf7443 WD |
162 | |
163 | exit 0 |