Makefile (53f071e19d566e7d0a4eada1bd8313a4cdb660a4) | Makefile (0d3fdb157fd0b96b06be7f1d8cea21dd2bc030da) |
---|---|
1# SPDX-License-Identifier: GPL-2.0 2# 3# Makefile for some libs needed in the kernel. 4# 5 6ifdef CONFIG_FUNCTION_TRACER 7ORIG_CFLAGS := $(KBUILD_CFLAGS) 8KBUILD_CFLAGS = $(subst $(CC_FLAGS_FTRACE),,$(ORIG_CFLAGS)) --- 133 unchanged lines hidden (view full) --- 142obj-$(CONFIG_TEXTSEARCH_KMP) += ts_kmp.o 143obj-$(CONFIG_TEXTSEARCH_BM) += ts_bm.o 144obj-$(CONFIG_TEXTSEARCH_FSM) += ts_fsm.o 145obj-$(CONFIG_SMP) += percpu_counter.o 146obj-$(CONFIG_AUDIT_GENERIC) += audit.o 147obj-$(CONFIG_AUDIT_COMPAT_GENERIC) += compat_audit.o 148 149obj-$(CONFIG_SWIOTLB) += swiotlb.o | 1# SPDX-License-Identifier: GPL-2.0 2# 3# Makefile for some libs needed in the kernel. 4# 5 6ifdef CONFIG_FUNCTION_TRACER 7ORIG_CFLAGS := $(KBUILD_CFLAGS) 8KBUILD_CFLAGS = $(subst $(CC_FLAGS_FTRACE),,$(ORIG_CFLAGS)) --- 133 unchanged lines hidden (view full) --- 142obj-$(CONFIG_TEXTSEARCH_KMP) += ts_kmp.o 143obj-$(CONFIG_TEXTSEARCH_BM) += ts_bm.o 144obj-$(CONFIG_TEXTSEARCH_FSM) += ts_fsm.o 145obj-$(CONFIG_SMP) += percpu_counter.o 146obj-$(CONFIG_AUDIT_GENERIC) += audit.o 147obj-$(CONFIG_AUDIT_COMPAT_GENERIC) += compat_audit.o 148 149obj-$(CONFIG_SWIOTLB) += swiotlb.o |
150obj-$(CONFIG_IOMMU_HELPER) += iommu-helper.o iommu-common.o | 150obj-$(CONFIG_IOMMU_HELPER) += iommu-helper.o |
151obj-$(CONFIG_FAULT_INJECTION) += fault-inject.o 152obj-$(CONFIG_NOTIFIER_ERROR_INJECTION) += notifier-error-inject.o 153obj-$(CONFIG_PM_NOTIFIER_ERROR_INJECT) += pm-notifier-error-inject.o 154obj-$(CONFIG_NETDEV_NOTIFIER_ERROR_INJECT) += netdev-notifier-error-inject.o 155obj-$(CONFIG_MEMORY_NOTIFIER_ERROR_INJECT) += memory-notifier-error-inject.o 156obj-$(CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT) += \ 157 of-reconfig-notifier-error-inject.o 158obj-$(CONFIG_FUNCTION_ERROR_INJECTION) += error-inject.o --- 109 unchanged lines hidden --- | 151obj-$(CONFIG_FAULT_INJECTION) += fault-inject.o 152obj-$(CONFIG_NOTIFIER_ERROR_INJECTION) += notifier-error-inject.o 153obj-$(CONFIG_PM_NOTIFIER_ERROR_INJECT) += pm-notifier-error-inject.o 154obj-$(CONFIG_NETDEV_NOTIFIER_ERROR_INJECT) += netdev-notifier-error-inject.o 155obj-$(CONFIG_MEMORY_NOTIFIER_ERROR_INJECT) += memory-notifier-error-inject.o 156obj-$(CONFIG_OF_RECONFIG_NOTIFIER_ERROR_INJECT) += \ 157 of-reconfig-notifier-error-inject.o 158obj-$(CONFIG_FUNCTION_ERROR_INJECTION) += error-inject.o --- 109 unchanged lines hidden --- |