blob: e366267181696f7c777ae2f960adf6aaeb8d42e7 [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
wdenk86c98882005-04-03 14:26:46 +000034
35if [ -z "$6" -o "$6" == "NULL" ] ; then
36 ln -s arch-$3 asm-$2/arch
37else
38 ln -s arch-$6 asm-$2/arch
39fi
wdenk7ebf7442002-11-02 23:17:16 +000040
wdenkb783eda2003-06-25 22:26:29 +000041if [ "$2" = "arm" ] ; then
42 rm -f asm-$2/proc
43 ln -s proc-armv asm-$2/proc
44fi
45
wdenk7ebf7442002-11-02 23:17:16 +000046#
47# Create include file for Make
48#
wdenk1d9f4102004-10-09 22:21:29 +000049echo "ARCH = $2" > config.mk
50echo "CPU = $3" >> config.mk
51echo "BOARD = $4" >> config.mk
wdenk7ebf7442002-11-02 23:17:16 +000052
wdenk1d9f4102004-10-09 22:21:29 +000053[ "$5" ] && [ "$5" != "NULL" ] && echo "VENDOR = $5" >> config.mk
54
55[ "$6" ] && [ "$6" != "NULL" ] && echo "SOC = $6" >> config.mk
wdenk7ebf7442002-11-02 23:17:16 +000056
57#
58# Create board specific header file
59#
60if [ "$APPEND" = "yes" ] # Append to existing config file
61then
62 echo >> config.h
63else
64 > config.h # Create new config file
65fi
66echo "/* Automatically generated - do not edit */" >>config.h
67echo "#include <configs/$1.h>" >>config.h
68
69exit 0