From fd2de4ddd46ce24c10cb2ba8fbfc744acc36da03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sun, 4 Sep 2022 12:10:09 +0200 Subject: fix gpt-bios-compat example and test it. --- example/gpt-bios-compat.nix | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 example/gpt-bios-compat.nix (limited to 'example/gpt-bios-compat.nix') diff --git a/example/gpt-bios-compat.nix b/example/gpt-bios-compat.nix new file mode 100644 index 0000000..9abe691 --- /dev/null +++ b/example/gpt-bios-compat.nix @@ -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 = "/"; + }; + } + ]; + }; + }; + }; +} -- cgit v1.2.3