mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
genimage has an alias for the root-arm64 uuid [1]. [1] https://github.com/pengutronix/genimage/blob/v19/image-hd.c#L284 Signed-off-by: Julien Olivain <ju.o@free.fr>
31 lines
382 B
INI
31 lines
382 B
INI
image efi-part.vfat {
|
|
vfat {
|
|
file EFI {
|
|
image = "efi-part/EFI"
|
|
}
|
|
file Image {
|
|
image = "Image"
|
|
}
|
|
}
|
|
|
|
size = 64M
|
|
}
|
|
|
|
image disk.img {
|
|
hdimage {
|
|
partition-table-type = "gpt"
|
|
}
|
|
|
|
partition boot {
|
|
image = "efi-part.vfat"
|
|
partition-type-uuid = U
|
|
offset = 32K
|
|
bootable = true
|
|
}
|
|
|
|
partition root {
|
|
partition-type-uuid = root-arm64
|
|
image = "rootfs.ext2"
|
|
}
|
|
}
|