diff options
| author | Mikhail Zhilkin | 2026-05-13 17:55:57 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2026-06-23 21:46:24 +0000 |
| commit | ed5611d2f84518431d3ab60d5a526974a396a66e (patch) | |
| tree | 4cdfbc92065a24fe0f8ed56ff0065ff553e62cbe | |
| parent | 102c0729d36400707cb0c344b227d5b0ac99f57e (diff) | |
| download | openwrt-ed5611d2f84518431d3ab60d5a526974a396a66e.tar.gz | |
uboot-mediatek: fix bl2 dependency for Qihoo 360T7
This commit fixes wrong bl2 dependency which leads to build errors if
non-ubi ddr3-1866 bl2 is not exists in the build dir.
Fixes: 9a87c4b ("uboot-mediatek: add Qihoo 360T7 (UBI) support")
Signed-off-by: Mikhail Zhilkin <csharper2005@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/23354
Signed-off-by: Robert Marko <robimarko@gmail.com>
(cherry picked from commit f3a891e560a705a6f12ede405bbbf6117a2f41d3)
Signed-off-by: Mikhail Zhilkin <csharper2005@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/23371
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | package/boot/uboot-mediatek/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/boot/uboot-mediatek/Makefile b/package/boot/uboot-mediatek/Makefile index 6f19e74efa..264ef751e6 100644 --- a/package/boot/uboot-mediatek/Makefile +++ b/package/boot/uboot-mediatek/Makefile @@ -645,7 +645,7 @@ define U-Boot/mt7981_qihoo_360t7-ubi BUILD_DEVICES:=qihoo_360t7-ubi UBOOT_CONFIG:=mt7981_qihoo-360t7-ubi UBOOT_IMAGE:=u-boot.fip - BL2_BOOTDEV:=spim-nand + BL2_BOOTDEV:=spim-nand-ubi BL2_SOC:=mt7981 BL2_DDRTYPE:=ddr3-1866 DEPENDS:=+trusted-firmware-a-mt7981-spim-nand-ubi-ddr3-1866 |