41 lines
489 B
INI
41 lines
489 B
INI
|
image boot.vfat {
|
||
|
vfat {
|
||
|
files = {
|
||
|
"uImage",
|
||
|
"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"
|
||
|
}
|
||
|
}
|