From: Marius Bakke <mbakke@fastmail.com>
To: Danny Milosavljevic <dannym@scratchpost.org>
Cc: guix-devel@gnu.org
Subject: Re: How to use custom grub?
Date: Mon, 07 Nov 2016 15:50:39 +0000 [thread overview]
Message-ID: <87bmxr8f1s.fsf@kirby.i-did-not-set--mail-host-address--so-tickle-me> (raw)
In-Reply-To: <20161107160544.76784851@scratchpost.org>
[-- Attachment #1.1: Type: text/plain, Size: 2248 bytes --]
Danny Milosavljevic <dannym@scratchpost.org> writes:
> Hi Marius,
>
> On Mon, 07 Nov 2016 11:36:51 +0000
> Marius Bakke <mbakke@fastmail.com> wrote:
>
>> That's it! This makes it pick up (bootloader (grub-configuration (grub
>> grub-efi))) from my config.scm:
>>
>> making '/gnu/store/kgk9rrawq9fxh1g2j6121gl3lcz47395-system' the current system...
>> Installing for x86_64-efi platform.
>> Installation finished. No error reported.
>>
>> Even though I'm now working on multi-platform grub, I think we should
>> have this anyway so that the "grub" argument works as expected. WDYT?
>
> Yes, I agree that grub should not be magically picked up but rather be read from the configuration - as you do here. This makes alternative bootloaders possible and is also less surprising in any case.
>
> Also in guix/scripts/system.scm in perform-action there's a (setenv "PATH" ...) form. I think that one should be replaced, too - for much the same reasons. It would be better to just pass grub to install-grub* (which would need its parameter list adapted) instead of mucking with PATH :P
>
> In this way the package variable would flow from the os configuration all the way to the actual "grub-install" invocation call without magical environment variables, packages that just happen to be pulled in from some imported module etc.
>
> If you want, you can also fix this one up, too. (If not, I'll wait until your stuff is merged and fix it myself - no worries)
>
> A first test whether it was enough is to remove the #:use-module (gnu packages grub) from guix/scripts/system.scm and see whether it still works (it should). For clarity I would make the final patch remove it, too.
Hi Danny!
You raise some very good points. The patch I just sent indeed works
without #:use-module (gnu packages grub), so that should be included.
Passing the grub object to grub-install seems like it is better suited
for a separate patch. I have a couple of other things on my list before
ready to hack on grub-install (need to pass "--efi-directory" somehow),
but happy to review any work on it.
Attached is the same patch without loading the grub module. Would be
great to clear this out of the patch queue. Thanks a lot! :)
[-- Attachment #1.2: signature.asc --]
[-- Type: application/pgp-signature, Size: 454 bytes --]
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-system-Use-grub-from-bootloader-configuration.patch --]
[-- Type: text/x-patch, Size: 1907 bytes --]
From 5e31312aeae87d63ab2c64e92835231b59c804db Mon Sep 17 00:00:00 2001
From: Marius Bakke <mbakke@fastmail.com>
Date: Mon, 7 Nov 2016 11:56:52 +0000
Subject: [PATCH] system: Use grub from bootloader configuration.
* gnu/system/grub.scm (gnu): Export grub-configuration-grub.
* guix/scripts/system.scm (perform-action): Use it.
(define-module): Don't import (gnu packages grub).
Co-authored-by: Danny Milosavljevic <dannym@scratchpost.org>
---
gnu/system/grub.scm | 1 +
guix/scripts/system.scm | 4 ++--
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/gnu/system/grub.scm b/gnu/system/grub.scm
index 5c9d0f1..4657b06 100644
--- a/gnu/system/grub.scm
+++ b/gnu/system/grub.scm
@@ -51,6 +51,7 @@
grub-configuration
grub-configuration?
grub-configuration-device
+ grub-configuration-grub
menu-entry
menu-entry?
diff --git a/guix/scripts/system.scm b/guix/scripts/system.scm
index df9b37d..71ddccf 100644
--- a/guix/scripts/system.scm
+++ b/guix/scripts/system.scm
@@ -44,7 +44,6 @@
#:use-module (gnu services)
#:use-module (gnu services shepherd)
#:use-module (gnu services herd)
- #:use-module (gnu packages grub)
#:use-module (srfi srfi-1)
#:use-module (srfi srfi-11)
#:use-module (srfi srfi-19)
@@ -617,7 +616,8 @@ building anything."
#:image-size image-size
#:full-boot? full-boot?
#:mappings mappings))
- (grub (package->derivation grub))
+ (grub (package->derivation (grub-configuration-grub
+ (operating-system-bootloader os))))
(grub.cfg (if (eq? 'container action)
(return #f)
(operating-system-grub.cfg os
--
2.10.2
next prev parent reply other threads:[~2016-11-07 15:50 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-03 16:19 How to use custom grub? Marius Bakke
2016-11-03 16:50 ` Danny Milosavljevic
2016-11-03 20:47 ` Marius Bakke
2016-11-03 20:47 ` Marius Bakke
2016-11-04 13:24 ` Ludovic Courtès
2016-11-05 12:37 ` Marius Bakke
2016-11-05 23:41 ` Danny Milosavljevic
2016-11-07 10:48 ` Danny Milosavljevic
2016-11-07 11:36 ` Marius Bakke
2016-11-07 15:05 ` Danny Milosavljevic
2016-11-07 15:50 ` Marius Bakke [this message]
2016-11-07 22:26 ` Danny Milosavljevic
2016-11-08 12:40 ` Ludovic Courtès
2016-11-08 14:36 ` Marius Bakke
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87bmxr8f1s.fsf@kirby.i-did-not-set--mail-host-address--so-tickle-me \
--to=mbakke@fastmail.com \
--cc=dannym@scratchpost.org \
--cc=guix-devel@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.