1 # SPDX-License-Identifier: GPL-2.0-only 2 lib-y += delay.o 3 lib-y += memcpy.o 4 lib-y += memset.o 5 lib-y += memmove.o 6 ifeq ($(CONFIG_KASAN_GENERIC)$(CONFIG_KASAN_SW_TAGS),) 7 lib-y += strcmp.o 8 lib-y += strlen.o 9 lib-y += strncmp.o 10 endif 11 lib-y += csum.o 12 ifeq ($(CONFIG_MMU), y) 13 lib-$(CONFIG_RISCV_ISA_V) += uaccess_vector.o 14 endif 15 lib-$(CONFIG_MMU) += uaccess.o 16 lib-$(CONFIG_64BIT) += tishift.o 17 lib-$(CONFIG_RISCV_ISA_ZICBOZ) += clear_page.o 18 lib-$(CONFIG_RISCV_ISA_ZBC) += crc32.o 19 20 obj-$(CONFIG_FUNCTION_ERROR_INJECTION) += error-inject.o 21 lib-$(CONFIG_RISCV_ISA_V) += xor.o 22 lib-$(CONFIG_RISCV_ISA_V) += riscv_v_helpers.o
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.