Fix missing whitespace in assignments to resolve the build warning like
below:

meta-xilinx/meta-xilinx-core/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware.inc:40
 has a lack of whitespace around the assignment: 'export 
CROSS_COMPILE="${TARGET_PREFIX}"'

Signed-off-by: Liwei Song <[email protected]>
---
 meta-xilinx-core/recipes-apps/raft/raft_2024.1.bb           | 2 +-
 .../arm-trusted-firmware/arm-trusted-firmware.inc           | 2 +-
 meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_1.0.bb         | 6 +++---
 meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2023.1.bb      | 6 +++---
 meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2023.2.bb      | 6 +++---
 meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2024.1.bb      | 6 +++---
 meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2024.2.bb      | 6 +++---
 meta-xilinx-core/recipes-utils/mb-realoc/mb-realoc.bb       | 4 ++--
 meta-xilinx-core/recipes-xrt/xrt/xrt-202310.2.15.0.inc      | 4 ++--
 meta-xilinx-core/recipes-xrt/xrt/xrt-202320.2.16.0.inc      | 2 +-
 meta-xilinx-core/recipes-xrt/xrt/xrt-202410.2.17.319.inc    | 2 +-
 11 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/meta-xilinx-core/recipes-apps/raft/raft_2024.1.bb 
b/meta-xilinx-core/recipes-apps/raft/raft_2024.1.bb
index 89a8b5a5aaa3..1367f3190dbb 100644
--- a/meta-xilinx-core/recipes-apps/raft/raft_2024.1.bb
+++ b/meta-xilinx-core/recipes-apps/raft/raft_2024.1.bb
@@ -23,7 +23,7 @@ INITSCRIPT_PARAMS = "start 99 S ."
 
 SYSTEMD_PACKAGES = "${PN}"
 SYSTEMD_SERVICE:${PN} = "raft-startup.service"
-SYSTEMD_AUTO_ENABLE:${PN}="enable"
+SYSTEMD_AUTO_ENABLE:${PN} = "enable"
 
 DEPENDS += "libmetal"
 
diff --git 
a/meta-xilinx-core/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware.inc 
b/meta-xilinx-core/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware.inc
index 09f83809e253..5a0d27fa361e 100644
--- a/meta-xilinx-core/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware.inc
+++ b/meta-xilinx-core/recipes-bsp/arm-trusted-firmware/arm-trusted-firmware.inc
@@ -37,7 +37,7 @@ PLATFORM:versal = "versal"
 PLATFORM:versal-net = "versal_net"
 
 # requires CROSS_COMPILE set by hand as there is no configure script
-export CROSS_COMPILE="${TARGET_PREFIX}"
+export CROSS_COMPILE = "${TARGET_PREFIX}"
 
 # Let the Makefile handle setting up the CFLAGS and LDFLAGS as it is a 
standalone application
 CFLAGS[unexport] = "1"
diff --git a/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_1.0.bb 
b/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_1.0.bb
index 9e0f07ac8783..16a8d61bbe20 100644
--- a/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_1.0.bb
+++ b/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_1.0.bb
@@ -38,9 +38,9 @@ CFLAGS += "-Wno-stringop-truncation"
 INITSCRIPT_NAME = "dfx-mgr.sh"
 INITSCRIPT_PARAMS = "start 99 S ."
 
-SYSTEMD_PACKAGES="${PN}"
-SYSTEMD_SERVICE:${PN}="dfx-mgr.service"
-SYSTEMD_AUTO_ENABLE:${PN}="enable"
+SYSTEMD_PACKAGES = "${PN}"
+SYSTEMD_SERVICE:${PN} = "dfx-mgr.service"
+SYSTEMD_AUTO_ENABLE:${PN} = "enable"
 
 
 do_install(){
diff --git a/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2023.1.bb 
b/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2023.1.bb
index 2699a55db285..cd3e120496ce 100644
--- a/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2023.1.bb
+++ b/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2023.1.bb
@@ -32,9 +32,9 @@ EXTRA_OECMAKE += " \
 INITSCRIPT_NAME = "dfx-mgr.sh"
 INITSCRIPT_PARAMS = "start 99 S ."
 
-SYSTEMD_PACKAGES="${PN}"
-SYSTEMD_SERVICE:${PN}="dfx-mgr.service"
-SYSTEMD_AUTO_ENABLE:${PN}="enable"
+SYSTEMD_PACKAGES = "${PN}"
+SYSTEMD_SERVICE:${PN} = "dfx-mgr.service"
+SYSTEMD_AUTO_ENABLE:${PN} = "enable"
 
 
 do_install(){
diff --git a/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2023.2.bb 
b/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2023.2.bb
index da2f3e26121a..5295570cec61 100644
--- a/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2023.2.bb
+++ b/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2023.2.bb
@@ -32,9 +32,9 @@ EXTRA_OECMAKE += " \
 INITSCRIPT_NAME = "dfx-mgr.sh"
 INITSCRIPT_PARAMS = "start 99 S ."
 
-SYSTEMD_PACKAGES="${PN}"
-SYSTEMD_SERVICE:${PN}="dfx-mgr.service"
-SYSTEMD_AUTO_ENABLE:${PN}="enable"
+SYSTEMD_PACKAGES = "${PN}"
+SYSTEMD_SERVICE:${PN} = "dfx-mgr.service"
+SYSTEMD_AUTO_ENABLE:${PN} = "enable"
 
 
 do_install(){
diff --git a/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2024.1.bb 
b/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2024.1.bb
index 261156f994bc..490a97238a46 100644
--- a/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2024.1.bb
+++ b/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2024.1.bb
@@ -32,9 +32,9 @@ EXTRA_OECMAKE += " \
 INITSCRIPT_NAME = "dfx-mgr.sh"
 INITSCRIPT_PARAMS = "start 99 S ."
 
-SYSTEMD_PACKAGES="${PN}"
-SYSTEMD_SERVICE:${PN}="dfx-mgr.service"
-SYSTEMD_AUTO_ENABLE:${PN}="enable"
+SYSTEMD_PACKAGES = "${PN}"
+SYSTEMD_SERVICE:${PN} = "dfx-mgr.service"
+SYSTEMD_AUTO_ENABLE:${PN} = "enable"
 
 
 do_install(){
diff --git a/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2024.2.bb 
b/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2024.2.bb
index 8f63439854bb..5ac42b7bbe51 100644
--- a/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2024.2.bb
+++ b/meta-xilinx-core/recipes-bsp/dfx-mgr/dfx-mgr_2024.2.bb
@@ -33,9 +33,9 @@ EXTRA_OECMAKE += " \
 INITSCRIPT_NAME = "dfx-mgr.sh"
 INITSCRIPT_PARAMS = "start 99 S ."
 
-SYSTEMD_PACKAGES="${PN}"
-SYSTEMD_SERVICE:${PN}="dfx-mgr.service"
-SYSTEMD_AUTO_ENABLE:${PN}="enable"
+SYSTEMD_PACKAGES = "${PN}"
+SYSTEMD_SERVICE:${PN} = "dfx-mgr.service"
+SYSTEMD_AUTO_ENABLE:${PN} = "enable"
 
 
 do_install(){
diff --git a/meta-xilinx-core/recipes-utils/mb-realoc/mb-realoc.bb 
b/meta-xilinx-core/recipes-utils/mb-realoc/mb-realoc.bb
index cf0c778d68d9..48de4318750b 100644
--- a/meta-xilinx-core/recipes-utils/mb-realoc/mb-realoc.bb
+++ b/meta-xilinx-core/recipes-utils/mb-realoc/mb-realoc.bb
@@ -17,9 +17,9 @@ OUTFILE_NAME ?= "u-boot-s"
 S = "${UNPACKDIR}"
 B = "${WORKDIR}/build"
 
-PARALLEL_MAKE=""
+PARALLEL_MAKE = ""
 
-do_configure[noexec]="1"
+do_configure[noexec] = "1"
 do_compile[depends] = "virtual/bootloader:do_deploy"
 
 do_compile() {
diff --git a/meta-xilinx-core/recipes-xrt/xrt/xrt-202310.2.15.0.inc 
b/meta-xilinx-core/recipes-xrt/xrt/xrt-202310.2.15.0.inc
index 2f6a5c6aab7a..d8f327b9fb0c 100644
--- a/meta-xilinx-core/recipes-xrt/xrt/xrt-202310.2.15.0.inc
+++ b/meta-xilinx-core/recipes-xrt/xrt/xrt-202310.2.15.0.inc
@@ -2,6 +2,6 @@ REPO ?= "git://github.com/Xilinx/XRT.git;protocol=https"
 BRANCHARG = "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH', True) != 
'']}"
 SRC_URI = "${REPO};${BRANCHARG}"
 
-BRANCH= "2023.1"
-SRCREV= "64c933573e7e50a8aba939a74209590c2b739e8b"
+BRANCH = "2023.1"
+SRCREV = "64c933573e7e50a8aba939a74209590c2b739e8b"
 
diff --git a/meta-xilinx-core/recipes-xrt/xrt/xrt-202320.2.16.0.inc 
b/meta-xilinx-core/recipes-xrt/xrt/xrt-202320.2.16.0.inc
index 0ef2b1e58dac..b8e1b141e8bc 100644
--- a/meta-xilinx-core/recipes-xrt/xrt/xrt-202320.2.16.0.inc
+++ b/meta-xilinx-core/recipes-xrt/xrt/xrt-202320.2.16.0.inc
@@ -2,7 +2,7 @@ REPO ?= "git://github.com/Xilinx/XRT.git;protocol=https"
 BRANCHARG = "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH', True) != 
'']}"
 SRC_URI = "${REPO};${BRANCHARG};name=xrt"
 
-BRANCH= "2023.2"
+BRANCH = "2023.2"
 SRCREV_xrt = "2865a62b6a417dea523d2d5646154aa94a2cbc28"
 
 SRC_URI += 
"git://github.com/Xilinx/dma_ip_drivers.git;branch=master;name=dma_ip_drivers;destsuffix=git/src/runtime_src/core/pcie/driver/linux/xocl/lib/libqdma;protocol=https"
diff --git a/meta-xilinx-core/recipes-xrt/xrt/xrt-202410.2.17.319.inc 
b/meta-xilinx-core/recipes-xrt/xrt/xrt-202410.2.17.319.inc
index 8041e5be457e..155bcc35a428 100644
--- a/meta-xilinx-core/recipes-xrt/xrt/xrt-202410.2.17.319.inc
+++ b/meta-xilinx-core/recipes-xrt/xrt/xrt-202410.2.17.319.inc
@@ -2,5 +2,5 @@ REPO ?= "gitsm://github.com/Xilinx/XRT.git;protocol=https"
 BRANCHARG = "${@['nobranch=1', 'branch=${BRANCH}'][d.getVar('BRANCH', True) != 
'']}"
 SRC_URI = "${REPO};${BRANCHARG}"
 
-BRANCH= "2024.1"
+BRANCH = "2024.1"
 SRCREV = "2c7ff250504589bd1f934010e37bdcef86afaa54"
-- 
2.40.0

-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#5794): 
https://lists.yoctoproject.org/g/meta-xilinx/message/5794
Mute This Topic: https://lists.yoctoproject.org/mt/116213218/21656
Group Owner: [email protected]
Unsubscribe: https://lists.yoctoproject.org/g/meta-xilinx/unsub 
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-

Reply via email to