diff options
Diffstat (limited to 'scripts')
-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 |