Commit 0d0dbccc authored by Daniel Friesel's avatar Daniel Friesel
Browse files

automatically exclude apps without Kconfig

parent 6f5cc702
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ bool "Application"
EOF

for app in $(ls -1 src/app); do
	if [ -e "src/app/${app}/no-kconfig" ]; then
	if [ ! -e "src/app/${app}/Kconfig" ]; then
		continue
	fi
	echo config app_${app} | tr - _
@@ -86,7 +86,7 @@ echo endchoice
echo

for app in $(ls -1 src/app); do
	if [ -e "src/app/${app}/no-kconfig" ]; then
	if [ ! -e "src/app/${app}/Kconfig" ]; then
		continue
	fi
	echo config app

src/app/aemr/no-kconfig

deleted100644 → 0
+0 −0

Empty file deleted.

src/app/prototest/no-kconfig

deleted100644 → 0
+0 −0

Empty file deleted.