diff options
| author | Mark Hatle <mark.hatle@amd.com> | 2024-11-21 14:47:49 -0600 |
|---|---|---|
| committer | Mark Hatle <mark.hatle@amd.com> | 2024-11-21 14:47:51 -0600 |
| commit | ab07add28ff4c8acf68157de49ff29f59238e4e0 (patch) | |
| tree | ccb8ed3fd1092b8015c1bec5d4d41e7713a34a05 /meta-xilinx-core/recipes-xrt/xrt | |
| parent | 1241013c7bce4262a6128eb4ccb3db410831746d (diff) | |
| download | meta-xilinx-ab07add28ff4c8acf68157de49ff29f59238e4e0.tar.gz | |
various: Fix variable usage
Remove most direct references to WORKDIR.
S = "${WORKDIR}" is no longer allowed, adjust this to refer to UNPACKDIR
${WORKDIR}/package is also incorrect, adjust to ${PKGD}.
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
Diffstat (limited to 'meta-xilinx-core/recipes-xrt/xrt')
9 files changed, 12 insertions, 12 deletions
diff --git a/meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202320.2.16.0.bb b/meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202320.2.16.0.bb index 6cf10817..c203aa10 100644 --- a/meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202320.2.16.0.bb +++ b/meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202320.2.16.0.bb | |||
| @@ -15,7 +15,7 @@ LIC_FILES_CHKSUM = " \ | |||
| 15 | file://runtime_src/core/common/elf/LICENSE.txt;md5=b996e8b74af169e7e72e22d9e7d05b06 \ | 15 | file://runtime_src/core/common/elf/LICENSE.txt;md5=b996e8b74af169e7e72e22d9e7d05b06 \ |
| 16 | " | 16 | " |
| 17 | 17 | ||
| 18 | S = "${WORKDIR}/git/src" | 18 | S = "${UNPACKDIR}/git/src" |
| 19 | 19 | ||
| 20 | inherit cmake pkgconfig native | 20 | inherit cmake pkgconfig native |
| 21 | 21 | ||
| @@ -25,5 +25,5 @@ EXTRA_OECMAKE += " -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMANDS=ON" | |||
| 25 | 25 | ||
| 26 | do_install() { | 26 | do_install() { |
| 27 | install -d ${D}${bindir} | 27 | install -d ${D}${bindir} |
| 28 | install -Dm 0755 ${WORKDIR}/build/runtime_src/tools/xclbinutil/xclbinutil ${D}${bindir} | 28 | install -Dm 0755 ${B}/runtime_src/tools/xclbinutil/xclbinutil ${D}${bindir} |
| 29 | } | 29 | } |
diff --git a/meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202410.2.17.319.bb b/meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202410.2.17.319.bb index 37f32a23..a5fa0fa9 100644 --- a/meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202410.2.17.319.bb +++ b/meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202410.2.17.319.bb | |||
| @@ -15,7 +15,7 @@ LIC_FILES_CHKSUM = " \ | |||
| 15 | file://runtime_src/core/common/elf/LICENSE.txt;md5=b996e8b74af169e7e72e22d9e7d05b06 \ | 15 | file://runtime_src/core/common/elf/LICENSE.txt;md5=b996e8b74af169e7e72e22d9e7d05b06 \ |
| 16 | " | 16 | " |
| 17 | 17 | ||
| 18 | S = "${WORKDIR}/git/src" | 18 | S = "${UNPACKDIR}/git/src" |
| 19 | 19 | ||
| 20 | inherit cmake pkgconfig native | 20 | inherit cmake pkgconfig native |
| 21 | 21 | ||
| @@ -25,5 +25,5 @@ EXTRA_OECMAKE += " -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMANDS=ON" | |||
| 25 | 25 | ||
| 26 | do_install() { | 26 | do_install() { |
| 27 | install -d ${D}${bindir} | 27 | install -d ${D}${bindir} |
| 28 | install -Dm 0755 ${WORKDIR}/build/runtime_src/tools/xclbinutil/xclbinutil ${D}${bindir} | 28 | install -Dm 0755 ${B}/runtime_src/tools/xclbinutil/xclbinutil ${D}${bindir} |
| 29 | } | 29 | } |
diff --git a/meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202420.2.18.0.bb b/meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202420.2.18.0.bb index 6e280009..191de878 100644 --- a/meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202420.2.18.0.bb +++ b/meta-xilinx-core/recipes-xrt/xrt/xclbinutil-native_202420.2.18.0.bb | |||
| @@ -15,7 +15,7 @@ LIC_FILES_CHKSUM = " \ | |||
| 15 | file://runtime_src/core/common/elf/LICENSE.txt;md5=b996e8b74af169e7e72e22d9e7d05b06 \ | 15 | file://runtime_src/core/common/elf/LICENSE.txt;md5=b996e8b74af169e7e72e22d9e7d05b06 \ |
| 16 | " | 16 | " |
| 17 | 17 | ||
| 18 | S = "${WORKDIR}/git/src" | 18 | S = "${UNPACKDIR}/git/src" |
| 19 | 19 | ||
| 20 | inherit cmake pkgconfig native | 20 | inherit cmake pkgconfig native |
| 21 | 21 | ||
| @@ -25,5 +25,5 @@ EXTRA_OECMAKE += " -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMANDS=ON" | |||
| 25 | 25 | ||
| 26 | do_install() { | 26 | do_install() { |
| 27 | install -d ${D}${bindir} | 27 | install -d ${D}${bindir} |
| 28 | install -Dm 0755 ${WORKDIR}/build/runtime_src/tools/xclbinutil/xclbinutil ${D}${bindir} | 28 | install -Dm 0755 ${B}/runtime_src/tools/xclbinutil/xclbinutil ${D}${bindir} |
| 29 | } | 29 | } |
diff --git a/meta-xilinx-core/recipes-xrt/xrt/xrt_202210.2.13.479.bb b/meta-xilinx-core/recipes-xrt/xrt/xrt_202210.2.13.479.bb index 0e9dd3db..49cfa228 100644 --- a/meta-xilinx-core/recipes-xrt/xrt/xrt_202210.2.13.479.bb +++ b/meta-xilinx-core/recipes-xrt/xrt/xrt_202210.2.13.479.bb | |||
| @@ -13,7 +13,7 @@ LIC_FILES_CHKSUM = "file://../LICENSE;md5=da5408f748bce8a9851dac18e66f4bcf \ | |||
| 13 | file://runtime_src/core/pcie/tools/xbutil/LICENSE;md5=d273d63619c9aeaf15cdaf76422c4f87 \ | 13 | file://runtime_src/core/pcie/tools/xbutil/LICENSE;md5=d273d63619c9aeaf15cdaf76422c4f87 \ |
| 14 | file://runtime_src/core/edge/tools/xbutil/LICENSE;md5=d273d63619c9aeaf15cdaf76422c4f87 " | 14 | file://runtime_src/core/edge/tools/xbutil/LICENSE;md5=d273d63619c9aeaf15cdaf76422c4f87 " |
| 15 | 15 | ||
| 16 | S = "${WORKDIR}/git/src" | 16 | S = "${UNPACKDIR}/git/src" |
| 17 | 17 | ||
| 18 | inherit cmake pkgconfig | 18 | inherit cmake pkgconfig |
| 19 | 19 | ||
diff --git a/meta-xilinx-core/recipes-xrt/xrt/xrt_202220.2.14.0.bb b/meta-xilinx-core/recipes-xrt/xrt/xrt_202220.2.14.0.bb index 7107c3df..f686a746 100644 --- a/meta-xilinx-core/recipes-xrt/xrt/xrt_202220.2.14.0.bb +++ b/meta-xilinx-core/recipes-xrt/xrt/xrt_202220.2.14.0.bb | |||
| @@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://../LICENSE;md5=da5408f748bce8a9851dac18e66f4bcf \ | |||
| 12 | file://runtime_src/core/pcie/linux/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57 \ | 12 | file://runtime_src/core/pcie/linux/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57 \ |
| 13 | file://runtime_src/core/tools/xbutil2/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57 " | 13 | file://runtime_src/core/tools/xbutil2/LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57 " |
| 14 | 14 | ||
| 15 | S = "${WORKDIR}/git/src" | 15 | S = "${UNPACKDIR}/git/src" |
| 16 | 16 | ||
| 17 | inherit cmake pkgconfig | 17 | inherit cmake pkgconfig |
| 18 | 18 | ||
diff --git a/meta-xilinx-core/recipes-xrt/xrt/xrt_202310.2.15.0.bb b/meta-xilinx-core/recipes-xrt/xrt/xrt_202310.2.15.0.bb index 0ee4d137..8a78d2f9 100644 --- a/meta-xilinx-core/recipes-xrt/xrt/xrt_202310.2.15.0.bb +++ b/meta-xilinx-core/recipes-xrt/xrt/xrt_202310.2.15.0.bb | |||
| @@ -17,7 +17,7 @@ COMPATIBLE_MACHINE:zynqmp = ".*" | |||
| 17 | COMPATIBLE_MACHINE:versal = ".*" | 17 | COMPATIBLE_MACHINE:versal = ".*" |
| 18 | COMPATIBLE_MACHINE:versal-net = ".*" | 18 | COMPATIBLE_MACHINE:versal-net = ".*" |
| 19 | 19 | ||
| 20 | S = "${WORKDIR}/git/src" | 20 | S = "${UNPACKDIR}/git/src" |
| 21 | 21 | ||
| 22 | inherit cmake pkgconfig | 22 | inherit cmake pkgconfig |
| 23 | 23 | ||
diff --git a/meta-xilinx-core/recipes-xrt/xrt/xrt_202320.2.16.0.bb b/meta-xilinx-core/recipes-xrt/xrt/xrt_202320.2.16.0.bb index 946b6551..abb0190d 100644 --- a/meta-xilinx-core/recipes-xrt/xrt/xrt_202320.2.16.0.bb +++ b/meta-xilinx-core/recipes-xrt/xrt/xrt_202320.2.16.0.bb | |||
| @@ -18,7 +18,7 @@ COMPATIBLE_MACHINE:zynqmp = ".*" | |||
| 18 | COMPATIBLE_MACHINE:versal = ".*" | 18 | COMPATIBLE_MACHINE:versal = ".*" |
| 19 | COMPATIBLE_MACHINE:versal-net = ".*" | 19 | COMPATIBLE_MACHINE:versal-net = ".*" |
| 20 | 20 | ||
| 21 | S = "${WORKDIR}/git/src" | 21 | S = "${UNPACKDIR}/git/src" |
| 22 | 22 | ||
| 23 | inherit cmake pkgconfig | 23 | inherit cmake pkgconfig |
| 24 | 24 | ||
diff --git a/meta-xilinx-core/recipes-xrt/xrt/xrt_202410.2.17.319.bb b/meta-xilinx-core/recipes-xrt/xrt/xrt_202410.2.17.319.bb index ff058db3..c88450c2 100644 --- a/meta-xilinx-core/recipes-xrt/xrt/xrt_202410.2.17.319.bb +++ b/meta-xilinx-core/recipes-xrt/xrt/xrt_202410.2.17.319.bb | |||
| @@ -18,7 +18,7 @@ COMPATIBLE_MACHINE:zynqmp = ".*" | |||
| 18 | COMPATIBLE_MACHINE:versal = ".*" | 18 | COMPATIBLE_MACHINE:versal = ".*" |
| 19 | COMPATIBLE_MACHINE:versal-net = ".*" | 19 | COMPATIBLE_MACHINE:versal-net = ".*" |
| 20 | 20 | ||
| 21 | S = "${WORKDIR}/git/src" | 21 | S = "${UNPACKDIR}/git/src" |
| 22 | 22 | ||
| 23 | inherit cmake pkgconfig | 23 | inherit cmake pkgconfig |
| 24 | 24 | ||
diff --git a/meta-xilinx-core/recipes-xrt/xrt/xrt_202420.2.18.0.bb b/meta-xilinx-core/recipes-xrt/xrt/xrt_202420.2.18.0.bb index d538f947..d9a44019 100644 --- a/meta-xilinx-core/recipes-xrt/xrt/xrt_202420.2.18.0.bb +++ b/meta-xilinx-core/recipes-xrt/xrt/xrt_202420.2.18.0.bb | |||
| @@ -14,7 +14,7 @@ LIC_FILES_CHKSUM = "file://../LICENSE;md5=de2c993ac479f02575bcbfb14ef9b485 \ | |||
| 14 | COMPATIBLE_HOST = "^$" | 14 | COMPATIBLE_HOST = "^$" |
| 15 | COMPATIBLE_HOST:aarch64 = ".*" | 15 | COMPATIBLE_HOST:aarch64 = ".*" |
| 16 | 16 | ||
| 17 | S = "${WORKDIR}/git/src" | 17 | S = "${UNPACKDIR}/git/src" |
| 18 | 18 | ||
| 19 | inherit cmake pkgconfig | 19 | inherit cmake pkgconfig |
| 20 | 20 | ||
