nixos/tests/installer: embiggen /boot for systemd efi boot

https://hydra.nixos.org/build/331060145/nixlog/4/tail
This commit is contained in:
Vladimír Čunát
2026-06-06 13:53:50 +02:00
committed by Martin Weinelt
parent dae8751c74
commit e8c92bad8a
+2 -2
View File
@@ -1209,9 +1209,9 @@ in
createPartitions = ''
installer.succeed(
"flock /dev/vda parted --script /dev/vda -- mklabel gpt"
+ " mkpart ESP fat32 1M 100MiB" # /boot
+ " mkpart ESP fat32 1M 170MiB" # /boot
+ " set 1 boot on"
+ " mkpart primary linux-swap 100MiB 1024MiB"
+ " mkpart primary linux-swap 170MiB 1024MiB"
+ " mkpart primary ext2 1024MiB -1MiB", # /
"udevadm settle",
"mkswap /dev/vda2 -L swap",