Hi Tony, hi maintainers, I see a lot of good progress since a while in your yocto engagement.
Nevertheless I just stumbled about some obviosly wrong assignments in some board config files for AMD/Xilinx boards. There is a fixed coded assignment of HDF_URI and checksum what should be replaced with ?= as default only. This simplifies usage of your boards for customer evaluation like I'm preparing right now to connect camera arrays on zcu104 and zcu106. Please check attached patches and hopefully take over that approach for other AMD/Xilinx development boards. BR Martin Dipl. Inform. Martin Hecht Senior Embedded Specialist / Functional Safety Engineer TA1130871952 Avnet SILICA [http://digital.avnet.com/signature/images/silica/Avnet_silica_logo.png] Avnet SILICA Kaiserin-Augusta-Allee 14 10553 Berlin [email protected]<mailto:%[email protected]> O +49 (0) 30 214 88 227 M +49 (0) 172 890 60 19 avnet-silica.com<http://avnet-silica.eu/> [cid:49253243-b70f-48f9-b158-f5a0598f21e0] We continuously commit to comply with the applicable data protection laws and ensure fair and transparent processing of your personal data. Please read our privacy statement including an information notice and data protection policy for detailed information on our website.
From ed59523b88fbf229c343cf569a80fbfc1a7a1845 Mon Sep 17 00:00:00 2001 From: Martin Hecht <[email protected]> Date: Wed, 8 Jan 2025 10:45:20 +0100 Subject: [PATCH 1/2] change assignemt operator for HDF_URI and HDF_URI[sha256sum] to default assignment --- conf/machine/zcu106-zynqmp-2024.2.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/machine/zcu106-zynqmp-2024.2.conf b/conf/machine/zcu106-zynqmp-2024.2.conf index fede881..f9de9f0 100644 --- a/conf/machine/zcu106-zynqmp-2024.2.conf +++ b/conf/machine/zcu106-zynqmp-2024.2.conf @@ -56,8 +56,8 @@ XILINX_XSCT_VERSION = "2024.2" XILINX_WITH_ESW = "xsct" # Add system XSA -HDF_URI = "https://petalinux.xilinx.com/sswreleases/rel-v2024.2/hdf-examples/2024.2/2024.2_1111_1_12031048/external/zcu106-zynqmp/zcu106-zynqmp-2024.2_1111_1.xsa" -HDF_URI[sha256sum] = "f41824dcfbb8faeec9f1ea3f0c5751a94ccd807d648aa3b9cb8efff78d820091" +HDF_URI ?= "https://petalinux.xilinx.com/sswreleases/rel-v2024.2/hdf-examples/2024.2/2024.2_1111_1_12031048/external/zcu106-zynqmp/zcu106-zynqmp-2024.2_1111_1.xsa" +HDF_URI[sha256sum] ?= "f41824dcfbb8faeec9f1ea3f0c5751a94ccd807d648aa3b9cb8efff78d820091" #### No additional settings should be after the Postamble #### Postamble -- 2.34.1
From 526cd9ba91d651245e76cf5460e212073ebcd620 Mon Sep 17 00:00:00 2001 From: Martin Hecht <[email protected]> Date: Wed, 8 Jan 2025 10:45:26 +0100 Subject: [PATCH 2/2] change assignemt operator for HDF_URI and HDF_URI[sha256sum] to default assignment --- conf/machine/zcu104-zynqmp-2024.2.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/machine/zcu104-zynqmp-2024.2.conf b/conf/machine/zcu104-zynqmp-2024.2.conf index e54b1ff..c9237ea 100644 --- a/conf/machine/zcu104-zynqmp-2024.2.conf +++ b/conf/machine/zcu104-zynqmp-2024.2.conf @@ -60,8 +60,8 @@ XILINX_XSCT_VERSION = "2024.2" XILINX_WITH_ESW = "xsct" # Add system XSA -HDF_URI = "https://petalinux.xilinx.com/sswreleases/rel-v2024.2/hdf-examples/2024.2/2024.2_1111_1_12031048/external/zcu104-zynqmp/zcu104-zynqmp-2024.2_1111_1.xsa" -HDF_URI[sha256sum] = "e5fe7f5442fd0fb699d6ff0d0e6f28e439c70a9b11a364aa298a53e29e8bec72" +HDF_URI ?= "https://petalinux.xilinx.com/sswreleases/rel-v2024.2/hdf-examples/2024.2/2024.2_1111_1_12031048/external/zcu104-zynqmp/zcu104-zynqmp-2024.2_1111_1.xsa" +HDF_URI[sha256sum] ?= "e5fe7f5442fd0fb699d6ff0d0e6f28e439c70a9b11a364aa298a53e29e8bec72" #### No additional settings should be after the Postamble #### Postamble -- 2.34.1
-=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#5516): https://lists.yoctoproject.org/g/meta-xilinx/message/5516 Mute This Topic: https://lists.yoctoproject.org/mt/110494172/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-xilinx/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
