[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#27705] [PATCH v2 3/4] gnu: Add grub-hybrid.
From: |
Danny Milosavljevic |
Subject: |
[bug#27705] [PATCH v2 3/4] gnu: Add grub-hybrid. |
Date: |
Thu, 20 Jul 2017 21:12:22 +0200 |
* 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
- [bug#27705] [PATCH 4/4] install: Use grub-efi., (continued)
[bug#27705] [PATCH v2 0/4] Make both EFI and non-EFI systems boot our ISO9660 disk images., Danny Milosavljevic, 2017/07/20
[bug#27705] [PATCH v3 0/4] Make both EFI and non-EFI systems boot our ISO9660 disk images., Danny Milosavljevic, 2017/07/20
[bug#27705] [PATCH v4 0/4] Make both EFI and non-EFI systems boot our ISO9660 disk images., Danny Milosavljevic, 2017/07/20