From: Sebastian Pipping Date: Thu, 20 Jan 2011 00:45:36 +0000 (+0100) Subject: Be versose about --oldconfig and --no-mrproper X-Git-Tag: v3.4.11.1~2^2~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=94522889dcf63abce6a6dd457243bce6f0f2ac80;p=genkernel.git Be versose about --oldconfig and --no-mrproper --- diff --git a/gen_configkernel.sh b/gen_configkernel.sh index b562287..e5aa023 100755 --- a/gen_configkernel.sh +++ b/gen_configkernel.sh @@ -47,6 +47,8 @@ config_kernel() { then print_info 1 'kernel: >> Running mrproper...' compile_generic mrproper kernel + else + print_info 1 "config: --no-mrproper is enabled; not running 'make mrproper'." fi # If we're not cleaning, then we don't want to try to overwrite the configs @@ -56,6 +58,8 @@ config_kernel() { then print_info 1 ' >> Running oldconfig...' yes '' 2>/dev/null | compile_generic oldconfig kernel 2>/dev/null + else + print_info 1 "config: --oldconfig is disabled; not running 'make oldconfig'." fi if isTrue "${CLEAN}" then