openwrt/package/boot/uboot-bcm53xx/Makefile
Linus Walleij 12d47550e6
Some checks are pending
Build all core packages / Build all core packages for selected target (push) Waiting to run
uboot-bcm53xx: bump U-Boot to 2025.10
Bump to the latest version used by other OpenWrt platforms so
we don't bitrot.

Tested on the D-Link DIR-890L.

Link: https://github.com/openwrt/openwrt/pull/21377
Signed-off-by: Linus Walleij <linusw@kernel.org>
2026-01-06 01:15:46 +01:00

37 lines
775 B
Makefile

include $(TOPDIR)/rules.mk
PKG_VERSION:=2025.10
PKG_HASH:=b4f032848e56cc8f213ad59f9132c084dbbb632bc29176d024e58220e0efdf4a
PKG_RELEASE:=1
include $(INCLUDE_DIR)/u-boot.mk
include $(INCLUDE_DIR)/package.mk
define U-Boot/Default
BUILD_TARGET:=bcm53xx
BUILD_SUBTARGET:=generic
UBOOT_CONFIG:=bcmns
UBOOT_BOARD:=$(1)
endef
define U-Boot/dir-885l
NAME:=D-Link DIR-885L
BUILD_DEVICES:=dlink_dir-885l
endef
define U-Boot/dir-890l
NAME:=D-Link DIR-890L
BUILD_DEVICES:=dlink_dir-890l
endef
UBOOT_TARGETS := dir-885l dir-890l
define Build/InstallDev
$(INSTALL_DIR) $(STAGING_DIR_IMAGE)
$(CP) $(PKG_BUILD_DIR)/$(UBOOT_IMAGE) $(STAGING_DIR_IMAGE)/$(BUILD_DEVICES)-u-boot.bin
endef
define Package/u-boot/install/default
endef
$(eval $(call BuildPackage/U-Boot))