Prechádzať zdrojové kódy

Prevent make defconfig from overwriting devices

bryan 2 rokov pred
rodič
commit
b7ba3ba159
1 zmenil súbory, kde vykonal 2 pridanie a 1 odobranie
  1. 2 1
      openwrtbuilder

+ 2 - 1
openwrtbuilder

@@ -576,10 +576,11 @@ fromSource() {
 
     # Only compile our target
     echo "CONFIG_TARGET_MULTI_PROFILE=n" >> .config
+    make defconfig # normalize .config and remove dupes
+    # make defconfig will add these back    
     sed -i '/CONFIG_TARGET_DEVICE_/d' .config
     echo "CONFIG_TARGET_DEVICE_${P_ARR[target]//\//_}_DEVICE_${P_ARR[profile]}=y" >> .config
 
-    make defconfig # normalize .config and remove dupes
     make targetclean
     make download &&
     make -j"$(nproc)" world