45a67a2f83
This patch bumps configs/zynq_xxx_defconfigs to Xilinx software release 2022.1 which includes the following updates: - U-Boot bumped to 2022.01 - Linux bumped to 5.15.19 - rootfs changed from CPIO to EXT4 - extlinux.conf for distro boot support - U-Boot migrated from git clone to tarball for faster builds This patch has been build and run tested on a ZC706 evaluation board. This patch has been build tested only for zed, microzed and qmtech boards. Signed-off-by: Neal Frager <neal.frager@amd.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
33 lines
378 B
INI
33 lines
378 B
INI
image boot.vfat {
|
|
vfat {
|
|
files = {
|
|
"boot.bin",
|
|
"u-boot.img",
|
|
"system.dtb",
|
|
"uImage"
|
|
}
|
|
|
|
file extlinux/extlinux.conf {
|
|
image = extlinux.conf
|
|
}
|
|
}
|
|
|
|
size = 32M
|
|
}
|
|
|
|
image sdcard.img {
|
|
hdimage {
|
|
}
|
|
|
|
partition boot {
|
|
partition-type = 0xC
|
|
bootable = "true"
|
|
image = "boot.vfat"
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext4"
|
|
}
|
|
}
|