Skip to content
Snippets Groups Projects
Commit f1702773 authored by Daniel Friesel's avatar Daniel Friesel
Browse files

exclude aemr and prototest apps from kconfig

parent 306a88af
No related branches found
No related tags found
No related merge requests found
......@@ -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}"'"'
......
prompt "Automatic Energy Model Refinement"
depends on !loop && !wakeup
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment