diff options
| author | Christian Marangi | 2025-10-29 10:57:00 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-10-29 20:09:57 +0000 |
| commit | af22235b7924cd063aade301dfe707b6c0e0ad62 (patch) | |
| tree | 8501578e95f72d33435a4056b95fd108c5712d1e | |
| parent | b9c755c838035e65623ef846ab0061d4633c1078 (diff) | |
| download | openwrt-af22235b7924cd063aade301dfe707b6c0e0ad62.tar.gz | |
uboot-bcm53xx: drop usage of AUTORELEASE
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>
| -rw-r--r-- | package/boot/uboot-bcm53xx/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/boot/uboot-bcm53xx/Makefile b/package/boot/uboot-bcm53xx/Makefile index f1c026e25b..0ed4b55c96 100644 --- a/package/boot/uboot-bcm53xx/Makefile +++ b/package/boot/uboot-bcm53xx/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_VERSION:=2024.01 PKG_HASH:=b99611f1ed237bf3541bdc8434b68c96a6e05967061f992443cb30aabebef5b3 -PKG_RELEASE:=$(AUTORELEASE) +PKG_RELEASE:=2 include $(INCLUDE_DIR)/u-boot.mk include $(INCLUDE_DIR)/package.mk |