diff mbox series

[meta-ti,2/2] meta-ti-extras recipes: fix whitespace warnings

Message ID 20250427095918.3941375-2-max.oss.09@gmail.com
State New
Headers show
Series [meta-ti,1/2] meta-ti-bsp recipes: fix whitespace warnings | expand

Commit Message

Max Krummenacher April 27, 2025, 9:59 a.m. UTC
From: Max Krummenacher <max.krummenacher@toradex.com>

Since OE bitbake commit 24772dd2ae6c ("parse/ConfHandler: Add warning for
deprecated whitespace usage"), the current build generates the following
warning (as example):

| WARNING: ...meta-ti/meta-ti-bsp/recipes-ti/ipc/ti-ipc_git.bb:
|   meta-ti/meta-ti-bsp/recipes-ti/ipc/ti-ipc_git.bb:2
|   has a lack of whitespace around the assignment:
|   'HOMEPAGE="http://processors.wiki.ti.com/index.php/Category:IPC"'

Fix all the warnings.

Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
---
 .../recipes-bsp/dsptop/libulm_git.bb          |  4 ++--
 .../recipes-bsp/ipumm-fw/ipumm-fw_git.bb      | 24 +++++++++----------
 meta-ti-extras/recipes-ti/bios/ti-sysbios.inc |  4 ++--
 .../recipes-ti/ctoolslib/libaet_git.bb        |  2 +-
 .../recipes-ti/devtools/ti-cg-xml_2.61.00.bb  |  6 ++---
 .../recipes-ti/devtools/ti-cgt470.inc         |  6 ++---
 .../recipes-ti/devtools/ti-cgt6x-7_7.4.16.bb  |  2 +-
 meta-ti-extras/recipes-ti/dsplib/dsplib.inc   | 18 +++++++-------
 meta-ti-extras/recipes-ti/mathlib/mathlib.inc | 16 ++++++-------
 meta-ti-extras/recipes-ti/vlib/vlib-c66x.inc  |  4 ++--
 10 files changed, 43 insertions(+), 43 deletions(-)
diff mbox series

Patch

diff --git a/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb b/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb
index 998d9d830913..a4670b6e795a 100644
--- a/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb
+++ b/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb
@@ -11,7 +11,7 @@  PR = "${INC_PR}.0"
 
 S = "${WORKDIR}/git/dsptop/ulm"
 
-DEVICE=""
+DEVICE = ""
 DEVICE:dra7xx = "DRA7xx"
 
 EXTRA_OEMAKE = "release DEVICE=${DEVICE} CROSS_COMPILE=${TARGET_PREFIX}"
@@ -42,7 +42,7 @@  include dsptop.inc
 
 ALLOW_EMPTY:${PN} = "1"
 
-PARALLEL_MAKE= ""
+PARALLEL_MAKE = ""
 
 # Disable the "buildpaths" check while we figure out how we are
 # going to address this issue.
diff --git a/meta-ti-extras/recipes-bsp/ipumm-fw/ipumm-fw_git.bb b/meta-ti-extras/recipes-bsp/ipumm-fw/ipumm-fw_git.bb
index 87f63750ea14..09926109fb68 100644
--- a/meta-ti-extras/recipes-bsp/ipumm-fw/ipumm-fw_git.bb
+++ b/meta-ti-extras/recipes-bsp/ipumm-fw/ipumm-fw_git.bb
@@ -26,18 +26,18 @@  inherit update-alternatives
 
 DEPENDS = "ti-xdctools-native ti-sysbios ti-codec-engine ti-framework-components ti-xdais ti-cgt-arm-native ti-ipc-rtos"
 
-export HWVERSION="ES10"
-export BIOSTOOLSROOT="${STAGING_DIR_TARGET}/usr/share/ti"
-
-export XDCVERSION="ti-xdctools-tree"
-export BIOSVERSION="ti-sysbios-tree"
-export IPCVERSION="ti-ipc-tree"
-export CEVERSION="ti-codec-engine-tree"
-export FCVERSION="ti-framework-components-tree"
-export XDAISVERSION="ti-xdais-tree"
-
-export TMS470CGTOOLPATH="${M4_TOOLCHAIN_INSTALL_DIR}"
-export IPCSRC="${STAGING_DIR_TARGET}/usr/share/ti/ti-ipc-tree"
+export HWVERSION = "ES10"
+export BIOSTOOLSROOT = "${STAGING_DIR_TARGET}/usr/share/ti"
+
+export XDCVERSION = "ti-xdctools-tree"
+export BIOSVERSION = "ti-sysbios-tree"
+export IPCVERSION = "ti-ipc-tree"
+export CEVERSION = "ti-codec-engine-tree"
+export FCVERSION = "ti-framework-components-tree"
+export XDAISVERSION = "ti-xdais-tree"
+
+export TMS470CGTOOLPATH = "${M4_TOOLCHAIN_INSTALL_DIR}"
+export IPCSRC = "${STAGING_DIR_TARGET}/usr/share/ti/ti-ipc-tree"
 
 EXTRA_OEMAKE += "XDCDIST_TREE=${STAGING_DIR_NATIVE}/usr/share/ti/${XDCVERSION}"
 
diff --git a/meta-ti-extras/recipes-ti/bios/ti-sysbios.inc b/meta-ti-extras/recipes-ti/bios/ti-sysbios.inc
index 8cc9e3095d41..3c1861ac2392 100644
--- a/meta-ti-extras/recipes-ti/bios/ti-sysbios.inc
+++ b/meta-ti-extras/recipes-ti/bios/ti-sysbios.inc
@@ -10,8 +10,8 @@  require ../includes/ti-eula-unpack.inc
 S = "${WORKDIR}/bios_${PV}"
 
 SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/bios/sysbios/${PV}/exports/bios_setuplinux_${PV}.bin;name=sysbiosbin"
-BINFILE="bios_${PV}.bin"
-TI_BIN_UNPK_CMDS="Y: q:workdir:Y"
+BINFILE = "bios_${PV}.bin"
+TI_BIN_UNPK_CMDS = "Y: q:workdir:Y"
 
 do_install() {
     CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"
diff --git a/meta-ti-extras/recipes-ti/ctoolslib/libaet_git.bb b/meta-ti-extras/recipes-ti/ctoolslib/libaet_git.bb
index 400221f97d2d..f3b03bd66f1a 100644
--- a/meta-ti-extras/recipes-ti/ctoolslib/libaet_git.bb
+++ b/meta-ti-extras/recipes-ti/ctoolslib/libaet_git.bb
@@ -15,7 +15,7 @@  PR = "r0"
 
 S = "${WORKDIR}/git/aet"
 
-DEVICE=""
+DEVICE = ""
 DEVICE:dra7xx = "DRA7xx"
 
 EXTRA_OEMAKE = "C6X_C_DIR=${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x/include"
diff --git a/meta-ti-extras/recipes-ti/devtools/ti-cg-xml_2.61.00.bb b/meta-ti-extras/recipes-ti/devtools/ti-cg-xml_2.61.00.bb
index c7608a768c21..a0972602e7a0 100644
--- a/meta-ti-extras/recipes-ti/devtools/ti-cg-xml_2.61.00.bb
+++ b/meta-ti-extras/recipes-ti/devtools/ti-cg-xml_2.61.00.bb
@@ -19,9 +19,9 @@  LIC_FILES_CHKSUM = "file://cg_xml_${PV}_Manifest.pdf;md5=fc02a39748ba50373f32b2f
 SRC_URI[cgxmlbin_linux.md5sum] = "6ce60caa97bbf15158d806fb062fadff"
 SRC_URI[cgxmlbin_linux.sha256sum] = "da77cb10bd3d5de89e27e4ce8f4408a2e50775c8980225f9a828ddc242bb81f9"
 
-BINFILE="cgxml-${PV}-linux-installer.run"
-TI_BIN_UNPK_CMDS=""
-TI_BIN_UNPK_ARGS="--prefix ${S} --mode unattended"
+BINFILE = "cgxml-${PV}-linux-installer.run"
+TI_BIN_UNPK_CMDS = ""
+TI_BIN_UNPK_ARGS = "--prefix ${S} --mode unattended"
 
 do_install() {
     CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"
diff --git a/meta-ti-extras/recipes-ti/devtools/ti-cgt470.inc b/meta-ti-extras/recipes-ti/devtools/ti-cgt470.inc
index f0992aa7db8e..d905755c0130 100644
--- a/meta-ti-extras/recipes-ti/devtools/ti-cgt470.inc
+++ b/meta-ti-extras/recipes-ti/devtools/ti-cgt470.inc
@@ -13,9 +13,9 @@  S = "${WORKDIR}/cgt470_${PV}"
 
 SRC_URI = "http://install.source.dir.local/ti_cgt_tms470_${PVwithdots}_setup_linux_x86.bin;name=cgt470bin"
 
-BINFILE="ti_cgt_tms470_${PVwithdots}_setup_linux_x86.bin"
-TI_BIN_UNPK_CMDS="Y:qY:workdir: : "
-TI_BIN_UNPK_WDEXT="/cgt470_${PV}"
+BINFILE = "ti_cgt_tms470_${PVwithdots}_setup_linux_x86.bin"
+TI_BIN_UNPK_CMDS = "Y:qY:workdir: : "
+TI_BIN_UNPK_WDEXT = "/cgt470_${PV}"
 
 do_install() {
     install -d ${D}${CODEGEN_ARM_INSTALL_DIR_RECIPE}
diff --git a/meta-ti-extras/recipes-ti/devtools/ti-cgt6x-7_7.4.16.bb b/meta-ti-extras/recipes-ti/devtools/ti-cgt6x-7_7.4.16.bb
index a7de8e38441b..0cc068e46a61 100644
--- a/meta-ti-extras/recipes-ti/devtools/ti-cgt6x-7_7.4.16.bb
+++ b/meta-ti-extras/recipes-ti/devtools/ti-cgt6x-7_7.4.16.bb
@@ -19,7 +19,7 @@  require recipes-ti/includes/ti-unpack.inc
 BINFILE = "ti_cgt_c6000_7.4.16_linux_installer_x86.bin"
 BINFILE_NAME = "cgt6x_7.4.16_x86_installer"
 TI_BIN_UNPK_ARGS = "--prefix ${WORKDIR} --mode unattended"
-TI_BIN_UNPK_CMDS=""
+TI_BIN_UNPK_CMDS = ""
 
 SRC_URI = "http://install.source.dir.local/${BINFILE};name=${BINFILE_NAME}"
 
diff --git a/meta-ti-extras/recipes-ti/dsplib/dsplib.inc b/meta-ti-extras/recipes-ti/dsplib/dsplib.inc
index 3c24f1966c4f..cabd2a9d116f 100644
--- a/meta-ti-extras/recipes-ti/dsplib/dsplib.inc
+++ b/meta-ti-extras/recipes-ti/dsplib/dsplib.inc
@@ -25,19 +25,19 @@  SRCREV = "${DSPLIB_SRCREV}"
 
 LIC_FILES_CHKSUM = "file://ti/dsplib/src/common/c66/lnk.cmd;beginline=1;endline=37;md5=0f0c9c4d51d8af75419781591ace190b"
 
-export DSPLIB_WORK_DIR="${S}"
-export CGTOOLS_INSTALL_DIR  = "${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x"
-export C64PCODEGENTOOL="${CGTOOLS_INSTALL_DIR}"
-export C674CODEGENTOOL="${CGTOOLS_INSTALL_DIR}"
-export C66CODEGENTOOL ="${CGTOOLS_INSTALL_DIR}"
+export DSPLIB_WORK_DIR = "${S}"
+export CGTOOLS_INSTALL_DIR = "${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x"
+export C64PCODEGENTOOL = "${CGTOOLS_INSTALL_DIR}"
+export C674CODEGENTOOL = "${CGTOOLS_INSTALL_DIR}"
+export C66CODEGENTOOL = "${CGTOOLS_INSTALL_DIR}"
 export SWTOOLS_PATH = "${SWTOOLS_INSTALL_DIR}/ti/mas/swtools"
-export XDCBUILDCFG="${SWTOOLS_PATH}/config.bld"
-export INCDIR="${MATHLIB_INSTALL_DIR}/"
+export XDCBUILDCFG = "${SWTOOLS_PATH}/config.bld"
+export INCDIR = "${MATHLIB_INSTALL_DIR}/"
 
 PATH:append = ":${XDC_INSTALL_DIR}"
 
-XDCPATH.="${XDCCGROOT}/include;${XDC_INSTALL_DIR}/packages;${SYSBIOS_INSTALL_DIR}/packages;"
-XDCPATH.="${SWTOOLS_INSTALL_DIR};${MATHLIB_INSTALL_DIR};${DSPLIB_WORK_DIR};"
+XDCPATH .= "${XDCCGROOT}/include;${XDC_INSTALL_DIR}/packages;${SYSBIOS_INSTALL_DIR}/packages;"
+XDCPATH .= "${SWTOOLS_INSTALL_DIR};${MATHLIB_INSTALL_DIR};${DSPLIB_WORK_DIR};"
 
 export XDCPATH
 
diff --git a/meta-ti-extras/recipes-ti/mathlib/mathlib.inc b/meta-ti-extras/recipes-ti/mathlib/mathlib.inc
index 34902ba1ae64..fb9de41df10b 100644
--- a/meta-ti-extras/recipes-ti/mathlib/mathlib.inc
+++ b/meta-ti-extras/recipes-ti/mathlib/mathlib.inc
@@ -25,18 +25,18 @@  SRCREV = "${MATHLIB_SRCREV}"
 
 LIC_FILES_CHKSUM = "file://ti/mathlib/src/acosdp/acosdp.h;beginline=1;endline=35;md5=c133f7e139b46385906c861dd9552250"
 
-export MATHLIB_WORK_DIR="${S}"
-export CGTOOLS_INSTALL_DIR  = "${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x"
-export C64PCODEGENTOOL="${CGTOOLS_INSTALL_DIR}"
-export C674CODEGENTOOL="${CGTOOLS_INSTALL_DIR}"
-export C66CODEGENTOOL ="${CGTOOLS_INSTALL_DIR}"
+export MATHLIB_WORK_DIR = "${S}"
+export CGTOOLS_INSTALL_DIR = "${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x"
+export C64PCODEGENTOOL = "${CGTOOLS_INSTALL_DIR}"
+export C674CODEGENTOOL = "${CGTOOLS_INSTALL_DIR}"
+export C66CODEGENTOOL = "${CGTOOLS_INSTALL_DIR}"
 export SWTOOLS_PATH = "${SWTOOLS_INSTALL_DIR}/ti/mas/swtools"
-export XDCBUILDCFG="${SWTOOLS_PATH}/config.bld"
+export XDCBUILDCFG = "${SWTOOLS_PATH}/config.bld"
 
 PATH:append = ":${XDC_INSTALL_DIR}"
 
-XDCPATH.="${XDCCGROOT}/include;${XDC_INSTALL_DIR}/packages;${SYSBIOS_INSTALL_DIR}/packages;"
-XDCPATH.="${SWTOOLS_INSTALL_DIR};${MATHLIB_WORK_DIR};"
+XDCPATH .= "${XDCCGROOT}/include;${XDC_INSTALL_DIR}/packages;${SYSBIOS_INSTALL_DIR}/packages;"
+XDCPATH .= "${SWTOOLS_INSTALL_DIR};${MATHLIB_WORK_DIR};"
 
 export XDCPATH
 
diff --git a/meta-ti-extras/recipes-ti/vlib/vlib-c66x.inc b/meta-ti-extras/recipes-ti/vlib/vlib-c66x.inc
index 6b5e186cf889..518468369b32 100644
--- a/meta-ti-extras/recipes-ti/vlib/vlib-c66x.inc
+++ b/meta-ti-extras/recipes-ti/vlib/vlib-c66x.inc
@@ -13,9 +13,9 @@  SRC_URI = "http://software-dl.ti.com/libs/vlib/${PV}//exports/vlib_c66x_obj_${PV
 
 S = "${WORKDIR}/vlib_c66x_${PV}"
 
-BINFILE="vlib_c66x_obj_${PV}_Linux.bin"
+BINFILE = "vlib_c66x_obj_${PV}_Linux.bin"
 TI_BIN_UNPK_ARGS = "--mode silent --prefix ${S}"
-TI_BIN_UNPK_CMDS=""
+TI_BIN_UNPK_CMDS = ""
 
 do_install() {
     CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"