diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-30 23:00:18 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-12-30 23:00:18 +0100 |
commit | 5bfdfbcee97c930c3c14dc3745089ac28e76ca41 (patch) | |
tree | 723a2310434afd85f68b3437e17917fcc6c5d623 /scripts/update-sys | |
parent | 16d7827ef1aec4aab89033ed1d47ca82fa3a3ba7 (diff) | |
parent | 58d31896056e604185acf3606b99257cea519dd1 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'scripts/update-sys')
-rwxr-xr-x | scripts/update-sys | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/scripts/update-sys b/scripts/update-sys new file mode 100755 index 000000000..6a40aff36 --- /dev/null +++ b/scripts/update-sys @@ -0,0 +1,48 @@ +#!/bin/sh +topdir=$(readlink -nf $(dirname $0)/.. 2>/dev/null || (cd $(dirname $0)/..; pwd -P)) + +defaults() { + echo 'source "target/config/Config.in.arch.default"' > $topdir/target/config/Config.in.arch + echo 'source "target/config/Config.in.arch.choice"' >> $topdir/target/config/Config.in.arch + echo 'source "target/config/Config.in.system.default"' > $topdir/target/config/Config.in.system + echo 'source "target/config/Config.in.system.choice"' >> $topdir/target/config/Config.in.system + exit 0 +} + +for i in $(ls $topdir/target/);do + if [ -d "$topdir/target/$i/sys-enabled" ];then + cat $topdir/target/$i/sys-enabled/* > $topdir/target/$i/Config.in.systems 2>/dev/null + fi +done +if [ -f $topdir/.config ];then +arch=$(grep ^ADK_TARGET_ARCH $topdir/.config|cut -f 2 -d = | sed -e 's#"##g') +systemsym=$(grep ^ADK_TARGET_SYSTEM_ $topdir/.config|cut -f 1 -d =) +system=$(grep ^ADK_TARGET_SYSTEM= $topdir/.config|cut -f 2 -d = | sed -e 's#"##g') +systems=$(grep ^ADK_TARGET_SYSTEM= $topdir/.config|cut -f 2 -d = | sed -e 's#"##g'|sed -e 's#-#_#g') +archsym=$(echo ADK_LINUX_$arch|tr '[:lower:]-' '[:upper:]') + +if [ -z "$arch" -o -z "$system" ];then + defaults +fi + +cat > $topdir/target/config/Config.in.arch << EOF +source "target/config/Config.in.arch.default" +config $archsym + bool +EOF + +cat > $topdir/target/config/Config.in.system << EOF +source "target/config/Config.in.system.default" +comment "Architecture: $arch" +comment "System: $system" + +config $systemsym + boolean + select $archsym +$(grep select $topdir/target/$arch/sys-available/$system) + default y +EOF +else + defaults +fi +exit 0 |