diff options
| author | Rutherther <rutherther@ditigal.xyz> | 2025-12-11 17:53:18 +0100 |
|---|---|---|
| committer | Rutherther <rutherther@ditigal.xyz> | 2025-12-13 14:26:52 +0100 |
| commit | e3c33d9ab4c88c704376793346930172cef7beb4 (patch) | |
| tree | 3a5955b1a77e97a95a52a3129a23692c2a67bc1c /gnu/system | |
| parent | 6935e6c51d6423ecfca7a775280da3ae16a2713b (diff) | |
image: esp32-partition/grub: Pass root to initialize-efi32-partition.
Follow up of: ca0ed91b40 where the root argument has been omitted.
This leads to an error, because initialize-efi32-partition expects
`root` as first argument, while `#:grub-efi32` was given.
Fixes: #4634.
* gnu/system/image.scm (esp32-partition/grub): Pass 'root' as first argument
to initialize-efi32-partition.
Change-Id: Ia839f40444304c229aef33e996c66c8209e42dda
Signed-off-by: Rutherther <rutherther@ditigal.xyz>
Diffstat (limited to 'gnu/system')
| -rw-r--r-- | gnu/system/image.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/system/image.scm b/gnu/system/image.scm index cb4f67653b3..0101fe3d6eb 100644 --- a/gnu/system/image.scm +++ b/gnu/system/image.scm @@ -145,7 +145,7 @@ parent image record." (partition (inherit esp-partition/grub) (initializer #~(lambda* (root #:key #:allow-other-keys) - (initialize-efi32-partition #:grub-efi32 #+grub-efi32))))) + (initialize-efi32-partition root #:grub-efi32 #+grub-efi32))))) ;; Be more transparent. The esp partition unconditinally installs grub. ;; It doesn't look up bootloader of the system. |
