- Correct the logic in buildtarget to match the logic in config.g for select which
[coreboot.git] / targets / buildtarget
1 #!/bin/sh
2 PYTHON=python
3 # Target build script
4
5 if [ $# -lt 1 ]; then
6         echo "usage: buildtarget target [path-to-linuxbios]"
7         exit 1
8 fi
9
10 if [ $# -gt 1 ]; then
11         lbpath=$2
12 else
13         lbpath=`pwd`
14         lbpath=`dirname $lbpath`
15 fi
16
17 target_dir=$lbpath/targets
18 config_lb=$1
19 config_dir=$lbpath/util/newconfig
20 yapps2_py=$config_dir/yapps2.py
21 config_g=$config_dir/config.g
22
23 if [ ! -d $target_dir ]; then
24         echo "Target directory not found"
25         exit 1
26 fi
27
28 cd $target_dir
29
30 if [ ! -f $config_lb ]; then
31         config_lb=$1/Config.lb
32 fi
33 if [ ! -f $config_lb ]; then
34         echo "No target config file found"
35         echo "Tried both $1 and $config_lb"
36         exit 1
37 fi
38
39 build_dir=`dirname $config_lb`/`sed -n -e 's/^target \(.*\)$/\1/p' $config_lb`
40 echo $build_dir
41 config_py=$build_dir/config.py
42
43 if [ ! -d $target_subdir ] ; then
44         mkdir -p $target_subdir
45 fi
46 if [ ! -f $config_py ]; then
47         echo "No linuxbios config script found. Rebuilding it.."
48         $PYTHON $yapps2_py $config_g $config_py
49 fi
50
51 # make sure config.py is up-to-date
52
53 export PYTHONPATH=$config_dir
54 $PYTHON $config_py $config_lb $lbpath
55
56 exit $?