diff --git a/.github/workflows/build-openwrt-packages.yml b/.github/workflows/build-openwrt-packages.yml index 561bc918..93a4253c 100644 --- a/.github/workflows/build-openwrt-packages.yml +++ b/.github/workflows/build-openwrt-packages.yml @@ -31,7 +31,7 @@ on: openwrt_version: description: 'OpenWrt version' required: true - default: '24.10.5' + default: '25.12.0-rc1' type: choice options: - '25.12.0-rc1' @@ -45,7 +45,7 @@ on: default: 'x86-64' env: - OPENWRT_VERSION: ${{ github.event.inputs.openwrt_version || '24.10.5' }} + OPENWRT_VERSION: ${{ github.event.inputs.openwrt_version || '25.12.0-rc1' }} permissions: contents: write diff --git a/.github/workflows/build-secubox-images.yml b/.github/workflows/build-secubox-images.yml index f2b78ee4..468d99e6 100644 --- a/.github/workflows/build-secubox-images.yml +++ b/.github/workflows/build-secubox-images.yml @@ -18,7 +18,7 @@ on: openwrt_version: description: 'OpenWrt version' required: true - default: '24.10.5' + default: '25.12.0-rc1' type: choice options: - '25.12.0-rc1' @@ -39,8 +39,8 @@ on: - 'v*.*.*-*' env: - # Use input if manual trigger, otherwise default to 24.10.5 for tag triggers - OPENWRT_VERSION: ${{ github.event.inputs.openwrt_version || '24.10.5' }} + # Use input if manual trigger, otherwise default to 25.12.0-rc1 for tag triggers + OPENWRT_VERSION: ${{ github.event.inputs.openwrt_version || '25.12.0-rc1' }} permissions: contents: write diff --git a/DOCS/MODULE_STATUS.md b/DOCS/MODULE_STATUS.md index 0adc6cba..005456a6 100644 --- a/DOCS/MODULE_STATUS.md +++ b/DOCS/MODULE_STATUS.md @@ -600,8 +600,8 @@ - **MIPS**: 24kc, mipsel variants ### Supported OpenWrt Versions -- **24.10.5** (LTS, primary target) -- **25.12.0-rc1** (latest, testing) +- **25.12.0-rc1** (latest, primary target) +- **24.10.5** (LTS, stable) - **23.05.5** (legacy support) - **SNAPSHOT** (development) diff --git a/docs/module-status.md b/docs/module-status.md index 35b905b8..005456a6 100644 --- a/docs/module-status.md +++ b/docs/module-status.md @@ -23,9 +23,9 @@ ## See Also -- **Feature Regeneration Prompts:** [FEATURE-REGENERATION-PROMPTS.md](feature-regeneration-prompts.md) -- **Implementation Workflow:** [MODULE-IMPLEMENTATION-GUIDE.md](module-implementation-guide.md) -- **Build System:** [CLAUDE.md](claude.md) +- **Feature Regeneration Prompts:** [FEATURE-REGENERATION-PROMPTS.md](./FEATURE-REGENERATION-PROMPTS.md) +- **Implementation Workflow:** [MODULE-IMPLEMENTATION-GUIDE.md](./MODULE-IMPLEMENTATION-GUIDE.md) +- **Build System:** [CLAUDE.md](./CLAUDE.md) --- @@ -600,8 +600,8 @@ - **MIPS**: 24kc, mipsel variants ### Supported OpenWrt Versions -- **24.10.5** (LTS, primary target) -- **25.12.0-rc1** (latest, testing) +- **25.12.0-rc1** (latest, primary target) +- **24.10.5** (LTS, stable) - **23.05.5** (legacy support) - **SNAPSHOT** (development) diff --git a/secubox-tools/local-build.sh b/secubox-tools/local-build.sh index f3d1de42..bd688107 100755 --- a/secubox-tools/local-build.sh +++ b/secubox-tools/local-build.sh @@ -22,8 +22,8 @@ CYAN='\033[0;36m' NC='\033[0m' # No Color # Configuration -# Available versions: 25.12.0-rc1 (latest RC), 24.10.5 (latest stable), 23.05.5, SNAPSHOT -OPENWRT_VERSION="${OPENWRT_VERSION:-24.10.5}" +# Available versions: 25.12.0-rc1 (default), 24.10.5 (stable LTS), 23.05.5, SNAPSHOT +OPENWRT_VERSION="${OPENWRT_VERSION:-25.12.0-rc1}" SDK_DIR="${SDK_DIR:-./sdk}" BUILD_DIR="${BUILD_DIR:-./build}" CACHE_DIR="${CACHE_DIR:-./cache}"