diff options
| author | Christian Marangi | 2025-10-29 10:55:53 +0000 |
|---|---|---|
| committer | Christian Marangi | 2025-10-29 20:09:56 +0000 |
| commit | b9c755c838035e65623ef846ab0061d4633c1078 (patch) | |
| tree | 8f0c362fc9c1eae422195c08e20de2de4b496cef | |
| parent | afb83c81977220e86352f6868865dc3a69fc5f47 (diff) | |
| download | openwrt-b9c755c838035e65623ef846ab0061d4633c1078.tar.gz | |
uboot-bmips: 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-bmips/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/boot/uboot-bmips/Makefile b/package/boot/uboot-bmips/Makefile index 5581a6fbfc..378c1091d5 100644 --- a/package/boot/uboot-bmips/Makefile +++ b/package/boot/uboot-bmips/Makefile @@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk PKG_VERSION:=2024.04 PKG_HASH:=18a853fe39fad7ad03a90cc2d4275aeaed6da69735defac3492b80508843dd4a -PKG_RELEASE:=$(AUTORELEASE) +PKG_RELEASE:=1 include $(INCLUDE_DIR)/u-boot.mk include $(INCLUDE_DIR)/package.mk |