Make olddefconfig non-interactive

This commit is contained in:
2025-10-18 11:33:04 -04:00
parent ce2e85d197
commit 9be43af11a

View File

@@ -636,7 +636,7 @@ from_source() {
done done
# Serial make prep is more reliable # Serial make prep is more reliable
execute make "${make_opts[@]}" "-j1" olddefconfig execute bash -c "yes '' | make ${make_opts[*]} -j1 olddefconfig"
# make_opts+=("-j$(($(nproc)-2))") # make_opts+=("-j$(($(nproc)-2))")
((DEBUG)) && make_opts+=("-j1") || make_opts+=("-j$(($(nproc)-2))") ((DEBUG)) && make_opts+=("-j1") || make_opts+=("-j$(($(nproc)-2))")