From: Robert Marko Date: Sun, 9 Aug 2026 10:50:08 +0000 (+0200) Subject: airoha: fix U-Boot artifacts for AN7581 eMMC boards X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=76cda5ddac140547dbb1ca33b8691027fbc75eb5;p=thirdparty%2Fopenwrt.git airoha: fix U-Boot artifacts for AN7581 eMMC boards The AN7581 eMMC Eagle and Kite boards use the shared an7581_rfb U-Boot build, which produces artifacts with the rfb suffix. The image recipes instead look for nonexistent per-device rfb-emmc-eagle and rfb-emmc-kite artifacts. Use the shared rfb artifacts for both boards so their preloader and BL31/U-Boot FIP artifacts can be generated. Fixes: 94a21b3fe9bd ("uboot-airoha: move FIP generation to target and enable autoselection") Signed-off-by: Robert Marko --- diff --git a/target/linux/airoha/image/an7581.mk b/target/linux/airoha/image/an7581.mk index c33949a67aa..388e088138a 100644 --- a/target/linux/airoha/image/an7581.mk +++ b/target/linux/airoha/image/an7581.mk @@ -72,8 +72,8 @@ define Device/airoha_an7581-evb-emmc-eagle DEVICE_DTS := an7581-evb-emmc-eagle DEVICE_PACKAGES := airoha-en7581-mt7996-npu-firmware \ kmod-mt7996-firmware wpad-basic-mbedtls - ARTIFACT/preloader.bin := an7581-preloader rfb-emmc-eagle - ARTIFACT/bl31-uboot.fip := an7581-bl31-uboot rfb-emmc-eagle + ARTIFACT/preloader.bin := an7581-preloader rfb + ARTIFACT/bl31-uboot.fip := an7581-bl31-uboot rfb ARTIFACTS := preloader.bin bl31-uboot.fip endef TARGET_DEVICES += airoha_an7581-evb-emmc-eagle @@ -84,8 +84,8 @@ define Device/airoha_an7581-evb-emmc-kite DEVICE_DTS := an7581-evb-emmc-kite DEVICE_PACKAGES := airoha-en7581-npu-firmware \ kmod-mt7992-firmware wpad-basic-mbedtls - ARTIFACT/preloader.bin := an7581-preloader rfb-emmc-kite - ARTIFACT/bl31-uboot.fip := an7581-bl31-uboot rfb-emmc-kite + ARTIFACT/preloader.bin := an7581-preloader rfb + ARTIFACT/bl31-uboot.fip := an7581-bl31-uboot rfb ARTIFACTS := preloader.bin bl31-uboot.fip endef TARGET_DEVICES += airoha_an7581-evb-emmc-kite