forked from luck/tmp_suning_uos_patched
9e1491de51
- Do not trace idle loop which takes a lot time - Fix cache handling in generic ftrace code - Do not trace lib functions ashldi3, ashrdi3, lshrdi3 Functions are called from generic ftrace code which can't be traced Signed-off-by: Michal Simek <monstr@monstr.eu>
30 lines
444 B
Makefile
30 lines
444 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
|
|
ifdef CONFIG_FUNCTION_TRACER
|
|
CFLAGS_REMOVE_ashldi3.o = -pg
|
|
CFLAGS_REMOVE_ashrdi3.o = -pg
|
|
CFLAGS_REMOVE_lshrdi3.o = -pg
|
|
endif
|
|
|
|
lib-y := memset.o
|
|
|
|
ifeq ($(CONFIG_OPT_LIB_ASM),y)
|
|
lib-y += fastcopy.o
|
|
else
|
|
lib-y += memcpy.o memmove.o
|
|
endif
|
|
|
|
lib-y += uaccess_old.o
|
|
|
|
lib-y += ashldi3.o
|
|
lib-y += ashrdi3.o
|
|
lib-y += divsi3.o
|
|
lib-y += lshrdi3.o
|
|
lib-y += modsi3.o
|
|
lib-y += muldi3.o
|
|
lib-y += mulsi3.o
|
|
lib-y += udivsi3.o
|
|
lib-y += umodsi3.o
|