blob: 266addd705dad02c302a3f313c0d506040d77197 [file] [log] [blame]
wdenk7ebf7442002-11-02 23:17:16 +00001#!/bin/sh -e
2
3# Script to create header files and links to configure
4# U-Boot for a specific board.
5#
wdenk1d9f4102004-10-09 22:21:29 +00006# Parameters: Target Architecture CPU Board [VENDOR] [SOC]
wdenk7ebf7442002-11-02 23:17:16 +00007#
8# (C) 2002 DENX Software Engineering, Wolfgang Denk <wd@denx.de>
9#
10
11APPEND=no # Default: Create new config file
12
13while [ $# -gt 0 ] ; do
14 case "$1" in
15 --) shift ; break ;;
16 -a) shift ; APPEND=yes ;;
17 *) break ;;
18 esac
19done
20
21[ $# -lt 4 ] && exit 1
wdenk1d9f4102004-10-09 22:21:29 +000022[ $# -gt 6 ] && exit 1
wdenk7ebf7442002-11-02 23:17:16 +000023
24echo "Configuring for $1 board..."
25
26cd ./include
27
28#
29# Create link to architecture specific headers
30#
31rm -f asm
32ln -s asm-$2 asm
33rm -f asm-$2/arch
34ln -s arch-$3 asm-$2/arch
35
wdenkb783eda2003-06-25 22:26:29 +000036if [ "$2" = "arm" ] ; then
37 rm -f asm-$2/proc
38 ln -s proc-armv asm-$2/proc
39fi
40
wdenk7ebf7442002-11-02 23:17:16 +000041#
42# Create include file for Make
43#
wdenk1d9f4102004-10-09 22:21:29 +000044echo "ARCH = $2" > config.mk
45echo "CPU = $3" >> config.mk
46echo "BOARD = $4" >> config.mk
wdenk7ebf7442002-11-02 23:17:16 +000047
wdenk1d9f4102004-10-09 22:21:29 +000048[ "$5" ] && [ "$5" != "NULL" ] && echo "VENDOR = $5" >> config.mk
49
50[ "$6" ] && [ "$6" != "NULL" ] && echo "SOC = $6" >> config.mk
wdenk7ebf7442002-11-02 23:17:16 +000051
52#
53# Create board specific header file
54#
55if [ "$APPEND" = "yes" ] # Append to existing config file
56then
57 echo >> config.h
58else
59 > config.h # Create new config file
60fi
61echo "/* Automatically generated - do not edit */" >>config.h
62echo "#include <configs/$1.h>" >>config.h
63
64exit 0