xref: /OK3568_Linux_fs/buildroot/board/qemu/aarch64-sbsa/genimage.cfg (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1image efi-part.vfat {
2	vfat {
3		file EFI {
4			image = "efi-part/EFI"
5		}
6
7		file Image {
8			image = "Image"
9		}
10	}
11
12	size = 64M
13}
14
15image disk.img {
16	hdimage {
17		gpt = true
18	}
19
20	partition boot {
21		partition-type = 0xEF
22		image = "efi-part.vfat"
23	}
24
25	partition root {
26		partition-type = 0x83
27		image = "rootfs.ext2"
28	}
29}
30