1image sdcard.img {
2	hdimage {
3		gpt = "true"
4	}
5
6	partition fsbl {
7		image = "tf-a-TFA_BOARD_REV.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		partition-uuid = 3e2cfa2a-afc9-48af-8346-63d808c505ff
33		size = 100M
34	}
35}
36