2bcfb2549b
imxrt1050-evk was using uImage switch to using zImage now. Signed-off-by: Jesse Taube <Mr.Bossman075@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
41 lines
489 B
INI
41 lines
489 B
INI
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"
|
|
}
|
|
}
|