summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-05-29 21:53:48 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-05-29 21:56:32 +0200
commit1f45d59becbe17399a9c456741231728c8fa3ec1 (patch)
tree851abed98a4fd7cfa1472d9dee240c87e36fc327 /scripts
parent4166ce350782cafb81bd730ffb5cacd28ef5d070 (diff)
rework directory names
Sorry, need to change this again. Toolchain and target directories can not be usefully shared between systems with the same cpu arch. There are to many optimizations for gcc supplied libraries involved. Simplify even for qemu targets.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/create-sys6
1 files changed, 1 insertions, 5 deletions
diff --git a/scripts/create-sys b/scripts/create-sys
index e60428a45..3f2dc2c81 100755
--- a/scripts/create-sys
+++ b/scripts/create-sys
@@ -19,11 +19,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" -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
- fi
+ printf "\tdefault \"${system}\" if ADK_$systemu\n" >> $topdir/target/config/Config.in.system.default
done
for i in $(ls $topdir/target/);do