2023-08-30 17:31:07 +02:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
lib-y += delay.o
|
|
|
|
lib-y += memcpy.o
|
|
|
|
lib-y += memset.o
|
|
|
|
lib-y += memmove.o
|
|
|
|
lib-y += strcmp.o
|
|
|
|
lib-y += strlen.o
|
|
|
|
lib-y += strncmp.o
|
|
|
|
lib-$(CONFIG_MMU) += uaccess.o
|
|
|
|
lib-$(CONFIG_64BIT) += tishift.o
|
2023-10-24 12:59:35 +02:00
|
|
|
lib-$(CONFIG_RISCV_ISA_ZICBOZ) += clear_page.o
|
2023-08-30 17:31:07 +02:00
|
|
|
|
|
|
|
obj-$(CONFIG_FUNCTION_ERROR_INJECTION) += error-inject.o
|