Files
MilkV-Duo/device/milkv-duos-sd/genimage.cfg
carbon cfad8f8dc6 duos sd version enable bootlogo partition
regardless of whether the logo is enabled in u-boot
2024-05-27 01:03:50 +08:00

39 lines
438 B
INI

image boot.vfat {
vfat {
label = "boot"
files = {
"fip.bin",
"rawimages/boot.sd",
}
}
size = 128M
}
image rootfs.ext4 {
ext4 {
label = "rootfs"
}
size = 768M
}
image milkv-duos-sd.img {
hdimage {
}
partition boot {
partition-type = 0xC
bootable = "true"
image = "boot.vfat"
}
partition logo {
image = "logo.jpg"
size = 2M
}
partition rootfs {
partition-type = 0x83
image = "rootfs.ext4"
}
}