summaryrefslogtreecommitdiff
path: root/scripts/getsystems
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/getsystems')
-rwxr-xr-xscripts/getsystems14
1 files changed, 0 insertions, 14 deletions
diff --git a/scripts/getsystems b/scripts/getsystems
deleted file mode 100755
index 3ea829e71..000000000
--- a/scripts/getsystems
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env bash
-
-if [ ! -z "$1" ];then
- systems=$(grep -h config target/$1/sys-available/*|cut -d " " -f 2)
-else
- systems=$(grep -h config target/*/sys-available/*|cut -d " " -f 2)
-fi
-
-for i in $systems;do
- system=${i#ADK_TARGET_SYSTEM_}
- system=$(echo $system|tr '[:upper:]_' '[:lower:]-')
- system=$(echo $system|sed 's#x86-64#x86_64#')
- echo $system
-done