diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-09-30 16:22:31 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-09-30 16:22:31 +0200 |
commit | 9e2f663b590fb3f1fcf2f03fe057d129bf58764a (patch) | |
tree | 852729f8936531a15631a0a5ae5608b9355ee227 /scripts | |
parent | 48d5f90b13f0cf886417a2b408547a7310e56102 (diff) | |
parent | f1ed9c711fd901acee1f8f22f8e7a4440f181fe5 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/create-sys | 2 | ||||
-rwxr-xr-x | scripts/update-sys | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/create-sys b/scripts/create-sys index c34a6ac3a..d34a0e443 100755 --- a/scripts/create-sys +++ b/scripts/create-sys @@ -32,7 +32,7 @@ for i in $systems;do systemu=$(echo $system|tr '[:upper:]' '[:lower:]') system=$(echo $system|tr '[:upper:]_' '[:lower:]-') system=$(echo $system|sed 's#x86-64#x86_64#') - if [ "${system%-*}" = "toolchain" -o "${system%-*}" = "qemu" -o "${system%-*}" = "vbox" ];then + if [ "${system%-*}" = "toolchain" -o "${system%-*}" = "qemu" -o "${system%-*}" = "vbox" -o "${system%-*}" = "aranym" ];then printf "\tdefault \"${system%-*}\" if ADK_$systemu\n" >> $topdir/target/config/Config.in.system.default else printf "\tdefault \"${system}\" if ADK_$systemu\n" >> $topdir/target/config/Config.in.system.default diff --git a/scripts/update-sys b/scripts/update-sys index 64b56a7dd..6c82dc626 100755 --- a/scripts/update-sys +++ b/scripts/update-sys @@ -49,7 +49,7 @@ config $archsym boolean EOF -if [ "${system}" = "toolchain" -o "${system}" = "qemu" -o "${system}" = "vbox" ];then +if [ "${system}" = "toolchain" -o "${system}" = "qemu" -o "${system}" = "vbox" -o "${system}" = "aranym" ];then sys=${system}-$cpuarch else sys=$system |