Skip to content

Commit 12316d0

Browse files
committed
OpenWrt v25.12: set branch defaults
Signed-off-by: Christian Marangi <[email protected]>
1 parent c252659 commit 12316d0

File tree

4 files changed

+9
-12
lines changed

4 files changed

+9
-12
lines changed

feeds.conf.default

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
src-git packages https://git.openwrt.org/feed/packages.git
2-
src-git luci https://git.openwrt.org/project/luci.git
3-
src-git routing https://git.openwrt.org/feed/routing.git
4-
src-git telephony https://git.openwrt.org/feed/telephony.git
5-
src-git video https://github.com/openwrt/video.git
6-
#src-git targets https://github.com/openwrt/targets.git
7-
#src-git oldpackages http://git.openwrt.org/packages.git
8-
#src-link custom /usr/src/openwrt/custom-feed
1+
src-git packages https://git.openwrt.org/feed/packages.git;openwrt-25.12
2+
src-git luci https://git.openwrt.org/project/luci.git;openwrt-25.12
3+
src-git routing https://git.openwrt.org/feed/routing.git;openwrt-25.12
4+
src-git telephony https://git.openwrt.org/feed/telephony.git;openwrt-25.12
5+
src-git video https://github.com/openwrt/video.git;openwrt-25.12

include/version.mk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ PKG_CONFIG_DEPENDS += \
2727
sanitize = $(call tolower,$(subst _,-,$(subst $(space),-,$(1))))
2828

2929
VERSION_NUMBER:=$(call qstrip,$(CONFIG_VERSION_NUMBER))
30-
VERSION_NUMBER:=$(if $(VERSION_NUMBER),$(VERSION_NUMBER),SNAPSHOT)
30+
VERSION_NUMBER:=$(if $(VERSION_NUMBER),$(VERSION_NUMBER),25.12-SNAPSHOT)
3131

3232
VERSION_CODE:=$(call qstrip,$(CONFIG_VERSION_CODE))
3333
VERSION_CODE:=$(if $(VERSION_CODE),$(VERSION_CODE),$(REVISION))
3434

3535
VERSION_REPO:=$(call qstrip,$(CONFIG_VERSION_REPO))
36-
VERSION_REPO:=$(if $(VERSION_REPO),$(VERSION_REPO),https://downloads.openwrt.org/snapshots)
36+
VERSION_REPO:=$(if $(VERSION_REPO),$(VERSION_REPO),https://downloads.openwrt.org/releases/25.12-SNAPSHOT)
3737

3838
VERSION_DIST:=$(call qstrip,$(CONFIG_VERSION_DIST))
3939
VERSION_DIST:=$(if $(VERSION_DIST),$(VERSION_DIST),OpenWrt)

package/base-files/image-config.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ if VERSIONOPT
190190
config VERSION_REPO
191191
string
192192
prompt "Release repository"
193-
default "https://downloads.openwrt.org/snapshots"
193+
default "https://downloads.openwrt.org/releases/25.12-SNAPSHOT"
194194
help
195195
This is the repository address embedded in the image, it defaults
196196
to the trunk snapshot repo; the url may contain the following placeholders:

package/system/openwrt-keyring/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Build/Compile=
3333
ifneq ($(CONFIG_USE_APK),)
3434
define Package/openwrt-keyring/install
3535
$(INSTALL_DIR) $(1)/etc/apk/keys/
36-
$(INSTALL_DATA) $(PKG_BUILD_DIR)/apk/openwrt-snapshots.pem $(1)/etc/apk/keys/
36+
$(INSTALL_DATA) $(PKG_BUILD_DIR)/apk/openwrt-25.12.pem $(1)/etc/apk/keys/
3737
endef
3838
else
3939
define Package/openwrt-keyring/install

0 commit comments

Comments
 (0)