Blame view

mkconfig 4.15 KB
7ebf7443a   wdenk   Initial revision
1
2
3
4
5
  #!/bin/sh -e
  
  # Script to create header files and links to configure
  # U-Boot for a specific board.
  #
1d9f41050   wdenk   Patch by Steven S...
6
  # Parameters:  Target  Architecture  CPU  Board [VENDOR] [SOC]
7ebf7443a   wdenk   Initial revision
7
  #
9329cdfb3   Marek Vasut   Build: Add "board...
8
  # (C) 2002-2010 DENX Software Engineering, Wolfgang Denk <wd@denx.de>
7ebf7443a   wdenk   Initial revision
9
10
11
  #
  
  APPEND=no	# Default: Create new config file
5078cce81   Wolfgang Denk   * Cleanup TQM5200...
12
  BOARD_NAME=""	# Name to print in make output
804d83a56   Wolfgang Denk   mkconfig: split t...
13
  TARGETS=""
7ebf7443a   wdenk   Initial revision
14

a6862bc12   Wolfgang Denk   Makefile/mkconfig...
15
16
17
18
19
  arch=""
  cpu=""
  board=""
  vendor=""
  soc=""
9329cdfb3   Marek Vasut   Build: Add "board...
20
  options=""
a6862bc12   Wolfgang Denk   Makefile/mkconfig...
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}
1285a2808   Mike Frysinger   mkconfig: start d...
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
a6862bc12   Wolfgang Denk   Makefile/mkconfig...
41
  fi
7ebf7443a   wdenk   Initial revision
42
43
44
45
  while [ $# -gt 0 ] ; do
  	case "$1" in
  	--) shift ; break ;;
  	-a) shift ; APPEND=yes ;;
ed7a196cd   Wolfgang Denk   Makefile: simplif...
46
  	-n) shift ; BOARD_NAME="${1%_config}" ; shift ;;
804d83a56   Wolfgang Denk   mkconfig: split t...
47
  	-t) shift ; TARGETS="`echo $1 | sed 's:_: :g'` ${TARGETS}" ; shift ;;
7ebf7443a   wdenk   Initial revision
48
49
50
51
52
  	*)  break ;;
  	esac
  done
  
  [ $# -lt 4 ] && exit 1
9329cdfb3   Marek Vasut   Build: Add "board...
53
  [ $# -gt 7 ] && exit 1
7ebf7443a   wdenk   Initial revision
54

9329cdfb3   Marek Vasut   Build: Add "board...
55
  # Strip all options and/or _config suffixes
a6862bc12   Wolfgang Denk   Makefile/mkconfig...
56
  CONFIG_NAME="${1%_config}"
9329cdfb3   Marek Vasut   Build: Add "board...
57
  [ "${BOARD_NAME}" ] || BOARD_NAME="${1%_config}"
a6862bc12   Wolfgang Denk   Makefile/mkconfig...
58
59
60
61
62
63
64
65
66
67
  
  arch="$2"
  cpu="$3"
  if [ "$4" = "-" ] ; then
  	board=${BOARD_NAME}
  else
  	board="$4"
  fi
  [ $# -gt 4 ] && [ "$5" != "-" ] && vendor="$5"
  [ $# -gt 5 ] && [ "$6" != "-" ] && soc="$6"
9329cdfb3   Marek Vasut   Build: Add "board...
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
  [ $# -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
  }
a6862bc12   Wolfgang Denk   Makefile/mkconfig...
85
86
87
  
  if [ "${ARCH}" -a "${ARCH}" != "${arch}" ]; then
  	echo "Failed: \$ARCH=${ARCH}, should be '${arch}' for ${BOARD_NAME}" 1>&2
a8fa379d4   Nishanth Menon   mkconfig: deny me...
88
89
  	exit 1
  fi
9329cdfb3   Marek Vasut   Build: Add "board...
90
91
92
93
94
  if [ "$options" ] ; then
  	echo "Configuring for ${BOARD_NAME} - Board: ${CONFIG_NAME}, Options: ${options}"
  else
  	echo "Configuring for ${BOARD_NAME} board..."
  fi
7ebf7443a   wdenk   Initial revision
95

7ebf7443a   wdenk   Initial revision
96
97
98
  #
  # Create link to architecture specific headers
  #
f93286397   Marian Balakowicz   Add support for a...
99
100
101
102
103
  if [ "$SRCTREE" != "$OBJTREE" ] ; then
  	mkdir -p ${OBJTREE}/include
  	mkdir -p ${OBJTREE}/include2
  	cd ${OBJTREE}/include2
  	rm -f asm
a6862bc12   Wolfgang Denk   Makefile/mkconfig...
104
105
  	ln -s ${SRCTREE}/arch/${arch}/include/asm asm
  	LNPREFIX=${SRCTREE}/arch/${arch}/include/asm/
f93286397   Marian Balakowicz   Add support for a...
106
  	cd ../include
a9d8bc980   Loïc Minier   Don't add symlink...
107
  	mkdir -p asm
f93286397   Marian Balakowicz   Add support for a...
108
109
110
  else
  	cd ./include
  	rm -f asm
a6862bc12   Wolfgang Denk   Makefile/mkconfig...
111
  	ln -s ../arch/${arch}/include/asm asm
f93286397   Marian Balakowicz   Add support for a...
112
  fi
819833af3   Peter Tyser   Move architecture...
113
  rm -f asm/arch
86c988820   wdenk   Patch by Steven S...
114

a6862bc12   Wolfgang Denk   Makefile/mkconfig...
115
116
  if [ -z "${soc}" ] ; then
  	ln -s ${LNPREFIX}arch-${cpu} asm/arch
86c988820   wdenk   Patch by Steven S...
117
  else
a6862bc12   Wolfgang Denk   Makefile/mkconfig...
118
  	ln -s ${LNPREFIX}arch-${soc} asm/arch
86c988820   wdenk   Patch by Steven S...
119
  fi
7ebf7443a   wdenk   Initial revision
120

a6862bc12   Wolfgang Denk   Makefile/mkconfig...
121
  if [ "${arch}" = "arm" ] ; then
819833af3   Peter Tyser   Move architecture...
122
123
  	rm -f asm/proc
  	ln -s ${LNPREFIX}proc-armv asm/proc
b783edaee   wdenk   * Header file cle...
124
  fi
7ebf7443a   wdenk   Initial revision
125
126
127
  #
  # Create include file for Make
  #
a6862bc12   Wolfgang Denk   Makefile/mkconfig...
128
129
130
  echo "ARCH   = ${arch}"  >  config.mk
  echo "CPU    = ${cpu}"   >> config.mk
  echo "BOARD  = ${board}" >> config.mk
7ebf7443a   wdenk   Initial revision
131

a6862bc12   Wolfgang Denk   Makefile/mkconfig...
132
  [ "${vendor}" ] && echo "VENDOR = ${vendor}" >> config.mk
1d9f41050   wdenk   Patch by Steven S...
133

a6862bc12   Wolfgang Denk   Makefile/mkconfig...
134
  [ "${soc}"    ] && echo "SOC    = ${soc}"    >> config.mk
7ebf7443a   wdenk   Initial revision
135

7ec1fedda   Stefan Roese   mkconfig: Create ...
136
  # Assign board directory to BOARDIR variable
a6862bc12   Wolfgang Denk   Makefile/mkconfig...
137
138
  if [ -z "${vendor}" ] ; then
      BOARDDIR=${board}
7ec1fedda   Stefan Roese   mkconfig: Create ...
139
  else
a6862bc12   Wolfgang Denk   Makefile/mkconfig...
140
      BOARDDIR=${vendor}/${board}
7ec1fedda   Stefan Roese   mkconfig: Create ...
141
  fi
7ebf7443a   wdenk   Initial revision
142
143
144
145
146
147
148
149
150
151
  #
  # 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
804d83a56   Wolfgang Denk   mkconfig: split t...
152
153
  
  for i in ${TARGETS} ; do
2901f8891   Jeroen Hofstee   mkconfig: also cr...
154
  	i="`echo ${i} | sed '/=/ {s/=/	/;q; } ; { s/$/	1/; }'`"
d24f2d321   Wolfgang Denk   mkconfig: change ...
155
  	echo "#define CONFIG_${i}" >>config.h ;
804d83a56   Wolfgang Denk   mkconfig: split t...
156
  done
5e724ca2b   Stephen Warren   Add env vars desc...
157
158
159
160
161
162
163
  echo "#define CONFIG_SYS_ARCH  \"${arch}\""  >> config.h
  echo "#define CONFIG_SYS_CPU   \"${cpu}\""   >> config.h
  echo "#define CONFIG_SYS_BOARD \"${board}\"" >> config.h
  
  [ "${vendor}" ] && echo "#define CONFIG_SYS_VENDOR \"${vendor}\"" >> config.h
  
  [ "${soc}"    ] && echo "#define CONFIG_SYS_SOC    \"${soc}\""    >> config.h
10c32ff59   Mike Frysinger   config_defaults.h...
164
165
  cat << EOF >> config.h
  #define CONFIG_BOARDDIR board/$BOARDDIR
52f0aa835   Mike Frysinger   config_cmd_defaul...
166
  #include <config_cmd_defaults.h>
10c32ff59   Mike Frysinger   config_defaults.h...
167
  #include <config_defaults.h>
a6862bc12   Wolfgang Denk   Makefile/mkconfig...
168
  #include <configs/${CONFIG_NAME}.h>
10c32ff59   Mike Frysinger   config_defaults.h...
169
  #include <asm/config.h>
26750c8ae   Tom Rini   CONFIG_SYS_BAUDRA...
170
  #include <config_fallbacks.h>
10c32ff59   Mike Frysinger   config_defaults.h...
171
  EOF
7ebf7443a   wdenk   Initial revision
172
173
  
  exit 0