97fc9b2a7f
The gpt = "true" form is deprecated in genimage, use partition-table-type = "gpt" instead. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
26 lines
322 B
INI
26 lines
322 B
INI
image sdcard.img {
|
|
hdimage {
|
|
partition-table-type = "gpt"
|
|
}
|
|
|
|
partition fsbl1 {
|
|
image = "u-boot-spl.stm32"
|
|
size = 256K
|
|
}
|
|
|
|
partition fsbl2 {
|
|
image = "u-boot-spl.stm32"
|
|
size = 256K
|
|
}
|
|
|
|
partition ssbl {
|
|
image = "u-boot.img"
|
|
size = 2M
|
|
}
|
|
|
|
partition rootfs {
|
|
image = "rootfs.ext4"
|
|
bootable = "yes"
|
|
}
|
|
}
|