From: Mikko Rapeli <mikko.rapeli@linaro.org>
To: poky@lists.yoctoproject.org
Subject: Re: [poky] [PATCH v3] genericarm64 core-image-initramfs-boot: remove some kernel drivers
Date: Thu, 16 Apr 2026 16:26:09 +0300 [thread overview]
Message-ID: <aeDjcbnGMMqzyW_z@nuoska> (raw)
In-Reply-To: <18A5D9F18A3D8C50.777565@lists.yoctoproject.org>
Hi,
On Mon, Apr 13, 2026 at 10:27:15AM +0300, Mikko Rapeli via lists.yoctoproject.org wrote:
> genericarm64 supports a lot of HW and thus large collection of kernel
> drivers are enabled and installed to images by default.
> Subset of the kernel drivers are needed in initramfs to mount rootfs
> from local mass storage devices. This increases initramfs size a lot
> and with new kernel config updates even more. Thus remove kernel
> drivers from initramfs image which are not needed for mounting
> rootfs from local mass storage devices. GPU, Bluetooth, NFC,
> sound, networking etc support is not needed in the initramfs.
>
> According to buildhistory core-image-initramfs-boot size is reduced
> from 118 to 83 Mb.
In my oe-core master branch builds core-image-initramfs-boot is now failing
due to size limits:
https://gitlab.com/Linaro/trustedsubstrate/gpit/-/jobs/13951723488
2026-04-16 13:04:26 - ERROR - ERROR: core-image-initramfs-boot-1.0-r0 do_image_cpio: The initramfs size 282121(K) exceeds INITRAMFS_MAXSIZE: 280000(K)
2026-04-16 13:04:26 - ERROR - ERROR: core-image-initramfs-boot-1.0-r0 do_image_cpio: You can set INITRAMFS_MAXSIZE a larger value. Usually, it should
2026-04-16 13:04:26 - ERROR - ERROR: core-image-initramfs-boot-1.0-r0 do_image_cpio: be less than 1/2 of ram size, or you may fail to boot it.
This patch could be one fix.
But is this visible in auto-builder side builds? Or have the genericarm64
poky-altcfg distro builds been disabled?
Cheers,
-Mikko
> Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
> ---
> .../images/core-image-initramfs-boot.bbappend | 28 +++++++++++++++++++
> 1 file changed, 28 insertions(+)
> create mode 100644 meta-yocto-bsp/recipes-core/images/core-image-initramfs-boot.bbappend
>
> v3: added PATHS_TO_REMOVE variable so that it can be customized
> as suggested by Jose Quaresma <quaresma.jose@gmail.com>
>
> v2: https://lists.yoctoproject.org/g/poky/message/13894
>
> diff --git a/meta-yocto-bsp/recipes-core/images/core-image-initramfs-boot.bbappend b/meta-yocto-bsp/recipes-core/images/core-image-initramfs-boot.bbappend
> new file mode 100644
> index 000000000000..2298c2f94740
> --- /dev/null
> +++ b/meta-yocto-bsp/recipes-core/images/core-image-initramfs-boot.bbappend
> @@ -0,0 +1,28 @@
> +POSTFUNCS = ""
> +POSTFUNCS:genericarm64 = "reduce_initrd_size"
> +
> +PATHS_TO_REMOVE = ""
> +# these kernel modules are not needed for rootfs mount from local mass storage
> +# and can be loaded from main rootfs by udev
> +PATHS_TO_REMOVE:genericarm64 = "\
> + ${WORKDIR}/rootfs/${libdir}/modules/*/kernel/drivers/bluetooth \
> + ${WORKDIR}/rootfs/${libdir}/modules/*/kernel/drivers/gpu \
> + ${WORKDIR}/rootfs/${libdir}/modules/*/kernel/drivers/media \
> + ${WORKDIR}/rootfs/${libdir}/modules/*/kernel/drivers/net \
> + ${WORKDIR}/rootfs/${libdir}/modules/*/kernel/drivers/nfc \
> + ${WORKDIR}/rootfs/${libdir}/modules/*/kernel/drivers/usb/gadget \
> + ${WORKDIR}/rootfs/${libdir}/modules/*/kernel/fs/fuse \
> + ${WORKDIR}/rootfs/${libdir}/modules/*/kernel/net/bluetooth \
> + ${WORKDIR}/rootfs/${libdir}/modules/*/kernel/net/bridge \
> + ${WORKDIR}/rootfs/${libdir}/modules/*/kernel/net/netfilter \
> + ${WORKDIR}/rootfs/${libdir}/modules/*/kernel/net/nfc \
> + ${WORKDIR}/rootfs/${libdir}/modules/*/kernel/sound \
> +"
> +
> +do_rootfs[postfuncs] += "${POSTFUNCS}"
> +reduce_initrd_size () {
> + if [ -n "${PATHS_TO_REMOVE}" ]; then
> + rm -rf ${PATHS_TO_REMOVE}
> + fi
> +}
> +
> --
> 2.34.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#13898): https://lists.yoctoproject.org/g/poky/message/13898
> Mute This Topic: https://lists.yoctoproject.org/mt/118800931/7159507
> Group Owner: poky+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/poky/unsub [mikko.rapeli@linaro.org]
> -=-=-=-=-=-=-=-=-=-=-=-
>
next parent reply other threads:[~2026-04-16 13:26 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <18A5D9F18A3D8C50.777565@lists.yoctoproject.org>
2026-04-16 13:26 ` Mikko Rapeli [this message]
2026-04-16 13:48 ` [poky] [PATCH v3] genericarm64 core-image-initramfs-boot: remove some kernel drivers Richard Purdie
2026-04-16 14:07 ` Mikko Rapeli
2026-04-13 7:27 Mikko Rapeli
2026-04-17 9:10 ` [poky] " Richard Purdie
2026-04-17 9:25 ` Mikko Rapeli
2026-04-17 12:06 ` Richard Purdie
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=aeDjcbnGMMqzyW_z@nuoska \
--to=mikko.rapeli@linaro.org \
--cc=poky@lists.yoctoproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox