emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#59066: closed ([PATCH 1/1] linux-initrd: raw-initrd: Add keyword arg


From: GNU bug Tracking System
Subject: bug#59066: closed ([PATCH 1/1] linux-initrd: raw-initrd: Add keyword argument #:pre-mount.)
Date: Fri, 18 Nov 2022 13:26:02 +0000

Your message dated Fri, 18 Nov 2022 14:25:03 +0100
with message-id <87cz9kcs40.fsf_-_@gnu.org>
and subject line Re: bug#59066: [PATCH 1/1] linux-initrd: raw-initrd: Add 
keyword argument #:pre-mount.
has caused the debbugs.gnu.org bug report #59066,
regarding [PATCH 1/1] linux-initrd: raw-initrd: Add keyword argument 
#:pre-mount.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
59066: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=59066
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH 1/1] linux-initrd: raw-initrd: Add keyword argument #:pre-mount. Date: Sun, 06 Nov 2022 09:45:45 +0800
* gnu/system/linux-initrd.scm (raw-initrd): Add keyword argument #:pre-mount.
---
 gnu/system/linux-initrd.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/system/linux-initrd.scm b/gnu/system/linux-initrd.scm
index 4c4c78e444..1e72aaee1c 100644
--- a/gnu/system/linux-initrd.scm
+++ b/gnu/system/linux-initrd.scm
@@ -172,6 +172,7 @@ (define* (raw-initrd file-systems
                       #:key
                       (linux linux-libre)
                       (linux-modules '())
+                      (pre-mount '())
                       (mapped-devices '())
                       (keyboard-layout #f)
                       (helper-packages '())
@@ -255,7 +256,8 @@ (define kodir
                         (map spec->file-system
                              '#$(map file-system->spec file-systems))
                         #:pre-mount (lambda ()
-                                      (and #$@device-mapping-commands
+                                      (and #$@pre-mount
+                                           #$@device-mapping-commands
                                            #$@file-system-scan-commands))
                         #:linux-modules '#$linux-modules
                         #:linux-module-directory '#$kodir
-- 
2.38.0




--- End Message ---
--- Begin Message --- Subject: Re: bug#59066: [PATCH 1/1] linux-initrd: raw-initrd: Add keyword argument #:pre-mount. Date: Fri, 18 Nov 2022 14:25:03 +0100 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)
Hi,

Hilton Chain <hako@ultrarare.space> skribis:

> * gnu/system/linux-initrd.scm (raw-initrd): Add keyword argument #:pre-mount.
> Document it.
> * doc/guix.texi (initial RAM disk): Likewise.
> ---
> v1 -> v2:
> 1. Use gexp instead of a list.
> 2. Documentation.

Applied, thanks!

> Haven't begun my SSH test yet :P

Heh, no rush.  :-)

Ludo’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]