0f8433ab04
This configuration allows out-of-the box Digilent Zybo support. It uses mainline U-boot and Linux kernel. This configuration generates a SD card image named sdcard.img. [Peter: rename genimage.cfg, cleanup post-image script, enable VFP support, use 4.6 kernel headers and add tools needed by genimage] Signed-off-by: Sebastien Van Cauwenberghe <svancau@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
30 lines
395 B
INI
30 lines
395 B
INI
image boot.vfat {
|
|
vfat {
|
|
files = {
|
|
"BOOT.BIN",
|
|
"uEnv.txt",
|
|
"system.bit",
|
|
"zynq-zybo.dtb",
|
|
"u-boot-dtb.img",
|
|
"uImage"
|
|
}
|
|
}
|
|
size = 32M
|
|
}
|
|
|
|
image sdcard.img {
|
|
hdimage {
|
|
}
|
|
|
|
partition boot {
|
|
partition-type = 0xC
|
|
bootable = "true"
|
|
image = "boot.vfat"
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext4"
|
|
}
|
|
}
|