arch/x86/entry/vdso/Makefile

Source file repositories/reference/linux-study-clean/arch/x86/entry/vdso/Makefile

File Facts

System
Linux kernel
Corpus path
arch/x86/entry/vdso/Makefile
Extension
[no extension]
Size
257 bytes
Lines
13
Domain
Architecture Layer
Bucket
arch/x86
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
#
# Building vDSO images for x86.
#

# Regular kernel objects
obj-y				:= vma.o extable.o
obj-$(CONFIG_COMPAT_32)		+= vdso32-setup.o

# vDSO directories
obj-$(CONFIG_X86_64)		+= vdso64/
obj-$(CONFIG_COMPAT_32)		+= vdso32/

Annotation

Implementation Notes