diff options
author | Max Krummenacher <max.krummenacher@toradex.com> | 2025-04-27 11:59:18 +0200 |
---|---|---|
committer | Ryan Eatmon <reatmon@ti.com> | 2025-05-13 11:05:23 -0500 |
commit | 6d538d31c302d09f7bb0b7e02a59d3d046a33945 (patch) | |
tree | cbac462372ad07778e3a241a3be0a1462fc0c9eb | |
parent | ccef6ee0b7b1439bf1243be51c85ced15e1234d9 (diff) | |
download | meta-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.bb | 4 | ||||
-rw-r--r-- | meta-ti-extras/recipes-bsp/ipumm-fw/ipumm-fw_git.bb | 24 | ||||
-rw-r--r-- | meta-ti-extras/recipes-ti/bios/ti-sysbios.inc | 4 | ||||
-rw-r--r-- | meta-ti-extras/recipes-ti/ctoolslib/libaet_git.bb | 2 | ||||
-rw-r--r-- | meta-ti-extras/recipes-ti/devtools/ti-cg-xml_2.61.00.bb | 6 | ||||
-rw-r--r-- | meta-ti-extras/recipes-ti/devtools/ti-cgt470.inc | 6 | ||||
-rw-r--r-- | meta-ti-extras/recipes-ti/devtools/ti-cgt6x-7_7.4.16.bb | 2 | ||||
-rw-r--r-- | meta-ti-extras/recipes-ti/dsplib/dsplib.inc | 18 | ||||
-rw-r--r-- | meta-ti-extras/recipes-ti/mathlib/mathlib.inc | 16 | ||||
-rw-r--r-- | meta-ti-extras/recipes-ti/vlib/vlib-c66x.inc | 4 |
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 | ||
12 | S = "${WORKDIR}/git/dsptop/ulm" | 12 | S = "${WORKDIR}/git/dsptop/ulm" |
13 | 13 | ||
14 | DEVICE="" | 14 | DEVICE = "" |
15 | DEVICE:dra7xx = "DRA7xx" | 15 | DEVICE:dra7xx = "DRA7xx" |
16 | 16 | ||
17 | EXTRA_OEMAKE = "release DEVICE=${DEVICE} CROSS_COMPILE=${TARGET_PREFIX}" | 17 | EXTRA_OEMAKE = "release DEVICE=${DEVICE} CROSS_COMPILE=${TARGET_PREFIX}" |
@@ -42,7 +42,7 @@ include dsptop.inc | |||
42 | 42 | ||
43 | ALLOW_EMPTY:${PN} = "1" | 43 | ALLOW_EMPTY:${PN} = "1" |
44 | 44 | ||
45 | PARALLEL_MAKE= "" | 45 | PARALLEL_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 | ||
27 | DEPENDS = "ti-xdctools-native ti-sysbios ti-codec-engine ti-framework-components ti-xdais ti-cgt-arm-native ti-ipc-rtos" | 27 | DEPENDS = "ti-xdctools-native ti-sysbios ti-codec-engine ti-framework-components ti-xdais ti-cgt-arm-native ti-ipc-rtos" |
28 | 28 | ||
29 | export HWVERSION="ES10" | 29 | export HWVERSION = "ES10" |
30 | export BIOSTOOLSROOT="${STAGING_DIR_TARGET}/usr/share/ti" | 30 | export BIOSTOOLSROOT = "${STAGING_DIR_TARGET}/usr/share/ti" |
31 | 31 | ||
32 | export XDCVERSION="ti-xdctools-tree" | 32 | export XDCVERSION = "ti-xdctools-tree" |
33 | export BIOSVERSION="ti-sysbios-tree" | 33 | export BIOSVERSION = "ti-sysbios-tree" |
34 | export IPCVERSION="ti-ipc-tree" | 34 | export IPCVERSION = "ti-ipc-tree" |
35 | export CEVERSION="ti-codec-engine-tree" | 35 | export CEVERSION = "ti-codec-engine-tree" |
36 | export FCVERSION="ti-framework-components-tree" | 36 | export FCVERSION = "ti-framework-components-tree" |
37 | export XDAISVERSION="ti-xdais-tree" | 37 | export XDAISVERSION = "ti-xdais-tree" |
38 | 38 | ||
39 | export TMS470CGTOOLPATH="${M4_TOOLCHAIN_INSTALL_DIR}" | 39 | export TMS470CGTOOLPATH = "${M4_TOOLCHAIN_INSTALL_DIR}" |
40 | export IPCSRC="${STAGING_DIR_TARGET}/usr/share/ti/ti-ipc-tree" | 40 | export IPCSRC = "${STAGING_DIR_TARGET}/usr/share/ti/ti-ipc-tree" |
41 | 41 | ||
42 | EXTRA_OEMAKE += "XDCDIST_TREE=${STAGING_DIR_NATIVE}/usr/share/ti/${XDCVERSION}" | 42 | EXTRA_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 | |||
10 | S = "${WORKDIR}/bios_${PV}" | 10 | S = "${WORKDIR}/bios_${PV}" |
11 | 11 | ||
12 | SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/bios/sysbios/${PV}/exports/bios_setuplinux_${PV}.bin;name=sysbiosbin" | 12 | SRC_URI = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/bios/sysbios/${PV}/exports/bios_setuplinux_${PV}.bin;name=sysbiosbin" |
13 | BINFILE="bios_${PV}.bin" | 13 | BINFILE = "bios_${PV}.bin" |
14 | TI_BIN_UNPK_CMDS="Y: q:workdir:Y" | 14 | TI_BIN_UNPK_CMDS = "Y: q:workdir:Y" |
15 | 15 | ||
16 | do_install() { | 16 | do_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 | ||
16 | S = "${WORKDIR}/git/aet" | 16 | S = "${WORKDIR}/git/aet" |
17 | 17 | ||
18 | DEVICE="" | 18 | DEVICE = "" |
19 | DEVICE:dra7xx = "DRA7xx" | 19 | DEVICE:dra7xx = "DRA7xx" |
20 | 20 | ||
21 | EXTRA_OEMAKE = "C6X_C_DIR=${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x/include" | 21 | 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 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 | |||
19 | SRC_URI[cgxmlbin_linux.md5sum] = "6ce60caa97bbf15158d806fb062fadff" | 19 | SRC_URI[cgxmlbin_linux.md5sum] = "6ce60caa97bbf15158d806fb062fadff" |
20 | SRC_URI[cgxmlbin_linux.sha256sum] = "da77cb10bd3d5de89e27e4ce8f4408a2e50775c8980225f9a828ddc242bb81f9" | 20 | SRC_URI[cgxmlbin_linux.sha256sum] = "da77cb10bd3d5de89e27e4ce8f4408a2e50775c8980225f9a828ddc242bb81f9" |
21 | 21 | ||
22 | BINFILE="cgxml-${PV}-linux-installer.run" | 22 | BINFILE = "cgxml-${PV}-linux-installer.run" |
23 | TI_BIN_UNPK_CMDS="" | 23 | TI_BIN_UNPK_CMDS = "" |
24 | TI_BIN_UNPK_ARGS="--prefix ${S} --mode unattended" | 24 | TI_BIN_UNPK_ARGS = "--prefix ${S} --mode unattended" |
25 | 25 | ||
26 | do_install() { | 26 | do_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 | ||
14 | SRC_URI = "http://install.source.dir.local/ti_cgt_tms470_${PVwithdots}_setup_linux_x86.bin;name=cgt470bin" | 14 | SRC_URI = "http://install.source.dir.local/ti_cgt_tms470_${PVwithdots}_setup_linux_x86.bin;name=cgt470bin" |
15 | 15 | ||
16 | BINFILE="ti_cgt_tms470_${PVwithdots}_setup_linux_x86.bin" | 16 | BINFILE = "ti_cgt_tms470_${PVwithdots}_setup_linux_x86.bin" |
17 | TI_BIN_UNPK_CMDS="Y:qY:workdir: : " | 17 | TI_BIN_UNPK_CMDS = "Y:qY:workdir: : " |
18 | TI_BIN_UNPK_WDEXT="/cgt470_${PV}" | 18 | TI_BIN_UNPK_WDEXT = "/cgt470_${PV}" |
19 | 19 | ||
20 | do_install() { | 20 | do_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 | |||
19 | BINFILE = "ti_cgt_c6000_7.4.16_linux_installer_x86.bin" | 19 | BINFILE = "ti_cgt_c6000_7.4.16_linux_installer_x86.bin" |
20 | BINFILE_NAME = "cgt6x_7.4.16_x86_installer" | 20 | BINFILE_NAME = "cgt6x_7.4.16_x86_installer" |
21 | TI_BIN_UNPK_ARGS = "--prefix ${WORKDIR} --mode unattended" | 21 | TI_BIN_UNPK_ARGS = "--prefix ${WORKDIR} --mode unattended" |
22 | TI_BIN_UNPK_CMDS="" | 22 | TI_BIN_UNPK_CMDS = "" |
23 | 23 | ||
24 | SRC_URI = "http://install.source.dir.local/${BINFILE};name=${BINFILE_NAME}" | 24 | SRC_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 | ||
26 | LIC_FILES_CHKSUM = "file://ti/dsplib/src/common/c66/lnk.cmd;beginline=1;endline=37;md5=0f0c9c4d51d8af75419781591ace190b" | 26 | LIC_FILES_CHKSUM = "file://ti/dsplib/src/common/c66/lnk.cmd;beginline=1;endline=37;md5=0f0c9c4d51d8af75419781591ace190b" |
27 | 27 | ||
28 | export DSPLIB_WORK_DIR="${S}" | 28 | export DSPLIB_WORK_DIR = "${S}" |
29 | export CGTOOLS_INSTALL_DIR = "${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x" | 29 | export CGTOOLS_INSTALL_DIR = "${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x" |
30 | export C64PCODEGENTOOL="${CGTOOLS_INSTALL_DIR}" | 30 | export C64PCODEGENTOOL = "${CGTOOLS_INSTALL_DIR}" |
31 | export C674CODEGENTOOL="${CGTOOLS_INSTALL_DIR}" | 31 | export C674CODEGENTOOL = "${CGTOOLS_INSTALL_DIR}" |
32 | export C66CODEGENTOOL ="${CGTOOLS_INSTALL_DIR}" | 32 | export C66CODEGENTOOL = "${CGTOOLS_INSTALL_DIR}" |
33 | export SWTOOLS_PATH = "${SWTOOLS_INSTALL_DIR}/ti/mas/swtools" | 33 | export SWTOOLS_PATH = "${SWTOOLS_INSTALL_DIR}/ti/mas/swtools" |
34 | export XDCBUILDCFG="${SWTOOLS_PATH}/config.bld" | 34 | export XDCBUILDCFG = "${SWTOOLS_PATH}/config.bld" |
35 | export INCDIR="${MATHLIB_INSTALL_DIR}/" | 35 | export INCDIR = "${MATHLIB_INSTALL_DIR}/" |
36 | 36 | ||
37 | PATH:append = ":${XDC_INSTALL_DIR}" | 37 | PATH:append = ":${XDC_INSTALL_DIR}" |
38 | 38 | ||
39 | XDCPATH.="${XDCCGROOT}/include;${XDC_INSTALL_DIR}/packages;${SYSBIOS_INSTALL_DIR}/packages;" | 39 | XDCPATH .= "${XDCCGROOT}/include;${XDC_INSTALL_DIR}/packages;${SYSBIOS_INSTALL_DIR}/packages;" |
40 | XDCPATH.="${SWTOOLS_INSTALL_DIR};${MATHLIB_INSTALL_DIR};${DSPLIB_WORK_DIR};" | 40 | XDCPATH .= "${SWTOOLS_INSTALL_DIR};${MATHLIB_INSTALL_DIR};${DSPLIB_WORK_DIR};" |
41 | 41 | ||
42 | export XDCPATH | 42 | export 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 | ||
26 | LIC_FILES_CHKSUM = "file://ti/mathlib/src/acosdp/acosdp.h;beginline=1;endline=35;md5=c133f7e139b46385906c861dd9552250" | 26 | LIC_FILES_CHKSUM = "file://ti/mathlib/src/acosdp/acosdp.h;beginline=1;endline=35;md5=c133f7e139b46385906c861dd9552250" |
27 | 27 | ||
28 | export MATHLIB_WORK_DIR="${S}" | 28 | export MATHLIB_WORK_DIR = "${S}" |
29 | export CGTOOLS_INSTALL_DIR = "${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x" | 29 | export CGTOOLS_INSTALL_DIR = "${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x" |
30 | export C64PCODEGENTOOL="${CGTOOLS_INSTALL_DIR}" | 30 | export C64PCODEGENTOOL = "${CGTOOLS_INSTALL_DIR}" |
31 | export C674CODEGENTOOL="${CGTOOLS_INSTALL_DIR}" | 31 | export C674CODEGENTOOL = "${CGTOOLS_INSTALL_DIR}" |
32 | export C66CODEGENTOOL ="${CGTOOLS_INSTALL_DIR}" | 32 | export C66CODEGENTOOL = "${CGTOOLS_INSTALL_DIR}" |
33 | export SWTOOLS_PATH = "${SWTOOLS_INSTALL_DIR}/ti/mas/swtools" | 33 | export SWTOOLS_PATH = "${SWTOOLS_INSTALL_DIR}/ti/mas/swtools" |
34 | export XDCBUILDCFG="${SWTOOLS_PATH}/config.bld" | 34 | export XDCBUILDCFG = "${SWTOOLS_PATH}/config.bld" |
35 | 35 | ||
36 | PATH:append = ":${XDC_INSTALL_DIR}" | 36 | PATH:append = ":${XDC_INSTALL_DIR}" |
37 | 37 | ||
38 | XDCPATH.="${XDCCGROOT}/include;${XDC_INSTALL_DIR}/packages;${SYSBIOS_INSTALL_DIR}/packages;" | 38 | XDCPATH .= "${XDCCGROOT}/include;${XDC_INSTALL_DIR}/packages;${SYSBIOS_INSTALL_DIR}/packages;" |
39 | XDCPATH.="${SWTOOLS_INSTALL_DIR};${MATHLIB_WORK_DIR};" | 39 | XDCPATH .= "${SWTOOLS_INSTALL_DIR};${MATHLIB_WORK_DIR};" |
40 | 40 | ||
41 | export XDCPATH | 41 | export 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 | ||
14 | S = "${WORKDIR}/vlib_c66x_${PV}" | 14 | S = "${WORKDIR}/vlib_c66x_${PV}" |
15 | 15 | ||
16 | BINFILE="vlib_c66x_obj_${PV}_Linux.bin" | 16 | BINFILE = "vlib_c66x_obj_${PV}_Linux.bin" |
17 | TI_BIN_UNPK_ARGS = "--mode silent --prefix ${S}" | 17 | TI_BIN_UNPK_ARGS = "--mode silent --prefix ${S}" |
18 | TI_BIN_UNPK_CMDS="" | 18 | TI_BIN_UNPK_CMDS = "" |
19 | 19 | ||
20 | do_install() { | 20 | do_install() { |
21 | CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership" | 21 | CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership" |