Makefile (1809de7e7d37c585e01a1bcc583ea92b78fc759d) Makefile (d18d12d0ff07c47fb913f297c174f30a3f96042d)
1#
2# Makefile for some libs needed in the kernel.
3#
4
5ifdef CONFIG_FUNCTION_TRACER
6ORIG_CFLAGS := $(KBUILD_CFLAGS)
7KBUILD_CFLAGS = $(subst $(CC_FLAGS_FTRACE),,$(ORIG_CFLAGS))
8endif

--- 9 unchanged lines hidden (view full) ---

18# Kernel does not boot if we instrument this file as it uses custom calling
19# convention (see CONFIG_ARCH_HWEIGHT_CFLAGS).
20KCOV_INSTRUMENT_hweight.o := n
21
22lib-y := ctype.o string.o vsprintf.o cmdline.o \
23 rbtree.o radix-tree.o dump_stack.o timerqueue.o\
24 idr.o int_sqrt.o extable.o \
25 sha1.o md5.o irq_regs.o argv_split.o \
1#
2# Makefile for some libs needed in the kernel.
3#
4
5ifdef CONFIG_FUNCTION_TRACER
6ORIG_CFLAGS := $(KBUILD_CFLAGS)
7KBUILD_CFLAGS = $(subst $(CC_FLAGS_FTRACE),,$(ORIG_CFLAGS))
8endif

--- 9 unchanged lines hidden (view full) ---

18# Kernel does not boot if we instrument this file as it uses custom calling
19# convention (see CONFIG_ARCH_HWEIGHT_CFLAGS).
20KCOV_INSTRUMENT_hweight.o := n
21
22lib-y := ctype.o string.o vsprintf.o cmdline.o \
23 rbtree.o radix-tree.o dump_stack.o timerqueue.o\
24 idr.o int_sqrt.o extable.o \
25 sha1.o md5.o irq_regs.o argv_split.o \
26 proportions.o flex_proportions.o ratelimit.o show_mem.o \
26 flex_proportions.o ratelimit.o show_mem.o \
27 is_single_threaded.o plist.o decompress.o kobject_uevent.o \
28 earlycpio.o seq_buf.o nmi_backtrace.o
29
30obj-$(CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS) += usercopy.o
31lib-$(CONFIG_MMU) += ioremap.o
32lib-$(CONFIG_SMP) += cpumask.o
33lib-$(CONFIG_HAS_DMA) += dma-noop.o
34

--- 198 unchanged lines hidden ---
27 is_single_threaded.o plist.o decompress.o kobject_uevent.o \
28 earlycpio.o seq_buf.o nmi_backtrace.o
29
30obj-$(CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS) += usercopy.o
31lib-$(CONFIG_MMU) += ioremap.o
32lib-$(CONFIG_SMP) += cpumask.o
33lib-$(CONFIG_HAS_DMA) += dma-noop.o
34

--- 198 unchanged lines hidden ---