b59f938302
Genimage 15 deprecated the gpt option and now prints a warning when it is used: INFO: hdimage(sdcard.img): The option 'gpt' is deprecated. Use 'partition-table-type' instead So change the genimage configuration files to use that instead. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
24 lines
333 B
INI
24 lines
333 B
INI
image sdcard-emmc.img {
|
|
hdimage {
|
|
partition-table-type = "gpt"
|
|
}
|
|
|
|
partition rcw {
|
|
offset = 4K
|
|
in-partition-table = "no"
|
|
image = "rcw.bin"
|
|
}
|
|
|
|
partition u-boot {
|
|
offset = 1M
|
|
in-partition-table = "no"
|
|
image = "u-boot.rom"
|
|
}
|
|
|
|
partition rootfs {
|
|
offset = 2M
|
|
image = rootfs.ext4
|
|
partition-uuid = %PARTUUID%
|
|
}
|
|
}
|