diff options
author | Daniel Friesel <daniel.friesel@uos.de> | 2020-08-31 13:43:29 +0200 |
---|---|---|
committer | Daniel Friesel <daniel.friesel@uos.de> | 2020-08-31 13:43:29 +0200 |
commit | f170277337c9238de5e88126bfb14097d406a97f (patch) | |
tree | 84d1015ada485476b1e6923c65fe2de5d6974e7a | |
parent | 306a88affdf0a67d3b3c40b72a1dd7ccf825f0d9 (diff) |
exclude aemr and prototest apps from kconfig
-rwxr-xr-x | script/mkconfig | 6 | ||||
-rw-r--r-- | src/app/aemr/Kconfig | 2 | ||||
-rw-r--r-- | src/app/aemr/no-kconfig | 0 | ||||
-rw-r--r-- | src/app/prototest/no-kconfig | 0 |
4 files changed, 6 insertions, 2 deletions
diff --git a/script/mkconfig b/script/mkconfig index f4e3517..14daf4e 100755 --- a/script/mkconfig +++ b/script/mkconfig @@ -69,6 +69,9 @@ bool "Application" EOF for app in $(ls -1 src/app); do + if [ -e "src/app/${app}/no-kconfig" ]; then + continue + fi echo config app_${app} | tr - _ if [ -e "src/app/${app}/Kconfig" ]; then echo bool @@ -83,6 +86,9 @@ echo endchoice echo for app in $(ls -1 src/app); do + if [ -e "src/app/${app}/no-kconfig" ]; then + continue + fi echo config app echo string echo default '"'"${app}"'"' diff --git a/src/app/aemr/Kconfig b/src/app/aemr/Kconfig deleted file mode 100644 index 9c5fc80..0000000 --- a/src/app/aemr/Kconfig +++ /dev/null @@ -1,2 +0,0 @@ -prompt "Automatic Energy Model Refinement" -depends on !loop && !wakeup diff --git a/src/app/aemr/no-kconfig b/src/app/aemr/no-kconfig new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/src/app/aemr/no-kconfig diff --git a/src/app/prototest/no-kconfig b/src/app/prototest/no-kconfig new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/src/app/prototest/no-kconfig |