Be versose about --oldconfig and --no-mrproper

cleanup-cruft
Sebastian Pipping 14 years ago
parent b2eeeec574
commit 94522889dc

@ -47,6 +47,8 @@ config_kernel() {
then then
print_info 1 'kernel: >> Running mrproper...' print_info 1 'kernel: >> Running mrproper...'
compile_generic mrproper kernel compile_generic mrproper kernel
else
print_info 1 "config: --no-mrproper is enabled; not running 'make mrproper'."
fi fi
# If we're not cleaning, then we don't want to try to overwrite the configs # If we're not cleaning, then we don't want to try to overwrite the configs
@ -56,6 +58,8 @@ config_kernel() {
then then
print_info 1 ' >> Running oldconfig...' print_info 1 ' >> Running oldconfig...'
yes '' 2>/dev/null | compile_generic oldconfig kernel 2>/dev/null yes '' 2>/dev/null | compile_generic oldconfig kernel 2>/dev/null
else
print_info 1 "config: --oldconfig is disabled; not running 'make oldconfig'."
fi fi
if isTrue "${CLEAN}" if isTrue "${CLEAN}"
then then

Loading…
Cancel
Save