Selaa lähdekoodia

Revert to serial debug

bryan 2 päivää sitten
vanhempi
commit
1e88f1b912
2 muutettua tiedostoa jossa 3 lisäystä ja 3 poistoa
  1. 1 1
      README.md
  2. 2 2
      openwrtbuilder

+ 1 - 1
README.md

@@ -47,7 +47,7 @@ See `profiles` for example device profile definitions.
 
 ## Additional Info
 
-Did you find `openwrtbuilder` useful? [Buy me a coffee!](https://paypal.me/bryanroessler)
+Find `openwrtbuilder` useful? [Paypal me a coffee!](https://paypal.me/bryanroessler)
 
 [↓ ↓ ↓ Bitcoin ↓ ↓ ↓](bitcoin:bc1q7wy0kszjavgcrvkxdg7mf3s6rh506rasnhfa4a)
 

+ 2 - 2
openwrtbuilder

@@ -605,8 +605,8 @@ from_source() {
   # Make prep
   execute make "${make_opts[@]}" "-j1" defconfig
   execute make "${make_opts[@]}" "-j1" download
-  # ((DEBUG)) && make_opts+=("-j1") || make_opts+=("-j$(($(nproc)-1))")
-  make_opts+=("-j$(($(nproc)-1))")
+  ((DEBUG)) && make_opts+=("-j1") || make_opts+=("-j$(($(nproc)-1))")
+  # make_opts+=("-j$(($(nproc)-1))")
 
   # Make image
   if ! execute ionice -c 3 chrt --idle 0 nice -n19 make "${make_opts[@]}" world; then