1 # SPDX-License-Identifier: GPL-2.0 2 # 3 # linux/arch/arm/lib/Makefile 4 # 5 # Copyright (C) 1995-2000 Russell King 6 # 7 8 lib-y := changebit.o csumipv6.o csum 9 csumpartialcopy.o csumparti 10 delay.o delay-loop.o findbi 11 memmove.o memset.o setbit.o 12 strchr.o strrchr.o 13 testchangebit.o testclearbi 14 ashldi3.o ashrdi3.o lshrdi3 15 ucmpdi2.o lib1funcs.o div64 16 io-readsb.o io-writesb.o io 17 call_with_stack.o bswapsdi2 18 19 mmu-y := clear_user.o copy_page.o ge 20 copy_from_user.o copy_to_us 21 22 ifdef CONFIG_CC_IS_CLANG 23 lib-y += backtrace-clang.o 24 else 25 lib-y += backtrace.o 26 endif 27 28 # using lib_ here won't override already avail 29 obj-$(CONFIG_UACCESS_WITH_MEMCPY) += uaccess_w 30 31 lib-$(CONFIG_MMU) += $(mmu-y) 32 33 ifeq ($(CONFIG_CPU_32v3),y) 34 lib-y += io-readsw-armv3.o io-writesw-armv3. 35 else 36 lib-y += io-readsw-armv4.o io-writesw-armv4. 37 endif 38 39 $(obj)/csumpartialcopy.o: $(obj)/csumpar 40 $(obj)/csumpartialcopyuser.o: $(obj)/csumpar 41 42 ifeq ($(CONFIG_KERNEL_MODE_NEON),y) 43 CFLAGS_xor-neon.o += $(CC_FLAGS_ 44 obj-$(CONFIG_XOR_BLOCKS) += xor-neon.o 45 endif 46 47 obj-$(CONFIG_FUNCTION_ERROR_INJECTION) += erro
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.