瀏覽代碼

More work on --source

bryan 2 年之前
父節點
當前提交
5eb9aa3e99
共有 1 個文件被更改,包括 3 次插入0 次删除
  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