b677a7bedb
Fixes the following error during image generation: ERROR: hdimage(sdcard.img): part boot: 'partition-type' is only valid for mbr and hybrid partition-table-type Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/2103784375 Signed-off-by: Marcus Hoffmann <marcus.hoffmann@othermo.de> Reviewed-by: Giulio Benetti <giulio.benetti@benettiengineering.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
39 lines
460 B
INI
39 lines
460 B
INI
image boot.vfat {
|
|
vfat {
|
|
files = {
|
|
"Image",
|
|
"rk3399-orangepi.dtb",
|
|
"extlinux"
|
|
}
|
|
}
|
|
|
|
size = 64M
|
|
}
|
|
|
|
image sdcard.img {
|
|
hdimage {
|
|
partition-table-type = "gpt"
|
|
}
|
|
|
|
partition loader1 {
|
|
image = "idbloader.img"
|
|
offset = 32K
|
|
}
|
|
|
|
partition loader2 {
|
|
image = "u-boot.itb"
|
|
offset = 8M
|
|
}
|
|
|
|
partition boot {
|
|
partition-type-uuid = F
|
|
bootable = "true"
|
|
image = "boot.vfat"
|
|
offset = 16M
|
|
}
|
|
|
|
partition rootfs {
|
|
image = "rootfs.ext4"
|
|
}
|
|
}
|