fix(vps-relay): switch to GRUB/BIOS — Hetzner Cloud is not UEFI 🧷
This commit is contained in:
parent
f4738584c3
commit
244988d52d
2 changed files with 14 additions and 12 deletions
|
|
@ -1,4 +1,5 @@
|
|||
# Disko layout for cloud VPS installs (e.g. Hetzner Cloud).
|
||||
# GPT with a 1MB BIOS boot partition (for GRUB on a BIOS system) + root.
|
||||
# No LUKS — the provider has physical disk access anyway and there's
|
||||
# no operator present at boot to enter a passphrase.
|
||||
{
|
||||
|
|
@ -9,15 +10,11 @@
|
|||
content = {
|
||||
type = "gpt";
|
||||
partitions = {
|
||||
ESP = {
|
||||
size = "512M";
|
||||
type = "EF00";
|
||||
content = {
|
||||
type = "filesystem";
|
||||
format = "vfat";
|
||||
mountpoint = "/boot";
|
||||
mountOptions = [ "fmask=0022" "dmask=0022" ];
|
||||
};
|
||||
# GRUB BIOS boot partition — holds stage-1.5 bootloader code.
|
||||
# Type EF02. No filesystem.
|
||||
BIOSBOOT = {
|
||||
size = "1M";
|
||||
type = "EF02";
|
||||
};
|
||||
root = {
|
||||
size = "100%";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue