]> git.ipfire.org Git - people/ms/u-boot.git/blame_incremental - mkconfig
correct a syntax typo in at91_matrix.h
[people/ms/u-boot.git] / mkconfig
... / ...
CommitLineData
1#!/bin/sh -e
2
3# Script to create header files and links to configure
4# U-Boot for a specific board.
5#
6# Parameters: Target Architecture CPU Board [VENDOR] [SOC]
7#
8# (C) 2002-2006 DENX Software Engineering, Wolfgang Denk <wd@denx.de>
9#
10
11APPEND=no # Default: Create new config file
12BOARD_NAME="" # Name to print in make output
13TARGETS=""
14
15while [ $# -gt 0 ] ; do
16 case "$1" in
17 --) shift ; break ;;
18 -a) shift ; APPEND=yes ;;
19 -n) shift ; BOARD_NAME="${1%%_config}" ; shift ;;
20 -t) shift ; TARGETS="`echo $1 | sed 's:_: :g'` ${TARGETS}" ; shift ;;
21 *) break ;;
22 esac
23done
24
25[ "${BOARD_NAME}" ] || BOARD_NAME="$1"
26
27[ $# -lt 4 ] && exit 1
28[ $# -gt 6 ] && exit 1
29
30if [ "${ARCH}" -a "${ARCH}" != "$2" ]; then
31 echo "Failed: \$ARCH=${ARCH}, should be '$2' for ${BOARD_NAME}" 1>&2
32 exit 1
33fi
34
35echo "Configuring for ${BOARD_NAME} board..."
36
37#
38# Create link to architecture specific headers
39#
40if [ "$SRCTREE" != "$OBJTREE" ] ; then
41 mkdir -p ${OBJTREE}/include
42 mkdir -p ${OBJTREE}/include2
43 cd ${OBJTREE}/include2
44 rm -f asm
45 ln -s ${SRCTREE}/include/asm-$2 asm
46 LNPREFIX="../../include2/asm/"
47 cd ../include
48 rm -rf asm-$2
49 rm -f asm
50 mkdir asm-$2
51 ln -s asm-$2 asm
52else
53 cd ./include
54 rm -f asm
55 ln -s asm-$2 asm
56fi
57
58rm -f asm-$2/arch
59
60if [ -z "$6" -o "$6" = "NULL" ] ; then
61 ln -s ${LNPREFIX}arch-$3 asm-$2/arch
62else
63 ln -s ${LNPREFIX}arch-$6 asm-$2/arch
64fi
65
66if [ "$2" = "arm" ] ; then
67 rm -f asm-$2/proc
68 ln -s ${LNPREFIX}proc-armv asm-$2/proc
69fi
70
71#
72# Create include file for Make
73#
74echo "ARCH = $2" > config.mk
75echo "CPU = $3" >> config.mk
76echo "BOARD = $4" >> config.mk
77
78[ "$5" ] && [ "$5" != "NULL" ] && echo "VENDOR = $5" >> config.mk
79
80[ "$6" ] && [ "$6" != "NULL" ] && echo "SOC = $6" >> config.mk
81
82# Assign board directory to BOARDIR variable
83if [ -z "$5" -o "$5" = "NULL" ] ; then
84 BOARDDIR=$4
85else
86 BOARDDIR=$5/$4
87fi
88
89#
90# Create board specific header file
91#
92if [ "$APPEND" = "yes" ] # Append to existing config file
93then
94 echo >> config.h
95else
96 > config.h # Create new config file
97fi
98echo "/* Automatically generated - do not edit */" >>config.h
99
100for i in ${TARGETS} ; do
101 echo "#define CONFIG_MK_${i} 1" >>config.h ;
102done
103
104cat << EOF >> config.h
105#define CONFIG_BOARDDIR board/$BOARDDIR
106#include <config_defaults.h>
107#include <configs/$1.h>
108#include <asm/config.h>
109EOF
110
111exit 0