Files
Jason Kridner 3faa82bda5 buildroot: update based on recent experiments
* Use newer u-boot
* Don't use u-boot patches
* Increase image size
* Doesn't have USB boot features I was previously hacking
2021-10-05 18:09:30 -04:00

32 lines
421 B
INI

image boot.vfat {
vfat {
files = {
"MLO",
"u-boot.img",
"zImage",
"uEnv.txt",
"am335x-pocketbeagle.dtb",
"am335x-boneblack.dtb",
"am335x-bonegreen.dtb",
}
}
size = 16M
}
image sdcard.img {
hdimage {
}
partition u-boot {
partition-type = 0xC
bootable = "true"
image = "boot.vfat"
}
partition rootfs {
partition-type = 0x83
image = "rootfs.ext4"
size = 1G
}
}