diff options
author | Enrico Jörns <ejo@pengutronix.de> | 2024-11-18 08:39:10 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-04-16 08:04:42 -0700 |
commit | 5bff8f5b3b1103b73a0e775a6c2a71c18339e130 (patch) | |
tree | 8bb3c750bbab574c039fa7e9b2db9d1658ff76ab | |
parent | 69dbad5529ae59c3a3855eb7699f3f3c5b6449ab (diff) | |
download | meta-openembedded-5bff8f5b3b1103b73a0e775a6c2a71c18339e130.tar.gz |
fitimage.bbclass: fix configurations node naming
Similar to e152f01d, this fixes another occurence of the config section
name to contain the 'conf_prefix'.
Luckily, this one is only debug output.
Signed-off-by: Enrico Jörns <ejo@pengutronix.de>
-rw-r--r-- | meta-oe/classes/fitimage.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/classes/fitimage.bbclass b/meta-oe/classes/fitimage.bbclass index 54bb704ab5..5d70b1d85b 100644 --- a/meta-oe/classes/fitimage.bbclass +++ b/meta-oe/classes/fitimage.bbclass | |||
@@ -290,7 +290,7 @@ def fitimage_emit_section_config(d, fd, dtb, kernelcount, ramdiskcount, setupcou | |||
290 | conf_default = None | 290 | conf_default = None |
291 | conf_prefix = d.getVar('FITIMAGE_CONFIG_PREFIX') or "" | 291 | conf_prefix = d.getVar('FITIMAGE_CONFIG_PREFIX') or "" |
292 | 292 | ||
293 | bb.note(f"Adding {dtb} section to ITS file") | 293 | bb.note(f"Adding {conf_prefix}{dtb} section to ITS file") |
294 | 294 | ||
295 | conf_desc="Linux kernel" | 295 | conf_desc="Linux kernel" |
296 | if dtb: | 296 | if dtb: |