* [PATCH v4 0/7] scripts/make_fit: Support ramdisks and faster operations
@ 2025-10-06 23:01 Simon Glass
2025-10-06 23:01 ` [PATCH v4 5/7] kbuild: Allow adding modules into the FIT ramdisk Simon Glass
2025-10-30 17:48 ` [PATCH v4 0/7] scripts/make_fit: Support ramdisks and faster operations Simon Glass
0 siblings, 2 replies; 5+ messages in thread
From: Simon Glass @ 2025-10-06 23:01 UTC (permalink / raw)
To: linux-arm-kernel
Cc: Chen-Yu Tsai, Ahmad Fatoum, Masahiro Yamada, J . Neuschäfer,
Nicolas Schier, Tom Rini, Simon Glass, Ard Biesheuvel,
Catalin Marinas, David Sterba, Josh Poimboeuf, Kees Cook,
Nathan Chancellor, Nick Terrell, Nicolas Schier, Rong Xu,
Will Deacon, linux-kbuild, linux-kernel
This series updates 'make image.fit' to support adding a ramdisk to the
FIT, either one provided as a parameter or one created from all the
kernel modules.
It also includes a few performance improvement, so that building a FIT
from ~450MB of kernel/module/devicetree files only takes a few seconds
on a modern machine.
Changes in v4:
- Provide the list of modules from the Makefile
- Reduce verbosity (don't print every module filename)
- Rename the Makefile variable from 'EXTRA' to 'MAKE_FIT_FLAGS'
- Use an empty FIT_MODULES to disable the feature, instead of '0'
- Make use of the 'modules' dependency to ensure modules are built
- Pass the list of modules to the script
Changes in v3:
- Move the ramdisk chunk into the correct patch
- Add a comment at the top of the file about the -r option
- Count the ramdisk in the total files
- Update the commit message
- Update the commit message
- Add a way to add built modules into the FIT
Changes in v2:
- Don't compress the ramdisk as it is already compressed
Simon Glass (7):
scripts/make_fit: Speed up operation
scripts/make_fit: Support an initial ramdisk
scripts/make_fit: Move dtb processing into a function
scripts/make_fit: Provide a way to add built modules
kbuild: Allow adding modules into the FIT ramdisk
scripts/make_fit: Support a few more parallel compressors
scripts/make_fit: Compress dtbs in parallel
arch/arm64/boot/Makefile | 4 +
scripts/Makefile.lib | 10 +-
scripts/make_fit.py | 264 +++++++++++++++++++++++++++++++++------
3 files changed, 239 insertions(+), 39 deletions(-)
--
2.43.0
base-commit: 4a71531471926e3c391665ee9c42f4e0295a4585
branch: fita4
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH v4 5/7] kbuild: Allow adding modules into the FIT ramdisk
2025-10-06 23:01 [PATCH v4 0/7] scripts/make_fit: Support ramdisks and faster operations Simon Glass
@ 2025-10-06 23:01 ` Simon Glass
2025-11-08 21:17 ` Nicolas Schier
2025-10-30 17:48 ` [PATCH v4 0/7] scripts/make_fit: Support ramdisks and faster operations Simon Glass
1 sibling, 1 reply; 5+ messages in thread
From: Simon Glass @ 2025-10-06 23:01 UTC (permalink / raw)
To: linux-arm-kernel
Cc: Chen-Yu Tsai, Ahmad Fatoum, Masahiro Yamada, J . Neuschäfer,
Nicolas Schier, Tom Rini, Simon Glass, Nathan Chancellor,
Ard Biesheuvel, Catalin Marinas, Josh Poimboeuf, Kees Cook,
Nicolas Schier, Rong Xu, Will Deacon, linux-kbuild, linux-kernel
Support 'make image.fit FIT_MODULES=1' to put all the modules into a
ramdisk image within the FIT.
Signed-off-by: Simon Glass <sjg@chromium.org>
Suggested-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
Acked-by: Nathan Chancellor <nathan@kernel.org>
---
Changes in v4:
- Rename the Makefile variable from 'EXTRA' to 'MAKE_FIT_FLAGS'
- Use an empty FIT_MODULES to disable the feature, instead of '0'
- Make use of the 'modules' dependency to ensure modules are built
- Pass the list of modules to the script
arch/arm64/boot/Makefile | 4 ++++
scripts/Makefile.lib | 10 ++++++++--
2 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/arch/arm64/boot/Makefile b/arch/arm64/boot/Makefile
index b5a08333bc57..d10c85f96aea 100644
--- a/arch/arm64/boot/Makefile
+++ b/arch/arm64/boot/Makefile
@@ -43,6 +43,10 @@ $(obj)/Image.zst: $(obj)/Image FORCE
$(obj)/Image.xz: $(obj)/Image FORCE
$(call if_changed,xzkern)
+ifeq ($(FIT_MODULES),1)
+.PHONY: modules
+$(obj)/image.fit: modules
+endif
$(obj)/image.fit: $(obj)/Image $(obj)/dts/dtbs-list FORCE
$(call if_changed,fit)
diff --git a/scripts/Makefile.lib b/scripts/Makefile.lib
index 1d581ba5df66..c6a3aa653035 100644
--- a/scripts/Makefile.lib
+++ b/scripts/Makefile.lib
@@ -398,11 +398,17 @@ MAKE_FIT := $(srctree)/scripts/make_fit.py
# Use this to override the compression algorithm
FIT_COMPRESSION ?= gzip
+# Set this to 1 to include an initrd with all the kernel modules
+FIT_MODULES ?=
+
quiet_cmd_fit = FIT $@
- cmd_fit = $(MAKE_FIT) -o $@ --arch $(UIMAGE_ARCH) --os linux \
- --name '$(UIMAGE_NAME)' \
+ cmd_fit = $(if $(FIT_MODULES), \
+ find $(objtree) -name '*.ko' > $(objtree)/.modules-list 2>/dev/null &&) \
+ $(MAKE_FIT) -o $@ --arch $(UIMAGE_ARCH) --os linux \
+ --name '$(UIMAGE_NAME)' $(MAKE_FIT_FLAGS) \
$(if $(findstring 1,$(KBUILD_VERBOSE)),-v) \
$(if $(FIT_DECOMPOSE_DTBS),--decompose-dtbs) \
+ $(if $(FIT_MODULES),--modules @$(objtree)/.modules-list) \
--compress $(FIT_COMPRESSION) -k $< @$(word 2,$^)
# XZ
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v4 0/7] scripts/make_fit: Support ramdisks and faster operations
2025-10-06 23:01 [PATCH v4 0/7] scripts/make_fit: Support ramdisks and faster operations Simon Glass
2025-10-06 23:01 ` [PATCH v4 5/7] kbuild: Allow adding modules into the FIT ramdisk Simon Glass
@ 2025-10-30 17:48 ` Simon Glass
1 sibling, 0 replies; 5+ messages in thread
From: Simon Glass @ 2025-10-30 17:48 UTC (permalink / raw)
To: linux-arm-kernel
Cc: Chen-Yu Tsai, Ahmad Fatoum, Masahiro Yamada, J . Neuschäfer,
Nicolas Schier, Tom Rini, Ard Biesheuvel, Catalin Marinas,
David Sterba, Josh Poimboeuf, Kees Cook, Nathan Chancellor,
Nick Terrell, Nicolas Schier, Rong Xu, Will Deacon, linux-kbuild,
linux-kernel
Hi,
On Tue, 7 Oct 2025 at 01:02, Simon Glass <sjg@chromium.org> wrote:
>
> This series updates 'make image.fit' to support adding a ramdisk to the
> FIT, either one provided as a parameter or one created from all the
> kernel modules.
>
> It also includes a few performance improvement, so that building a FIT
> from ~450MB of kernel/module/devicetree files only takes a few seconds
> on a modern machine.
>
> Changes in v4:
> - Provide the list of modules from the Makefile
> - Reduce verbosity (don't print every module filename)
> - Rename the Makefile variable from 'EXTRA' to 'MAKE_FIT_FLAGS'
> - Use an empty FIT_MODULES to disable the feature, instead of '0'
> - Make use of the 'modules' dependency to ensure modules are built
> - Pass the list of modules to the script
>
> Changes in v3:
> - Move the ramdisk chunk into the correct patch
> - Add a comment at the top of the file about the -r option
> - Count the ramdisk in the total files
> - Update the commit message
> - Update the commit message
> - Add a way to add built modules into the FIT
>
> Changes in v2:
> - Don't compress the ramdisk as it is already compressed
>
> Simon Glass (7):
> scripts/make_fit: Speed up operation
> scripts/make_fit: Support an initial ramdisk
> scripts/make_fit: Move dtb processing into a function
> scripts/make_fit: Provide a way to add built modules
> kbuild: Allow adding modules into the FIT ramdisk
> scripts/make_fit: Support a few more parallel compressors
> scripts/make_fit: Compress dtbs in parallel
>
> arch/arm64/boot/Makefile | 4 +
> scripts/Makefile.lib | 10 +-
> scripts/make_fit.py | 264 +++++++++++++++++++++++++++++++++------
> 3 files changed, 239 insertions(+), 39 deletions(-)
>
Are there any comments on this series?
> --
> 2.43.0
>
> base-commit: 4a71531471926e3c391665ee9c42f4e0295a4585
> branch: fita4
Regards,
Simon
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH v4 5/7] kbuild: Allow adding modules into the FIT ramdisk
2025-10-06 23:01 ` [PATCH v4 5/7] kbuild: Allow adding modules into the FIT ramdisk Simon Glass
@ 2025-11-08 21:17 ` Nicolas Schier
2025-11-14 14:29 ` Simon Glass
0 siblings, 1 reply; 5+ messages in thread
From: Nicolas Schier @ 2025-11-08 21:17 UTC (permalink / raw)
To: Simon Glass
Cc: linux-arm-kernel, Chen-Yu Tsai, Ahmad Fatoum, Masahiro Yamada,
J . Neuschäfer, Tom Rini, Nathan Chancellor, Ard Biesheuvel,
Catalin Marinas, Josh Poimboeuf, Kees Cook, Rong Xu, Will Deacon,
linux-kbuild, linux-kernel
On Mon, Oct 06, 2025 at 05:01:56PM -0600, Simon Glass wrote:
> Support 'make image.fit FIT_MODULES=1' to put all the modules into a
> ramdisk image within the FIT.
>
> Signed-off-by: Simon Glass <sjg@chromium.org>
> Suggested-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
> Acked-by: Nathan Chancellor <nathan@kernel.org>
> ---
>
> Changes in v4:
> - Rename the Makefile variable from 'EXTRA' to 'MAKE_FIT_FLAGS'
> - Use an empty FIT_MODULES to disable the feature, instead of '0'
> - Make use of the 'modules' dependency to ensure modules are built
> - Pass the list of modules to the script
>
> arch/arm64/boot/Makefile | 4 ++++
> scripts/Makefile.lib | 10 ++++++++--
> 2 files changed, 12 insertions(+), 2 deletions(-)
>
> diff --git a/arch/arm64/boot/Makefile b/arch/arm64/boot/Makefile
> index b5a08333bc57..d10c85f96aea 100644
> --- a/arch/arm64/boot/Makefile
> +++ b/arch/arm64/boot/Makefile
> @@ -43,6 +43,10 @@ $(obj)/Image.zst: $(obj)/Image FORCE
> $(obj)/Image.xz: $(obj)/Image FORCE
> $(call if_changed,xzkern)
>
> +ifeq ($(FIT_MODULES),1)
> +.PHONY: modules
> +$(obj)/image.fit: modules
> +endif
This does not work for me. I tried:
make clean
make image.fit FIT_MODULES=1
but modules are not built as KBUILD_MODULES is not set in top-level
Makefile. Works for me with the following diff:
diff --git a/Makefile b/Makefile
index d14824792227..e6b8bcbdb073 100644
--- a/Makefile
+++ b/Makefile
@@ -772,7 +772,13 @@ endif
# in addition to whatever we do anyway.
# Just "make" or "make all" shall build modules as well
-ifneq ($(filter all modules nsdeps compile_commands.json clang-%,$(MAKECMDGOALS)),)
+modules-targets := all
+modules-targets += $(if $(FIT_MODULES), image.fit)
+modules-targets += modules
+modules-targets += nsdeps
+modules-targets += compile_commands.json
+modules-targets += clang-%
+ifneq ($(filter $(modules-targets),$(MAKECMDGOALS)),)
KBUILD_MODULES := y
endif
diff --git a/arch/arm64/Makefile b/arch/arm64/Makefile
index 73a10f65ce8b..f7f0c144908a 100644
--- a/arch/arm64/Makefile
+++ b/arch/arm64/Makefile
@@ -174,6 +174,7 @@ endif
all: $(notdir $(KBUILD_IMAGE))
image.fit: dtbs
+image.fit: $(if $(FIT_MODULES), modules)
vmlinuz.efi image.fit: Image
$(BOOT_TARGETS): vmlinux
diff --git a/arch/arm64/boot/Makefile b/arch/arm64/boot/Makefile
index d10c85f96aea..b5a08333bc57 100644
--- a/arch/arm64/boot/Makefile
+++ b/arch/arm64/boot/Makefile
@@ -43,10 +43,6 @@ $(obj)/Image.zst: $(obj)/Image FORCE
$(obj)/Image.xz: $(obj)/Image FORCE
$(call if_changed,xzkern)
-ifeq ($(FIT_MODULES),1)
-.PHONY: modules
-$(obj)/image.fit: modules
-endif
$(obj)/image.fit: $(obj)/Image $(obj)/dts/dtbs-list FORCE
$(call if_changed,fit)
Kind regards
Nicolas
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v4 5/7] kbuild: Allow adding modules into the FIT ramdisk
2025-11-08 21:17 ` Nicolas Schier
@ 2025-11-14 14:29 ` Simon Glass
0 siblings, 0 replies; 5+ messages in thread
From: Simon Glass @ 2025-11-14 14:29 UTC (permalink / raw)
To: Nicolas Schier
Cc: linux-arm-kernel, Chen-Yu Tsai, Ahmad Fatoum, Masahiro Yamada,
J . Neuschäfer, Tom Rini, Nathan Chancellor, Ard Biesheuvel,
Catalin Marinas, Josh Poimboeuf, Kees Cook, Rong Xu, Will Deacon,
linux-kbuild, linux-kernel
Hi Nicolas,
On Sat, 8 Nov 2025 at 14:19, Nicolas Schier <nsc@kernel.org> wrote:
>
> On Mon, Oct 06, 2025 at 05:01:56PM -0600, Simon Glass wrote:
> > Support 'make image.fit FIT_MODULES=1' to put all the modules into a
> > ramdisk image within the FIT.
> >
> > Signed-off-by: Simon Glass <sjg@chromium.org>
> > Suggested-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
> > Acked-by: Nathan Chancellor <nathan@kernel.org>
> > ---
> >
> > Changes in v4:
> > - Rename the Makefile variable from 'EXTRA' to 'MAKE_FIT_FLAGS'
> > - Use an empty FIT_MODULES to disable the feature, instead of '0'
> > - Make use of the 'modules' dependency to ensure modules are built
> > - Pass the list of modules to the script
> >
> > arch/arm64/boot/Makefile | 4 ++++
> > scripts/Makefile.lib | 10 ++++++++--
> > 2 files changed, 12 insertions(+), 2 deletions(-)
> >
> > diff --git a/arch/arm64/boot/Makefile b/arch/arm64/boot/Makefile
> > index b5a08333bc57..d10c85f96aea 100644
> > --- a/arch/arm64/boot/Makefile
> > +++ b/arch/arm64/boot/Makefile
> > @@ -43,6 +43,10 @@ $(obj)/Image.zst: $(obj)/Image FORCE
> > $(obj)/Image.xz: $(obj)/Image FORCE
> > $(call if_changed,xzkern)
> >
> > +ifeq ($(FIT_MODULES),1)
> > +.PHONY: modules
> > +$(obj)/image.fit: modules
> > +endif
>
> This does not work for me. I tried:
>
> make clean
> make image.fit FIT_MODULES=1
>
> but modules are not built as KBUILD_MODULES is not set in top-level
> Makefile. Works for me with the following diff:
>
>
> diff --git a/Makefile b/Makefile
> index d14824792227..e6b8bcbdb073 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -772,7 +772,13 @@ endif
> # in addition to whatever we do anyway.
> # Just "make" or "make all" shall build modules as well
>
> -ifneq ($(filter all modules nsdeps compile_commands.json clang-%,$(MAKECMDGOALS)),)
> +modules-targets := all
> +modules-targets += $(if $(FIT_MODULES), image.fit)
> +modules-targets += modules
> +modules-targets += nsdeps
> +modules-targets += compile_commands.json
> +modules-targets += clang-%
> +ifneq ($(filter $(modules-targets),$(MAKECMDGOALS)),)
> KBUILD_MODULES := y
> endif
>
> diff --git a/arch/arm64/Makefile b/arch/arm64/Makefile
> index 73a10f65ce8b..f7f0c144908a 100644
> --- a/arch/arm64/Makefile
> +++ b/arch/arm64/Makefile
> @@ -174,6 +174,7 @@ endif
> all: $(notdir $(KBUILD_IMAGE))
>
> image.fit: dtbs
> +image.fit: $(if $(FIT_MODULES), modules)
>
> vmlinuz.efi image.fit: Image
> $(BOOT_TARGETS): vmlinux
> diff --git a/arch/arm64/boot/Makefile b/arch/arm64/boot/Makefile
> index d10c85f96aea..b5a08333bc57 100644
> --- a/arch/arm64/boot/Makefile
> +++ b/arch/arm64/boot/Makefile
> @@ -43,10 +43,6 @@ $(obj)/Image.zst: $(obj)/Image FORCE
> $(obj)/Image.xz: $(obj)/Image FORCE
> $(call if_changed,xzkern)
>
> -ifeq ($(FIT_MODULES),1)
> -.PHONY: modules
> -$(obj)/image.fit: modules
> -endif
> $(obj)/image.fit: $(obj)/Image $(obj)/dts/dtbs-list FORCE
> $(call if_changed,fit)
>
Thanks for trying this and for suggesting the fix. Indeed I had not
tried the module feature starting from a fresh build.
Regards,
Simon
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-11-14 14:29 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-06 23:01 [PATCH v4 0/7] scripts/make_fit: Support ramdisks and faster operations Simon Glass
2025-10-06 23:01 ` [PATCH v4 5/7] kbuild: Allow adding modules into the FIT ramdisk Simon Glass
2025-11-08 21:17 ` Nicolas Schier
2025-11-14 14:29 ` Simon Glass
2025-10-30 17:48 ` [PATCH v4 0/7] scripts/make_fit: Support ramdisks and faster operations Simon Glass
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox