diff options
author | Ard Biesheuvel <ardb@kernel.org> | 2022-10-12 20:23:46 +0200 |
---|---|---|
committer | Ard Biesheuvel <ardb@kernel.org> | 2022-11-09 12:42:03 +0100 |
commit | f1a116c055e3aee0c579d39bd777c9155e8bf5d1 (patch) | |
tree | bc1af50a74d98df13defd22a2f3b9972b40be3a9 /drivers/firmware/efi/libstub/Makefile | |
parent | 895bc3a135ffe9475de04b30e274f57a176cd3ef (diff) | |
download | linux-stable-f1a116c055e3aee0c579d39bd777c9155e8bf5d1.tar.gz linux-stable-f1a116c055e3aee0c579d39bd777c9155e8bf5d1.tar.bz2 linux-stable-f1a116c055e3aee0c579d39bd777c9155e8bf5d1.zip |
efi/riscv: libstub: Split off kernel image relocation for builtin stub
The RISC-V build of the EFI stub is part of the core kernel image, and
therefore accesses section markers directly when it needs to figure out
the size of the various section.
The zboot decompressor does not have access to those symbols, but
doesn't really need that either. So let's move handle_kernel_image()
into a separate file (or rather, move everything else into a separate
file) so that the zboot build does not pull in unused code that links to
symbols that it does not define.
Signed-off-by: Ard Biesheuvel <ardb@kernel.org>
Diffstat (limited to 'drivers/firmware/efi/libstub/Makefile')
-rw-r--r-- | drivers/firmware/efi/libstub/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firmware/efi/libstub/Makefile b/drivers/firmware/efi/libstub/Makefile index ea96405bfd31..5ec0635b4987 100644 --- a/drivers/firmware/efi/libstub/Makefile +++ b/drivers/firmware/efi/libstub/Makefile @@ -88,7 +88,7 @@ lib-$(CONFIG_EFI_GENERIC_STUB) += efi-stub.o string.o intrinsics.o systable.o \ lib-$(CONFIG_ARM) += arm32-stub.o lib-$(CONFIG_ARM64) += arm64-stub.o arm64-entry.o lib-$(CONFIG_X86) += x86-stub.o -lib-$(CONFIG_RISCV) += riscv-stub.o +lib-$(CONFIG_RISCV) += riscv.o riscv-stub.o lib-$(CONFIG_LOONGARCH) += loongarch-stub.o CFLAGS_arm32-stub.o := -DTEXT_OFFSET=$(TEXT_OFFSET) |