Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

kbuild: Support a FIT_EXTRA_ARGS environment variable

In some cases it is useful to be able to pass additional flags to the
make_fit.py script. For example, since ramdisks are typically large,
passing -E to use external data can be helpful.

Add a new FIT_EXTRA_ARGS variable for this.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Nicolas Schier <nsc@kernel.org>
Reviewed-by: Thomas Weißschuh <thomas.weissschuh@linutronix.de>
Link: https://patch.msgid.link/20260106162738.2605574-5-sjg@chromium.org
Signed-off-by: Nathan Chancellor <nathan@kernel.org>

authored by

Simon Glass and committed by
Nathan Chancellor
9a329df6 873c2836

+1 -1
+1 -1
scripts/Makefile.lib
··· 400 400 401 401 quiet_cmd_fit = FIT $@ 402 402 cmd_fit = $(MAKE_FIT) -o $@ --arch $(UIMAGE_ARCH) --os linux \ 403 - --name '$(UIMAGE_NAME)' \ 403 + --name '$(UIMAGE_NAME)' $(FIT_EXTRA_ARGS) \ 404 404 $(if $(findstring 1,$(KBUILD_VERBOSE)),-v) \ 405 405 $(if $(FIT_DECOMPOSE_DTBS),--decompose-dtbs) \ 406 406 --compress $(FIT_COMPRESSION) -k $< @$(word 2,$^)