GNU bug report logs -
#27705
[PATCH 0/4] Make both EFI and non-EFI systems boot our disk images.
Previous Next
Full log
Message #41 received at 27705 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/bootloaders.scm (grub-hybrid): New variable.
---
gnu/packages/bootloaders.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/bootloaders.scm b/gnu/packages/bootloaders.scm
index 7a91e32d9..a7a4f3625 100644
--- a/gnu/packages/bootloaders.scm
+++ b/gnu/packages/bootloaders.scm
@@ -182,6 +182,26 @@ menu to select one of the installed operating systems.")
"/bin/mcopy\"")))
#t))))))))))
+(define-public grub-hybrid
+ (package
+ (inherit grub-efi)
+ (name "grub-hybrid")
+ (synopsis "GRand Unified Boot loader (hybrid version)")
+ (native-inputs
+ `(("grub" ,grub)
+ ,@(package-native-inputs grub-efi)))
+ (arguments
+ (substitute-keyword-arguments (package-arguments grub-efi)
+ ((#:phases phases)
+ `(modify-phases ,phases
+ (add-after 'install 'install-non-efi
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (copy-recursively (string-append (assoc-ref inputs "grub")
+ "/lib/grub/i386-pc")
+ (string-append (assoc-ref outputs "out")
+ "/lib/grub/i386-pc"))
+ #t))))))))
+
(define-public syslinux
(let ((commit "bb41e935cc83c6242de24d2271e067d76af3585c"))
(package
This bug report was last modified 7 years and 348 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.