summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKavinaya S <kavinaya@qti.qualcomm.com>2025-09-05 16:31:52 +0530
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-09-08 18:02:40 +0100
commitfa529b2498dec455c9dbe7aa63b624e29a52bbdf (patch)
treeffbcd2382095f2d15127878224a7c5ecf3475ab0
parent0d17c4fb514f0b9f2117a844cdf00ed52631380a (diff)
downloadpoky-fa529b2498dec455c9dbe7aa63b624e29a52bbdf.tar.gz
image-fitimage: add FIT_LINUX_BIN variable
Add FIT_LINUX_BIN variable to image-fitimage.conf to allow control over kernel section inclusion. Suggested-by: Adrian Freihofer <adrian.freihofer@siemens.com> (From OE-Core rev: d077777cbdb4b00eb424289e85fe661f69a9877a) Signed-off-by: Kavinaya S <kavinaya@qti.qualcomm.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/conf/image-fitimage.conf7
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/conf/image-fitimage.conf b/meta/conf/image-fitimage.conf
index 9be7e45238..090ee148f4 100644
--- a/meta/conf/image-fitimage.conf
+++ b/meta/conf/image-fitimage.conf
@@ -37,6 +37,13 @@ FIT_CONF_PREFIX[doc] = "Prefix to use for FIT configuration node name"
37 37
38FIT_SUPPORTED_INITRAMFS_FSTYPES ?= "cpio.lz4 cpio.lzo cpio.lzma cpio.xz cpio.zst cpio.gz ext2.gz cpio" 38FIT_SUPPORTED_INITRAMFS_FSTYPES ?= "cpio.lz4 cpio.lzo cpio.lzma cpio.xz cpio.zst cpio.gz ext2.gz cpio"
39 39
40# Allow user to support special use cases where the kernel binary is
41# not included in the FIT image itself.
42# This is particularly useful for UKI-based setups, where the kernel
43# and initramfs are bundled into a Unified Kernel Image (UKI), and
44# DTBs are provided separately in a FIT image.
45FIT_LINUX_BIN ?= "linux.bin"
46
40# Allow user to select the default DTB for FIT image when multiple dtb's exists. 47# Allow user to select the default DTB for FIT image when multiple dtb's exists.
41FIT_CONF_DEFAULT_DTB ?= "" 48FIT_CONF_DEFAULT_DTB ?= ""
42 49