Browse Source

waldux: enable tasks

Waldemar Brodkorb 5 years ago
parent
commit
b8de5c7579
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/create-menu

+ 1 - 1
scripts/create-menu

@@ -15,7 +15,7 @@ printf "source target/config/Config.in.system.choice\n" >> target/config/Config.
 if [ -d "$topdir/tasks" -o -n "$ADK_CUSTOM_TASKS_DIR" ];then
 	printf "# autogenerated via scripts/create-menu\n" > $topdir/target/config/Config.in.tasks
 	printf "menu \"Tasks\"\n" >> $topdir/target/config/Config.in.tasks
-	printf "\tvisible if ADK_TARGET_OS_LINUX && !ADK_TARGET_CHOOSE_ARCH\n\n" >> $topdir/target/config/Config.in.tasks
+	printf "\tvisible if (ADK_TARGET_OS_LINUX || ADK_TARGET_OS_WALDUX) && !ADK_TARGET_CHOOSE_ARCH\n\n" >> $topdir/target/config/Config.in.tasks
 
         if [ -d "$topdir/tasks" ];then
         	cat $topdir/tasks/* >> $topdir/target/config/Config.in.tasks 2>/dev/null