Browse Source

More work on --source

bryan 2 years ago
parent
commit
5eb9aa3e99
1 changed files with 3 additions and 0 deletions
  1. 3 0
      openwrtbuilder

+ 3 - 0
openwrtbuilder

@@ -643,7 +643,9 @@ fromSource() {
     fi
 
     # Add custom packages
+
     for pkg in ${P_ARR[packages]:+}; do
+        debug HERE1
         if [[ $pkg == -* ]]; then
             debug "Removing package ${pkg#-}"
             config_opts+=("CONFIG_PACKAGE_${pkg#-}=n") # remove package
@@ -655,6 +657,7 @@ fromSource() {
 
     # Add kopts from profile
     for kopt in ${P_ARR[kopts]:+}; do
+        debug HERE2
         config_opts+=("$kopt")
     done