diff options
author | Mathieu Othacehe <othacehe@gnu.org> | 2021-09-19 16:48:39 +0200 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2021-09-19 16:49:30 +0200 |
commit | 71aa29911cf3f4e6db5f9bff9237308b5f93283d (patch) | |
tree | 1abde187e29b78048654e2cf1811335d8c46c005 /gnu/packages | |
parent | 8e67a84a99b277e789bbe6478ea1c9225a703e35 (diff) |
gnu: grub: Do not strip modules.
* gnu/packages/bootloaders.scm (grub)[arguments]<#:strip-binaries>: Set to
false to prevent Grub modules stripping.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/bootloaders.scm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm index 8708bc6839..c0fa16f197 100644 --- a/gnu/packages/bootloaders.scm +++ b/gnu/packages/bootloaders.scm @@ -114,6 +114,8 @@ ;; calling the ‘true’ binary instead. Python is only needed during ;; bootstrapping (for genptl.py), not when building from a release. (list "PYTHON=true") + ;; Grub fails to load stripped modules. + #:strip-binaries? #f #:phases (modify-phases %standard-phases (add-after 'unpack 'patch-stuff (lambda* (#:key native-inputs inputs #:allow-other-keys) |