Be versose about --oldconfig and --no-mrproper
authorSebastian Pipping <sebastian@pipping.org>
Thu, 20 Jan 2011 00:45:36 +0000 (01:45 +0100)
committerSebastian Pipping <sebastian@pipping.org>
Thu, 20 Jan 2011 00:56:46 +0000 (01:56 +0100)
gen_configkernel.sh

index b56228768ed0ed9c2eec5419c0fb7dc6f273205a..e5aa023c2cf4f8c0c7fb8d5504e2361d5709c137 100755 (executable)
@@ -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