summaryrefslogtreecommitdiffstats
path: root/classes/mfgtool-initramfs-image.bbclass
diff options
context:
space:
mode:
authorOtavio Salvador <otavio@ossystems.com.br>2026-07-12 04:54:14 -0300
committerOtavio Salvador <otavio@ossystems.com.br>2026-07-12 04:54:14 -0300
commit96b4f44279d022af8930f01d4a09c12df0be07e4 (patch)
treef1efce5cef12552f3ed5cdbca06f0930087d82c4 /classes/mfgtool-initramfs-image.bbclass
parent1161bee242e93dd083efdd5f32d16efa67e9946e (diff)
downloadmeta-freescale-96b4f44279d022af8930f01d4a09c12df0be07e4.tar.gz
global: Drop needless whitespace in assignments
Remove the stray space between an assignment's opening quote and its line-continuation backslash, and the space before '%' in inline ${@...} expressions. Generated mechanically by oelint-adv's auto-fix for a single rule (oelint.vars.notneededspace), isolated to one commit. The affected values are whitespace-separated lists (leading space is insignificant) and Python format expressions ("%s"% p is equivalent), so there is no functional change; a re-run of oelint-adv reports the rule clean. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'classes/mfgtool-initramfs-image.bbclass')
-rw-r--r--classes/mfgtool-initramfs-image.bbclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/classes/mfgtool-initramfs-image.bbclass b/classes/mfgtool-initramfs-image.bbclass
index f338bf829..38a607778 100644
--- a/classes/mfgtool-initramfs-image.bbclass
+++ b/classes/mfgtool-initramfs-image.bbclass
@@ -19,12 +19,12 @@ IMAGE_ROOTFS_SIZE ?= "8192"
19IMAGE_NAME_SUFFIX = "" 19IMAGE_NAME_SUFFIX = ""
20 20
21# Filesystems enabled by default 21# Filesystems enabled by default
22DEFAULT_FS_SUPPORT = " \ 22DEFAULT_FS_SUPPORT = "\
23 mtd \ 23 mtd \
24 extfs \ 24 extfs \
25" 25"
26 26
27IMAGE_FEATURES = " \ 27IMAGE_FEATURES = "\
28 ${DEFAULT_FS_SUPPORT} \ 28 ${DEFAULT_FS_SUPPORT} \
29 \ 29 \
30 read-only-rootfs \ 30 read-only-rootfs \
@@ -38,6 +38,6 @@ USE_DEVFS = "1"
38 38
39inherit core-image 39inherit core-image
40 40
41CORE_IMAGE_BASE_INSTALL = " \ 41CORE_IMAGE_BASE_INSTALL = "\
42 ${CORE_IMAGE_EXTRA_INSTALL} \ 42 ${CORE_IMAGE_EXTRA_INSTALL} \
43" 43"