me
/
guix
Archived
1
0
Fork 0

guix system: Skip initrd modules check when using --target.

* guix/scripts/system.scm (perform-action): Do not call CHECK-INITRD-MODULES
when the %current-target-system parameter is set.
Maxim Cournoyer 2022-12-08 23:27:57 -05:00
parent 5b19dffd98
commit 30465558bd
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 4 additions and 1 deletions

View File

@ -842,7 +842,10 @@ static checks."
(check-mapped-devices os)
(when (zero? (getuid))
(check-file-system-availability (operating-system-file-systems os))
(check-initrd-modules os)))
(unless (%current-target-system)
;; Skip the check if the user is making use of --target, as it cannot
;; be checked against the running kernel.
(check-initrd-modules os))))
(mlet* %store-monad
((sys (system-derivation-for-action image action