diff options
author | Ard Biesheuvel <ardb@kernel.org> | 2020-04-13 14:23:57 +0200 |
---|---|---|
committer | Ard Biesheuvel <ardb@kernel.org> | 2020-04-24 14:52:16 +0200 |
commit | 685d8164b5da3aeb75b0320fd3a3bf75e4f9c51e (patch) | |
tree | 1c4df329ba5d31dfea986a6fb9570eebc3a77bb9 /drivers/firmware/efi/libstub/Makefile | |
parent | e71356fe29e7bd5cd5e07800d4940a7481fb0854 (diff) | |
download | linux-685d8164b5da3aeb75b0320fd3a3bf75e4f9c51e.tar.gz linux-685d8164b5da3aeb75b0320fd3a3bf75e4f9c51e.tar.bz2 linux-685d8164b5da3aeb75b0320fd3a3bf75e4f9c51e.zip |
efi/libstub: Move efi_relocate_kernel() into separate source file
Move efi_relocate_kernel() into a separate source file, so that it
only gets pulled into builds for architectures that use it. Since
efi_relocate_kernel() is the only user of efi_low_alloc(), let's
move that over as well.
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 bb8af2b16c49..9a712a6e2f87 100644 --- a/drivers/firmware/efi/libstub/Makefile +++ b/drivers/firmware/efi/libstub/Makefile @@ -43,7 +43,7 @@ KCOV_INSTRUMENT := n lib-y := efi-stub-helper.o gop.o secureboot.o tpm.o \ file.o mem.o random.o randomalloc.o pci.o \ skip_spaces.o lib-cmdline.o lib-ctype.o \ - alignedmem.o + alignedmem.o relocate.o # include the stub's generic dependencies from lib/ when building for ARM/arm64 efi-deps-y := fdt_rw.c fdt_ro.c fdt_wip.c fdt.c fdt_empty_tree.c fdt_sw.c |