From c73652b9f1b46ded3b672c022de0a79e306fdc25 Mon Sep 17 00:00:00 2001 From: Manikanta Guntupalli Date: Fri, 15 Mar 2024 17:23:06 +0530 Subject: u-boot-xlnx : Update SRCREV arm64: zynqmp: Add resets and assigned-clock-rates properties for KD240 Signed-off-by: Manikanta Guntupalli Signed-off-by: Mark Hatle --- meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-2023.2.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta-xilinx-core/recipes-bsp/u-boot') diff --git a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-2023.2.inc b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-2023.2.inc index 0a813d69..a7b1c9dc 100644 --- a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-2023.2.inc +++ b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-2023.2.inc @@ -2,7 +2,7 @@ UBOOT_VERSION = "v2023.01" UBRANCH = "xlnx_rebase_v2023.01" -SRCREV = "4da834fc7644b4124f7417e0e2789c7afcb40352" +SRCREV = "2b54ad6f1d278c419b927d10db2edf323d844578" LICENSE = "GPL-2.0-or-later" LIC_FILES_CHKSUM = "file://README;beginline=1;endline=4;md5=744e7e3bb0c94b4b9f6b3db3bf893897" -- cgit v1.2.3-54-g00ecf From 3048f2525996e582e00d8091f6a31c2088cee513 Mon Sep 17 00:00:00 2001 From: Jonathan Stroud Date: Fri, 22 Mar 2024 17:04:46 -0600 Subject: Change u-boot-xlnx-scr to use copies instead of symlinks symlinks don't work on the /boot FAT partition, so change to copy Signed-off-by: Jonathan Stroud Signed-off-by: Mark Hatle --- meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-scr.bb | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'meta-xilinx-core/recipes-bsp/u-boot') diff --git a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-scr.bb b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-scr.bb index 6410fc25..ac391c3c 100644 --- a/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-scr.bb +++ b/meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-scr.bb @@ -262,10 +262,11 @@ do_compile() { do_install() { install -d ${D}/boot install -m 0644 boot.scr ${D}/boot/${UBOOTSCR_BASE_NAME}.scr - ln -sf ${UBOOTSCR_BASE_NAME}.scr ${D}/boot/boot.scr + install -m 0644 boot.scr ${D}/boot/ install -d ${D}/boot/pxeboot/${UBOOTPXE_CONFIG_NAME} install -m 0644 pxeboot.pxe ${D}/boot/pxeboot/${UBOOTPXE_CONFIG_NAME}/default - ln -sf pxeboot/${UBOOTPXE_CONFIG_NAME} ${D}/boot/${UBOOTPXE_CONFIG} + install -d ${D}/boot/${UBOOTPXE_CONFIG}/ + install -m 0644 pxeboot.pxe ${D}/boot/${UBOOTPXE_CONFIG}/default } FILES:${PN} = "/boot/*" @@ -273,10 +274,11 @@ FILES:${PN} = "/boot/*" do_deploy() { install -d ${DEPLOYDIR} install -m 0644 boot.scr ${DEPLOYDIR}/${UBOOTSCR_BASE_NAME}.scr - ln -sf ${UBOOTSCR_BASE_NAME}.scr ${DEPLOYDIR}/boot.scr + install -m 0644 boot.scr ${DEPLOYDIR}/ install -d ${DEPLOYDIR}/pxeboot/${UBOOTPXE_CONFIG_NAME} install -m 0644 pxeboot.pxe ${DEPLOYDIR}/pxeboot/${UBOOTPXE_CONFIG_NAME}/default - ln -sf pxeboot/${UBOOTPXE_CONFIG_NAME} ${DEPLOYDIR}/${UBOOTPXE_CONFIG} + install -d ${DEPLOYDIR}/${UBOOTPXE_CONFIG}/ + install -m 0644 pxeboot.pxe ${DEPLOYDIR}/${UBOOTPXE_CONFIG}/default } addtask do_deploy after do_compile before do_build -- cgit v1.2.3-54-g00ecf