blob: b458ff5d12e8f1d6327e43b50f4c88c4d7c713e4 [file] [log] [blame]
Etienne Carriere4b263e22022-06-30 10:02:06 +02001image sdcard.img {
2 hdimage {
3 gpt = "true"
4 }
5
6 partition fsbl {
7 image = "tf-a-stm32mp135f-dk.stm32"
8 size = 256K
9 }
10
11 partition fip {
12 image = "fip.bin"
13 partition-type-uuid = L
14 size = 4M
15 }
16
17 partition u-boot-env {
18 partition-type-uuid = L
19 size = 4M
20 }
21
22 partition bootfs {
23 image = "bootfs.ext2"
24 partition-type-uuid = L
25 size = 32M
26 bootable = "yes"
27 }
28
29 partition rootfs {
30 image = "rootfs.ext2"
31 partition-type-uuid = L
32 size = 128M
33 }
34}