summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Paśnikowski <marek@marekpasnikowski.pl>2025-06-16 08:32:48 +0200
committerMarek Paśnikowski <marek@marekpasnikowski.pl>2025-06-16 08:32:48 +0200
commit08ff3bc3215745859984aa2cb6a919ef67533099 (patch)
treea61def7093b535f31b3fd2b8505c17a6341e55d9
parentee116bc4777f2a7517bbb2802eefcb02b4f972d4 (diff)
systems: fix the EFI partition mount point
-rw-r--r--deployment/systems/aisaka.scm2
-rw-r--r--deployment/systems/ayase.scm2
2 files changed, 2 insertions, 2 deletions
diff --git a/deployment/systems/aisaka.scm b/deployment/systems/aisaka.scm
index e135196..f8eb717 100644
--- a/deployment/systems/aisaka.scm
+++ b/deployment/systems/aisaka.scm
@@ -488,7 +488,7 @@
(define system-bootloader
(gnu:bootloader:bootloader-configuration
(bootloader gnu:bootloader:grub:grub-efi-bootloader)
- (targets (list "/boot/efi"))
+ (targets (list "/boot"))
(keyboard-layout sovereign:devices:pl-keyboard-layout)))
(define system-file-systems
diff --git a/deployment/systems/ayase.scm b/deployment/systems/ayase.scm
index ac3d955..5f3b682 100644
--- a/deployment/systems/ayase.scm
+++ b/deployment/systems/ayase.scm
@@ -36,7 +36,7 @@
(define efi-partition
(gnu:system:file-systems:file-system
- (mount-point "/boot/efi")
+ (mount-point "/boot")
(device efi-filesystem-uuid)
(type "vfat")))