aboutsummaryrefslogtreecommitdiff
path: root/targets/buildtarget
blob: f519fd36b78c4cce2ad1b2f6dfe1891582cfd30a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/bin/sh

# Target build script

if [ $# -lt 1 ]; then
	echo "usage: buildtarget target [path-to-linuxbios]"
	exit 1
fi

if [ $# -gt 1 ]; then
	lbpath=$2
else
	lbpath=`pwd`
	lbpath=`dirname $lbpath`
fi

target_dir=$lbpath/targets
config_lb=$1/Config.lb
config_py=$lbpath/util/newconfig/config.py

if [ ! -d $target_dir ]; then
	echo "Target directory not found"
	exit 1
fi

cd $target_dir

if [ ! -f $config_lb ]; then
	echo "No target config file found"
	exit 1
fi

if [ ! -f $config_py ]; then
	echo "No linuxbios config file found"
	exit 1
fi

python $config_py $config_lb $lbpath

exit $?