summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2025-04-27 11:59:18 +0200
committerRyan Eatmon <reatmon@ti.com>2025-05-13 11:05:23 -0500
commit6d538d31c302d09f7bb0b7e02a59d3d046a33945 (patch)
treecbac462372ad07778e3a241a3be0a1462fc0c9eb
parentccef6ee0b7b1439bf1243be51c85ced15e1234d9 (diff)
downloadmeta-ti-6d538d31c302d09f7bb0b7e02a59d3d046a33945.tar.gz
meta-ti-extras 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-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> Signed-off-by: Ryan Eatmon <reatmon@ti.com>
-rw-r--r--meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb4
-rw-r--r--meta-ti-extras/recipes-bsp/ipumm-fw/ipumm-fw_git.bb24
-rw-r--r--meta-ti-extras/recipes-ti/bios/ti-sysbios.inc4
-rw-r--r--meta-ti-extras/recipes-ti/ctoolslib/libaet_git.bb2
-rw-r--r--meta-ti-extras/recipes-ti/devtools/ti-cg-xml_2.61.00.bb6
-rw-r--r--meta-ti-extras/recipes-ti/devtools/ti-cgt470.inc6
-rw-r--r--meta-ti-extras/recipes-ti/devtools/ti-cgt6x-7_7.4.16.bb2
-rw-r--r--meta-ti-extras/recipes-ti/dsplib/dsplib.inc18
-rw-r--r--meta-ti-extras/recipes-ti/mathlib/mathlib.inc16
-rw-r--r--meta-ti-extras/recipes-ti/vlib/vlib-c66x.inc4
10 files changed, 43 insertions, 43 deletions
diff --git a/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb b/meta-ti-extras/recipes-bsp/dsptop/libulm_git.bb
index 998d9d83..a4670b6e 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"
11 11
12S = "${WORKDIR}/git/dsptop/ulm" 12S = "${WORKDIR}/git/dsptop/ulm"
13 13
14DEVICE="" 14DEVICE = ""
15DEVICE:dra7xx = "DRA7xx" 15DEVICE:dra7xx = "DRA7xx"
16 16
17EXTRA_OEMAKE = "release DEVICE=${DEVICE} CROSS_COMPILE=${TARGET_PREFIX}" 17EXTRA_OEMAKE = "release DEVICE=${DEVICE} CROSS_COMPILE=${TARGET_PREFIX}"
@@ -42,7 +42,7 @@ include dsptop.inc
42 42
43ALLOW_EMPTY:${PN} = "1" 43ALLOW_EMPTY:${PN} = "1"
44 44
45PARALLEL_MAKE= "" 45PARALLEL_MAKE = ""
46 46
47# Disable the "buildpaths" check while we figure out how we are 47# Disable the "buildpaths" check while we figure out how we are
48# going to address this issue. 48# 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 87f63750..09926109 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
26 26
27DEPENDS = "ti-xdctools-native ti-sysbios ti-codec-engine ti-framework-components ti-xdais ti-cgt-arm-native ti-ipc-rtos" 27DEPENDS = "ti-xdctools-native ti-sysbios ti-codec-engine ti-framework-components ti-xdais ti-cgt-arm-native ti-ipc-rtos"
28 28
29export HWVERSION="ES10" 29export HWVERSION = "ES10"
30export BIOSTOOLSROOT="${STAGING_DIR_TARGET}/usr/share/ti" 30export BIOSTOOLSROOT = "${STAGING_DIR_TARGET}/usr/share/ti"
31 31
32export XDCVERSION="ti-xdctools-tree" 32export XDCVERSION = "ti-xdctools-tree"
33export BIOSVERSION="ti-sysbios-tree" 33export BIOSVERSION = "ti-sysbios-tree"
34export IPCVERSION="ti-ipc-tree" 34export IPCVERSION = "ti-ipc-tree"
35export CEVERSION="ti-codec-engine-tree" 35export CEVERSION = "ti-codec-engine-tree"
36export FCVERSION="ti-framework-components-tree" 36export FCVERSION = "ti-framework-components-tree"
37export XDAISVERSION="ti-xdais-tree" 37export XDAISVERSION = "ti-xdais-tree"
38 38
39export TMS470CGTOOLPATH="${M4_TOOLCHAIN_INSTALL_DIR}" 39export TMS470CGTOOLPATH = "${M4_TOOLCHAIN_INSTALL_DIR}"
40export IPCSRC="${STAGING_DIR_TARGET}/usr/share/ti/ti-ipc-tree" 40export IPCSRC = "${STAGING_DIR_TARGET}/usr/share/ti/ti-ipc-tree"
41 41
42EXTRA_OEMAKE += "XDCDIST_TREE=${STAGING_DIR_NATIVE}/usr/share/ti/${XDCVERSION}" 42EXTRA_OEMAKE += "XDCDIST_TREE=${STAGING_DIR_NATIVE}/usr/share/ti/${XDCVERSION}"
43 43
diff --git a/meta-ti-extras/recipes-ti/bios/ti-sysbios.inc b/meta-ti-extras/recipes-ti/bios/ti-sysbios.inc
index 8cc9e309..3c1861ac 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
10S = "${WORKDIR}/bios_${PV}" 10S = "${WORKDIR}/bios_${PV}"
11 11
12SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/bios/sysbios/${PV}/exports/bios_setuplinux_${PV}.bin;name=sysbiosbin" 12SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/bios/sysbios/${PV}/exports/bios_setuplinux_${PV}.bin;name=sysbiosbin"
13BINFILE="bios_${PV}.bin" 13BINFILE = "bios_${PV}.bin"
14TI_BIN_UNPK_CMDS="Y: q:workdir:Y" 14TI_BIN_UNPK_CMDS = "Y: q:workdir:Y"
15 15
16do_install() { 16do_install() {
17 CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership" 17 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 400221f9..f3b03bd6 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"
15 15
16S = "${WORKDIR}/git/aet" 16S = "${WORKDIR}/git/aet"
17 17
18DEVICE="" 18DEVICE = ""
19DEVICE:dra7xx = "DRA7xx" 19DEVICE:dra7xx = "DRA7xx"
20 20
21EXTRA_OEMAKE = "C6X_C_DIR=${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x/include" 21EXTRA_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 c7608a76..a0972602 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
19SRC_URI[cgxmlbin_linux.md5sum] = "6ce60caa97bbf15158d806fb062fadff" 19SRC_URI[cgxmlbin_linux.md5sum] = "6ce60caa97bbf15158d806fb062fadff"
20SRC_URI[cgxmlbin_linux.sha256sum] = "da77cb10bd3d5de89e27e4ce8f4408a2e50775c8980225f9a828ddc242bb81f9" 20SRC_URI[cgxmlbin_linux.sha256sum] = "da77cb10bd3d5de89e27e4ce8f4408a2e50775c8980225f9a828ddc242bb81f9"
21 21
22BINFILE="cgxml-${PV}-linux-installer.run" 22BINFILE = "cgxml-${PV}-linux-installer.run"
23TI_BIN_UNPK_CMDS="" 23TI_BIN_UNPK_CMDS = ""
24TI_BIN_UNPK_ARGS="--prefix ${S} --mode unattended" 24TI_BIN_UNPK_ARGS = "--prefix ${S} --mode unattended"
25 25
26do_install() { 26do_install() {
27 CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership" 27 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 f0992aa7..d905755c 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}"
13 13
14SRC_URI = "http://install.source.dir.local/ti_cgt_tms470_${PVwithdots}_setup_linux_x86.bin;name=cgt470bin" 14SRC_URI = "http://install.source.dir.local/ti_cgt_tms470_${PVwithdots}_setup_linux_x86.bin;name=cgt470bin"
15 15
16BINFILE="ti_cgt_tms470_${PVwithdots}_setup_linux_x86.bin" 16BINFILE = "ti_cgt_tms470_${PVwithdots}_setup_linux_x86.bin"
17TI_BIN_UNPK_CMDS="Y:qY:workdir: : " 17TI_BIN_UNPK_CMDS = "Y:qY:workdir: : "
18TI_BIN_UNPK_WDEXT="/cgt470_${PV}" 18TI_BIN_UNPK_WDEXT = "/cgt470_${PV}"
19 19
20do_install() { 20do_install() {
21 install -d ${D}${CODEGEN_ARM_INSTALL_DIR_RECIPE} 21 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 a7de8e38..0cc068e4 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
19BINFILE = "ti_cgt_c6000_7.4.16_linux_installer_x86.bin" 19BINFILE = "ti_cgt_c6000_7.4.16_linux_installer_x86.bin"
20BINFILE_NAME = "cgt6x_7.4.16_x86_installer" 20BINFILE_NAME = "cgt6x_7.4.16_x86_installer"
21TI_BIN_UNPK_ARGS = "--prefix ${WORKDIR} --mode unattended" 21TI_BIN_UNPK_ARGS = "--prefix ${WORKDIR} --mode unattended"
22TI_BIN_UNPK_CMDS="" 22TI_BIN_UNPK_CMDS = ""
23 23
24SRC_URI = "http://install.source.dir.local/${BINFILE};name=${BINFILE_NAME}" 24SRC_URI = "http://install.source.dir.local/${BINFILE};name=${BINFILE_NAME}"
25 25
diff --git a/meta-ti-extras/recipes-ti/dsplib/dsplib.inc b/meta-ti-extras/recipes-ti/dsplib/dsplib.inc
index 3c24f196..cabd2a9d 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}"
25 25
26LIC_FILES_CHKSUM = "file://ti/dsplib/src/common/c66/lnk.cmd;beginline=1;endline=37;md5=0f0c9c4d51d8af75419781591ace190b" 26LIC_FILES_CHKSUM = "file://ti/dsplib/src/common/c66/lnk.cmd;beginline=1;endline=37;md5=0f0c9c4d51d8af75419781591ace190b"
27 27
28export DSPLIB_WORK_DIR="${S}" 28export DSPLIB_WORK_DIR = "${S}"
29export CGTOOLS_INSTALL_DIR = "${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x" 29export CGTOOLS_INSTALL_DIR = "${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x"
30export C64PCODEGENTOOL="${CGTOOLS_INSTALL_DIR}" 30export C64PCODEGENTOOL = "${CGTOOLS_INSTALL_DIR}"
31export C674CODEGENTOOL="${CGTOOLS_INSTALL_DIR}" 31export C674CODEGENTOOL = "${CGTOOLS_INSTALL_DIR}"
32export C66CODEGENTOOL ="${CGTOOLS_INSTALL_DIR}" 32export C66CODEGENTOOL = "${CGTOOLS_INSTALL_DIR}"
33export SWTOOLS_PATH = "${SWTOOLS_INSTALL_DIR}/ti/mas/swtools" 33export SWTOOLS_PATH = "${SWTOOLS_INSTALL_DIR}/ti/mas/swtools"
34export XDCBUILDCFG="${SWTOOLS_PATH}/config.bld" 34export XDCBUILDCFG = "${SWTOOLS_PATH}/config.bld"
35export INCDIR="${MATHLIB_INSTALL_DIR}/" 35export INCDIR = "${MATHLIB_INSTALL_DIR}/"
36 36
37PATH:append = ":${XDC_INSTALL_DIR}" 37PATH:append = ":${XDC_INSTALL_DIR}"
38 38
39XDCPATH.="${XDCCGROOT}/include;${XDC_INSTALL_DIR}/packages;${SYSBIOS_INSTALL_DIR}/packages;" 39XDCPATH .= "${XDCCGROOT}/include;${XDC_INSTALL_DIR}/packages;${SYSBIOS_INSTALL_DIR}/packages;"
40XDCPATH.="${SWTOOLS_INSTALL_DIR};${MATHLIB_INSTALL_DIR};${DSPLIB_WORK_DIR};" 40XDCPATH .= "${SWTOOLS_INSTALL_DIR};${MATHLIB_INSTALL_DIR};${DSPLIB_WORK_DIR};"
41 41
42export XDCPATH 42export XDCPATH
43 43
diff --git a/meta-ti-extras/recipes-ti/mathlib/mathlib.inc b/meta-ti-extras/recipes-ti/mathlib/mathlib.inc
index 34902ba1..fb9de41d 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}"
25 25
26LIC_FILES_CHKSUM = "file://ti/mathlib/src/acosdp/acosdp.h;beginline=1;endline=35;md5=c133f7e139b46385906c861dd9552250" 26LIC_FILES_CHKSUM = "file://ti/mathlib/src/acosdp/acosdp.h;beginline=1;endline=35;md5=c133f7e139b46385906c861dd9552250"
27 27
28export MATHLIB_WORK_DIR="${S}" 28export MATHLIB_WORK_DIR = "${S}"
29export CGTOOLS_INSTALL_DIR = "${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x" 29export CGTOOLS_INSTALL_DIR = "${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x"
30export C64PCODEGENTOOL="${CGTOOLS_INSTALL_DIR}" 30export C64PCODEGENTOOL = "${CGTOOLS_INSTALL_DIR}"
31export C674CODEGENTOOL="${CGTOOLS_INSTALL_DIR}" 31export C674CODEGENTOOL = "${CGTOOLS_INSTALL_DIR}"
32export C66CODEGENTOOL ="${CGTOOLS_INSTALL_DIR}" 32export C66CODEGENTOOL = "${CGTOOLS_INSTALL_DIR}"
33export SWTOOLS_PATH = "${SWTOOLS_INSTALL_DIR}/ti/mas/swtools" 33export SWTOOLS_PATH = "${SWTOOLS_INSTALL_DIR}/ti/mas/swtools"
34export XDCBUILDCFG="${SWTOOLS_PATH}/config.bld" 34export XDCBUILDCFG = "${SWTOOLS_PATH}/config.bld"
35 35
36PATH:append = ":${XDC_INSTALL_DIR}" 36PATH:append = ":${XDC_INSTALL_DIR}"
37 37
38XDCPATH.="${XDCCGROOT}/include;${XDC_INSTALL_DIR}/packages;${SYSBIOS_INSTALL_DIR}/packages;" 38XDCPATH .= "${XDCCGROOT}/include;${XDC_INSTALL_DIR}/packages;${SYSBIOS_INSTALL_DIR}/packages;"
39XDCPATH.="${SWTOOLS_INSTALL_DIR};${MATHLIB_WORK_DIR};" 39XDCPATH .= "${SWTOOLS_INSTALL_DIR};${MATHLIB_WORK_DIR};"
40 40
41export XDCPATH 41export XDCPATH
42 42
diff --git a/meta-ti-extras/recipes-ti/vlib/vlib-c66x.inc b/meta-ti-extras/recipes-ti/vlib/vlib-c66x.inc
index 6b5e186c..51846836 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
13 13
14S = "${WORKDIR}/vlib_c66x_${PV}" 14S = "${WORKDIR}/vlib_c66x_${PV}"
15 15
16BINFILE="vlib_c66x_obj_${PV}_Linux.bin" 16BINFILE = "vlib_c66x_obj_${PV}_Linux.bin"
17TI_BIN_UNPK_ARGS = "--mode silent --prefix ${S}" 17TI_BIN_UNPK_ARGS = "--mode silent --prefix ${S}"
18TI_BIN_UNPK_CMDS="" 18TI_BIN_UNPK_CMDS = ""
19 19
20do_install() { 20do_install() {
21 CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership" 21 CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"