fix gpt-bios-compat example and test it.

This commit is contained in:
Jörg Thalheim 2022-09-04 12:10:09 +02:00
parent e0de34c07d
commit fd2de4ddd4
3 changed files with 47 additions and 33 deletions

View file

@ -0,0 +1,37 @@
# Example to create a bios compatible gpt partition
{
disk = {
vdb = {
device = "/dev/vdb";
type = "disk";
content = {
type = "table";
format = "gpt";
partitions = [
{
name = "boot";
type = "partition";
start = "0";
end = "1M";
part-type = "primary";
flags = ["bios_grub"];
}
{
name = "root";
type = "partition";
# leave space for the grub aka BIOS boot
start = "1M";
end = "100%";
part-type = "primary";
bootable = true;
content = {
type = "filesystem";
format = "ext4";
mountpoint = "/";
};
}
];
};
};
};
}