summaryrefslogtreecommitdiffstats
path: root/recipes-extended/dpdk
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2026-07-12 05:14:32 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2026-07-12 05:14:32 -0300
commit2d09ab06455475c77a3c74c0ddbe5a7377dd7ac7 (patch)
treea41dd5a3fb34af4b8f8b8274e6bc4838efaf77e1 /recipes-extended/dpdk
parent97b58d1c9e0f850441ac1f0df8c517729721e8c8 (diff)
downloadmeta-freescale-2d09ab06455475c77a3c74c0ddbe5a7377dd7ac7.tar.gz
global: Indent multi-line variable continuations
Align the continuation lines of multi-line variable assignments, as suggested by oelint-adv's auto-fix for a single rule (oelint.vars.multilineident), isolated to one commit. The auto-fix strips the leading space from a value's first line, which for a ':append' is a required separator; those five recipes had their leading space restored by hand, so ':append'/':prepend' concatenation is unchanged. A few multi-line values (e.g. DESCRIPTION) gain internal whitespace, which is cosmetic and collapses on display. Build-tested: parsing all 2948 recipes for an i.MX machine reports 0 errors. A residual set (the restored ':append' recipes, whose separator space oelint cannot reconcile with its indent preference, plus opencv/dpdk where oelint's own fix does not satisfy its checker) is left for per-recipe handling. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'recipes-extended/dpdk')
-rw-r--r--recipes-extended/dpdk/dpdk_22.11.bb14
1 files changed, 7 insertions, 7 deletions
diff --git a/recipes-extended/dpdk/dpdk_22.11.bb b/recipes-extended/dpdk/dpdk_22.11.bb
index b25ce270c..cb729b8ea 100644
--- a/recipes-extended/dpdk/dpdk_22.11.bb
+++ b/recipes-extended/dpdk/dpdk_22.11.bb
@@ -9,7 +9,7 @@ DEPENDS = "python3-pyelftools-native"
9 9
10DPDK_SRC ?= "git://github.com/nxp-qoriq/dpdk;protocol=https" 10DPDK_SRC ?= "git://github.com/nxp-qoriq/dpdk;protocol=https"
11SRC_URI = "${DPDK_SRC};nobranch=1 \ 11SRC_URI = "${DPDK_SRC};nobranch=1 \
12 file://0001-meson.build-march-and-mcpu-already-passed-by-Yocto.patch" 12 file://0001-meson.build-march-and-mcpu-already-passed-by-Yocto.patch"
13SRCREV = "e09ece7ebcda131ee3d5a45999ad3396ee2092ae" 13SRCREV = "e09ece7ebcda131ee3d5a45999ad3396ee2092ae"
14 14
15inherit meson pkgconfig 15inherit meson pkgconfig
@@ -26,13 +26,13 @@ DPDK_APPS ?= "pdump,test-pmd,proc-info,test-crypto-perf"
26 26
27# kernel module is provide by dpdk-module recipe, so disable here 27# kernel module is provide by dpdk-module recipe, so disable here
28EXTRA_OEMESON = "\ 28EXTRA_OEMESON = "\
29 -Denable_kmods=false \ 29 -Denable_kmods=false \
30 -Doptimization=3 \ 30 -Doptimization=3 \
31 --cross-file ${S}/config/arm/arm64_poky_linux_gcc \ 31 --cross-file ${S}/config/arm/arm64_poky_linux_gcc \
32 -Denable_driver_sdk=true \ 32 -Denable_driver_sdk=true \
33 ${@bb.utils.contains('DISTRO_FEATURES', 'vpp', '-Dc_args="-Ofast -fPIC -ftls-model=local-dynamic"', '', d)} \ 33 ${@bb.utils.contains('DISTRO_FEATURES', 'vpp', '-Dc_args="-Ofast -fPIC -ftls-model=local-dynamic"', '', d)} \
34 -Denable_examples_source_install=false \ 34 -Denable_examples_source_install=false \
35 -Denable_apps=${DPDK_APPS} \ 35 -Denable_apps=${DPDK_APPS} \
36" 36"
37 37
38do_install:append(){ 38do_install:append(){