summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-03-06 12:25:47 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-03-06 12:25:47 +0100
commitb563b8fd141c741932c110c2901fab555f5b22ef (patch)
tree903aa1734284f45d91a1c0a41492358b43a9a930 /scripts
parent3723786959d32721306929a3a073fc9806b51ff4 (diff)
get rid of ADK_NATIVE mode, it is not regulary tested and the results where not satisfying.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/update-sys11
1 files changed, 0 insertions, 11 deletions
diff --git a/scripts/update-sys b/scripts/update-sys
index 6c82dc626..47b73d52b 100755
--- a/scripts/update-sys
+++ b/scripts/update-sys
@@ -14,15 +14,6 @@ defaults() {
exit 0
}
-check_native() {
- native=$(grep ^ADK_LINUX_NATIVE $topdir/.config)
- if [ ! -z "$native" ];then
- exit 0
- fi
-}
-
-touch $topdir/target/config/Config.in.native
-
for i in $(ls $topdir/target/);do
if [ -d "$topdir/target/$i/sys-enabled" ];then
cat $topdir/target/$i/sys-enabled/* > $topdir/target/$i/Config.in.systems 2>/dev/null
@@ -30,8 +21,6 @@ for i in $(ls $topdir/target/);do
done
if [ -f $topdir/.config ];then
-check_native
-
arch=$(grep ^ADK_TARGET_ARCH $topdir/.config|cut -f 2 -d = | sed -e 's#"##g')
cpuarch=$(grep ^ADK_TARGET_CPU_ARCH $topdir/.config|cut -f 2 -d = | sed -e 's#"##g')
systemsym=$(grep ^ADK_TARGET_SYSTEM_ $topdir/.config|cut -f 1 -d =)