image boot.vfat { | |
vfat { | |
files = { | |
"zImage", | |
"imxrt1050-evk.dtb", | |
} | |
} | |
size = 8M | |
} | |
image sdcard.img { | |
hdimage { | |
} | |
partition SPL { | |
in-partition-table = "no" | |
image = "SPL" | |
offset = 1K | |
size = 127K | |
} | |
partition u-boot { | |
in-partition-table = "no" | |
image = "u-boot.img" | |
offset = 128K | |
size = 512K | |
} | |
partition boot { | |
partition-type = 0xc | |
bootable = "true" | |
image = "boot.vfat" | |
} | |
partition rootfs { | |
partition-type = 0x83 | |
image = "rootfs.ext4" | |
} | |
} |