2019-05-19 20:07:45 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2019-10-28 20:10:41 +08:00
|
|
|
lib-y += delay.o
|
|
|
|
lib-y += memcpy.o
|
|
|
|
lib-y += memset.o
|
2020-11-30 17:13:19 +08:00
|
|
|
lib-y += memmove.o
|
2023-01-14 05:23:00 +08:00
|
|
|
lib-y += strcmp.o
|
|
|
|
lib-y += strlen.o
|
|
|
|
lib-y += strncmp.o
|
2020-09-07 13:58:22 +08:00
|
|
|
lib-$(CONFIG_MMU) += uaccess.o
|
2019-10-28 20:10:41 +08:00
|
|
|
lib-$(CONFIG_64BIT) += tishift.o
|
2023-02-25 00:26:29 +08:00
|
|
|
lib-$(CONFIG_RISCV_ISA_ZICBOZ) += clear_page.o
|
2020-12-18 00:01:45 +08:00
|
|
|
|
|
|
|
obj-$(CONFIG_FUNCTION_ERROR_INJECTION) += error-inject.o
|