In the %prep stage of the kernel build we run the "make oldnoconfig" target
fifteen times. And every time it prints:
    scripts/kconfig/conf  --olddefconfig Kconfig
    #
    # configuration written to .config
    #

Run this target silently so these four lines are suppressed.

Signed-off-by: Paul Bolle <[email protected]>
---
 kernel.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel.spec b/kernel.spec
index cf54b60c75b7..08bfd7a9eac1 100644
--- a/kernel.spec
+++ b/kernel.spec
@@ -1258,7 +1258,7 @@ do
   fi
 %endif
   rm -f .newoptions
-  make ARCH=$Arch oldnoconfig
+  make -s ARCH=$Arch oldnoconfig
   echo "# $Arch" > configs/$i
   cat .config >> configs/$i
 done
-- 
2.7.4
_______________________________________________
kernel mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to