gnu: linux-libre: Choose a config without debugging features.

* gnu/packages/linux.scm (linux-libre): Choose "defconfig" instead of
  "allmodconfig" since the latter enables all debugging features.  Add
  `CONFIG_CIFS=m'.
This commit is contained in:
Ludovic Courtès 2013-02-15 00:26:52 +01:00
parent eb4908581c
commit 1dee732b81
1 changed files with 7 additions and 1 deletions

View File

@ -133,7 +133,13 @@
(format #t "`ARCH' set to `~a'~%" (getenv "ARCH")))
(let ((build (assoc-ref %standard-phases 'build)))
(and (zero? (system* "make" "allmodconfig"))
(and (zero? (system* "make" "defconfig"))
(begin
(format #t "enabling additional modules...~%")
(substitute* ".config"
(("^# CONFIG_CIFS.*$")
"CONFIG_CIFS=m\n"))
(zero? (system* "make" "oldconfig")))
;; Call the default `build' phase so `-j' is correctly
;; passed.