arch/microblaze/boot/dts/Makefile

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

File Facts

System
Linux kernel
Corpus path
arch/microblaze/boot/dts/Makefile
Extension
[no extension]
Size
355 bytes
Lines
21
Domain
Architecture Layer
Bucket
arch/microblaze
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
#

dtb-y := system.dtb

ifneq ($(DTB),)
obj-y += linked_dtb.o

# Ensure system.dtb exists
$(obj)/linked_dtb.o: $(obj)/system.dtb

# Generate system.dtb from $(DTB).dtb
ifneq ($(DTB),system)
$(obj)/system.dtb: $(obj)/$(DTB).dtb
	$(call if_changed,copy)
endif
endif

# Rule to build device tree blobs
DTC_FLAGS := -p 1024

Annotation

Implementation Notes