arch/mips/lib/Makefile

Source file repositories/reference/linux-study-clean/arch/mips/lib/Makefile

File Facts

System
Linux kernel
Corpus path
arch/mips/lib/Makefile
Extension
[no extension]
Size
512 bytes
Lines
19
Domain
Architecture Layer
Bucket
arch/mips
Inferred role
Architecture Layer: build/configuration rule
Status
atlas-only

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

# SPDX-License-Identifier: GPL-2.0
#
# Makefile for MIPS-specific library files..
#

lib-y	+= bitops.o csum_partial.o delay.o memcpy.o memset.o \
	   mips-atomic.o strncpy_user.o \
	   strnlen_user.o uncached.o

obj-y			+= iomap_copy.o
obj-$(CONFIG_PCI)	+= iomap-pci.o
lib-$(CONFIG_GENERIC_CSUM)	:= $(filter-out csum_partial.o, $(lib-y))

obj-$(CONFIG_CPU_GENERIC_DUMP_TLB) += dump_tlb.o
obj-$(CONFIG_CPU_R3000)		+= r3k_dump_tlb.o

# libgcc-style stuff needed in the kernel
obj-y += bswapsi.o bswapdi.o multi3.o

Annotation

Implementation Notes