mkconfig 3.8 KB
Newer Older
W
wdenk 已提交
1 2 3 4 5
#!/bin/sh -e

# Script to create header files and links to configure
# U-Boot for a specific board.
#
W
wdenk 已提交
6
# Parameters:  Target  Architecture  CPU  Board [VENDOR] [SOC]
W
wdenk 已提交
7
#
8
# (C) 2002-2010 DENX Software Engineering, Wolfgang Denk <wd@denx.de>
W
wdenk 已提交
9 10 11
#

APPEND=no	# Default: Create new config file
12
BOARD_NAME=""	# Name to print in make output
13
TARGETS=""
W
wdenk 已提交
14

15 16 17 18 19
arch=""
cpu=""
board=""
vendor=""
soc=""
20
options=""
21 22 23 24 25 26 27 28 29 30 31

if [ \( $# -eq 2 \) -a \( "$1" = "-A" \) ] ; then
	# Automatic mode
	line=`egrep -i "^[[:space:]]*${2}[[:space:]]" boards.cfg` || {
		echo "make: *** No rule to make target \`$2_config'.  Stop." >&2
		exit 1
	}

	set ${line}
	# add default board name if needed
	[ $# = 3 ] && set ${line} ${1}
32 33 34 35 36 37 38 39 40
elif [ "${MAKEFLAGS+set}${MAKELEVEL+set}" = "setset" ] ; then
	# only warn when using a config target in the Makefile
	cat <<-EOF

	warning: Please migrate to boards.cfg.  Failure to do so will
	         mean removal of your board in the next release.

	EOF
	sleep 5
41 42
fi

W
wdenk 已提交
43 44 45 46
while [ $# -gt 0 ] ; do
	case "$1" in
	--) shift ; break ;;
	-a) shift ; APPEND=yes ;;
47
	-n) shift ; BOARD_NAME="${1%_config}" ; shift ;;
48
	-t) shift ; TARGETS="`echo $1 | sed 's:_: :g'` ${TARGETS}" ; shift ;;
W
wdenk 已提交
49 50 51 52 53
	*)  break ;;
	esac
done

[ $# -lt 4 ] && exit 1
54
[ $# -gt 7 ] && exit 1
W
wdenk 已提交
55

56
# Strip all options and/or _config suffixes
57 58
CONFIG_NAME="${1%_config}"

59
[ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}"
60 61 62 63 64 65 66 67 68 69

arch="$2"
cpu="$3"
if [ "$4" = "-" ] ; then
	board=${BOARD_NAME}
else
	board="$4"
fi
[ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5"
[ $# -gt 5 ] && [ "$6" != "-" ] && soc="$6"
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
[ $# -gt 6 ] && [ "$7" != "-" ] && {
	# check if we have a board config name in the options field
	# the options field mave have a board config name and a list
	# of options, both separated by a colon (':'); the options are
	# separated by commas (',').
	#
	# Check for board name
	tmp="${7%:*}"
	if [ "$tmp" ] ; then
		CONFIG_NAME="$tmp"
	fi
	# Check if we only have a colon...
	if [ "${tmp}" != "$7" ] ; then
		options=${7#*:}
		TARGETS="`echo ${options} | sed 's:,: :g'` ${TARGETS}"
	fi
}
87 88 89

if [ "${ARCH}" -a "${ARCH}" != "${arch}" ]; then
	echo "Failed: \$ARCH=${ARCH}, should be '${arch}' for ${BOARD_NAME}" 1>&2
90 91 92
	exit 1
fi

93 94 95 96 97
if [ "$options" ] ; then
	echo "Configuring for ${BOARD_NAME} - Board: ${CONFIG_NAME}, Options: ${options}"
else
	echo "Configuring for ${BOARD_NAME} board..."
fi
W
wdenk 已提交
98 99 100 101

#
# Create link to architecture specific headers
#
102 103 104 105 106
if [ "$SRCTREE" != "$OBJTREE" ] ; then
	mkdir -p ${OBJTREE}/include
	mkdir -p ${OBJTREE}/include2
	cd ${OBJTREE}/include2
	rm -f asm
107 108
	ln -s ${SRCTREE}/arch/${arch}/include/asm asm
	LNPREFIX=${SRCTREE}/arch/${arch}/include/asm/
109
	cd ../include
110
	mkdir -p asm
111 112 113
else
	cd ./include
	rm -f asm
114
	ln -s ../arch/${arch}/include/asm asm
115 116
fi

117
rm -f asm/arch
W
wdenk 已提交
118

119 120
if [ -z "${soc}" ] ; then
	ln -s ${LNPREFIX}arch-${cpu} asm/arch
W
wdenk 已提交
121
else
122
	ln -s ${LNPREFIX}arch-${soc} asm/arch
W
wdenk 已提交
123
fi
W
wdenk 已提交
124

125
if [ "${arch}" = "arm" ] ; then
126 127
	rm -f asm/proc
	ln -s ${LNPREFIX}proc-armv asm/proc
W
wdenk 已提交
128 129
fi

W
wdenk 已提交
130 131 132
#
# Create include file for Make
#
133 134 135
echo "ARCH   = ${arch}"  >  config.mk
echo "CPU    = ${cpu}"   >> config.mk
echo "BOARD  = ${board}" >> config.mk
W
wdenk 已提交
136

137
[ "${vendor}" ] && echo "VENDOR = ${vendor}" >> config.mk
W
wdenk 已提交
138

139
[ "${soc}"    ] && echo "SOC    = ${soc}"    >> config.mk
W
wdenk 已提交
140

141
# Assign board directory to BOARDIR variable
142 143
if [ -z "${vendor}" ] ; then
    BOARDDIR=${board}
144
else
145
    BOARDDIR=${vendor}/${board}
146 147
fi

W
wdenk 已提交
148 149 150 151 152 153 154 155 156 157
#
# Create board specific header file
#
if [ "$APPEND" = "yes" ]	# Append to existing config file
then
	echo >> config.h
else
	> config.h		# Create new config file
fi
echo "/* Automatically generated - do not edit */" >>config.h
158 159

for i in ${TARGETS} ; do
160
	i="`echo ${i} | sed '/=/ {s/=/	/;q; } ; { s/$/	1/; }'`"
161
	echo "#define CONFIG_${i}" >>config.h ;
162 163
done

164 165
cat << EOF >> config.h
#define CONFIG_BOARDDIR board/$BOARDDIR
166
#include <config_cmd_defaults.h>
167
#include <config_defaults.h>
168
#include <configs/${CONFIG_NAME}.h>
169
#include <asm/config.h>
170
#include <config_fallbacks.h>
171
EOF
W
wdenk 已提交
172 173

exit 0