mirror of
https://github.com/openwrt/openwrt.git
synced 2025-12-21 17:04:28 +04:00
AUTORELEASE has been deprecated from a long time. Drop it and hardcode the release following the current one present in the downloads repository. Link: https://github.com/openwrt/openwrt/pull/20586 Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
38 lines
775 B
Makefile
38 lines
775 B
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_VERSION:=2024.01
|
|
PKG_HASH:=b99611f1ed237bf3541bdc8434b68c96a6e05967061f992443cb30aabebef5b3
|
|
PKG_RELEASE:=2
|
|
|
|
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))
|