diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-01-04 09:58:32 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-01-04 09:58:32 +0100 |
commit | 16aae7e3e8e00b7ea39a6cbedaea94dcc75f160f (patch) | |
tree | 2b2e96175e344106495c8a27a59055037549253b /scripts/update-sys | |
parent | 9f4a419ecb31241d54b0f2b244b0d159a17285c6 (diff) | |
parent | abbe4e3293c77bc5f6215a9eb4c1d20923bbf951 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'scripts/update-sys')
-rwxr-xr-x | scripts/update-sys | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/update-sys b/scripts/update-sys index 7b5688b83..dd1b4c9a5 100755 --- a/scripts/update-sys +++ b/scripts/update-sys @@ -1,4 +1,5 @@ #!/usr/bin/env bash +#set -x # 1. create Config.in.systems with all available target systems for each architecture # 2. if ADK configuration exist, create Config.in.arch/Config.in.system with fixed values # 3. exit when native system build is detected @@ -47,7 +48,7 @@ config $archsym boolean EOF -if [ "${system}" = "toolchain" ];then +if [ "${system}" = "toolchain" -o "${system}" = "qemu" ];then sys=${system}-$arch else sys=$system |