From dff0b3ea38fae3ecdd8a0a7c71166d8744ec5b41 Mon Sep 17 00:00:00 2001 From: Max Krummenacher Date: Sat, 26 Apr 2025 11:33:25 +0200 Subject: [PATCH] recipes: fix whitespace warnings Since OE bitbake commit 24772dd2ae6c ("parse/ConfHandler: Add warning for deprecated whitespace usage"), the current build generates the following warning (as example): | WARNING: .../meta-freescale-3rdparty/recipes-bsp/atf/qoriq-atf_1.5.bb:34 has a lack | of whitespace around the assignment: 'export CROSS_COMPILE="${TARGET_PREFIX}"' Fix all the warnings. Signed-off-by: Max Krummenacher --- recipes-bsp/atf/qoriq-atf_1.5.bb | 4 ++-- recipes-bsp/u-boot/u-boot-qoriq_2019.10.bb | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/recipes-bsp/atf/qoriq-atf_1.5.bb b/recipes-bsp/atf/qoriq-atf_1.5.bb index fb686c9..ecc8ab7 100644 --- a/recipes-bsp/atf/qoriq-atf_1.5.bb +++ b/recipes-bsp/atf/qoriq-atf_1.5.bb @@ -31,8 +31,8 @@ RCW_FOLDER ?= "${MACHINE}" RCW_FOLDER:ls1088ardb-pb = "ls1088ardb" # requires CROSS_COMPILE set by hand as there is no configure script -export CROSS_COMPILE="${TARGET_PREFIX}" -export ARCH="arm64" +export CROSS_COMPILE = "${TARGET_PREFIX}" +export ARCH = "arm64" # Let the Makefile handle setting up the CFLAGS and LDFLAGS as it is # a standalone application diff --git a/recipes-bsp/u-boot/u-boot-qoriq_2019.10.bb b/recipes-bsp/u-boot/u-boot-qoriq_2019.10.bb index 2c21a06..3ff1cd8 100644 --- a/recipes-bsp/u-boot/u-boot-qoriq_2019.10.bb +++ b/recipes-bsp/u-boot/u-boot-qoriq_2019.10.bb @@ -24,7 +24,7 @@ SRC_URI = "git://source.codeaurora.org/external/qoriq/qoriq-components/u-boot;no file://0001-buildman-Convert-to-Python-3.patch \ file://0001-Remove-redundant-YYLOC-global-declaration.patch \ " -SRCREV= "1e55b2f9e7f56b76569089b9e950f49c1579580e" +SRCREV = "1e55b2f9e7f56b76569089b9e950f49c1579580e" S = "${WORKDIR}/git" B = "${WORKDIR}/build"