diff options
author | Mark Hatle <mark.hatle@amd.com> | 2024-04-18 15:33:29 -0600 |
---|---|---|
committer | Mark Hatle <mark.hatle@amd.com> | 2024-04-18 15:33:29 -0600 |
commit | ffd38ed5a593e49de1488f194fc25d2ae0639af4 (patch) | |
tree | 4904651199a8b3fd642fb5392a94b6f0b45b721d /meta-xilinx-core/recipes-bsp/u-boot | |
parent | 13e2e08f028da93469d6a0ee18a153e9b5ae303d (diff) | |
parent | c6ae24ee38a69e4bcd463337aed43276d70845df (diff) | |
download | meta-xilinx-ffd38ed5a593e49de1488f194fc25d2ae0639af4.tar.gz |
Merge remote-tracking branch 'github/rel-v2023.2' into HEAD
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Diffstat (limited to 'meta-xilinx-core/recipes-bsp/u-boot')
-rw-r--r-- | meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-2023.2.inc | 2 | ||||
-rw-r--r-- | meta-xilinx-core/recipes-bsp/u-boot/u-boot-xlnx-scr.bb | 10 |
2 files changed, 7 insertions, 5 deletions
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" | |||
2 | 2 | ||
3 | UBRANCH = "xlnx_rebase_v2023.01" | 3 | UBRANCH = "xlnx_rebase_v2023.01" |
4 | 4 | ||
5 | SRCREV = "4da834fc7644b4124f7417e0e2789c7afcb40352" | 5 | SRCREV = "2b54ad6f1d278c419b927d10db2edf323d844578" |
6 | 6 | ||
7 | LICENSE = "GPL-2.0-or-later" | 7 | LICENSE = "GPL-2.0-or-later" |
8 | LIC_FILES_CHKSUM = "file://README;beginline=1;endline=4;md5=744e7e3bb0c94b4b9f6b3db3bf893897" | 8 | LIC_FILES_CHKSUM = "file://README;beginline=1;endline=4;md5=744e7e3bb0c94b4b9f6b3db3bf893897" |
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() { | |||
262 | do_install() { | 262 | do_install() { |
263 | install -d ${D}/boot | 263 | install -d ${D}/boot |
264 | install -m 0644 boot.scr ${D}/boot/${UBOOTSCR_BASE_NAME}.scr | 264 | install -m 0644 boot.scr ${D}/boot/${UBOOTSCR_BASE_NAME}.scr |
265 | ln -sf ${UBOOTSCR_BASE_NAME}.scr ${D}/boot/boot.scr | 265 | install -m 0644 boot.scr ${D}/boot/ |
266 | install -d ${D}/boot/pxeboot/${UBOOTPXE_CONFIG_NAME} | 266 | install -d ${D}/boot/pxeboot/${UBOOTPXE_CONFIG_NAME} |
267 | install -m 0644 pxeboot.pxe ${D}/boot/pxeboot/${UBOOTPXE_CONFIG_NAME}/default | 267 | install -m 0644 pxeboot.pxe ${D}/boot/pxeboot/${UBOOTPXE_CONFIG_NAME}/default |
268 | ln -sf pxeboot/${UBOOTPXE_CONFIG_NAME} ${D}/boot/${UBOOTPXE_CONFIG} | 268 | install -d ${D}/boot/${UBOOTPXE_CONFIG}/ |
269 | install -m 0644 pxeboot.pxe ${D}/boot/${UBOOTPXE_CONFIG}/default | ||
269 | } | 270 | } |
270 | 271 | ||
271 | FILES:${PN} = "/boot/*" | 272 | FILES:${PN} = "/boot/*" |
@@ -273,10 +274,11 @@ FILES:${PN} = "/boot/*" | |||
273 | do_deploy() { | 274 | do_deploy() { |
274 | install -d ${DEPLOYDIR} | 275 | install -d ${DEPLOYDIR} |
275 | install -m 0644 boot.scr ${DEPLOYDIR}/${UBOOTSCR_BASE_NAME}.scr | 276 | install -m 0644 boot.scr ${DEPLOYDIR}/${UBOOTSCR_BASE_NAME}.scr |
276 | ln -sf ${UBOOTSCR_BASE_NAME}.scr ${DEPLOYDIR}/boot.scr | 277 | install -m 0644 boot.scr ${DEPLOYDIR}/ |
277 | install -d ${DEPLOYDIR}/pxeboot/${UBOOTPXE_CONFIG_NAME} | 278 | install -d ${DEPLOYDIR}/pxeboot/${UBOOTPXE_CONFIG_NAME} |
278 | install -m 0644 pxeboot.pxe ${DEPLOYDIR}/pxeboot/${UBOOTPXE_CONFIG_NAME}/default | 279 | install -m 0644 pxeboot.pxe ${DEPLOYDIR}/pxeboot/${UBOOTPXE_CONFIG_NAME}/default |
279 | ln -sf pxeboot/${UBOOTPXE_CONFIG_NAME} ${DEPLOYDIR}/${UBOOTPXE_CONFIG} | 280 | install -d ${DEPLOYDIR}/${UBOOTPXE_CONFIG}/ |
281 | install -m 0644 pxeboot.pxe ${DEPLOYDIR}/${UBOOTPXE_CONFIG}/default | ||
280 | } | 282 | } |
281 | 283 | ||
282 | addtask do_deploy after do_compile before do_build | 284 | addtask do_deploy after do_compile before do_build |