diff options
-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 |