M gnu/packages/linux.scm => gnu/packages/linux.scm +5 -0
@@ 292,6 292,11 @@ for SYSTEM, or #f if there is no configuration for SYSTEM."
(alist-replace
'install ,install-phase
(alist-delete 'configure %standard-phases)))
+
+ ;; Use '--strip-debug', not '--strip-all', because the latter leads to
+ ;; unloadable modules (due to the lack of a symbol table.)
+ #:strip-flags '("--strip-debug")
+
#:tests? #f))
(synopsis "100% free redistribution of a cleaned Linux kernel")
(description
M guix/build-system/gnu.scm => guix/build-system/gnu.scm +1 -1
@@ 274,7 274,7 @@ standard packages used as implicit inputs of the GNU build system."
(parallel-tests? #t)
(patch-shebangs? #t)
(strip-binaries? #t)
- (strip-flags ''("--strip-debug"))
+ (strip-flags ''("--strip-all"))
(strip-directories ''("lib" "lib64" "libexec"
"bin" "sbin"))
(phases '%standard-phases)
M guix/build/gnu-build-system.scm => guix/build/gnu-build-system.scm +1 -1
@@ 295,7 295,7 @@ makefiles."
(objcopy-command (if target
(string-append target "-objcopy")
"objcopy"))
- (strip-flags '("--strip-debug"))
+ (strip-flags '("--strip-all"))
(strip-directories '("lib" "lib64" "libexec"
"bin" "sbin"))
#:allow-other-keys)