diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-01-03 20:52:25 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-01-03 20:52:25 +0100 |
commit | b72c8fafc0bd2049b93936685b7287e55ce18cba (patch) | |
tree | 437020b9dc28ea4cdb3036783b36ff3c46a0e783 /scripts/update-sys | |
parent | 44f740c6f1131aab5f19635003854a0f3f39074a (diff) |
fix qemu targets, make them bootable again
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 |