diff options
author | Nathan Barrett-Morrison <nathan.morrison@timesys.com> | 2022-02-02 15:05:18 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-09-14 15:23:03 -0400 |
commit | 7a0d88076b9cd8ccc88d41383f92ac2494d4168e (patch) | |
tree | 1774a9292dabd1c133c487d944f3fdc4bbd7e869 /arch/arm/lib | |
parent | 1520af3f8450bb58168fe1cc827a56d435e9f74c (diff) | |
download | u-boot-7a0d88076b9cd8ccc88d41383f92ac2494d4168e.tar.gz u-boot-7a0d88076b9cd8ccc88d41383f92ac2494d4168e.tar.bz2 u-boot-7a0d88076b9cd8ccc88d41383f92ac2494d4168e.zip |
Add in the ability to load and boot an uncompressed kernel image during the Falcon Mode boot sequence.
This is required for architectures which do not support compressed kernel images (i.e. ARM64). This is only used while not booting via FIT image.
Signed-off-by: Nathan Barrett-Morrison <nathan.morrison@timesys.com>
Cc: Tom Rini <trini@konsulko.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm/lib')
-rw-r--r-- | arch/arm/lib/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/arm/lib/Makefile b/arch/arm/lib/Makefile index d137b4bf0f..62cf80f373 100644 --- a/arch/arm/lib/Makefile +++ b/arch/arm/lib/Makefile @@ -35,7 +35,10 @@ obj-$(CONFIG_CMD_BOOTM) += bootm.o obj-$(CONFIG_CMD_BOOTZ) += bootm.o zimage.o else obj-$(CONFIG_$(SPL_TPL_)FRAMEWORK) += spl.o -obj-$(CONFIG_SPL_FRAMEWORK) += zimage.o +ifdef CONFIG_SPL_FRAMEWORK +obj-$(CONFIG_CMD_BOOTI) += image.o +obj-$(CONFIG_CMD_BOOTZ) += zimage.o +endif obj-$(CONFIG_OF_LIBFDT) += bootm-fdt.o endif ifdef CONFIG_ARM64 |