rjw | 1f88458 | 2022-01-06 17:20:42 +0800 | [diff] [blame^] | 1 | # SPDX-License-Identifier: GPL-2.0 |
| 2 | # |
| 3 | # Makefile for linux kernel |
| 4 | # |
| 5 | |
| 6 | # |
| 7 | # ARM64 maps efi runtime services in userspace addresses |
| 8 | # which don't have KASAN shadow. So dereference of these addresses |
| 9 | # in efi_call_virt() will cause crash if this code instrumented. |
| 10 | # |
| 11 | KASAN_SANITIZE_runtime-wrappers.o := n |
| 12 | |
| 13 | obj-$(CONFIG_ACPI_BGRT) += efi-bgrt.o |
| 14 | obj-$(CONFIG_EFI) += efi.o vars.o reboot.o memattr.o |
| 15 | obj-$(CONFIG_EFI) += capsule.o memmap.o |
| 16 | obj-$(CONFIG_EFI_VARS) += efivars.o |
| 17 | obj-$(CONFIG_EFI_ESRT) += esrt.o |
| 18 | obj-$(CONFIG_EFI_VARS_PSTORE) += efi-pstore.o |
| 19 | obj-$(CONFIG_UEFI_CPER) += cper.o |
| 20 | obj-$(CONFIG_EFI_RUNTIME_MAP) += runtime-map.o |
| 21 | obj-$(CONFIG_EFI_RUNTIME_WRAPPERS) += runtime-wrappers.o |
| 22 | obj-$(CONFIG_EFI_STUB) += libstub/ |
| 23 | obj-$(CONFIG_EFI_FAKE_MEMMAP) += fake_mem.o |
| 24 | obj-$(CONFIG_EFI_BOOTLOADER_CONTROL) += efibc.o |
| 25 | obj-$(CONFIG_EFI_TEST) += test/ |
| 26 | obj-$(CONFIG_EFI_DEV_PATH_PARSER) += dev-path-parser.o |
| 27 | obj-$(CONFIG_APPLE_PROPERTIES) += apple-properties.o |
| 28 | |
| 29 | arm-obj-$(CONFIG_EFI) := arm-init.o arm-runtime.o |
| 30 | obj-$(CONFIG_ARM) += $(arm-obj-y) |
| 31 | obj-$(CONFIG_ARM64) += $(arm-obj-y) |
| 32 | obj-$(CONFIG_EFI_CAPSULE_LOADER) += capsule-loader.o |