]> git.ipfire.org Git - people/ms/u-boot.git/blame - mkconfig
NAND: add support for reading ONFI page table
[people/ms/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}
32fi
33
7ebf7443
WD
34while [ $# -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
42done
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
48CONFIG_NAME="${1%_config}"
49
9329cdfb 50[ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}"
a6862bc1
WD
51
52arch="$2"
53cpu="$3"
54if [ "$4" = "-" ] ; then
55 board=${BOARD_NAME}
56else
57 board="$4"
58fi
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
79if [ "${ARCH}" -a "${ARCH}" != "${arch}" ]; then
80 echo "Failed: \$ARCH=${ARCH}, should be '${arch}' for ${BOARD_NAME}" 1>&2
a8fa379d
NM
81 exit 1
82fi
83
9329cdfb
MV
84if [ "$options" ] ; then
85 echo "Configuring for ${BOARD_NAME} - Board: ${CONFIG_NAME}, Options: ${options}"
86else
87 echo "Configuring for ${BOARD_NAME} board..."
88fi
7ebf7443 89
7ebf7443
WD
90#
91# Create link to architecture specific headers
92#
f9328639
MB
93if [ "$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
102else
103 cd ./include
104 rm -f asm
a6862bc1 105 ln -s ../arch/${arch}/include/asm asm
f9328639
MB
106fi
107
819833af 108rm -f asm/arch
86c98882 109
a6862bc1
WD
110if [ -z "${soc}" ] ; then
111 ln -s ${LNPREFIX}arch-${cpu} asm/arch
86c98882 112else
a6862bc1 113 ln -s ${LNPREFIX}arch-${soc} asm/arch
86c98882 114fi
7ebf7443 115
a6862bc1 116if [ "${arch}" = "arm" ] ; then
819833af
PT
117 rm -f asm/proc
118 ln -s ${LNPREFIX}proc-armv asm/proc
b783edae
WD
119fi
120
7ebf7443
WD
121#
122# Create include file for Make
123#
a6862bc1
WD
124echo "ARCH = ${arch}" > config.mk
125echo "CPU = ${cpu}" >> config.mk
126echo "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
133if [ -z "${vendor}" ] ; then
134 BOARDDIR=${board}
7ec1fedd 135else
a6862bc1 136 BOARDDIR=${vendor}/${board}
7ec1fedd
SR
137fi
138
7ebf7443
WD
139#
140# Create board specific header file
141#
142if [ "$APPEND" = "yes" ] # Append to existing config file
143then
144 echo >> config.h
145else
146 > config.h # Create new config file
147fi
148echo "/* Automatically generated - do not edit */" >>config.h
804d83a5
WD
149
150for 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
153done
154
10c32ff5
MF
155cat << 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>
161EOF
7ebf7443
WD
162
163exit 0