arch/openrisc/boot/Makefile

Source file repositories/reference/linux-study-clean/arch/openrisc/boot/Makefile

File Facts

System
Linux kernel
Corpus path
arch/openrisc/boot/Makefile
Extension
[no extension]
Size
202 bytes
Lines
11
Domain
Architecture Layer
Bucket
arch/openrisc
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 bootable kernel images
#

targets += vmlinux.bin

OBJCOPYFLAGS_vmlinux.bin := -O binary
$(obj)/vmlinux.bin: vmlinux FORCE
	$(call if_changed,objcopy)

Annotation

Implementation Notes