Remove unused OPI_BOOT_OUT staging directory. Boot.img is now just the U-Boot binary for build system packaging. The actual FAT32 boot partition with kernel/DTB/ramdisk is created by mkimg_gpt.sh, which runs outside the build system and has access to mkfs.vfat and mcopy. Copyright (C) 2026 Brendan Szymanski <hello@bscubed.dev>
17 lines
414 B
Makefile
17 lines
414 B
Makefile
#
|
|
# Copyright (C) 2021-2022 KonstaKANG
|
|
# Copyright (C) 2025 Venkata Atchuta Bheemeswara Sarma Darbha
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
DEVICE_PATH := device/rockchip/orangepi5ultra
|
|
KERNEL_PATH := device/rockchip/orangepi5ultra-kernel
|
|
|
|
INSTALLED_BOOTIMAGE_TARGET := $(PRODUCT_OUT)/boot.img
|
|
|
|
$(INSTALLED_BOOTIMAGE_TARGET):
|
|
$(call pretty,"Target boot image: $@")
|
|
cp $(KERNEL_PATH)/u-boot-rockchip.bin $@
|
|
|
|
|