From f3f7c9e655d9ec8cd44bbffbd33b56f3e47764e2 Mon Sep 17 00:00:00 2001 From: Eric Biederman Date: Mon, 13 Oct 2003 19:48:13 +0000 Subject: - Move config.py into the appropriate target subdirectory git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1213 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- targets/buildtarget | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'targets/buildtarget') diff --git a/targets/buildtarget b/targets/buildtarget index 88d09b7c88..a72cbf7997 100755 --- a/targets/buildtarget +++ b/targets/buildtarget @@ -19,7 +19,6 @@ config_lb=$1 config_dir=$lbpath/util/newconfig yapps2_py=$config_dir/yapps2.py config_g=$config_dir/config.g -config_py=$config_lb/config.py if [ ! -d $target_dir ]; then echo "Target directory not found" @@ -31,13 +30,19 @@ cd $target_dir if [ ! -f $config_lb ]; then config_lb=$1/Config.lb fi - if [ ! -f $config_lb ]; then echo "No target config file found" echo "Tried both $1 and $config_lb" exit 1 fi +target_subdir=`sed -n -e 's/^target \(.*\)$/\1/p' $config_lb` +target_subdir=`dirname $config_lb`/$target_subdir +config_py=$target_subdir/config.py + +if [ ! -d $target_subdir ] ; then + mkdir -p $target_subdir +fi if [ ! -f $config_py ]; then echo "No linuxbios config script found. Rebuilding it.." $PYTHON $yapps2_py $config_g $config_py -- cgit v1.2.3