Compare commits
34 Commits
v23
...
v24-250113
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
71cc899a8a | ||
|
|
1319a71eb8 | ||
|
|
780d267c51 | ||
|
|
3312aa1a1a | ||
|
|
d277ae7c4d | ||
|
|
466536466f | ||
|
|
f95c5e6368 | ||
|
|
038c27a05a | ||
|
|
2e3db4faa2 | ||
|
|
f23162d73e | ||
|
|
0073630566 | ||
|
|
ae23d4b8e3 | ||
|
|
d4a1ec7f70 | ||
|
|
32acb91ac6 | ||
|
|
8cc2e45f53 | ||
|
|
63511e08c1 | ||
|
|
4ab2b4a312 | ||
|
|
f31906ebb4 | ||
|
|
61234abddc | ||
|
|
33b2e1f6d0 | ||
|
|
3ef32a3aeb | ||
|
|
6151c61f9a | ||
|
|
0f2716310e | ||
|
|
349311ff1e | ||
|
|
db781184e9 | ||
|
|
758067320f | ||
|
|
4499e7c467 | ||
|
|
1f97bc75e0 | ||
|
|
d96b147aef | ||
|
|
08572c6026 | ||
|
|
9d31e5a70c | ||
|
|
a400333f46 | ||
|
|
1c7baf8686 | ||
|
|
759413185e |
133
.github/workflows/build.yml
vendored
133
.github/workflows/build.yml
vendored
@@ -2,35 +2,19 @@ name: build
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
# push:
|
||||||
fake_build:
|
# tags:
|
||||||
description: 'Fake build'
|
# - v[0-9]+*
|
||||||
required: true
|
|
||||||
default: 'false'
|
|
||||||
type: choice
|
|
||||||
options:
|
|
||||||
- true
|
|
||||||
- false
|
|
||||||
suffix:
|
|
||||||
description: 'TAG suffix'
|
|
||||||
required: false
|
|
||||||
default: ''
|
|
||||||
type: string
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
FAKE_BUILD: ${{ github.event.inputs.fake_build }}
|
REPO_URL: https://github.com/openwrt-xiaomi/openwrt.git
|
||||||
REPO_URL: https://github.com/openwrt-xiaomi/openwrt
|
REPO_BRANCH: xq-24.10
|
||||||
REPO_LNK: openwrt-xiaomi/openwrt
|
TAG_PREFIX: v24-
|
||||||
REPO_BRANCH: xq-23.05.5
|
|
||||||
TAG_PREFIX: v23-
|
|
||||||
BUILD_ROOT: ${{ github.workspace }}/openwrt
|
BUILD_ROOT: ${{ github.workspace }}/openwrt
|
||||||
DEPENDENCIES: ${{ github.workspace }}/dependencies-ubuntu.txt
|
DEPENDENCIES: ${{ github.workspace }}/dependencies-ubuntu.txt
|
||||||
TZ: UTC
|
TZ: UTC
|
||||||
DEVICE_NAME: unknown
|
DEVICE_NAME: unknown
|
||||||
BUILD_DATE: unknown
|
BUILD_DATE: unknown
|
||||||
REPO_DATE: unknown
|
|
||||||
FW_DATE: unknown
|
|
||||||
FW_VER: unknown
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check:
|
check:
|
||||||
@@ -41,56 +25,43 @@ jobs:
|
|||||||
sha: ${{ steps.gh.outputs.sha }}
|
sha: ${{ steps.gh.outputs.sha }}
|
||||||
url: ${{ steps.gh.outputs.url }}
|
url: ${{ steps.gh.outputs.url }}
|
||||||
message: ${{ steps.gh.outputs.message }}
|
message: ${{ steps.gh.outputs.message }}
|
||||||
build_date: ${{ steps.gh.outputs.build_date }}
|
|
||||||
fw_date: ${{ steps.gh.outputs.fw_date }}
|
|
||||||
fw_ver: ${{ steps.gh.outputs.fw_ver }}
|
|
||||||
is_active: ${{ steps.activity.outputs.is_active }}
|
is_active: ${{ steps.activity.outputs.is_active }}
|
||||||
steps:
|
steps:
|
||||||
- name: Get repo data via GH API
|
- name: Get repo data via GH API
|
||||||
id: gh
|
id: gh
|
||||||
env:
|
env:
|
||||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
REPO: 'openwrt-xiaomi/openwrt'
|
||||||
run: |
|
run: |
|
||||||
echo "Tag name from GITHUB_REF_NAME: $GITHUB_REF_NAME"
|
echo "Tag name from GITHUB_REF_NAME: $GITHUB_REF_NAME"
|
||||||
echo "Tag name from github.ref_name: ${{ github.ref_name }}"
|
echo "Tag name from github.ref_name: ${{ github.ref_name }}"
|
||||||
BRANCH=$REPO_BRANCH
|
BRANCH=$(gh api repos/$REPO --jq '.default_branch')
|
||||||
REPO_DATE=$(gh api repos/$REPO_LNK/commits/$BRANCH --jq '.commit.committer.date')
|
DATE=$(gh api repos/$REPO/commits/$BRANCH --jq '.commit.committer.date')
|
||||||
BUILD_DATE=$( date --utc +'%y%m%d' )
|
BUILD_DATE=$( date --utc +'%y%m%d' )
|
||||||
FW_DATE=$( date --utc +'%Y-%m-%d' )
|
|
||||||
TAG=$TAG_PREFIX$BUILD_DATE
|
TAG=$TAG_PREFIX$BUILD_DATE
|
||||||
echo "REPO_DATE=$REPO_DATE" >> $GITHUB_ENV
|
|
||||||
echo "BUILD_DATE=$BUILD_DATE" >> $GITHUB_ENV
|
|
||||||
echo "FW_DATE=$FW_DATE" >> $GITHUB_ENV
|
|
||||||
echo "TAG=$TAG" >> $GITHUB_ENV
|
|
||||||
wget $REPO_URL/raw/refs/heads/$BRANCH/include/version.mk
|
|
||||||
FW_VERSION=$( grep -s '^VERSION_NUMBER:=$(if' version.mk 2>/dev/null )
|
|
||||||
[ -z "$FW_VERSION" ] && { echo "ERROR: Cannot find VERSION_NUMBER"; exit 90; }
|
|
||||||
FW_VER=$( echo $FW_VERSION | cut -d"," -f3 | cut -d")" -f1 )
|
|
||||||
echo 'FW_VER = "'$FW_VER'"'
|
|
||||||
echo "FW_VER=$FW_VER" >> $GITHUB_ENV
|
|
||||||
rm -f version.mk
|
|
||||||
{
|
{
|
||||||
echo "tag=$TAG"
|
echo "tag=$TAG"
|
||||||
echo "date=$(date --utc -d $REPO_DATE +%Y%m%d)"
|
echo "date=$(date --utc -d $DATE +%Y%m%d)"
|
||||||
echo "sha=$(gh api repos/$REPO_LNK/commits/$BRANCH --jq '.sha[0:7]')"
|
echo "sha=$(gh api repos/$REPO/commits/$BRANCH --jq '.sha[0:7]')"
|
||||||
echo "url=$(gh api repos/$REPO_LNK/commits/$BRANCH --jq '.html_url')"
|
echo "url=$(gh api repos/$REPO/commits/$BRANCH --jq '.html_url')"
|
||||||
|
echo "build_root=$BUILD_ROOT"
|
||||||
echo "message<<EOF"
|
echo "message<<EOF"
|
||||||
gh api repos/$REPO_LNK/commits/$BRANCH --jq '.commit.message'
|
gh api repos/$REPO/commits/$BRANCH --jq '.commit.message'
|
||||||
echo EOF
|
echo EOF
|
||||||
echo "build_date=$BUILD_DATE"
|
|
||||||
echo "fw_date=$FW_DATE"
|
|
||||||
echo "fw_ver=$FW_VER"
|
|
||||||
} >> $GITHUB_OUTPUT
|
} >> $GITHUB_OUTPUT
|
||||||
|
echo "DATE=$DATE" >> $GITHUB_ENV
|
||||||
|
echo "BUILD_DATE=$BUILD_DATE" >> $GITHUB_ENV
|
||||||
|
echo "TAG=$TAG" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Check for repo activity
|
- name: Check for repo activity
|
||||||
id: activity
|
id: activity
|
||||||
env:
|
env:
|
||||||
REPO_DATE: ${{ env.REPO_DATE }}
|
DATE: ${{ env.DATE }}
|
||||||
URL: ${{ steps.gh.outputs.url }}
|
URL: ${{ steps.gh.outputs.url }}
|
||||||
run: |
|
run: |
|
||||||
TIMESTAMP=$(date --utc -d $REPO_DATE +%s)
|
TIMESTAMP=$(date --utc -d $DATE +%s)
|
||||||
DAYS=$(( ( $(date --utc +%s) - $TIMESTAMP ) / 86400 ))
|
DAYS=$(( ( $(date --utc +%s) - $TIMESTAMP ) / 86400 ))
|
||||||
echo "Repository activity: $(date --utc -d $REPO_DATE)"
|
echo "Repository activity: $(date --utc -d $DATE)"
|
||||||
echo "Commit: $URL"
|
echo "Commit: $URL"
|
||||||
if [ "${{ github.event_name }}" != "schedule" ]; then
|
if [ "${{ github.event_name }}" != "schedule" ]; then
|
||||||
is_active=true
|
is_active=true
|
||||||
@@ -119,6 +90,7 @@ jobs:
|
|||||||
- rt-ax52
|
- rt-ax52
|
||||||
- rt-ax57m
|
- rt-ax57m
|
||||||
- rt-ax59u
|
- rt-ax59u
|
||||||
|
- rt-ax89x
|
||||||
- tuf_ax4200
|
- tuf_ax4200
|
||||||
- tuf_ax6000
|
- tuf_ax6000
|
||||||
steps:
|
steps:
|
||||||
@@ -146,7 +118,7 @@ jobs:
|
|||||||
uses: actions/checkout@main
|
uses: actions/checkout@main
|
||||||
|
|
||||||
- name: Download OpenWrt sources
|
- name: Download OpenWrt sources
|
||||||
run: git clone --branch $REPO_BRANCH $REPO_URL.git $BUILD_ROOT
|
run: git clone --branch $REPO_BRANCH $REPO_URL $BUILD_ROOT
|
||||||
|
|
||||||
- name: Init builder
|
- name: Init builder
|
||||||
env:
|
env:
|
||||||
@@ -159,42 +131,35 @@ jobs:
|
|||||||
wget https://github.com/fantastic-packages/packages/raw/refs/heads/24.10/keys/usign/53FF2B6672243D28.pub
|
wget https://github.com/fantastic-packages/packages/raw/refs/heads/24.10/keys/usign/53FF2B6672243D28.pub
|
||||||
|
|
||||||
- name: Update OpenWrt packages
|
- name: Update OpenWrt packages
|
||||||
id: update
|
|
||||||
run: |
|
run: |
|
||||||
cd $BUILD_ROOT && ./xupdate.sh -f
|
cd $BUILD_ROOT
|
||||||
echo "status=success" >> $GITHUB_OUTPUT
|
./xupdate.sh -f
|
||||||
|
|
||||||
- name: Build the firmware image
|
- name: Build the firmware image
|
||||||
id: compile
|
id: compile
|
||||||
if: steps.update.outputs.status == 'success'
|
|
||||||
env:
|
env:
|
||||||
TARGET: ${{ matrix.target }}
|
TARGET: ${{ matrix.target }}
|
||||||
FW_VER: ${{ needs.check.outputs.fw_ver }}
|
|
||||||
run: |
|
run: |
|
||||||
cd $BUILD_ROOT
|
cd $BUILD_ROOT
|
||||||
MAKE_JOBS=$(($(nproc)+1))
|
MAKE_JOBS=$(($(nproc)+1))
|
||||||
echo "$MAKE_JOBS thread compile"
|
echo "$MAKE_JOBS thread compile"
|
||||||
./xmake.sh -I -t $TARGET
|
./xmake.sh -m -t $TARGET
|
||||||
[ "$FAKE_BUILD" != "true" ] && make -j $MAKE_JOBS download world
|
make -j $MAKE_JOBS download world
|
||||||
FILE_DATE=$(date --utc +'%y%m%d')
|
# || make V=sc
|
||||||
DEVICE_NAME=$( grep -so '^CONFIG_TARGET.*DEVICE.*=y' .config | sed -r 's/.*DEVICE_(.*)=y/\1/' )
|
DEVICE_NAME=$( grep -so '^CONFIG_TARGET.*DEVICE.*=y' .config | sed -r 's/.*DEVICE_(.*)=y/\1/' )
|
||||||
BOARD_NAME=$( grep -so '^CONFIG_TARGET_BOARD=.*' .config | cut -d'"' -f2 )
|
BOARD_NAME=$( grep -so '^CONFIG_TARGET_BOARD=.*' .config | cut -d'"' -f2 )
|
||||||
SUBTARGET_NAME=$( grep -so '^CONFIG_TARGET_SUBTARGET=.*' .config | cut -d'"' -f2 )
|
SUBTARGET_NAME=$( grep -so '^CONFIG_TARGET_SUBTARGET=.*' .config | cut -d'"' -f2 )
|
||||||
OUT_DIR=$BUILD_ROOT/bin/targets/$BOARD_NAME/$SUBTARGET_NAME
|
OUT_DIR=$BUILD_ROOT/bin/targets/$BOARD_NAME/$SUBTARGET_NAME
|
||||||
if [ "$FAKE_BUILD" = "true" ]; then
|
# BLD_VER=24.10.0-rc5
|
||||||
mkdir -p logs
|
BLD_VER=$( cat $OUT_DIR/profiles.json | grep -so '"version_number":"[^"]*' | grep -so '[^"]*$' )
|
||||||
mkdir -p $OUT_DIR
|
FILE_DATE=$(date --utc +'%y%m%d')
|
||||||
echo "$BOARD_NAME $SUBTARGET_NAME $DEVICE_NAME" > "$OUT_DIR/$DEVICE_NAME.txt"
|
|
||||||
touch "$OUT_DIR/kernel-debug.tar.zst"
|
|
||||||
ls -la
|
|
||||||
BLD_VER=$FW_VER
|
|
||||||
else
|
|
||||||
BLD_VER=$( cat $OUT_DIR/profiles.json | grep -so '"version_number":"[^"]*' | grep -so '[^"]*$' )
|
|
||||||
fi
|
|
||||||
echo "Firmware $BLD_VER [$FILE_DATE] builded!"
|
echo "Firmware $BLD_VER [$FILE_DATE] builded!"
|
||||||
|
# mkdir -p logs
|
||||||
|
# mkdir -p $OUT_DIR
|
||||||
|
# echo "$BOARD_NAME $SUBTARGET_NAME $DEVICE_NAME" > "$OUT_DIR/$DEVICE_NAME.txt"
|
||||||
if [ ! -f $OUT_DIR/kernel-debug.tar.zst ]; then
|
if [ ! -f $OUT_DIR/kernel-debug.tar.zst ]; then
|
||||||
echo "File kernel-debug.tar.zst not found!"
|
echo "File kernel-debug.tar.zst not found!"
|
||||||
exit 100
|
exit 100
|
||||||
fi
|
fi
|
||||||
echo "status=success" >> $GITHUB_OUTPUT
|
echo "status=success" >> $GITHUB_OUTPUT
|
||||||
echo "DEVICE_NAME=$DEVICE_NAME" >> $GITHUB_ENV
|
echo "DEVICE_NAME=$DEVICE_NAME" >> $GITHUB_ENV
|
||||||
@@ -202,7 +167,8 @@ jobs:
|
|||||||
echo "SUBTARGET_NAME=$SUBTARGET_NAME" >> $GITHUB_ENV
|
echo "SUBTARGET_NAME=$SUBTARGET_NAME" >> $GITHUB_ENV
|
||||||
echo "BLD_VER=$BLD_VER" >> $GITHUB_ENV
|
echo "BLD_VER=$BLD_VER" >> $GITHUB_ENV
|
||||||
echo "OUT_DIR=$OUT_DIR" >> $GITHUB_ENV
|
echo "OUT_DIR=$OUT_DIR" >> $GITHUB_ENV
|
||||||
echo "FILE_DATE=$FILE_DATE" >> $GITHUB_ENV
|
echo "FILE_DATE=$(date --utc +'%y%m%d')" >> $GITHUB_ENV
|
||||||
|
echo "FILE_TIME=$(date --utc +'%Y%m%d%H%M')" >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Check space usage
|
- name: Check space usage
|
||||||
run: df -hT
|
run: df -hT
|
||||||
@@ -211,10 +177,9 @@ jobs:
|
|||||||
if: always()
|
if: always()
|
||||||
env:
|
env:
|
||||||
TARGET: ${{ matrix.target }}
|
TARGET: ${{ matrix.target }}
|
||||||
FW_DATE: ${{ needs.check.outputs.fw_date }}
|
|
||||||
LOGS_DIR: ${{ env.BUILD_ROOT }}/logs
|
LOGS_DIR: ${{ env.BUILD_ROOT }}/logs
|
||||||
run: |
|
run: |
|
||||||
tar -cJvf logs-$TARGET-$FW_DATE.tar.xz $LOGS_DIR
|
tar -cJvf logs-$TARGET.tar.xz $LOGS_DIR
|
||||||
|
|
||||||
- name: Cleanup OUT directory
|
- name: Cleanup OUT directory
|
||||||
if: steps.compile.outputs.status == 'success'
|
if: steps.compile.outputs.status == 'success'
|
||||||
@@ -231,11 +196,19 @@ jobs:
|
|||||||
rm -f *ubi-cleaner*
|
rm -f *ubi-cleaner*
|
||||||
rm -f *-ram-*.bin
|
rm -f *-ram-*.bin
|
||||||
|
|
||||||
|
- name: Info
|
||||||
|
env:
|
||||||
|
OUT_DIR: ${{ env.OUT_DIR }}
|
||||||
|
run: |
|
||||||
|
echo "---------------------------"
|
||||||
|
ls -la $OUT_DIR
|
||||||
|
echo "---------------------------"
|
||||||
|
|
||||||
- name: Upload OUT directory
|
- name: Upload OUT directory
|
||||||
uses: actions/upload-artifact@main
|
uses: actions/upload-artifact@main
|
||||||
if: steps.compile.outputs.status == 'success'
|
if: steps.compile.outputs.status == 'success'
|
||||||
with:
|
with:
|
||||||
name: openwrt-${{ env.BLD_VER }}-${{ needs.check.outputs.build_date }}-${{ env.DEVICE_NAME }}
|
name: openwrt-${{ env.BLD_VER }}-${{ env.FILE_DATE }}-${{ env.DEVICE_NAME }}
|
||||||
path: ${{ env.OUT_DIR }}
|
path: ${{ env.OUT_DIR }}
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
@@ -243,7 +216,7 @@ jobs:
|
|||||||
if: always()
|
if: always()
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: logs-${{ matrix.target }}-${{ env.FW_DATE }}
|
name: logs-${{ matrix.target }}
|
||||||
path: logs-*.tar.xz
|
path: logs-*.tar.xz
|
||||||
|
|
||||||
release:
|
release:
|
||||||
@@ -260,6 +233,9 @@ jobs:
|
|||||||
pattern: openwrt-*
|
pattern: openwrt-*
|
||||||
|
|
||||||
- name: Put images into zip
|
- name: Put images into zip
|
||||||
|
env:
|
||||||
|
TAG: ${{ needs.check.outputs.tag }}
|
||||||
|
DATE: ${{ needs.check.outputs.date }}
|
||||||
run: |
|
run: |
|
||||||
mkdir -p public
|
mkdir -p public
|
||||||
find . -mindepth 1 -type d -name 'openwrt-*' -exec sh -c 'zip -0 ./public/$(basename {}).zip -j {} {}/*' \;
|
find . -mindepth 1 -type d -name 'openwrt-*' -exec sh -c 'zip -0 ./public/$(basename {}).zip -j {} {}/*' \;
|
||||||
@@ -274,7 +250,4 @@ jobs:
|
|||||||
prerelease: false
|
prerelease: false
|
||||||
tag_name: ${{ needs.check.outputs.tag }}
|
tag_name: ${{ needs.check.outputs.tag }}
|
||||||
name: '${{ needs.check.outputs.tag }}'
|
name: '${{ needs.check.outputs.tag }}'
|
||||||
body: |
|
|
||||||
OpenWrt ${{ needs.check.outputs.fw_ver }} [${{ needs.check.outputs.fw_date }}]
|
|
||||||
author: [remittor](https://github.com/remittor)
|
|
||||||
files: ./public/*.zip
|
files: ./public/*.zip
|
||||||
|
|||||||
@@ -1,5 +1,3 @@
|
|||||||
[](https://github.com/openwrt-xiaomi/builder/releases)
|
|
||||||
|
|
||||||
# OpenWrt builder
|
# OpenWrt builder
|
||||||
|
|
||||||
For OpenWrt >= 21.02
|
For OpenWrt >= 21.02
|
||||||
|
|||||||
@@ -36,16 +36,13 @@ CONFIG_FEED__alpine_fan_control=m
|
|||||||
### luci-app-qbittorrent
|
### luci-app-qbittorrent
|
||||||
#GIT_PACKAGE luci-app-qbittorrent=https://github.com/openwrt-xiaomi/luci-app-qbittorrent.git master
|
#GIT_PACKAGE luci-app-qbittorrent=https://github.com/openwrt-xiaomi/luci-app-qbittorrent.git master
|
||||||
|
|
||||||
### luci-app-filebrowser
|
|
||||||
#GIT_PACKAGE luci-app-filebrowser=https://github.com/openwrt-xiaomi/luci-app-filebrowser.git master
|
|
||||||
|
|
||||||
### luci-app-netspeedtest
|
### luci-app-netspeedtest
|
||||||
#GIT_PACKAGE luci-app-netspeedtest=https://github.com/openwrt-xiaomi/luci-app-netspeedtest.git master
|
#GIT_PACKAGE luci-app-netspeedtest=https://github.com/openwrt-xiaomi/luci-app-netspeedtest.git master
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### AmneziaWG
|
### AmneziaWG
|
||||||
#GIT_FEED _amneziawg=https://github.com/lolo6oT/awg-openwrt.git dev-23.05
|
#GIT_FEED _amneziawg=https://github.com/lolo6oT/awg-openwrt.git dev-24.10
|
||||||
CONFIG_FEED__amneziawg=m
|
CONFIG_FEED__amneziawg=m
|
||||||
|
|
||||||
### ruantiblock
|
### ruantiblock
|
||||||
|
|||||||
67
_base.config
67
_base.config
@@ -41,6 +41,8 @@ CONFIG_PACKAGE_mc=y
|
|||||||
CONFIG_PACKAGE_rsync=y
|
CONFIG_PACKAGE_rsync=y
|
||||||
CONFIG_PACKAGE_luci-app-ttyd=y
|
CONFIG_PACKAGE_luci-app-ttyd=y
|
||||||
CONFIG_PACKAGE_luci-i18n-ttyd-ru=y
|
CONFIG_PACKAGE_luci-i18n-ttyd-ru=y
|
||||||
|
CONFIG_PACKAGE_luci-app-filemanager=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-filemanager-ru=y
|
||||||
#CONFIG_PACKAGE_atftp=y
|
#CONFIG_PACKAGE_atftp=y
|
||||||
#CONFIG_PACKAGE_atftpd=y
|
#CONFIG_PACKAGE_atftpd=y
|
||||||
CONFIG_PACKAGE_facinstall=y
|
CONFIG_PACKAGE_facinstall=y
|
||||||
@@ -52,7 +54,7 @@ CONFIG_PACKAGE_nano=y
|
|||||||
CONFIG_PACKAGE_ccrypt=y
|
CONFIG_PACKAGE_ccrypt=y
|
||||||
CONFIG_LIBCURL_PROXY=y
|
CONFIG_LIBCURL_PROXY=y
|
||||||
CONFIG_PACKAGE_curl=y
|
CONFIG_PACKAGE_curl=y
|
||||||
CONFIG_PACKAGE_wget=y
|
CONFIG_PACKAGE_wget-ssl=y
|
||||||
CONFIG_PACKAGE_patch=y
|
CONFIG_PACKAGE_patch=y
|
||||||
CONFIG_PACKAGE_diffutils=y
|
CONFIG_PACKAGE_diffutils=y
|
||||||
CONFIG_PACKAGE_tree=y
|
CONFIG_PACKAGE_tree=y
|
||||||
@@ -60,7 +62,6 @@ CONFIG_PACKAGE_irqbalance=y
|
|||||||
CONFIG_PACKAGE_terminfo=y
|
CONFIG_PACKAGE_terminfo=y
|
||||||
CONFIG_PACKAGE_zlib=y
|
CONFIG_PACKAGE_zlib=y
|
||||||
CONFIG_PACKAGE_ethtool=y
|
CONFIG_PACKAGE_ethtool=y
|
||||||
CONFIG_PACKAGE_coreutils-cksum=y
|
|
||||||
|
|
||||||
### USB device mount & file systems support
|
### USB device mount & file systems support
|
||||||
CONFIG_PACKAGE_gdisk=y
|
CONFIG_PACKAGE_gdisk=y
|
||||||
@@ -111,6 +112,8 @@ CONFIG_PACKAGE_ppp-mod-pptp=y
|
|||||||
CONFIG_PACKAGE_kmod-tun=y
|
CONFIG_PACKAGE_kmod-tun=y
|
||||||
CONFIG_PACKAGE_kmod-br-netfilter=y
|
CONFIG_PACKAGE_kmod-br-netfilter=y
|
||||||
CONFIG_PACKAGE_gre=y
|
CONFIG_PACKAGE_gre=y
|
||||||
|
CONFIG_PACKAGE_kmod-udptunnel4=y
|
||||||
|
CONFIG_PACKAGE_kmod-udptunnel6=y
|
||||||
|
|
||||||
### Relay
|
### Relay
|
||||||
CONFIG_PACKAGE_relayd=y
|
CONFIG_PACKAGE_relayd=y
|
||||||
@@ -128,17 +131,57 @@ CONFIG_PACKAGE_6rd=y
|
|||||||
### IPv6 NAT support (ip6tables NAT extensions, ipt-nat6 and nf-nat6 kmods)
|
### IPv6 NAT support (ip6tables NAT extensions, ipt-nat6 and nf-nat6 kmods)
|
||||||
##CONFIG_PACKAGE_ip6tables-mod-nat=y
|
##CONFIG_PACKAGE_ip6tables-mod-nat=y
|
||||||
|
|
||||||
### OpenSSL
|
### Kernel crypt mods
|
||||||
CONFIG_LIBCURL_OPENSSL=y
|
CONFIG_PACKAGE_kmod-crypto-lib-chacha20poly1305=y
|
||||||
|
CONFIG_PACKAGE_kmod-crypto-lib-chacha20=y
|
||||||
|
CONFIG_PACKAGE_kmod-crypto-lib-poly1305=y
|
||||||
|
CONFIG_PACKAGE_kmod-crypto-lib-curve25519=y
|
||||||
|
CONFIG_PACKAGE_kmod-crypto-kpp=y
|
||||||
|
CONFIG_PACKAGE_kmod-crypto-md4=y
|
||||||
|
CONFIG_PACKAGE_kmod-crypto-md5=y
|
||||||
|
CONFIG_PACKAGE_kmod-crypto-ecb=y
|
||||||
|
CONFIG_PACKAGE_kmod-crypto-des=y
|
||||||
|
CONFIG_PACKAGE_kmod-crypto-sha256=y
|
||||||
|
CONFIG_PACKAGE_kmod-asn1-decoder=y
|
||||||
|
|
||||||
|
### mbedTLS lib
|
||||||
|
CONFIG_PACKAGE_libmbedtls=y
|
||||||
|
CONFIG_MBEDTLS_AES_C=y
|
||||||
|
CONFIG_MBEDTLS_CMAC_C=y
|
||||||
|
CONFIG_MBEDTLS_DES_C=y
|
||||||
|
CONFIG_MBEDTLS_GCM_C=y
|
||||||
|
CONFIG_MBEDTLS_NIST_KW_C=y
|
||||||
|
CONFIG_MBEDTLS_RSA_NO_CRT=y
|
||||||
|
CONFIG_MBEDTLS_KEY_EXCHANGE_PSK_ENABLED=y
|
||||||
|
CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_PSK_ENABLED=y
|
||||||
|
CONFIG_MBEDTLS_KEY_EXCHANGE_RSA_PSK_ENABLED=y
|
||||||
|
CONFIG_MBEDTLS_KEY_EXCHANGE_RSA_ENABLED=y
|
||||||
|
CONFIG_MBEDTLS_KEY_EXCHANGE_DHE_RSA_ENABLED=y
|
||||||
|
CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_RSA_ENABLED=y
|
||||||
|
CONFIG_MBEDTLS_KEY_EXCHANGE_ECDHE_ECDSA_ENABLED=y
|
||||||
|
#CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_ECDSA_ENABLED=y
|
||||||
|
#CONFIG_MBEDTLS_KEY_EXCHANGE_ECDH_RSA_ENABLED=y
|
||||||
|
|
||||||
|
### OpenSSL lib
|
||||||
CONFIG_PACKAGE_libopenssl=y
|
CONFIG_PACKAGE_libopenssl=y
|
||||||
CONFIG_PACKAGE_libopenssl-legacy=y
|
CONFIG_PACKAGE_libopenssl-legacy=y
|
||||||
#CONFIG_PACKAGE_libopenssl-devcrypto=y
|
#CONFIG_PACKAGE_libopenssl-devcrypto=y
|
||||||
CONFIG_PACKAGE_openssl-util=y
|
CONFIG_PACKAGE_openssl-util=y
|
||||||
|
CONFIG_PACKAGE_libopenssl-conf=y
|
||||||
CONFIG_PACKAGE_libwebsockets-full=y
|
CONFIG_PACKAGE_libwebsockets-full=y
|
||||||
CONFIG_PACKAGE_libuhttpd-openssl=y
|
CONFIG_OPENSSL_WITH_ASM=y
|
||||||
|
CONFIG_OPENSSL_WITH_DEPRECATED=y
|
||||||
### LuCI with HTTPS support (OpenSSL as SSL backend)
|
CONFIG_OPENSSL_WITH_TLS13=y
|
||||||
CONFIG_PACKAGE_luci-ssl-openssl=y
|
#CONFIG_OPENSSL_WITH_DTLS=y
|
||||||
|
CONFIG_OPENSSL_WITH_SRP=y
|
||||||
|
CONFIG_OPENSSL_WITH_CMS=y
|
||||||
|
CONFIG_OPENSSL_WITH_CHACHA_POLY1305=y
|
||||||
|
#CONFIG_OPENSSL_PREFER_CHACHA_OVER_GCM=y
|
||||||
|
CONFIG_OPENSSL_WITH_PSK=y
|
||||||
|
CONFIG_OPENSSL_WITH_IDEA=y
|
||||||
|
CONFIG_OPENSSL_WITH_SEED=y
|
||||||
|
CONFIG_OPENSSL_WITH_MDC2=y
|
||||||
|
CONFIG_OPENSSL_WITH_WHIRLPOOL=y
|
||||||
|
|
||||||
### SSL certificates
|
### SSL certificates
|
||||||
CONFIG_PACKAGE_ca-certificates=y
|
CONFIG_PACKAGE_ca-certificates=y
|
||||||
@@ -188,15 +231,7 @@ CONFIG_PACKAGE_collectd-mod-sensors=y
|
|||||||
CONFIG_PACKAGE_collectd-mod-uptime=y
|
CONFIG_PACKAGE_collectd-mod-uptime=y
|
||||||
|
|
||||||
### hostap
|
### hostap
|
||||||
#CONFIG_PACKAGE_hostapd-openssl=y
|
|
||||||
#CONFIG_PACKAGE_hostapd-utils=y
|
|
||||||
## https://forum.openwrt.org/t/wpad-vs-hostapd-wpa-supplicant/30844
|
|
||||||
## WPAD included wpa-supplicant + hostapd
|
|
||||||
CONFIG_PACKAGE_wpad-openssl=y
|
|
||||||
CONFIG_WPA_RFKILL_SUPPORT=y
|
CONFIG_WPA_RFKILL_SUPPORT=y
|
||||||
#CONFIG_PACKAGE_wpa-supplicant-openssl=y
|
|
||||||
## CONFIG_WPA_MSG_MIN_PRIORITY=2
|
|
||||||
## CONFIG_WPA_MSG_MIN_PRIORITY=4
|
|
||||||
|
|
||||||
### DNSMasq
|
### DNSMasq
|
||||||
CONFIG_PACKAGE_dnsmasq-full=y
|
CONFIG_PACKAGE_dnsmasq-full=y
|
||||||
|
|||||||
@@ -39,6 +39,8 @@ CONFIG_PACKAGE_iw=y
|
|||||||
CONFIG_PACKAGE_mc=y
|
CONFIG_PACKAGE_mc=y
|
||||||
CONFIG_PACKAGE_luci-app-ttyd=y
|
CONFIG_PACKAGE_luci-app-ttyd=y
|
||||||
CONFIG_PACKAGE_luci-i18n-ttyd-ru=y
|
CONFIG_PACKAGE_luci-i18n-ttyd-ru=y
|
||||||
|
CONFIG_PACKAGE_luci-app-filemanager=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-filemanager-ru=y
|
||||||
CONFIG_PACKAGE_atftp=y
|
CONFIG_PACKAGE_atftp=y
|
||||||
#CONFIG_PACKAGE_atftpd=y
|
#CONFIG_PACKAGE_atftpd=y
|
||||||
CONFIG_PACKAGE_facinstall=y
|
CONFIG_PACKAGE_facinstall=y
|
||||||
@@ -78,6 +80,3 @@ CONFIG_PACKAGE_luci-i18n-commands-ru=y
|
|||||||
CONFIG_PACKAGE_luci-app-opkg=y
|
CONFIG_PACKAGE_luci-app-opkg=y
|
||||||
CONFIG_PACKAGE_luci-i18n-opkg-ru=y
|
CONFIG_PACKAGE_luci-i18n-opkg-ru=y
|
||||||
|
|
||||||
### Luci themes
|
|
||||||
CONFIG_PACKAGE_luci-theme-bootstrap=y
|
|
||||||
CONFIG_PACKAGE_luci-theme-openwrt-2020=y
|
|
||||||
|
|||||||
24
_vpn.config
24
_vpn.config
@@ -1,16 +1,15 @@
|
|||||||
|
|
||||||
CONFIG_OPENVPN_openssl_ENABLE_DEF_AUTH=y
|
CONFIG_OPENVPN_mbedtls_ENABLE_DEF_AUTH=y
|
||||||
CONFIG_OPENVPN_openssl_ENABLE_FRAGMENT=y
|
CONFIG_OPENVPN_mbedtls_ENABLE_FRAGMENT=y
|
||||||
CONFIG_OPENVPN_openssl_ENABLE_LZ4=y
|
CONFIG_OPENVPN_mbedtls_ENABLE_LZO=y
|
||||||
CONFIG_OPENVPN_openssl_ENABLE_LZO=y
|
CONFIG_OPENVPN_mbedtls_ENABLE_LZ4=y
|
||||||
CONFIG_OPENVPN_openssl_ENABLE_MULTIHOME=y
|
CONFIG_OPENVPN_mbedtls_ENABLE_PORT_SHARE=y
|
||||||
CONFIG_OPENVPN_openssl_ENABLE_PF=y
|
CONFIG_OPENVPN_mbedtls_ENABLE_SMALL=y
|
||||||
CONFIG_OPENVPN_openssl_ENABLE_PORT_SHARE=y
|
|
||||||
CONFIG_OPENVPN_openssl_ENABLE_SMALL=y
|
|
||||||
|
|
||||||
CONFIG_PACKAGE_openvpn-openssl=y
|
CONFIG_PACKAGE_openvpn-mbedtls=y
|
||||||
CONFIG_PACKAGE_luci-app-openvpn=y
|
CONFIG_PACKAGE_luci-app-openvpn=y
|
||||||
CONFIG_PACKAGE_luci-i18n-openvpn-ru=y
|
CONFIG_PACKAGE_luci-i18n-openvpn-ru=y
|
||||||
|
CONFIG_PACKAGE_openvpn-easy-rsa=y
|
||||||
|
|
||||||
CONFIG_PACKAGE_kmod-veth=y
|
CONFIG_PACKAGE_kmod-veth=y
|
||||||
CONFIG_PACKAGE_kmod-nft-tproxy=y
|
CONFIG_PACKAGE_kmod-nft-tproxy=y
|
||||||
@@ -24,7 +23,6 @@ CONFIG_PACKAGE_luci-proto-wireguard=y
|
|||||||
|
|
||||||
CONFIG_PACKAGE_kmod-amneziawg=y
|
CONFIG_PACKAGE_kmod-amneziawg=y
|
||||||
CONFIG_PACKAGE_amneziawg-tools=y
|
CONFIG_PACKAGE_amneziawg-tools=y
|
||||||
#CONFIG_PACKAGE_amneziawg-go=y
|
|
||||||
CONFIG_PACKAGE_luci-proto-amneziawg=y
|
CONFIG_PACKAGE_luci-proto-amneziawg=y
|
||||||
|
|
||||||
CONFIG_PACKAGE_shadowsocks-libev-ss-local=y
|
CONFIG_PACKAGE_shadowsocks-libev-ss-local=y
|
||||||
@@ -34,11 +32,6 @@ CONFIG_PACKAGE_shadowsocks-libev-ss-tunnel=y
|
|||||||
CONFIG_PACKAGE_luci-app-shadowsocks-libev=y
|
CONFIG_PACKAGE_luci-app-shadowsocks-libev=y
|
||||||
CONFIG_PACKAGE_luci-i18n-shadowsocks-libev-ru=y
|
CONFIG_PACKAGE_luci-i18n-shadowsocks-libev-ru=y
|
||||||
|
|
||||||
#CONFIG_PACKAGE_xray-core=y
|
|
||||||
#CONFIG_PACKAGE_luci-app-xray=y
|
|
||||||
#CONFIG_PACKAGE_v2ray-geoip=y
|
|
||||||
#CONFIG_PACKAGE_v2ray-geosite=y
|
|
||||||
|
|
||||||
CONFIG_PACKAGE_ruantiblock=y
|
CONFIG_PACKAGE_ruantiblock=y
|
||||||
CONFIG_PACKAGE_ruantiblock-mod-lua=y
|
CONFIG_PACKAGE_ruantiblock-mod-lua=y
|
||||||
#CONFIG_PACKAGE_ruantiblock-mod-py=y
|
#CONFIG_PACKAGE_ruantiblock-mod-py=y
|
||||||
@@ -47,4 +40,3 @@ CONFIG_PACKAGE_luci-i18n-ruantiblock-ru=y
|
|||||||
|
|
||||||
CONFIG_PACKAGE_podkop=y
|
CONFIG_PACKAGE_podkop=y
|
||||||
CONFIG_PACKAGE_luci-app-podkop=y
|
CONFIG_PACKAGE_luci-app-podkop=y
|
||||||
CONFIG_PACKAGE_luci-i18n-podkop-ru=y
|
|
||||||
|
|||||||
@@ -24,17 +24,13 @@ CONFIG_PACKAGE_hdparm=y
|
|||||||
CONFIG_PACKAGE_luci-app-tn-netports=y
|
CONFIG_PACKAGE_luci-app-tn-netports=y
|
||||||
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
||||||
|
|
||||||
|
### Network traffic
|
||||||
|
CONFIG_PACKAGE_luci-app-sqm=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-sqm-ru=y
|
||||||
|
|
||||||
### TimeControl
|
### TimeControl
|
||||||
CONFIG_PACKAGE_luci-app-timecontrol=m
|
CONFIG_PACKAGE_luci-app-timecontrol=m
|
||||||
|
|
||||||
### FileBrowser
|
|
||||||
CONFIG_PACKAGE_wget-ssl=y
|
|
||||||
CONFIG_PACKAGE_luci-app-filebrowser=y
|
|
||||||
|
|
||||||
### DNSMasq
|
|
||||||
CONFIG_PACKAGE_dnsmasq-full=y
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
17
r3d.config
17
r3d.config
@@ -12,8 +12,6 @@ CONFIG_TARGET_ipq806x_generic_DEVICE_xiaomi_r3d=y
|
|||||||
#include _argon.config
|
#include _argon.config
|
||||||
#include _vpn.config
|
#include _vpn.config
|
||||||
|
|
||||||
CONFIG_KERNEL_KALLSYMS=y
|
|
||||||
|
|
||||||
### Temp and sensors
|
### Temp and sensors
|
||||||
CONFIG_PACKAGE_lm-sensors=y
|
CONFIG_PACKAGE_lm-sensors=y
|
||||||
CONFIG_PACKAGE_lm-sensors-detect=y
|
CONFIG_PACKAGE_lm-sensors-detect=y
|
||||||
@@ -33,20 +31,21 @@ CONFIG_PACKAGE_luci-app-disks-info=y
|
|||||||
#CONFIG_PACKAGE_luci-i18n-disks-info-ru=y
|
#CONFIG_PACKAGE_luci-i18n-disks-info-ru=y
|
||||||
CONFIG_PACKAGE_luci-app-diskman=y
|
CONFIG_PACKAGE_luci-app-diskman=y
|
||||||
|
|
||||||
|
### Luci dashboard
|
||||||
|
CONFIG_PACKAGE_luci-mod-dashboard=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-dashboard-ru=y
|
||||||
|
|
||||||
### Network Ports viewer
|
### Network Ports viewer
|
||||||
CONFIG_PACKAGE_luci-app-tn-netports=y
|
CONFIG_PACKAGE_luci-app-tn-netports=y
|
||||||
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
||||||
|
|
||||||
|
### Network traffic
|
||||||
|
CONFIG_PACKAGE_luci-app-sqm=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-sqm-ru=y
|
||||||
|
|
||||||
### TimeControl
|
### TimeControl
|
||||||
CONFIG_PACKAGE_luci-app-timecontrol=m
|
CONFIG_PACKAGE_luci-app-timecontrol=m
|
||||||
|
|
||||||
### FileBrowser
|
|
||||||
CONFIG_PACKAGE_wget-ssl=y
|
|
||||||
CONFIG_PACKAGE_luci-app-filebrowser=y
|
|
||||||
|
|
||||||
### DNSMasq
|
|
||||||
CONFIG_PACKAGE_dnsmasq-full=y
|
|
||||||
|
|
||||||
### CPU Freq
|
### CPU Freq
|
||||||
CONFIG_PACKAGE_luci-app-cpufreq=y
|
CONFIG_PACKAGE_luci-app-cpufreq=y
|
||||||
|
|
||||||
|
|||||||
12
r3g.config
12
r3g.config
@@ -24,17 +24,13 @@ CONFIG_PACKAGE_hdparm=y
|
|||||||
CONFIG_PACKAGE_luci-app-tn-netports=y
|
CONFIG_PACKAGE_luci-app-tn-netports=y
|
||||||
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
||||||
|
|
||||||
|
### Network traffic
|
||||||
|
CONFIG_PACKAGE_luci-app-sqm=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-sqm-ru=y
|
||||||
|
|
||||||
### TimeControl
|
### TimeControl
|
||||||
CONFIG_PACKAGE_luci-app-timecontrol=m
|
CONFIG_PACKAGE_luci-app-timecontrol=m
|
||||||
|
|
||||||
### FileBrowser
|
|
||||||
CONFIG_PACKAGE_wget-ssl=y
|
|
||||||
CONFIG_PACKAGE_luci-app-filebrowser=y
|
|
||||||
|
|
||||||
### DNSMasq
|
|
||||||
CONFIG_PACKAGE_dnsmasq-full=y
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -17,11 +17,12 @@ CONFIG_PACKAGE_luci-i18n-dashboard-ru=y
|
|||||||
CONFIG_PACKAGE_luci-app-tn-netports=y
|
CONFIG_PACKAGE_luci-app-tn-netports=y
|
||||||
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
||||||
|
|
||||||
|
### Network traffic
|
||||||
|
CONFIG_PACKAGE_luci-app-sqm=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-sqm-ru=y
|
||||||
|
|
||||||
### TimeControl
|
### TimeControl
|
||||||
#CONFIG_PACKAGE_luci-app-timecontrol=m
|
#CONFIG_PACKAGE_luci-app-timecontrol=m
|
||||||
|
|
||||||
### DNSMasq
|
|
||||||
CONFIG_PACKAGE_dnsmasq-full=y
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -17,11 +17,12 @@ CONFIG_PACKAGE_luci-i18n-dashboard-ru=y
|
|||||||
CONFIG_PACKAGE_luci-app-tn-netports=y
|
CONFIG_PACKAGE_luci-app-tn-netports=y
|
||||||
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
||||||
|
|
||||||
|
### Network traffic
|
||||||
|
CONFIG_PACKAGE_luci-app-sqm=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-sqm-ru=y
|
||||||
|
|
||||||
### TimeControl
|
### TimeControl
|
||||||
#CONFIG_PACKAGE_luci-app-timecontrol=m
|
#CONFIG_PACKAGE_luci-app-timecontrol=m
|
||||||
|
|
||||||
### DNSMasq
|
|
||||||
CONFIG_PACKAGE_dnsmasq-full=y
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -17,11 +17,13 @@ CONFIG_PACKAGE_luci-i18n-dashboard-ru=y
|
|||||||
CONFIG_PACKAGE_luci-app-tn-netports=y
|
CONFIG_PACKAGE_luci-app-tn-netports=y
|
||||||
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
||||||
|
|
||||||
|
### Network traffic
|
||||||
|
CONFIG_PACKAGE_luci-app-sqm=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-sqm-ru=y
|
||||||
|
|
||||||
### TimeControl
|
### TimeControl
|
||||||
#CONFIG_PACKAGE_luci-app-timecontrol=m
|
#CONFIG_PACKAGE_luci-app-timecontrol=m
|
||||||
|
|
||||||
### DNSMasq
|
|
||||||
CONFIG_PACKAGE_dnsmasq-full=y
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -15,19 +15,19 @@ CONFIG_PACKAGE_lm-sensors-detect=y
|
|||||||
CONFIG_PACKAGE_luci-app-temp-status=y
|
CONFIG_PACKAGE_luci-app-temp-status=y
|
||||||
CONFIG_PACKAGE_luci-i18n-temp-status-ru=y
|
CONFIG_PACKAGE_luci-i18n-temp-status-ru=y
|
||||||
|
|
||||||
|
### Luci dashboard
|
||||||
|
CONFIG_PACKAGE_luci-mod-dashboard=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-dashboard-ru=y
|
||||||
|
|
||||||
### Network Ports viewer
|
### Network Ports viewer
|
||||||
CONFIG_PACKAGE_luci-app-tn-netports=y
|
CONFIG_PACKAGE_luci-app-tn-netports=y
|
||||||
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
||||||
|
|
||||||
|
### Network traffic
|
||||||
|
CONFIG_PACKAGE_luci-app-sqm=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-sqm-ru=y
|
||||||
|
|
||||||
### TimeControl
|
### TimeControl
|
||||||
CONFIG_PACKAGE_luci-app-timecontrol=m
|
CONFIG_PACKAGE_luci-app-timecontrol=m
|
||||||
|
|
||||||
### FileBrowser
|
|
||||||
CONFIG_PACKAGE_wget-ssl=y
|
|
||||||
CONFIG_PACKAGE_luci-app-filebrowser=y
|
|
||||||
|
|
||||||
### DNSMasq
|
|
||||||
CONFIG_PACKAGE_dnsmasq-full=y
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,3 @@ CONFIG_USES_SEPARATE_INITRAMFS=n
|
|||||||
CONFIG_TARGET_ROOTFS_INITRAMFS_SEPARATE=n
|
CONFIG_TARGET_ROOTFS_INITRAMFS_SEPARATE=n
|
||||||
|
|
||||||
|
|
||||||
### DNSMasq
|
|
||||||
CONFIG_PACKAGE_dnsmasq-full=y
|
|
||||||
|
|
||||||
|
|||||||
@@ -15,19 +15,20 @@ CONFIG_PACKAGE_lm-sensors-detect=y
|
|||||||
CONFIG_PACKAGE_luci-app-temp-status=y
|
CONFIG_PACKAGE_luci-app-temp-status=y
|
||||||
CONFIG_PACKAGE_luci-i18n-temp-status-ru=y
|
CONFIG_PACKAGE_luci-i18n-temp-status-ru=y
|
||||||
|
|
||||||
|
### Luci dashboard
|
||||||
|
CONFIG_PACKAGE_luci-mod-dashboard=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-dashboard-ru=y
|
||||||
|
|
||||||
### Network Ports viewer
|
### Network Ports viewer
|
||||||
CONFIG_PACKAGE_luci-app-tn-netports=y
|
CONFIG_PACKAGE_luci-app-tn-netports=y
|
||||||
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
||||||
|
|
||||||
|
### Network traffic
|
||||||
|
CONFIG_PACKAGE_luci-app-sqm=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-sqm-ru=y
|
||||||
|
|
||||||
### TimeControl
|
### TimeControl
|
||||||
CONFIG_PACKAGE_luci-app-timecontrol=m
|
CONFIG_PACKAGE_luci-app-timecontrol=m
|
||||||
|
|
||||||
### FileBrowser
|
|
||||||
CONFIG_PACKAGE_wget-ssl=y
|
|
||||||
CONFIG_PACKAGE_luci-app-filebrowser=y
|
|
||||||
|
|
||||||
### DNSMasq
|
|
||||||
CONFIG_PACKAGE_dnsmasq-full=y
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,3 @@ CONFIG_USES_SEPARATE_INITRAMFS=n
|
|||||||
CONFIG_TARGET_ROOTFS_INITRAMFS_SEPARATE=n
|
CONFIG_TARGET_ROOTFS_INITRAMFS_SEPARATE=n
|
||||||
|
|
||||||
|
|
||||||
### DNSMasq
|
|
||||||
CONFIG_PACKAGE_dnsmasq-full=y
|
|
||||||
|
|
||||||
|
|||||||
@@ -29,22 +29,23 @@ CONFIG_PACKAGE_luci-app-disks-info=y
|
|||||||
#CONFIG_PACKAGE_luci-i18n-disks-info-ru=y
|
#CONFIG_PACKAGE_luci-i18n-disks-info-ru=y
|
||||||
CONFIG_PACKAGE_luci-app-diskman=y
|
CONFIG_PACKAGE_luci-app-diskman=y
|
||||||
|
|
||||||
|
### Luci dashboard
|
||||||
|
CONFIG_PACKAGE_luci-mod-dashboard=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-dashboard-ru=y
|
||||||
|
|
||||||
### Network Ports viewer
|
### Network Ports viewer
|
||||||
CONFIG_PACKAGE_luci-app-tn-netports=y
|
CONFIG_PACKAGE_luci-app-tn-netports=y
|
||||||
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
||||||
|
|
||||||
|
### Network traffic
|
||||||
|
CONFIG_PACKAGE_luci-app-sqm=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-sqm-ru=y
|
||||||
|
|
||||||
### TimeControl
|
### TimeControl
|
||||||
CONFIG_PACKAGE_luci-app-timecontrol=m
|
CONFIG_PACKAGE_luci-app-timecontrol=m
|
||||||
|
|
||||||
### FileBrowser
|
|
||||||
CONFIG_PACKAGE_wget-ssl=y
|
|
||||||
CONFIG_PACKAGE_luci-app-filebrowser=y
|
|
||||||
|
|
||||||
### DNSMasq
|
|
||||||
CONFIG_PACKAGE_dnsmasq-full=y
|
|
||||||
|
|
||||||
### CPU Freq
|
|
||||||
CONFIG_PACKAGE_luci-app-cpufreq=y
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,3 @@ CONFIG_USES_SEPARATE_INITRAMFS=n
|
|||||||
CONFIG_TARGET_ROOTFS_INITRAMFS_SEPARATE=n
|
CONFIG_TARGET_ROOTFS_INITRAMFS_SEPARATE=n
|
||||||
|
|
||||||
|
|
||||||
### DNSMasq
|
|
||||||
CONFIG_PACKAGE_dnsmasq-full=y
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
CONFIG_TARGET_mediatek=y
|
CONFIG_TARGET_qualcommax=y
|
||||||
CONFIG_TARGET_mediatek_filogic=y
|
CONFIG_TARGET_qualcommax_ipq807x=y
|
||||||
CONFIG_TARGET_mediatek_filogic_DEVICE_routerich_ax3000=y
|
CONFIG_TARGET_qualcommax_ipq807x_DEVICE_asus_rt-ax89x=y
|
||||||
|
|
||||||
#include _addons.config
|
#include _addons.config
|
||||||
#include _base.config
|
#include _base.config
|
||||||
@@ -12,11 +12,17 @@ CONFIG_TARGET_mediatek_filogic_DEVICE_routerich_ax3000=y
|
|||||||
#include _argon.config
|
#include _argon.config
|
||||||
#include _vpn.config
|
#include _vpn.config
|
||||||
|
|
||||||
|
CONFIG_KERNEL_KALLSYMS=y
|
||||||
|
|
||||||
### Temp and sensors
|
### Temp and sensors
|
||||||
CONFIG_PACKAGE_lm-sensors=y
|
CONFIG_PACKAGE_lm-sensors=y
|
||||||
CONFIG_PACKAGE_lm-sensors-detect=y
|
CONFIG_PACKAGE_lm-sensors-detect=y
|
||||||
CONFIG_PACKAGE_luci-app-temp-status=y
|
CONFIG_PACKAGE_luci-app-temp-status=y
|
||||||
CONFIG_PACKAGE_luci-i18n-temp-status-ru=y
|
CONFIG_PACKAGE_luci-i18n-temp-status-ru=y
|
||||||
|
CONFIG_PACKAGE_collectd-mod-sensors=y
|
||||||
|
|
||||||
|
### USB
|
||||||
|
CONFIG_PACKAGE_kmod-usb-storage-uas=y
|
||||||
|
|
||||||
### HDD tools
|
### HDD tools
|
||||||
CONFIG_PACKAGE_smartmontools=y
|
CONFIG_PACKAGE_smartmontools=y
|
||||||
@@ -28,19 +34,23 @@ CONFIG_PACKAGE_luci-app-disks-info=y
|
|||||||
#CONFIG_PACKAGE_luci-i18n-disks-info-ru=y
|
#CONFIG_PACKAGE_luci-i18n-disks-info-ru=y
|
||||||
CONFIG_PACKAGE_luci-app-diskman=y
|
CONFIG_PACKAGE_luci-app-diskman=y
|
||||||
|
|
||||||
|
### Luci dashboard
|
||||||
|
CONFIG_PACKAGE_luci-mod-dashboard=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-dashboard-ru=y
|
||||||
|
|
||||||
### Network Ports viewer
|
### Network Ports viewer
|
||||||
CONFIG_PACKAGE_luci-app-tn-netports=y
|
CONFIG_PACKAGE_luci-app-tn-netports=y
|
||||||
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
||||||
|
|
||||||
|
### Network traffic
|
||||||
|
CONFIG_PACKAGE_luci-app-sqm=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-sqm-ru=y
|
||||||
|
|
||||||
### TimeControl
|
### TimeControl
|
||||||
CONFIG_PACKAGE_luci-app-timecontrol=m
|
CONFIG_PACKAGE_luci-app-timecontrol=m
|
||||||
|
|
||||||
### FileBrowser
|
### CPU Freq
|
||||||
CONFIG_PACKAGE_wget-ssl=y
|
CONFIG_PACKAGE_luci-app-cpufreq=y
|
||||||
CONFIG_PACKAGE_luci-app-filebrowser=y
|
|
||||||
|
|
||||||
### DNSMasq
|
|
||||||
CONFIG_PACKAGE_dnsmasq-full=y
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
19
rt-ax89x_initramfs.config
Normal file
19
rt-ax89x_initramfs.config
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
CONFIG_TARGET_qualcommax=y
|
||||||
|
CONFIG_TARGET_qualcommax_ipq807x=y
|
||||||
|
CONFIG_TARGET_qualcommax_ipq807x_DEVICE_asus_rt-ax89x=y
|
||||||
|
|
||||||
|
#include _addons.config
|
||||||
|
#include _base_initrd.config
|
||||||
|
|
||||||
|
CONFIG_KERNEL_KALLSYMS=y
|
||||||
|
|
||||||
|
CONFIG_TARGET_INITRAMFS_FORCE=y
|
||||||
|
CONFIG_TARGET_ROOTFS_INITRAMFS=y
|
||||||
|
CONFIG_USES_SEPARATE_INITRAMFS=n
|
||||||
|
CONFIG_TARGET_ROOTFS_INITRAMFS_SEPARATE=n
|
||||||
|
|
||||||
|
|
||||||
|
### USB
|
||||||
|
CONFIG_PACKAGE_kmod-usb-storage-uas=y
|
||||||
|
|
||||||
|
|
||||||
@@ -29,23 +29,18 @@ CONFIG_PACKAGE_luci-app-disks-info=y
|
|||||||
#CONFIG_PACKAGE_luci-i18n-disks-info-ru=y
|
#CONFIG_PACKAGE_luci-i18n-disks-info-ru=y
|
||||||
CONFIG_PACKAGE_luci-app-diskman=y
|
CONFIG_PACKAGE_luci-app-diskman=y
|
||||||
|
|
||||||
|
### Luci dashboard
|
||||||
|
CONFIG_PACKAGE_luci-mod-dashboard=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-dashboard-ru=y
|
||||||
|
|
||||||
### Network Ports viewer
|
### Network Ports viewer
|
||||||
CONFIG_PACKAGE_luci-app-tn-netports=y
|
CONFIG_PACKAGE_luci-app-tn-netports=y
|
||||||
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
||||||
|
|
||||||
|
### Network traffic
|
||||||
|
CONFIG_PACKAGE_luci-app-sqm=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-sqm-ru=y
|
||||||
|
|
||||||
### TimeControl
|
### TimeControl
|
||||||
CONFIG_PACKAGE_luci-app-timecontrol=m
|
CONFIG_PACKAGE_luci-app-timecontrol=m
|
||||||
|
|
||||||
### FileBrowser
|
|
||||||
CONFIG_PACKAGE_wget-ssl=y
|
|
||||||
CONFIG_PACKAGE_luci-app-filebrowser=y
|
|
||||||
|
|
||||||
### DNSMasq
|
|
||||||
CONFIG_PACKAGE_dnsmasq-full=y
|
|
||||||
|
|
||||||
### CPU Freq
|
|
||||||
CONFIG_PACKAGE_luci-app-cpufreq=y
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,3 @@ CONFIG_TARGET_ROOTFS_INITRAMFS=y
|
|||||||
CONFIG_USES_SEPARATE_INITRAMFS=n
|
CONFIG_USES_SEPARATE_INITRAMFS=n
|
||||||
CONFIG_TARGET_ROOTFS_INITRAMFS_SEPARATE=n
|
CONFIG_TARGET_ROOTFS_INITRAMFS_SEPARATE=n
|
||||||
|
|
||||||
|
|
||||||
### DNSMasq
|
|
||||||
CONFIG_PACKAGE_dnsmasq-full=y
|
|
||||||
|
|
||||||
|
|||||||
@@ -29,23 +29,20 @@ CONFIG_PACKAGE_luci-app-disks-info=y
|
|||||||
#CONFIG_PACKAGE_luci-i18n-disks-info-ru=y
|
#CONFIG_PACKAGE_luci-i18n-disks-info-ru=y
|
||||||
CONFIG_PACKAGE_luci-app-diskman=y
|
CONFIG_PACKAGE_luci-app-diskman=y
|
||||||
|
|
||||||
|
### Luci dashboard
|
||||||
|
CONFIG_PACKAGE_luci-mod-dashboard=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-dashboard-ru=y
|
||||||
|
|
||||||
### Network Ports viewer
|
### Network Ports viewer
|
||||||
CONFIG_PACKAGE_luci-app-tn-netports=y
|
CONFIG_PACKAGE_luci-app-tn-netports=y
|
||||||
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
CONFIG_PACKAGE_luci-i18n-tn-netports-ru=y
|
||||||
|
|
||||||
|
### Network traffic
|
||||||
|
CONFIG_PACKAGE_luci-app-sqm=y
|
||||||
|
CONFIG_PACKAGE_luci-i18n-sqm-ru=y
|
||||||
|
|
||||||
### TimeControl
|
### TimeControl
|
||||||
CONFIG_PACKAGE_luci-app-timecontrol=m
|
CONFIG_PACKAGE_luci-app-timecontrol=m
|
||||||
|
|
||||||
### FileBrowser
|
|
||||||
CONFIG_PACKAGE_wget-ssl=y
|
|
||||||
CONFIG_PACKAGE_luci-app-filebrowser=y
|
|
||||||
|
|
||||||
### DNSMasq
|
|
||||||
CONFIG_PACKAGE_dnsmasq-full=y
|
|
||||||
|
|
||||||
### CPU Freq
|
|
||||||
CONFIG_PACKAGE_luci-app-cpufreq=y
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -12,6 +12,3 @@ CONFIG_USES_SEPARATE_INITRAMFS=n
|
|||||||
CONFIG_TARGET_ROOTFS_INITRAMFS_SEPARATE=n
|
CONFIG_TARGET_ROOTFS_INITRAMFS_SEPARATE=n
|
||||||
|
|
||||||
|
|
||||||
### DNSMasq
|
|
||||||
CONFIG_PACKAGE_dnsmasq-full=y
|
|
||||||
|
|
||||||
|
|||||||
27
xmake.sh
27
xmake.sh
@@ -16,9 +16,9 @@ KALLSYMS=false
|
|||||||
TESTING_KERNEL=false
|
TESTING_KERNEL=false
|
||||||
BUILD_ONLY_INITRAMFS=false
|
BUILD_ONLY_INITRAMFS=false
|
||||||
BUILD_SKIP_INITRAMFS=false
|
BUILD_SKIP_INITRAMFS=false
|
||||||
ONLY_INIT=false
|
CALL_MAKE=true
|
||||||
|
|
||||||
while getopts "j:t:fiskTI" opt; do
|
while getopts "j:t:fiskTm" opt; do
|
||||||
case $opt in
|
case $opt in
|
||||||
j) MAKE_JOBS=$OPTARG;;
|
j) MAKE_JOBS=$OPTARG;;
|
||||||
t) XTARGET=$OPTARG;;
|
t) XTARGET=$OPTARG;;
|
||||||
@@ -27,7 +27,7 @@ while getopts "j:t:fiskTI" opt; do
|
|||||||
T) TESTING_KERNEL=true;;
|
T) TESTING_KERNEL=true;;
|
||||||
i) BUILD_ONLY_INITRAMFS=true;;
|
i) BUILD_ONLY_INITRAMFS=true;;
|
||||||
s) BUILD_SKIP_INITRAMFS=true;;
|
s) BUILD_SKIP_INITRAMFS=true;;
|
||||||
I) ONLY_INIT=true;;
|
m) CALL_MAKE=false;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
@@ -127,15 +127,6 @@ function build_target {
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
PODKOP_MK=$XDIR/package/feeds/_podkop/podkop/Makefile
|
|
||||||
if [ -f $PODKOP_MK ]; then
|
|
||||||
sed -i 's/+sing-box / /g' $PODKOP_MK
|
|
||||||
fi
|
|
||||||
PODKOP_SH=$XDIR/package/feeds/_podkop/podkop/files/usr/bin/podkop
|
|
||||||
if [ -f $PODKOP_SH ] && ! grep -q '(which sing-box)' $PODKOP_SH ; then
|
|
||||||
sed -i '/,\\"dns_configured\\":/i [ -z "$(which sing-box)" ] && status="not installed"' $PODKOP_SH
|
|
||||||
fi
|
|
||||||
|
|
||||||
make defconfig
|
make defconfig
|
||||||
|
|
||||||
NSS_DRV_PPPOE_ENABLE=$( get_cfg_opt_flag $CFG NSS_DRV_PPPOE_ENABLE )
|
NSS_DRV_PPPOE_ENABLE=$( get_cfg_opt_flag $CFG NSS_DRV_PPPOE_ENABLE )
|
||||||
@@ -242,14 +233,14 @@ function build_target {
|
|||||||
cp $FANT_PKG_KEY $OPKG_KEYS_DIR/53ff2b6672243d28
|
cp $FANT_PKG_KEY $OPKG_KEYS_DIR/53ff2b6672243d28
|
||||||
OPKG_CFEED_FN=$OPKG_DIR/customfeeds.conf
|
OPKG_CFEED_FN=$OPKG_DIR/customfeeds.conf
|
||||||
cp $OPKG_SRC_DIR/customfeeds.conf $OPKG_CFEED_FN
|
cp $OPKG_SRC_DIR/customfeeds.conf $OPKG_CFEED_FN
|
||||||
PKG_LINK="https://fantastic-packages.github.io/packages/releases/<<VER>>/packages/<<ARCH>>"
|
|
||||||
echo "" >> $OPKG_CFEED_FN
|
echo "" >> $OPKG_CFEED_FN
|
||||||
echo "src/gz fantastic_packages_luci $PKG_LINK/luci" >> $OPKG_CFEED_FN
|
fant_luci="src/gz fantastic_packages_luci https://fantastic-packages.github.io/packages/releases/<<VER>>/packages/<<ARCH>>/luci"
|
||||||
echo "src/gz fantastic_packages_packages $PKG_LINK/packages" >> $OPKG_CFEED_FN
|
echo "$fant_luci" >> $OPKG_CFEED_FN
|
||||||
echo "src/gz fantastic_packages_special $PKG_LINK/special" >> $OPKG_CFEED_FN
|
fant_pkgs="src/gz fantastic_packages_packages https://fantastic-packages.github.io/packages/releases/<<VER>>/packages/<<ARCH>>/packages"
|
||||||
|
echo "$fant_pkgs" >> $OPKG_CFEED_FN
|
||||||
TARGET_ARCH_PACKAGES=$( get_cfg_opt_value $CFG TARGET_ARCH_PACKAGES )
|
TARGET_ARCH_PACKAGES=$( get_cfg_opt_value $CFG TARGET_ARCH_PACKAGES )
|
||||||
[ -z "$TARGET_ARCH_PACKAGES" ] && die "Cannot find TARGET ARCH"
|
[ -z "$TARGET_ARCH_PACKAGES" ] && die "Cannot find TARGET ARCH"
|
||||||
sed -i "s/<<VER>>/23.05/g" $OPKG_CFEED_FN
|
sed -i "s/<<VER>>/24.10/g" $OPKG_CFEED_FN
|
||||||
sed -i "s/<<ARCH>>/$TARGET_ARCH_PACKAGES/g" $OPKG_CFEED_FN
|
sed -i "s/<<ARCH>>/$TARGET_ARCH_PACKAGES/g" $OPKG_CFEED_FN
|
||||||
logmsg "Added support of Fantastic packages [https://fantastic-packages.github.io/packages]"
|
logmsg "Added support of Fantastic packages [https://fantastic-packages.github.io/packages]"
|
||||||
fi
|
fi
|
||||||
@@ -273,7 +264,7 @@ function build_target {
|
|||||||
#make tools/install -j$make_jobs
|
#make tools/install -j$make_jobs
|
||||||
#make toolchain/install -j$make_jobs
|
#make toolchain/install -j$make_jobs
|
||||||
|
|
||||||
[ "$ONLY_INIT" = "true" ] && return 0
|
[ "$CALL_MAKE" = "false" ] && return 0
|
||||||
|
|
||||||
make -j $make_jobs download world
|
make -j $make_jobs download world
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,11 +10,9 @@ ADDONSNSS=$XDIR/_addons_nss.config
|
|||||||
. ./xcommon.sh
|
. ./xcommon.sh
|
||||||
|
|
||||||
OPT_FULL_UPDATE=false
|
OPT_FULL_UPDATE=false
|
||||||
USE_GITHUB_SRC=false
|
|
||||||
while getopts "f" opt; do
|
while getopts "f" opt; do
|
||||||
case $opt in
|
case $opt in
|
||||||
f) OPT_FULL_UPDATE=true;;
|
f) OPT_FULL_UPDATE=true;;
|
||||||
g) USE_GITHUB_SRC=true;;
|
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
|
|
||||||
@@ -48,12 +46,6 @@ git reset --hard origin/$CUR_BRANCH
|
|||||||
|
|
||||||
rm -f feeds.conf
|
rm -f feeds.conf
|
||||||
cp -f feeds.conf.default feeds.conf
|
cp -f feeds.conf.default feeds.conf
|
||||||
|
|
||||||
if [ "$USE_GITHUB_SRC" = "true" ]; then
|
|
||||||
sed -i -e 's|https://git.openwrt.org/feed/|https://github.com/openwrt/|' feeds.conf
|
|
||||||
sed -i -e 's|https://git.openwrt.org/project/|https://github.com/openwrt/|' feeds.conf
|
|
||||||
fi
|
|
||||||
|
|
||||||
feed_lst=$( get_cfg_feed_lst "$ADDONSCFG" )
|
feed_lst=$( get_cfg_feed_lst "$ADDONSCFG" )
|
||||||
for feed in $feed_lst; do
|
for feed in $feed_lst; do
|
||||||
value=$( get_cfg_feed_url "$ADDONSCFG" $feed )
|
value=$( get_cfg_feed_url "$ADDONSCFG" $feed )
|
||||||
@@ -153,7 +145,6 @@ fi
|
|||||||
if [ "$OPT_FULL_UPDATE" = "true" ]; then
|
if [ "$OPT_FULL_UPDATE" = "true" ]; then
|
||||||
if [ -f "$XDIR/vermagic_update.sh" ]; then
|
if [ -f "$XDIR/vermagic_update.sh" ]; then
|
||||||
./vermagic_update.sh ipq806x generic
|
./vermagic_update.sh ipq806x generic
|
||||||
./vermagic_update.sh ipq807x generic
|
|
||||||
./vermagic_update.sh qualcommax ipq807x
|
./vermagic_update.sh qualcommax ipq807x
|
||||||
./vermagic_update.sh ramips mt7621
|
./vermagic_update.sh ramips mt7621
|
||||||
./vermagic_update.sh mediatek mt7622
|
./vermagic_update.sh mediatek mt7622
|
||||||
|
|||||||
Reference in New Issue
Block a user