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:
parent
eb4908581c
commit
1dee732b81
|
@ -133,7 +133,13 @@
|
||||||
(format #t "`ARCH' set to `~a'~%" (getenv "ARCH")))
|
(format #t "`ARCH' set to `~a'~%" (getenv "ARCH")))
|
||||||
|
|
||||||
(let ((build (assoc-ref %standard-phases 'build)))
|
(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
|
;; Call the default `build' phase so `-j' is correctly
|
||||||
;; passed.
|
;; passed.
|
||||||
|
|
Loading…
Reference in New Issue