xref: /OK3568_Linux_fs/buildroot/board/aarch64-efi/genimage-efi.cfg (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1image efi-part.vfat {
2	vfat {
3		file EFI {
4			image = "efi-part/EFI"
5		}
6		file Image {
7			image = "Image"
8		}
9	}
10
11	size = 32M
12}
13
14image disk.img {
15	hdimage {
16		gpt = true
17	}
18
19	partition boot {
20		image = "efi-part.vfat"
21		partition-type-uuid = c12a7328-f81f-11d2-ba4b-00a0c93ec93b
22		offset = 32K
23		bootable = true
24	}
25
26	partition root {
27		partition-type-uuid = b921b045-1df0-41c3-af44-4c6f280d3fae
28		image = "rootfs.ext2"
29	}
30}
31