Makefile (f0133f3c5b8bb34ec4dec50c27e7a655aeee8935) | Makefile (65117f1aa1b2d145fd5ca376bde642794d0aae1b) |
---|---|
1# 2# Makefile for linux kernel 3# 4 5# 6# ARM64 maps efi runtime services in userspace addresses 7# which don't have KASAN shadow. So dereference of these addresses 8# in efi_call_virt() will cause crash if this code instrumented. --- 10 unchanged lines hidden (view full) --- 19obj-$(CONFIG_EFI_RUNTIME_WRAPPERS) += runtime-wrappers.o 20obj-$(CONFIG_EFI_STUB) += libstub/ 21obj-$(CONFIG_EFI_FAKE_MEMMAP) += fake_mem.o 22obj-$(CONFIG_EFI_BOOTLOADER_CONTROL) += efibc.o 23 24arm-obj-$(CONFIG_EFI) := arm-init.o arm-runtime.o 25obj-$(CONFIG_ARM) += $(arm-obj-y) 26obj-$(CONFIG_ARM64) += $(arm-obj-y) | 1# 2# Makefile for linux kernel 3# 4 5# 6# ARM64 maps efi runtime services in userspace addresses 7# which don't have KASAN shadow. So dereference of these addresses 8# in efi_call_virt() will cause crash if this code instrumented. --- 10 unchanged lines hidden (view full) --- 19obj-$(CONFIG_EFI_RUNTIME_WRAPPERS) += runtime-wrappers.o 20obj-$(CONFIG_EFI_STUB) += libstub/ 21obj-$(CONFIG_EFI_FAKE_MEMMAP) += fake_mem.o 22obj-$(CONFIG_EFI_BOOTLOADER_CONTROL) += efibc.o 23 24arm-obj-$(CONFIG_EFI) := arm-init.o arm-runtime.o 25obj-$(CONFIG_ARM) += $(arm-obj-y) 26obj-$(CONFIG_ARM64) += $(arm-obj-y) |
27obj-$(CONFIG_EFI_CAPSULE_LOADER) += capsule-loader.o |
|