├── .github └── workflows │ ├── Build_OP_nanopi-R2S.yml │ ├── Build_OP_nanopi-R4S.yml │ └── Build_OP_x86_64.yml ├── README.md ├── configs ├── r2s.config ├── r4s.config └── x86_64.config └── images ├── openwrt.png └── screenshot.png /.github/workflows/Build_OP_nanopi-R2S.yml: -------------------------------------------------------------------------------- 1 | name: OpenWrt_NanoPi_R2S 2 | on: 3 | repository_dispatch: 4 | workflow_dispatch: 5 | 6 | jobs: 7 | build: 8 | runs-on: ubuntu-18.04 9 | steps: 10 | - name: Checkout Repository 11 | uses: actions/checkout@v2 12 | - name: Init Building Dependencies 13 | env: 14 | DEBIAN_FRONTEND: noninteractive 15 | run: | 16 | docker rmi $(docker images -q) 17 | sudo -E apt-get remove -y --purge azure-cli ghc zulu* hhvm llvm* firefox google* dotnet* powershell mysql* php* mssql-tools msodbcsql17 android* 18 | sudo -E apt-get update -y 19 | sudo -E apt-get full-upgrade -y 20 | sudo -E apt-get install -y build-essential asciidoc binutils bzip2 coreutils gawk gettext git libncurses5-dev libz-dev patch unzip zlib1g-dev lib32gcc1 libc6-dev-i386 subversion flex uglifyjs git-core gcc-8 gcc++-8 gcc-8-multilib g++-8-multilib p7zip p7zip-full msmtp libssl-dev texinfo libreadline-dev libglib2.0-dev xmlto qemu-utils upx libelf-dev autoconf automake libtool autopoint ccache curl wget vim nano python python3 python-pip python3-pip python-ply python3-ply haveged lrzsz device-tree-compiler scons antlr3 gperf ecj fastjar re2c xz-utils tar 21 | for i in $(ls /usr/bin/*-8); do sudo -E ln -sf $i ${i%%-8*}; done 22 | sudo -E ln -sf /usr/include/asm-generic /usr/include/asm 23 | sudo -E apt-get autoremove -y --purge 24 | sudo -E apt-get clean -y 25 | sudo -E swapoff -a 26 | sudo -E rm -rf /usr/share/dotnet /etc/mysql /etc/php /usr/local/lib/android /opt/ghc /swapfile 27 | - name: Server Benchmark 28 | run: | 29 | wget -qO- --no-check-certificate https://raw.githubusercontent.com/Kurokosama/serverbench/main/bench.sh | bash 30 | - name: Clone Source 31 | run: | 32 | cd "/home/runner" 33 | git clone --branch "openwrt-18.06-k5.4" --single-branch "https://github.com/immortalwrt/immortalwrt" "openwrt" 34 | sudo chown -R runner:runner "openwrt" 35 | cd "/home/runner/openwrt" 36 | ./scripts/feeds update -a 37 | ./scripts/feeds install -a 38 | - name: Build OpenWrt 39 | run: | 40 | cd "/home/runner/openwrt" 41 | cp -f "${GITHUB_WORKSPACE}/configs/r2s.config" ".config" 42 | make defconfig 43 | make -j$[$(nproc)+1] 44 | 45 | - name: Moving Files 46 | run: | 47 | cd "/home/runner/openwrt" 48 | mv -f "bin/targets/rockchip/armv8/immortalwrt-rockchip-armv8-friendlyarm_nanopi-r2s-ext4-sysupgrade.img.gz" "../immortalwrt-18.06-rockchip-armv8-friendlyarm_nanopi-r2s-ext4-sysupgrade.img.gz" 49 | mv -f "bin/targets/rockchip/armv8/immortalwrt-rockchip-armv8-friendlyarm_nanopi-r2s-squashfs-sysupgrade.img.gz" "../immortalwrt-18.06-rockchip-armv8-friendlyarm_nanopi-r2s-squashfs-sysupgrade.img.gz" 50 | 51 | - name: Prepare Release Zip File 52 | id: assemble_artifact 53 | run: | 54 | cd "/home/runner" 55 | zip OpenWrt-R2S.zip immortalwrt-18.06-rockchip-armv8-friendlyarm_nanopi-r2s-ext4-sysupgrade.img.gz immortalwrt-18.06-rockchip-armv8-friendlyarm_nanopi-r2s-squashfs-sysupgrade.img.gz 56 | release_tag="R2S-$(date +%Y-%m-%d)" 57 | echo "##[set-output name=release_tag;]$release_tag" 58 | - name: Create Release 59 | id: create_release 60 | uses: actions/create-release@v1 61 | env: 62 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 63 | with: 64 | tag_name: ${{ steps.assemble_artifact.outputs.release_tag }} 65 | release_name: OpenWrt ${{ steps.assemble_artifact.outputs.release_tag }} 66 | draft: false 67 | prerelease: false 68 | - name: Upload Release Asset 69 | id: upload-release-asset 70 | uses: actions/upload-release-asset@v1 71 | env: 72 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 73 | with: 74 | upload_url: ${{ steps.create_release.outputs.upload_url }} 75 | asset_path: /home/runner/OpenWrt-R2S.zip 76 | asset_name: OpenWrt-R2S.zip 77 | asset_content_type: application/zip 78 | - name : Upload Artifact 79 | uses: actions/upload-artifact@master 80 | with: 81 | name: OpenWrt(Download This or Go to Release Page) 82 | path: /home/runner/OpenWrt-R2S.zip 83 | -------------------------------------------------------------------------------- /.github/workflows/Build_OP_nanopi-R4S.yml: -------------------------------------------------------------------------------- 1 | name: OpenWrt_NanoPi_R4S 2 | on: 3 | repository_dispatch: 4 | workflow_dispatch: 5 | 6 | jobs: 7 | build: 8 | runs-on: ubuntu-18.04 9 | steps: 10 | - name: Checkout Repository 11 | uses: actions/checkout@v2 12 | - name: Init Building Dependencies 13 | env: 14 | DEBIAN_FRONTEND: noninteractive 15 | run: | 16 | docker rmi $(docker images -q) 17 | sudo -E apt-get remove -y --purge azure-cli ghc zulu* hhvm llvm* firefox google* dotnet* powershell mysql* php* mssql-tools msodbcsql17 android* 18 | sudo -E apt-get update -y 19 | sudo -E apt-get full-upgrade -y 20 | sudo -E apt-get install -y build-essential asciidoc binutils bzip2 coreutils gawk gettext git libncurses5-dev libz-dev patch unzip zlib1g-dev lib32gcc1 libc6-dev-i386 subversion flex uglifyjs git-core gcc-8 gcc++-8 gcc-8-multilib g++-8-multilib p7zip p7zip-full msmtp libssl-dev texinfo libreadline-dev libglib2.0-dev xmlto qemu-utils upx libelf-dev autoconf automake libtool autopoint ccache curl wget vim nano python python3 python-pip python3-pip python-ply python3-ply haveged lrzsz device-tree-compiler scons antlr3 gperf ecj fastjar re2c xz-utils tar 21 | for i in $(ls /usr/bin/*-8); do sudo -E ln -sf $i ${i%%-8*}; done 22 | sudo -E ln -sf /usr/include/asm-generic /usr/include/asm 23 | sudo -E apt-get autoremove -y --purge 24 | sudo -E apt-get clean -y 25 | sudo -E swapoff -a 26 | sudo -E rm -rf /usr/share/dotnet /etc/mysql /etc/php /usr/local/lib/android /opt/ghc /swapfile 27 | - name: Server Benchmark 28 | run: | 29 | wget -qO- --no-check-certificate https://raw.githubusercontent.com/Kurokosama/serverbench/main/bench.sh | bash 30 | - name: Clone Source 31 | run: | 32 | cd "/home/runner" 33 | git clone --branch "openwrt-18.06-k5.4" --single-branch "https://github.com/immortalwrt/immortalwrt" "openwrt" 34 | sudo chown -R runner:runner "openwrt" 35 | cd "/home/runner/openwrt" 36 | ./scripts/feeds update -a && ./scripts/feeds install -a 37 | - name: Build OpenWrt 38 | run: | 39 | cd "/home/runner/openwrt" 40 | cp -f "${GITHUB_WORKSPACE}/configs/r4s.config" ".config" 41 | make defconfig 42 | make -j$[$(nproc)+1] 43 | 44 | - name: Moving Files 45 | run: | 46 | cd "/home/runner/openwrt" 47 | mv -f "bin/targets/rockchip/armv8/immortalwrt-rockchip-armv8-friendlyarm_nanopi-r4s-ext4-sysupgrade.img.gz" "../immortalwrt-18.06-rockchip-armv8-friendlyarm_nanopi-r4s-ext4-sysupgrade.img.gz" 48 | mv -f "bin/targets/rockchip/armv8/immortalwrt-rockchip-armv8-friendlyarm_nanopi-r4s-squashfs-sysupgrade.img.gz" "../immortalwrt-18.06-rockchip-armv8-friendlyarm_nanopi-r4s-squashfs-sysupgrade.img.gz" 49 | 50 | - name: Prepare Release Zip File 51 | id: assemble_artifact 52 | run: | 53 | cd "/home/runner" 54 | zip OpenWrt-R4S.zip immortalwrt-18.06-rockchip-armv8-friendlyarm_nanopi-r4s-ext4-sysupgrade.img.gz immortalwrt-18.06-rockchip-armv8-friendlyarm_nanopi-r4s-squashfs-sysupgrade.img.gz 55 | release_tag="R4S-$(date +%Y-%m-%d)" 56 | echo "##[set-output name=release_tag;]$release_tag" 57 | - name: Create Release 58 | id: create_release 59 | uses: actions/create-release@v1 60 | env: 61 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 62 | with: 63 | tag_name: ${{ steps.assemble_artifact.outputs.release_tag }} 64 | release_name: OpenWrt ${{ steps.assemble_artifact.outputs.release_tag }} 65 | draft: false 66 | prerelease: false 67 | - name: Upload Release Asset 68 | id: upload-release-asset 69 | uses: actions/upload-release-asset@v1 70 | env: 71 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 72 | with: 73 | upload_url: ${{ steps.create_release.outputs.upload_url }} 74 | asset_path: /home/runner/OpenWrt-R4S.zip 75 | asset_name: OpenWrt-R4S.zip 76 | asset_content_type: application/zip 77 | - name : Upload Artifact 78 | uses: actions/upload-artifact@master 79 | with: 80 | name: OpenWrt(Download This or Go to Release Page) 81 | path: /home/runner/OpenWrt-R4S.zip -------------------------------------------------------------------------------- /.github/workflows/Build_OP_x86_64.yml: -------------------------------------------------------------------------------- 1 | name: OpenWrt_x86_64 2 | 3 | on: 4 | repository_dispatch: 5 | workflow_dispatch: 6 | 7 | jobs: 8 | build: 9 | runs-on: ubuntu-18.04 10 | 11 | steps: 12 | - name: Checkout 13 | uses: actions/checkout@master 14 | 15 | - name: Init Building Dependencies 16 | env: 17 | DEBIAN_FRONTEND: noninteractive 18 | run: | 19 | docker rmi `docker images -q` 20 | echo "Deleting files, please wait ..." 21 | sudo rm -rf \ 22 | /usr/share/dotnet \ 23 | /etc/mysql \ 24 | /etc/php 25 | sudo -E apt-get -y purge \ 26 | azure-cli \ 27 | ghc* \ 28 | zulu* \ 29 | hhvm \ 30 | llvm* \ 31 | firefox \ 32 | google* \ 33 | dotnet* \ 34 | powershell \ 35 | openjdk* \ 36 | mysql* \ 37 | php* 38 | sudo -E apt-get update 39 | sudo -E apt-get -y install build-essential asciidoc binutils bzip2 gawk gettext git libncurses5-dev patch unzip lib32gcc1 libc6-dev-i386 subversion flex node-uglify gcc-multilib g++-multilib p7zip p7zip-full msmtp libssl-dev texinfo libglib2.0-dev xmlto qemu-utils libelf-dev autoconf automake libtool autopoint device-tree-compiler libuv-dev python3.6 zlib1g-dev upx-ucl node-uglify antlr3 gperf wget swig rsync 40 | sudo -E apt-get -y autoremove --purge 41 | sudo -E apt-get clean 42 | - name: Server Benchmark 43 | run: | 44 | wget -qO- --no-check-certificate https://raw.githubusercontent.com/Kurokosama/serverbench/main/bench.sh | bash 45 | - name: Clone source code 46 | env: 47 | REPO_URL: https://github.com/coolsnowwolf/lede 48 | REPO_BRANCH: master 49 | run: | 50 | cd "/home/runner" 51 | git clone --depth 1 $REPO_URL -b $REPO_BRANCH openwrt 52 | sudo chown -R runner:runner "openwrt" 53 | cd "/home/runner/openwrt" 54 | echo "src-git ssrp https://github.com/fw876/helloworld.git" >> ./feeds.conf.default 55 | ./scripts/feeds update -a 56 | ./scripts/feeds install -a 57 | ./scripts/feeds install -a 58 | - name: Build OpenWrt 59 | run: | 60 | cd "/home/runner/openwrt" 61 | cp -f "${GITHUB_WORKSPACE}/configs/x86_64.config" ".config" 62 | make defconfig 63 | make -j$[$(nproc)+1] 64 | - name: Moving Files 65 | run: | 66 | cd "/home/runner/openwrt" 67 | mv -f "bin/targets/x86/64/openwrt-x86-64-generic-squashfs-combined-efi.img" "../openwrt-x86-64-generic-squashfs-combined-efi.img" 68 | mv -f "bin/targets/x86/64/openwrt-x86-64-generic-squashfs-combined-efi.vmdk" "../openwrt-x86-64-generic-squashfs-combined-efi.vmdk" 69 | - name: Prepare Release Zip File 70 | id: assemble_artifact 71 | run: | 72 | cd "/home/runner" 73 | zip OpenWrt-X86_64.zip openwrt-x86-64-generic-squashfs-combined-efi.img openwrt-x86-64-generic-squashfs-combined-efi.vmdk 74 | release_tag="X86_64-$(date +%Y-%m-%d)" 75 | echo "##[set-output name=release_tag;]$release_tag" 76 | - name: Create Release 77 | id: create_release 78 | uses: actions/create-release@v1 79 | env: 80 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 81 | with: 82 | tag_name: ${{ steps.assemble_artifact.outputs.release_tag }} 83 | release_name: OpenWrt ${{ steps.assemble_artifact.outputs.release_tag }} 84 | draft: false 85 | prerelease: false 86 | - name: Upload Release Asset 87 | id: upload-release-asset 88 | uses: actions/upload-release-asset@v1 89 | env: 90 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 91 | with: 92 | upload_url: ${{ steps.create_release.outputs.upload_url }} 93 | asset_path: /home/runner/OpenWrt-X86_64.zip 94 | asset_name: OpenWrt-X86_64.zip 95 | asset_content_type: application/zip 96 | - name : Upload Artifact 97 | uses: actions/upload-artifact@master 98 | with: 99 | name: OpenWrt(Download This or Go to Release Page) 100 | path: /home/runner/OpenWrt-X86_64.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # OpenWrt Firmware build by Github Action 2 | #### ⚠ WARNING: USE IT AT YOUR OWN RISK. 3 | #### ⚠ Non-profit Uses Only / 仅供个人学习使用. 4 | - - - 5 | My personal customized OpenWrt firmware auto build and release by using Github Action.
6 | Default login address is [192.168.1.1](192.168.1.1), username / password: `root` / `password`.
7 | Please change the login password **as soon as possible** once you log in. 8 | - - - 9 | Firmware Screenshot:
10 | OpenWrt Screenshot 11 | ## Usage 12 | - Fork [this GitHub repository](https://github.com/Kurokosama/AutoBuild-OpenWRT). 13 | - Click Action on the top menu. 14 | - Click the appropriate workflow on the left side menu bar. 15 | - Click "Run workflow" green button, then wait for few hours to build firmware. 16 | - When the build is complete, you can download firmware from "Artifacts" or Github Release page. 17 |
18 | Workflow Screenshot 19 |
20 | 21 | ## What are NanoPi R2S and R4S? 22 | | [NanoPi R2S wiki](https://wiki.friendlyarm.com/wiki/index.php/NanoPi_R2S) | [NanoPi R4S wiki](https://wiki.friendlyarm.com/wiki/index.php/NanoPi_R4S) | 23 | | ----------- | ----------- | 24 | - - - 25 | ## Support the original developer if you like 26 | [AFDian @CN\_SZTL](https://afdian.net/@CN\_SZTL/plan) 27 | - - - 28 | 29 | ### Source Code 30 | [coolsnowwolf/lede](https://github.com/coolsnowwolf/lede)
31 | [immortalwrt/immortalwrt](https://github.com/immortalwrt/immortalwrt)
32 | 33 | Also thanks to `eSir PlayGround`, `P3TERX` for their amazing works.
34 | 35 | Please checkout my blog site: ⭐[JW Tech Tips](https://www.jwtechtips.top/)⭐
36 | 中文博客地址: [cn.jwtechtips.top](https://cn.jwtechtips.top/) 37 | -------------------------------------------------------------------------------- /configs/r2s.config: -------------------------------------------------------------------------------- 1 | CONFIG_TARGET_rockchip=y 2 | CONFIG_TARGET_rockchip_armv8=y 3 | CONFIG_TARGET_rockchip_armv8_DEVICE_friendlyarm_nanopi-r2s=y 4 | CONFIG_BIND_ENABLE_DOH=y 5 | CONFIG_COREMARK_ENABLE_MULTITHREADING=y 6 | CONFIG_COREMARK_NUMBER_OF_THREADS=16 7 | CONFIG_COREMARK_OPTIMIZE_O3=y 8 | CONFIG_HTOP_LMSENSORS=y 9 | CONFIG_LIBCURL_COOKIES=y 10 | CONFIG_LIBCURL_CRYPTO_AUTH=y 11 | CONFIG_LIBCURL_FILE=y 12 | CONFIG_LIBCURL_FTP=y 13 | CONFIG_LIBCURL_HTTP=y 14 | CONFIG_LIBCURL_NGHTTP2=y 15 | CONFIG_LIBCURL_OPENSSL=y 16 | CONFIG_LIBCURL_PROXY=y 17 | CONFIG_LIBCURL_TFTP=y 18 | CONFIG_LIBCURL_THREADED_RESOLVER=y 19 | CONFIG_LIBCURL_TLS_SRP=y 20 | CONFIG_LIBCURL_UNIX_SOCKETS=y 21 | CONFIG_LIBMBEDTLS_HAVE_ARMV8CE_AES=y 22 | CONFIG_LIBSODIUM_MINIMAL=y 23 | CONFIG_NFS_KERNEL_SERVER_V4=y 24 | CONFIG_OPENVPN_openssl_ENABLE_DEF_AUTH=y 25 | CONFIG_OPENVPN_openssl_ENABLE_FRAGMENT=y 26 | CONFIG_OPENVPN_openssl_ENABLE_LZ4=y 27 | CONFIG_OPENVPN_openssl_ENABLE_LZO=y 28 | CONFIG_OPENVPN_openssl_ENABLE_MULTIHOME=y 29 | CONFIG_OPENVPN_openssl_ENABLE_PF=y 30 | CONFIG_OPENVPN_openssl_ENABLE_PORT_SHARE=y 31 | CONFIG_OPENVPN_openssl_ENABLE_SMALL=y 32 | CONFIG_PACKAGE_6in4=y 33 | CONFIG_PACKAGE_SAMBA_MAX_DEBUG_LEVEL=-1 34 | CONFIG_PACKAGE_adbyby=y 35 | CONFIG_PACKAGE_arm-trusted-firmware-rk3399=y 36 | CONFIG_PACKAGE_autosamba=y 37 | CONFIG_PACKAGE_bash=y 38 | CONFIG_PACKAGE_bind-client=y 39 | CONFIG_PACKAGE_bind-libs=y 40 | CONFIG_PACKAGE_blkid=y 41 | CONFIG_PACKAGE_boost=y 42 | CONFIG_PACKAGE_boost-date_time=y 43 | CONFIG_PACKAGE_boost-program_options=y 44 | CONFIG_PACKAGE_boost-system=y 45 | CONFIG_PACKAGE_btrfs-progs=y 46 | CONFIG_PACKAGE_ca-certificates=y 47 | CONFIG_PACKAGE_chinadns-ng=y 48 | CONFIG_PACKAGE_coremark=y 49 | CONFIG_PACKAGE_coreutils=y 50 | CONFIG_PACKAGE_coreutils-base64=y 51 | CONFIG_PACKAGE_coreutils-nohup=y 52 | CONFIG_PACKAGE_curl=y 53 | CONFIG_PACKAGE_ddns-scripts=y 54 | CONFIG_PACKAGE_ddns-scripts_aliyun=y 55 | CONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y 56 | CONFIG_PACKAGE_ddns-scripts_cnkuai_cn=y 57 | CONFIG_PACKAGE_ddns-scripts_digitalocean.com-v2=y 58 | CONFIG_PACKAGE_ddns-scripts_dnspod=y 59 | CONFIG_PACKAGE_ddns-scripts_freedns_42_pl=y 60 | CONFIG_PACKAGE_ddns-scripts_godaddy.com-v1=y 61 | CONFIG_PACKAGE_ddns-scripts_no-ip_com=y 62 | CONFIG_PACKAGE_ddns-scripts_nsupdate=y 63 | CONFIG_PACKAGE_ddns-scripts_route53-v1=y 64 | CONFIG_PACKAGE_dns2socks=y 65 | CONFIG_PACKAGE_dns2tcp=y 66 | CONFIG_PACKAGE_frpc=y 67 | CONFIG_PACKAGE_frps=y 68 | CONFIG_PACKAGE_fuse-utils=y 69 | CONFIG_PACKAGE_giflib-utils=y 70 | CONFIG_PACKAGE_haproxy=y 71 | CONFIG_PACKAGE_hd-idle=y 72 | CONFIG_PACKAGE_htop=y 73 | CONFIG_PACKAGE_hysteria=y 74 | CONFIG_PACKAGE_ip-full=y 75 | CONFIG_PACKAGE_ip6tables=y 76 | CONFIG_PACKAGE_ip6tables-mod-nat=y 77 | CONFIG_PACKAGE_ipset=y 78 | CONFIG_PACKAGE_ipt2socks=y 79 | CONFIG_PACKAGE_iptables-mod-conntrack-extra=y 80 | CONFIG_PACKAGE_iptables-mod-extra=y 81 | CONFIG_PACKAGE_iptables-mod-iprange=y 82 | CONFIG_PACKAGE_iptables-mod-ipsec=y 83 | CONFIG_PACKAGE_iptables-mod-tproxy=y 84 | CONFIG_PACKAGE_ipv6helper=y 85 | CONFIG_PACKAGE_kcptun-client=y 86 | CONFIG_PACKAGE_kmod-crypto-acompress=y 87 | CONFIG_PACKAGE_kmod-crypto-cbc=y 88 | CONFIG_PACKAGE_kmod-crypto-ccm=y 89 | CONFIG_PACKAGE_kmod-crypto-cmac=y 90 | CONFIG_PACKAGE_kmod-crypto-ctr=y 91 | CONFIG_PACKAGE_kmod-crypto-cts=y 92 | CONFIG_PACKAGE_kmod-crypto-deflate=y 93 | CONFIG_PACKAGE_kmod-crypto-des=y 94 | CONFIG_PACKAGE_kmod-crypto-echainiv=y 95 | CONFIG_PACKAGE_kmod-crypto-hmac=y 96 | CONFIG_PACKAGE_kmod-crypto-kpp=y 97 | CONFIG_PACKAGE_kmod-crypto-lib-blake2s=y 98 | CONFIG_PACKAGE_kmod-crypto-lib-chacha20=y 99 | CONFIG_PACKAGE_kmod-crypto-lib-chacha20poly1305=y 100 | CONFIG_PACKAGE_kmod-crypto-lib-curve25519=y 101 | CONFIG_PACKAGE_kmod-crypto-lib-poly1305=y 102 | CONFIG_PACKAGE_kmod-crypto-md4=y 103 | CONFIG_PACKAGE_kmod-crypto-md5=y 104 | CONFIG_PACKAGE_kmod-crypto-rng=y 105 | CONFIG_PACKAGE_kmod-crypto-seqiv=y 106 | CONFIG_PACKAGE_kmod-crypto-sha512=y 107 | CONFIG_PACKAGE_kmod-dax=y 108 | CONFIG_PACKAGE_kmod-dm=y 109 | CONFIG_PACKAGE_kmod-dnsresolver=y 110 | CONFIG_PACKAGE_kmod-fs-btrfs=y 111 | CONFIG_PACKAGE_kmod-fs-cifs=y 112 | CONFIG_PACKAGE_kmod-fs-exportfs=y 113 | CONFIG_PACKAGE_kmod-fs-nfs=y 114 | CONFIG_PACKAGE_kmod-fs-nfs-common=y 115 | CONFIG_PACKAGE_kmod-fs-nfs-common-rpcsec=y 116 | CONFIG_PACKAGE_kmod-fs-nfs-v4=y 117 | CONFIG_PACKAGE_kmod-fs-nfsd=y 118 | CONFIG_PACKAGE_kmod-inet-diag=y 119 | CONFIG_PACKAGE_kmod-ip6tables=y 120 | CONFIG_PACKAGE_kmod-ipsec=y 121 | CONFIG_PACKAGE_kmod-ipsec4=y 122 | CONFIG_PACKAGE_kmod-ipsec6=y 123 | CONFIG_PACKAGE_kmod-ipt-conntrack-extra=y 124 | CONFIG_PACKAGE_kmod-ipt-extra=y 125 | CONFIG_PACKAGE_kmod-ipt-iprange=y 126 | CONFIG_PACKAGE_kmod-ipt-ipsec=y 127 | CONFIG_PACKAGE_kmod-ipt-nat6=y 128 | CONFIG_PACKAGE_kmod-ipt-tproxy=y 129 | CONFIG_PACKAGE_kmod-iptunnel=y 130 | CONFIG_PACKAGE_kmod-iptunnel4=y 131 | CONFIG_PACKAGE_kmod-iptunnel6=y 132 | CONFIG_PACKAGE_kmod-keys-encrypted=y 133 | CONFIG_PACKAGE_kmod-keys-trusted=y 134 | CONFIG_PACKAGE_kmod-lib-crc32c=y 135 | CONFIG_PACKAGE_kmod-lib-lzo=y 136 | CONFIG_PACKAGE_kmod-lib-raid6=y 137 | CONFIG_PACKAGE_kmod-lib-xor=y 138 | CONFIG_PACKAGE_kmod-lib-zlib-deflate=y 139 | CONFIG_PACKAGE_kmod-lib-zlib-inflate=y 140 | CONFIG_PACKAGE_kmod-lib-zstd=y 141 | # CONFIG_PACKAGE_kmod-mii is not set 142 | CONFIG_PACKAGE_kmod-nf-conntrack-netlink=y 143 | CONFIG_PACKAGE_kmod-nf-ipt6=y 144 | CONFIG_PACKAGE_kmod-nf-nat6=y 145 | CONFIG_PACKAGE_kmod-nf-reject6=y 146 | CONFIG_PACKAGE_kmod-r8168=y 147 | CONFIG_PACKAGE_kmod-random-core=y 148 | CONFIG_PACKAGE_kmod-sit=y 149 | CONFIG_PACKAGE_kmod-tpm=y 150 | CONFIG_PACKAGE_kmod-tun=y 151 | CONFIG_PACKAGE_kmod-udptunnel4=y 152 | CONFIG_PACKAGE_kmod-udptunnel6=y 153 | # CONFIG_PACKAGE_kmod-usb-net is not set 154 | # CONFIG_PACKAGE_kmod-usb-net-cdc-ncm is not set 155 | # CONFIG_PACKAGE_kmod-usb-net-rtl8152 is not set 156 | CONFIG_PACKAGE_kmod-usb-printer=y 157 | CONFIG_PACKAGE_kmod-wireguard=y 158 | CONFIG_PACKAGE_krb5-libs=y 159 | CONFIG_PACKAGE_libQt6Core=y 160 | CONFIG_PACKAGE_libQt6Network=y 161 | CONFIG_PACKAGE_libQt6Sql=y 162 | CONFIG_PACKAGE_libQt6Xml=y 163 | CONFIG_PACKAGE_libatomic=y 164 | CONFIG_PACKAGE_libattr=y 165 | CONFIG_PACKAGE_libbpf=y 166 | CONFIG_PACKAGE_libbz2=y 167 | CONFIG_PACKAGE_libcap=y 168 | CONFIG_PACKAGE_libcap-bin=y 169 | CONFIG_PACKAGE_libcap-bin-capsh-shell="/bin/sh" 170 | CONFIG_PACKAGE_libcares=y 171 | CONFIG_PACKAGE_libcurl=y 172 | CONFIG_PACKAGE_libdevmapper=y 173 | CONFIG_PACKAGE_libdouble-conversion=y 174 | CONFIG_PACKAGE_libelf=y 175 | CONFIG_PACKAGE_libev=y 176 | CONFIG_PACKAGE_libevent2=y 177 | CONFIG_PACKAGE_libffi=y 178 | CONFIG_PACKAGE_libfuse=y 179 | CONFIG_PACKAGE_libgdbm=y 180 | CONFIG_PACKAGE_libiconv-full=y 181 | CONFIG_PACKAGE_libipset=y 182 | CONFIG_PACKAGE_libkeyutils=y 183 | CONFIG_PACKAGE_libltdl=y 184 | CONFIG_PACKAGE_liblua5.3=y 185 | CONFIG_PACKAGE_liblzma=y 186 | CONFIG_PACKAGE_liblzo=y 187 | CONFIG_PACKAGE_libmaxminddb=y 188 | CONFIG_PACKAGE_libmbedtls=y 189 | CONFIG_PACKAGE_libminiupnpc=y 190 | CONFIG_PACKAGE_libmnl=y 191 | CONFIG_PACKAGE_libmount=y 192 | CONFIG_PACKAGE_libnatpmp=y 193 | CONFIG_PACKAGE_libnghttp2=y 194 | CONFIG_PACKAGE_libparted=y 195 | CONFIG_PACKAGE_libpcre=y 196 | CONFIG_PACKAGE_libpcre2-16=y 197 | CONFIG_PACKAGE_libpython3=y 198 | CONFIG_PACKAGE_libreadline=y 199 | CONFIG_PACKAGE_libruby=y 200 | CONFIG_PACKAGE_libsodium=y 201 | CONFIG_PACKAGE_libsqlite3=y 202 | CONFIG_PACKAGE_libstdcpp=y 203 | CONFIG_PACKAGE_libtirpc=y 204 | CONFIG_PACKAGE_libtorrent-rasterbar=y 205 | CONFIG_PACKAGE_libudns=y 206 | CONFIG_PACKAGE_libuv=y 207 | CONFIG_PACKAGE_libwebsockets-full=y 208 | CONFIG_PACKAGE_libwrap=y 209 | CONFIG_PACKAGE_libyaml=y 210 | CONFIG_PACKAGE_lsblk=y 211 | CONFIG_PACKAGE_lua-cjson=y 212 | CONFIG_PACKAGE_lua-maxminddb=y 213 | CONFIG_PACKAGE_luasocket=y 214 | CONFIG_PACKAGE_luci-app-adbyby-plus=y 215 | CONFIG_PACKAGE_luci-app-aliddns=y 216 | CONFIG_PACKAGE_luci-app-cifs-mount=y 217 | CONFIG_PACKAGE_luci-app-ddns=y 218 | CONFIG_PACKAGE_luci-app-diskman=y 219 | CONFIG_PACKAGE_luci-app-frpc=y 220 | CONFIG_PACKAGE_luci-app-frps=y 221 | CONFIG_PACKAGE_luci-app-hd-idle=y 222 | CONFIG_PACKAGE_luci-app-ipsec-vpnd=y 223 | CONFIG_PACKAGE_luci-app-nfs=y 224 | CONFIG_PACKAGE_luci-app-nlbwmon=y 225 | CONFIG_PACKAGE_luci-app-openclash=y 226 | CONFIG_PACKAGE_luci-app-openvpn-server=y 227 | CONFIG_PACKAGE_luci-app-passwall=y 228 | CONFIG_PACKAGE_luci-app-passwall_Transparent_Proxy=y 229 | CONFIG_PACKAGE_luci-app-qbittorrent=y 230 | CONFIG_PACKAGE_luci-app-rclone=y 231 | CONFIG_PACKAGE_luci-app-samba=y 232 | CONFIG_PACKAGE_luci-app-smartdns=y 233 | CONFIG_PACKAGE_luci-app-softethervpn=y 234 | CONFIG_PACKAGE_luci-app-ssr-plus=y 235 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Hysteria=y 236 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_IPT2Socks=y 237 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Kcptun=y 238 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_NaiveProxy=y 239 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Redsocks2=y 240 | # CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_SagerNet_Core is not set 241 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Trojan=y 242 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_V2ray_Plugin=y 243 | CONFIG_PACKAGE_luci-app-ssrserver-python=y 244 | CONFIG_PACKAGE_luci-app-transmission=y 245 | CONFIG_PACKAGE_luci-app-trojan-server=y 246 | CONFIG_PACKAGE_luci-app-ttyd=y 247 | CONFIG_PACKAGE_luci-app-upnp=y 248 | CONFIG_PACKAGE_luci-app-usb-printer=y 249 | CONFIG_PACKAGE_luci-app-uugamebooster=y 250 | CONFIG_PACKAGE_luci-app-vssr=y 251 | CONFIG_PACKAGE_luci-app-wireguard=y 252 | CONFIG_PACKAGE_luci-app-wrtbwmon=y 253 | CONFIG_PACKAGE_luci-app-zerotier=y 254 | CONFIG_PACKAGE_luci-compat=y 255 | CONFIG_PACKAGE_luci-i18n-adbyby-plus-zh-cn=y 256 | CONFIG_PACKAGE_luci-i18n-aliddns-zh-cn=y 257 | CONFIG_PACKAGE_luci-i18n-cifs-mount-zh-cn=y 258 | CONFIG_PACKAGE_luci-i18n-ddns-zh-cn=y 259 | CONFIG_PACKAGE_luci-i18n-diskman-zh-cn=y 260 | CONFIG_PACKAGE_luci-i18n-frpc-zh-cn=y 261 | CONFIG_PACKAGE_luci-i18n-frps-zh-cn=y 262 | CONFIG_PACKAGE_luci-i18n-hd-idle-zh-cn=y 263 | CONFIG_PACKAGE_luci-i18n-ipsec-vpnd-zh-cn=y 264 | CONFIG_PACKAGE_luci-i18n-nfs-zh-cn=y 265 | CONFIG_PACKAGE_luci-i18n-nlbwmon-zh-cn=y 266 | CONFIG_PACKAGE_luci-i18n-openvpn-server-zh-cn=y 267 | CONFIG_PACKAGE_luci-i18n-passwall-zh-cn=y 268 | CONFIG_PACKAGE_luci-i18n-qbittorrent-zh-cn=y 269 | CONFIG_PACKAGE_luci-i18n-rclone-zh-cn=y 270 | CONFIG_PACKAGE_luci-i18n-samba-zh-cn=y 271 | CONFIG_PACKAGE_luci-i18n-smartdns-zh-cn=y 272 | CONFIG_PACKAGE_luci-i18n-softethervpn-zh-cn=y 273 | CONFIG_PACKAGE_luci-i18n-ssr-plus-zh-cn=y 274 | CONFIG_PACKAGE_luci-i18n-ssrserver-python-zh-cn=y 275 | CONFIG_PACKAGE_luci-i18n-transmission-zh-cn=y 276 | CONFIG_PACKAGE_luci-i18n-trojan-server-zh-cn=y 277 | CONFIG_PACKAGE_luci-i18n-ttyd-zh-cn=y 278 | CONFIG_PACKAGE_luci-i18n-upnp-zh-cn=y 279 | CONFIG_PACKAGE_luci-i18n-usb-printer-zh-cn=y 280 | CONFIG_PACKAGE_luci-i18n-uugamebooster-zh-cn=y 281 | CONFIG_PACKAGE_luci-i18n-vssr-zh-cn=y 282 | CONFIG_PACKAGE_luci-i18n-wireguard-zh-cn=y 283 | CONFIG_PACKAGE_luci-i18n-wrtbwmon-zh-cn=y 284 | CONFIG_PACKAGE_luci-i18n-zerotier-zh-cn=y 285 | CONFIG_PACKAGE_luci-proto-ipv6=y 286 | CONFIG_PACKAGE_luci-proto-wireguard=y 287 | CONFIG_PACKAGE_microsocks=y 288 | CONFIG_PACKAGE_miniupnpd=y 289 | CONFIG_PACKAGE_mount-utils=y 290 | CONFIG_PACKAGE_naiveproxy=y 291 | CONFIG_PACKAGE_nano=y 292 | CONFIG_PACKAGE_nfs-kernel-server=y 293 | CONFIG_PACKAGE_nfs-kernel-server-utils=y 294 | CONFIG_PACKAGE_nfs-utils=y 295 | CONFIG_PACKAGE_nfs-utils-libs=y 296 | CONFIG_PACKAGE_nlbwmon=y 297 | CONFIG_PACKAGE_odhcp6c=y 298 | CONFIG_PACKAGE_odhcp6c_ext_cer_id=0 299 | CONFIG_PACKAGE_odhcpd-ipv6only=y 300 | CONFIG_PACKAGE_odhcpd_ipv6only_ext_cer_id=0 301 | CONFIG_PACKAGE_openssl-util=y 302 | CONFIG_PACKAGE_openvpn-easy-rsa=y 303 | CONFIG_PACKAGE_openvpn-openssl=y 304 | CONFIG_PACKAGE_p910nd=y 305 | CONFIG_PACKAGE_parted=y 306 | CONFIG_PACKAGE_python3=y 307 | CONFIG_PACKAGE_python3-asyncio=y 308 | CONFIG_PACKAGE_python3-base=y 309 | CONFIG_PACKAGE_python3-cgi=y 310 | CONFIG_PACKAGE_python3-cgitb=y 311 | CONFIG_PACKAGE_python3-codecs=y 312 | CONFIG_PACKAGE_python3-ctypes=y 313 | CONFIG_PACKAGE_python3-dbm=y 314 | CONFIG_PACKAGE_python3-decimal=y 315 | CONFIG_PACKAGE_python3-distutils=y 316 | CONFIG_PACKAGE_python3-email=y 317 | CONFIG_PACKAGE_python3-light=y 318 | CONFIG_PACKAGE_python3-logging=y 319 | CONFIG_PACKAGE_python3-lzma=y 320 | CONFIG_PACKAGE_python3-multiprocessing=y 321 | CONFIG_PACKAGE_python3-ncurses=y 322 | CONFIG_PACKAGE_python3-openssl=y 323 | CONFIG_PACKAGE_python3-pydoc=y 324 | CONFIG_PACKAGE_python3-readline=y 325 | CONFIG_PACKAGE_python3-sqlite3=y 326 | CONFIG_PACKAGE_python3-unittest=y 327 | CONFIG_PACKAGE_python3-urllib=y 328 | CONFIG_PACKAGE_python3-uuid=y 329 | CONFIG_PACKAGE_python3-xml=y 330 | CONFIG_PACKAGE_qBittorrent-Enhanced-Edition=y 331 | CONFIG_PACKAGE_qt6-plugin-libqopensslbackend=y 332 | CONFIG_PACKAGE_qt6-plugin-libqsqlite=y 333 | # CONFIG_PACKAGE_r8152-firmware is not set 334 | CONFIG_PACKAGE_rclone=y 335 | CONFIG_PACKAGE_rclone-config=y 336 | CONFIG_PACKAGE_rclone-ng=y 337 | CONFIG_PACKAGE_rclone-webui-react=y 338 | CONFIG_PACKAGE_redsocks2=y 339 | CONFIG_PACKAGE_resolveip=y 340 | CONFIG_PACKAGE_rpcbind=y 341 | CONFIG_PACKAGE_ruby=y 342 | CONFIG_PACKAGE_ruby-bigdecimal=y 343 | CONFIG_PACKAGE_ruby-date=y 344 | CONFIG_PACKAGE_ruby-digest=y 345 | CONFIG_PACKAGE_ruby-enc=y 346 | CONFIG_PACKAGE_ruby-forwardable=y 347 | CONFIG_PACKAGE_ruby-pstore=y 348 | CONFIG_PACKAGE_ruby-psych=y 349 | CONFIG_PACKAGE_ruby-stringio=y 350 | CONFIG_PACKAGE_ruby-strscan=y 351 | CONFIG_PACKAGE_ruby-yaml=y 352 | CONFIG_PACKAGE_sagernet-core=m 353 | CONFIG_PACKAGE_samba36-server=y 354 | CONFIG_PACKAGE_shadowsocks-libev-config=y 355 | CONFIG_PACKAGE_shadowsocks-libev-ss-local=y 356 | CONFIG_PACKAGE_shadowsocks-libev-ss-redir=y 357 | CONFIG_PACKAGE_shadowsocks-libev-ss-server=y 358 | CONFIG_PACKAGE_shadowsocks-rust-sslocal=y 359 | CONFIG_PACKAGE_shadowsocks-rust-ssserver=y 360 | CONFIG_PACKAGE_shadowsocksr-libev-ssr-check=y 361 | CONFIG_PACKAGE_shadowsocksr-libev-ssr-local=y 362 | CONFIG_PACKAGE_shadowsocksr-libev-ssr-redir=y 363 | CONFIG_PACKAGE_shadowsocksr-libev-ssr-server=y 364 | CONFIG_PACKAGE_simple-obfs-client=y 365 | CONFIG_PACKAGE_smartdns=y 366 | CONFIG_PACKAGE_smartmontools=y 367 | CONFIG_PACKAGE_softethervpn5-bridge=y 368 | CONFIG_PACKAGE_softethervpn5-client=y 369 | CONFIG_PACKAGE_softethervpn5-libs=y 370 | CONFIG_PACKAGE_softethervpn5-server=y 371 | CONFIG_PACKAGE_strongswan=y 372 | CONFIG_PACKAGE_strongswan-charon=y 373 | CONFIG_PACKAGE_strongswan-ipsec=y 374 | CONFIG_PACKAGE_strongswan-minimal=y 375 | CONFIG_PACKAGE_strongswan-mod-aes=y 376 | CONFIG_PACKAGE_strongswan-mod-gmp=y 377 | CONFIG_PACKAGE_strongswan-mod-hmac=y 378 | CONFIG_PACKAGE_strongswan-mod-kernel-libipsec=y 379 | CONFIG_PACKAGE_strongswan-mod-kernel-netlink=y 380 | CONFIG_PACKAGE_strongswan-mod-nonce=y 381 | CONFIG_PACKAGE_strongswan-mod-pubkey=y 382 | CONFIG_PACKAGE_strongswan-mod-random=y 383 | CONFIG_PACKAGE_strongswan-mod-sha1=y 384 | CONFIG_PACKAGE_strongswan-mod-socket-default=y 385 | CONFIG_PACKAGE_strongswan-mod-stroke=y 386 | CONFIG_PACKAGE_strongswan-mod-updown=y 387 | CONFIG_PACKAGE_strongswan-mod-x509=y 388 | CONFIG_PACKAGE_strongswan-mod-xauth-generic=y 389 | CONFIG_PACKAGE_strongswan-mod-xcbc=y 390 | CONFIG_PACKAGE_tcping=y 391 | CONFIG_PACKAGE_transmission-cli-openssl=y 392 | CONFIG_PACKAGE_transmission-daemon-openssl=y 393 | CONFIG_PACKAGE_transmission-remote-openssl=y 394 | CONFIG_PACKAGE_transmission-web-control=y 395 | CONFIG_PACKAGE_trojan=y 396 | CONFIG_PACKAGE_trojan-plus=y 397 | CONFIG_PACKAGE_ttyd=y 398 | CONFIG_PACKAGE_unzip=y 399 | # CONFIG_PACKAGE_urngd is not set 400 | CONFIG_PACKAGE_uugamebooster=y 401 | CONFIG_PACKAGE_v2ray-core=y 402 | CONFIG_PACKAGE_v2ray-plugin=y 403 | CONFIG_PACKAGE_wget-ssl=y 404 | CONFIG_PACKAGE_wireguard-tools=y 405 | CONFIG_PACKAGE_wsdd2=y 406 | CONFIG_PACKAGE_xray-core=y 407 | CONFIG_PACKAGE_xray-plugin=y 408 | CONFIG_PACKAGE_zerotier=y 409 | CONFIG_PACKAGE_zlib=y 410 | CONFIG_PARTED_READLINE=y 411 | CONFIG_RPCBIND_LIBWRAP=y 412 | CONFIG_RPCBIND_RMTCALLS=y 413 | CONFIG_SQLITE3_DYNAMIC_EXTENSIONS=y 414 | CONFIG_SQLITE3_ENABLE_COLUMN_METADATA=y 415 | CONFIG_SQLITE3_FTS3=y 416 | CONFIG_SQLITE3_FTS4=y 417 | CONFIG_SQLITE3_FTS5=y 418 | CONFIG_SQLITE3_JSON1=y 419 | CONFIG_SQLITE3_RTREE=y 420 | CONFIG_STRONGSWAN_ROUTING_TABLE="220" 421 | CONFIG_STRONGSWAN_ROUTING_TABLE_PRIO="220" 422 | CONFIG_TARGET_ROOTFS_PARTSIZE=1024 423 | CONFIG_boost-compile-visibility-hidden=y 424 | CONFIG_boost-runtime-shared=y 425 | CONFIG_boost-static-and-shared-libs=y 426 | CONFIG_boost-variant-release=y -------------------------------------------------------------------------------- /configs/r4s.config: -------------------------------------------------------------------------------- 1 | CONFIG_TARGET_rockchip=y 2 | CONFIG_TARGET_rockchip_armv8=y 3 | CONFIG_TARGET_rockchip_armv8_DEVICE_friendlyarm_nanopi-r4s=y 4 | CONFIG_BIND_ENABLE_DOH=y 5 | CONFIG_COREMARK_ENABLE_MULTITHREADING=y 6 | CONFIG_COREMARK_NUMBER_OF_THREADS=16 7 | CONFIG_COREMARK_OPTIMIZE_O3=y 8 | CONFIG_HTOP_LMSENSORS=y 9 | CONFIG_LIBCURL_COOKIES=y 10 | CONFIG_LIBCURL_CRYPTO_AUTH=y 11 | CONFIG_LIBCURL_FILE=y 12 | CONFIG_LIBCURL_FTP=y 13 | CONFIG_LIBCURL_HTTP=y 14 | CONFIG_LIBCURL_NGHTTP2=y 15 | CONFIG_LIBCURL_OPENSSL=y 16 | CONFIG_LIBCURL_PROXY=y 17 | CONFIG_LIBCURL_TFTP=y 18 | CONFIG_LIBCURL_THREADED_RESOLVER=y 19 | CONFIG_LIBCURL_TLS_SRP=y 20 | CONFIG_LIBCURL_UNIX_SOCKETS=y 21 | CONFIG_LIBMBEDTLS_HAVE_ARMV8CE_AES=y 22 | CONFIG_LIBSODIUM_MINIMAL=y 23 | CONFIG_NFS_KERNEL_SERVER_V4=y 24 | CONFIG_OPENVPN_openssl_ENABLE_DEF_AUTH=y 25 | CONFIG_OPENVPN_openssl_ENABLE_FRAGMENT=y 26 | CONFIG_OPENVPN_openssl_ENABLE_LZ4=y 27 | CONFIG_OPENVPN_openssl_ENABLE_LZO=y 28 | CONFIG_OPENVPN_openssl_ENABLE_MULTIHOME=y 29 | CONFIG_OPENVPN_openssl_ENABLE_PF=y 30 | CONFIG_OPENVPN_openssl_ENABLE_PORT_SHARE=y 31 | CONFIG_OPENVPN_openssl_ENABLE_SMALL=y 32 | CONFIG_PACKAGE_6in4=y 33 | CONFIG_PACKAGE_SAMBA_MAX_DEBUG_LEVEL=-1 34 | CONFIG_PACKAGE_adbyby=y 35 | CONFIG_PACKAGE_autosamba=y 36 | CONFIG_PACKAGE_bash=y 37 | CONFIG_PACKAGE_bind-client=y 38 | CONFIG_PACKAGE_bind-libs=y 39 | CONFIG_PACKAGE_blkid=y 40 | CONFIG_PACKAGE_boost=y 41 | CONFIG_PACKAGE_boost-date_time=y 42 | CONFIG_PACKAGE_boost-program_options=y 43 | CONFIG_PACKAGE_boost-system=y 44 | CONFIG_PACKAGE_btrfs-progs=y 45 | CONFIG_PACKAGE_ca-certificates=y 46 | CONFIG_PACKAGE_chinadns-ng=y 47 | CONFIG_PACKAGE_coremark=y 48 | CONFIG_PACKAGE_coreutils=y 49 | CONFIG_PACKAGE_coreutils-base64=y 50 | CONFIG_PACKAGE_coreutils-nohup=y 51 | CONFIG_PACKAGE_curl=y 52 | CONFIG_PACKAGE_ddns-scripts=y 53 | CONFIG_PACKAGE_ddns-scripts_aliyun=y 54 | CONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y 55 | CONFIG_PACKAGE_ddns-scripts_cnkuai_cn=y 56 | CONFIG_PACKAGE_ddns-scripts_digitalocean.com-v2=y 57 | CONFIG_PACKAGE_ddns-scripts_dnspod=y 58 | CONFIG_PACKAGE_ddns-scripts_freedns_42_pl=y 59 | CONFIG_PACKAGE_ddns-scripts_godaddy.com-v1=y 60 | CONFIG_PACKAGE_ddns-scripts_no-ip_com=y 61 | CONFIG_PACKAGE_ddns-scripts_nsupdate=y 62 | CONFIG_PACKAGE_ddns-scripts_route53-v1=y 63 | CONFIG_PACKAGE_dns2socks=y 64 | CONFIG_PACKAGE_dns2tcp=y 65 | CONFIG_PACKAGE_frpc=y 66 | CONFIG_PACKAGE_frps=y 67 | CONFIG_PACKAGE_fuse-utils=y 68 | CONFIG_PACKAGE_giflib-utils=y 69 | CONFIG_PACKAGE_haproxy=y 70 | CONFIG_PACKAGE_hd-idle=y 71 | CONFIG_PACKAGE_htop=y 72 | CONFIG_PACKAGE_hysteria=y 73 | CONFIG_PACKAGE_ip-full=y 74 | CONFIG_PACKAGE_ip6tables=y 75 | CONFIG_PACKAGE_ip6tables-mod-nat=y 76 | CONFIG_PACKAGE_ipset=y 77 | CONFIG_PACKAGE_ipt2socks=y 78 | CONFIG_PACKAGE_iptables-mod-conntrack-extra=y 79 | CONFIG_PACKAGE_iptables-mod-extra=y 80 | CONFIG_PACKAGE_iptables-mod-iprange=y 81 | CONFIG_PACKAGE_iptables-mod-ipsec=y 82 | CONFIG_PACKAGE_iptables-mod-tproxy=y 83 | CONFIG_PACKAGE_ipv6helper=y 84 | CONFIG_PACKAGE_kcptun-client=y 85 | CONFIG_PACKAGE_kmod-crypto-acompress=y 86 | CONFIG_PACKAGE_kmod-crypto-cbc=y 87 | CONFIG_PACKAGE_kmod-crypto-ccm=y 88 | CONFIG_PACKAGE_kmod-crypto-cmac=y 89 | CONFIG_PACKAGE_kmod-crypto-ctr=y 90 | CONFIG_PACKAGE_kmod-crypto-cts=y 91 | CONFIG_PACKAGE_kmod-crypto-deflate=y 92 | CONFIG_PACKAGE_kmod-crypto-des=y 93 | CONFIG_PACKAGE_kmod-crypto-echainiv=y 94 | CONFIG_PACKAGE_kmod-crypto-hmac=y 95 | CONFIG_PACKAGE_kmod-crypto-kpp=y 96 | CONFIG_PACKAGE_kmod-crypto-lib-blake2s=y 97 | CONFIG_PACKAGE_kmod-crypto-lib-chacha20=y 98 | CONFIG_PACKAGE_kmod-crypto-lib-chacha20poly1305=y 99 | CONFIG_PACKAGE_kmod-crypto-lib-curve25519=y 100 | CONFIG_PACKAGE_kmod-crypto-lib-poly1305=y 101 | CONFIG_PACKAGE_kmod-crypto-md4=y 102 | CONFIG_PACKAGE_kmod-crypto-md5=y 103 | CONFIG_PACKAGE_kmod-crypto-rng=y 104 | CONFIG_PACKAGE_kmod-crypto-seqiv=y 105 | CONFIG_PACKAGE_kmod-crypto-sha256=y 106 | CONFIG_PACKAGE_kmod-crypto-sha512=y 107 | CONFIG_PACKAGE_kmod-dax=y 108 | CONFIG_PACKAGE_kmod-dm=y 109 | CONFIG_PACKAGE_kmod-dnsresolver=y 110 | CONFIG_PACKAGE_kmod-fs-btrfs=y 111 | CONFIG_PACKAGE_kmod-fs-cifs=y 112 | CONFIG_PACKAGE_kmod-fs-exportfs=y 113 | CONFIG_PACKAGE_kmod-fs-nfs=y 114 | CONFIG_PACKAGE_kmod-fs-nfs-common=y 115 | CONFIG_PACKAGE_kmod-fs-nfs-common-rpcsec=y 116 | CONFIG_PACKAGE_kmod-fs-nfs-v4=y 117 | CONFIG_PACKAGE_kmod-fs-nfsd=y 118 | CONFIG_PACKAGE_kmod-inet-diag=y 119 | CONFIG_PACKAGE_kmod-ip6tables=y 120 | CONFIG_PACKAGE_kmod-ipsec=y 121 | CONFIG_PACKAGE_kmod-ipsec4=y 122 | CONFIG_PACKAGE_kmod-ipsec6=y 123 | CONFIG_PACKAGE_kmod-ipt-conntrack-extra=y 124 | CONFIG_PACKAGE_kmod-ipt-extra=y 125 | CONFIG_PACKAGE_kmod-ipt-iprange=y 126 | CONFIG_PACKAGE_kmod-ipt-ipsec=y 127 | CONFIG_PACKAGE_kmod-ipt-nat6=y 128 | CONFIG_PACKAGE_kmod-ipt-tproxy=y 129 | CONFIG_PACKAGE_kmod-iptunnel=y 130 | CONFIG_PACKAGE_kmod-iptunnel4=y 131 | CONFIG_PACKAGE_kmod-iptunnel6=y 132 | CONFIG_PACKAGE_kmod-keys-encrypted=y 133 | CONFIG_PACKAGE_kmod-keys-trusted=y 134 | CONFIG_PACKAGE_kmod-lib-crc32c=y 135 | CONFIG_PACKAGE_kmod-lib-lzo=y 136 | CONFIG_PACKAGE_kmod-lib-raid6=y 137 | CONFIG_PACKAGE_kmod-lib-xor=y 138 | CONFIG_PACKAGE_kmod-lib-zlib-deflate=y 139 | CONFIG_PACKAGE_kmod-lib-zlib-inflate=y 140 | CONFIG_PACKAGE_kmod-lib-zstd=y 141 | CONFIG_PACKAGE_kmod-nf-conntrack-netlink=y 142 | CONFIG_PACKAGE_kmod-nf-ipt6=y 143 | CONFIG_PACKAGE_kmod-nf-nat6=y 144 | CONFIG_PACKAGE_kmod-nf-reject6=y 145 | CONFIG_PACKAGE_kmod-random-core=y 146 | CONFIG_PACKAGE_kmod-sit=y 147 | CONFIG_PACKAGE_kmod-tpm=y 148 | CONFIG_PACKAGE_kmod-tun=y 149 | CONFIG_PACKAGE_kmod-udptunnel4=y 150 | CONFIG_PACKAGE_kmod-udptunnel6=y 151 | CONFIG_PACKAGE_kmod-usb-printer=y 152 | CONFIG_PACKAGE_kmod-wireguard=y 153 | CONFIG_PACKAGE_krb5-libs=y 154 | CONFIG_PACKAGE_libQt6Core=y 155 | CONFIG_PACKAGE_libQt6Network=y 156 | CONFIG_PACKAGE_libQt6Sql=y 157 | CONFIG_PACKAGE_libQt6Xml=y 158 | CONFIG_PACKAGE_libatomic=y 159 | CONFIG_PACKAGE_libattr=y 160 | CONFIG_PACKAGE_libbpf=y 161 | CONFIG_PACKAGE_libbz2=y 162 | CONFIG_PACKAGE_libcap=y 163 | CONFIG_PACKAGE_libcap-bin=y 164 | CONFIG_PACKAGE_libcap-bin-capsh-shell="/bin/sh" 165 | CONFIG_PACKAGE_libcares=y 166 | CONFIG_PACKAGE_libcurl=y 167 | CONFIG_PACKAGE_libdevmapper=y 168 | CONFIG_PACKAGE_libdouble-conversion=y 169 | CONFIG_PACKAGE_libelf=y 170 | CONFIG_PACKAGE_libev=y 171 | CONFIG_PACKAGE_libevent2=y 172 | CONFIG_PACKAGE_libffi=y 173 | CONFIG_PACKAGE_libfuse=y 174 | CONFIG_PACKAGE_libgdbm=y 175 | CONFIG_PACKAGE_libiconv-full=y 176 | CONFIG_PACKAGE_libipset=y 177 | CONFIG_PACKAGE_libkeyutils=y 178 | CONFIG_PACKAGE_libltdl=y 179 | CONFIG_PACKAGE_liblua5.3=y 180 | CONFIG_PACKAGE_liblzma=y 181 | CONFIG_PACKAGE_liblzo=y 182 | CONFIG_PACKAGE_libmaxminddb=y 183 | CONFIG_PACKAGE_libmbedtls=y 184 | CONFIG_PACKAGE_libminiupnpc=y 185 | CONFIG_PACKAGE_libmnl=y 186 | CONFIG_PACKAGE_libmount=y 187 | CONFIG_PACKAGE_libnatpmp=y 188 | CONFIG_PACKAGE_libnghttp2=y 189 | CONFIG_PACKAGE_libparted=y 190 | CONFIG_PACKAGE_libpcre=y 191 | CONFIG_PACKAGE_libpcre2-16=y 192 | CONFIG_PACKAGE_libpython3=y 193 | CONFIG_PACKAGE_libreadline=y 194 | CONFIG_PACKAGE_libruby=y 195 | CONFIG_PACKAGE_libsodium=y 196 | CONFIG_PACKAGE_libsqlite3=y 197 | CONFIG_PACKAGE_libstdcpp=y 198 | CONFIG_PACKAGE_libtirpc=y 199 | CONFIG_PACKAGE_libtorrent-rasterbar=y 200 | CONFIG_PACKAGE_libudns=y 201 | CONFIG_PACKAGE_libuv=y 202 | CONFIG_PACKAGE_libwebsockets-full=y 203 | CONFIG_PACKAGE_libwrap=y 204 | CONFIG_PACKAGE_libyaml=y 205 | CONFIG_PACKAGE_lsblk=y 206 | CONFIG_PACKAGE_lua-cjson=y 207 | CONFIG_PACKAGE_lua-maxminddb=y 208 | CONFIG_PACKAGE_luasocket=y 209 | CONFIG_PACKAGE_luci-app-adbyby-plus=y 210 | CONFIG_PACKAGE_luci-app-aliddns=y 211 | CONFIG_PACKAGE_luci-app-cifs-mount=y 212 | CONFIG_PACKAGE_luci-app-ddns=y 213 | CONFIG_PACKAGE_luci-app-diskman=y 214 | CONFIG_PACKAGE_luci-app-frpc=y 215 | CONFIG_PACKAGE_luci-app-frps=y 216 | CONFIG_PACKAGE_luci-app-hd-idle=y 217 | CONFIG_PACKAGE_luci-app-ipsec-vpnd=y 218 | CONFIG_PACKAGE_luci-app-nfs=y 219 | CONFIG_PACKAGE_luci-app-nlbwmon=y 220 | CONFIG_PACKAGE_luci-app-openclash=y 221 | CONFIG_PACKAGE_luci-app-openvpn-server=y 222 | CONFIG_PACKAGE_luci-app-passwall=y 223 | CONFIG_PACKAGE_luci-app-passwall_Transparent_Proxy=y 224 | CONFIG_PACKAGE_luci-app-qbittorrent=y 225 | CONFIG_PACKAGE_luci-app-rclone=y 226 | CONFIG_PACKAGE_luci-app-samba=y 227 | CONFIG_PACKAGE_luci-app-smartdns=y 228 | CONFIG_PACKAGE_luci-app-softethervpn=y 229 | CONFIG_PACKAGE_luci-app-ssr-plus=y 230 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Hysteria=y 231 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_IPT2Socks=y 232 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Kcptun=y 233 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_NaiveProxy=y 234 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Redsocks2=y 235 | # CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_SagerNet_Core is not set 236 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Trojan=y 237 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_V2ray_Plugin=y 238 | CONFIG_PACKAGE_luci-app-ssrserver-python=y 239 | CONFIG_PACKAGE_luci-app-transmission=y 240 | CONFIG_PACKAGE_luci-app-trojan-server=y 241 | CONFIG_PACKAGE_luci-app-ttyd=y 242 | CONFIG_PACKAGE_luci-app-upnp=y 243 | CONFIG_PACKAGE_luci-app-usb-printer=y 244 | CONFIG_PACKAGE_luci-app-uugamebooster=y 245 | CONFIG_PACKAGE_luci-app-vssr=y 246 | CONFIG_PACKAGE_luci-app-wireguard=y 247 | CONFIG_PACKAGE_luci-app-wrtbwmon=y 248 | CONFIG_PACKAGE_luci-app-zerotier=y 249 | CONFIG_PACKAGE_luci-compat=y 250 | CONFIG_PACKAGE_luci-i18n-adbyby-plus-zh-cn=y 251 | CONFIG_PACKAGE_luci-i18n-aliddns-zh-cn=y 252 | CONFIG_PACKAGE_luci-i18n-cifs-mount-zh-cn=y 253 | CONFIG_PACKAGE_luci-i18n-ddns-zh-cn=y 254 | CONFIG_PACKAGE_luci-i18n-diskman-zh-cn=y 255 | CONFIG_PACKAGE_luci-i18n-frpc-zh-cn=y 256 | CONFIG_PACKAGE_luci-i18n-frps-zh-cn=y 257 | CONFIG_PACKAGE_luci-i18n-hd-idle-zh-cn=y 258 | CONFIG_PACKAGE_luci-i18n-ipsec-vpnd-zh-cn=y 259 | CONFIG_PACKAGE_luci-i18n-nfs-zh-cn=y 260 | CONFIG_PACKAGE_luci-i18n-nlbwmon-zh-cn=y 261 | CONFIG_PACKAGE_luci-i18n-openvpn-server-zh-cn=y 262 | CONFIG_PACKAGE_luci-i18n-passwall-zh-cn=y 263 | CONFIG_PACKAGE_luci-i18n-qbittorrent-zh-cn=y 264 | CONFIG_PACKAGE_luci-i18n-rclone-zh-cn=y 265 | CONFIG_PACKAGE_luci-i18n-samba-zh-cn=y 266 | CONFIG_PACKAGE_luci-i18n-smartdns-zh-cn=y 267 | CONFIG_PACKAGE_luci-i18n-softethervpn-zh-cn=y 268 | CONFIG_PACKAGE_luci-i18n-ssr-plus-zh-cn=y 269 | CONFIG_PACKAGE_luci-i18n-ssrserver-python-zh-cn=y 270 | CONFIG_PACKAGE_luci-i18n-transmission-zh-cn=y 271 | CONFIG_PACKAGE_luci-i18n-trojan-server-zh-cn=y 272 | CONFIG_PACKAGE_luci-i18n-ttyd-zh-cn=y 273 | CONFIG_PACKAGE_luci-i18n-upnp-zh-cn=y 274 | CONFIG_PACKAGE_luci-i18n-usb-printer-zh-cn=y 275 | CONFIG_PACKAGE_luci-i18n-uugamebooster-zh-cn=y 276 | CONFIG_PACKAGE_luci-i18n-vssr-zh-cn=y 277 | CONFIG_PACKAGE_luci-i18n-wireguard-zh-cn=y 278 | CONFIG_PACKAGE_luci-i18n-wrtbwmon-zh-cn=y 279 | CONFIG_PACKAGE_luci-i18n-zerotier-zh-cn=y 280 | CONFIG_PACKAGE_luci-proto-ipv6=y 281 | CONFIG_PACKAGE_luci-proto-wireguard=y 282 | CONFIG_PACKAGE_microsocks=y 283 | CONFIG_PACKAGE_miniupnpd=y 284 | CONFIG_PACKAGE_mount-utils=y 285 | CONFIG_PACKAGE_naiveproxy=y 286 | CONFIG_PACKAGE_nano=y 287 | CONFIG_PACKAGE_nfs-kernel-server=y 288 | CONFIG_PACKAGE_nfs-kernel-server-utils=y 289 | CONFIG_PACKAGE_nfs-utils=y 290 | CONFIG_PACKAGE_nfs-utils-libs=y 291 | CONFIG_PACKAGE_nlbwmon=y 292 | CONFIG_PACKAGE_odhcp6c=y 293 | CONFIG_PACKAGE_odhcp6c_ext_cer_id=0 294 | CONFIG_PACKAGE_odhcpd-ipv6only=y 295 | CONFIG_PACKAGE_odhcpd_ipv6only_ext_cer_id=0 296 | CONFIG_PACKAGE_openssl-util=y 297 | CONFIG_PACKAGE_openvpn-easy-rsa=y 298 | CONFIG_PACKAGE_openvpn-openssl=y 299 | CONFIG_PACKAGE_p910nd=y 300 | CONFIG_PACKAGE_parted=y 301 | CONFIG_PACKAGE_python3=y 302 | CONFIG_PACKAGE_python3-asyncio=y 303 | CONFIG_PACKAGE_python3-base=y 304 | CONFIG_PACKAGE_python3-cgi=y 305 | CONFIG_PACKAGE_python3-cgitb=y 306 | CONFIG_PACKAGE_python3-codecs=y 307 | CONFIG_PACKAGE_python3-ctypes=y 308 | CONFIG_PACKAGE_python3-dbm=y 309 | CONFIG_PACKAGE_python3-decimal=y 310 | CONFIG_PACKAGE_python3-distutils=y 311 | CONFIG_PACKAGE_python3-email=y 312 | CONFIG_PACKAGE_python3-light=y 313 | CONFIG_PACKAGE_python3-logging=y 314 | CONFIG_PACKAGE_python3-lzma=y 315 | CONFIG_PACKAGE_python3-multiprocessing=y 316 | CONFIG_PACKAGE_python3-ncurses=y 317 | CONFIG_PACKAGE_python3-openssl=y 318 | CONFIG_PACKAGE_python3-pydoc=y 319 | CONFIG_PACKAGE_python3-readline=y 320 | CONFIG_PACKAGE_python3-sqlite3=y 321 | CONFIG_PACKAGE_python3-unittest=y 322 | CONFIG_PACKAGE_python3-urllib=y 323 | CONFIG_PACKAGE_python3-uuid=y 324 | CONFIG_PACKAGE_python3-xml=y 325 | CONFIG_PACKAGE_qBittorrent-Enhanced-Edition=y 326 | CONFIG_PACKAGE_qt6-plugin-libqopensslbackend=y 327 | CONFIG_PACKAGE_qt6-plugin-libqsqlite=y 328 | CONFIG_PACKAGE_rclone=y 329 | CONFIG_PACKAGE_rclone-config=y 330 | CONFIG_PACKAGE_rclone-ng=y 331 | CONFIG_PACKAGE_rclone-webui-react=y 332 | CONFIG_PACKAGE_redsocks2=y 333 | CONFIG_PACKAGE_resolveip=y 334 | CONFIG_PACKAGE_rpcbind=y 335 | CONFIG_PACKAGE_ruby=y 336 | CONFIG_PACKAGE_ruby-bigdecimal=y 337 | CONFIG_PACKAGE_ruby-date=y 338 | CONFIG_PACKAGE_ruby-digest=y 339 | CONFIG_PACKAGE_ruby-enc=y 340 | CONFIG_PACKAGE_ruby-forwardable=y 341 | CONFIG_PACKAGE_ruby-pstore=y 342 | CONFIG_PACKAGE_ruby-psych=y 343 | CONFIG_PACKAGE_ruby-stringio=y 344 | CONFIG_PACKAGE_ruby-strscan=y 345 | CONFIG_PACKAGE_ruby-yaml=y 346 | CONFIG_PACKAGE_sagernet-core=m 347 | CONFIG_PACKAGE_samba36-server=y 348 | CONFIG_PACKAGE_shadowsocks-libev-config=y 349 | CONFIG_PACKAGE_shadowsocks-libev-ss-local=y 350 | CONFIG_PACKAGE_shadowsocks-libev-ss-redir=y 351 | CONFIG_PACKAGE_shadowsocks-libev-ss-server=y 352 | CONFIG_PACKAGE_shadowsocks-rust-sslocal=y 353 | CONFIG_PACKAGE_shadowsocks-rust-ssserver=y 354 | CONFIG_PACKAGE_shadowsocksr-libev-ssr-check=y 355 | CONFIG_PACKAGE_shadowsocksr-libev-ssr-local=y 356 | CONFIG_PACKAGE_shadowsocksr-libev-ssr-redir=y 357 | CONFIG_PACKAGE_shadowsocksr-libev-ssr-server=y 358 | CONFIG_PACKAGE_simple-obfs-client=y 359 | CONFIG_PACKAGE_smartdns=y 360 | CONFIG_PACKAGE_smartmontools=y 361 | CONFIG_PACKAGE_softethervpn5-bridge=y 362 | CONFIG_PACKAGE_softethervpn5-client=y 363 | CONFIG_PACKAGE_softethervpn5-libs=y 364 | CONFIG_PACKAGE_softethervpn5-server=y 365 | CONFIG_PACKAGE_strongswan=y 366 | CONFIG_PACKAGE_strongswan-charon=y 367 | CONFIG_PACKAGE_strongswan-ipsec=y 368 | CONFIG_PACKAGE_strongswan-minimal=y 369 | CONFIG_PACKAGE_strongswan-mod-aes=y 370 | CONFIG_PACKAGE_strongswan-mod-gmp=y 371 | CONFIG_PACKAGE_strongswan-mod-hmac=y 372 | CONFIG_PACKAGE_strongswan-mod-kernel-libipsec=y 373 | CONFIG_PACKAGE_strongswan-mod-kernel-netlink=y 374 | CONFIG_PACKAGE_strongswan-mod-nonce=y 375 | CONFIG_PACKAGE_strongswan-mod-pubkey=y 376 | CONFIG_PACKAGE_strongswan-mod-random=y 377 | CONFIG_PACKAGE_strongswan-mod-sha1=y 378 | CONFIG_PACKAGE_strongswan-mod-socket-default=y 379 | CONFIG_PACKAGE_strongswan-mod-stroke=y 380 | CONFIG_PACKAGE_strongswan-mod-updown=y 381 | CONFIG_PACKAGE_strongswan-mod-x509=y 382 | CONFIG_PACKAGE_strongswan-mod-xauth-generic=y 383 | CONFIG_PACKAGE_strongswan-mod-xcbc=y 384 | CONFIG_PACKAGE_tcping=y 385 | CONFIG_PACKAGE_transmission-cli-openssl=y 386 | CONFIG_PACKAGE_transmission-daemon-openssl=y 387 | CONFIG_PACKAGE_transmission-remote-openssl=y 388 | CONFIG_PACKAGE_transmission-web-control=y 389 | CONFIG_PACKAGE_trojan=y 390 | CONFIG_PACKAGE_trojan-plus=y 391 | CONFIG_PACKAGE_ttyd=y 392 | CONFIG_PACKAGE_unzip=y 393 | CONFIG_PACKAGE_uugamebooster=y 394 | CONFIG_PACKAGE_v2ray-core=y 395 | CONFIG_PACKAGE_v2ray-plugin=y 396 | CONFIG_PACKAGE_wget-ssl=y 397 | CONFIG_PACKAGE_wireguard-tools=y 398 | CONFIG_PACKAGE_wsdd2=y 399 | CONFIG_PACKAGE_xray-core=y 400 | CONFIG_PACKAGE_xray-plugin=y 401 | CONFIG_PACKAGE_zerotier=y 402 | CONFIG_PACKAGE_zlib=y 403 | CONFIG_PARTED_READLINE=y 404 | CONFIG_RPCBIND_LIBWRAP=y 405 | CONFIG_RPCBIND_RMTCALLS=y 406 | CONFIG_SQLITE3_DYNAMIC_EXTENSIONS=y 407 | CONFIG_SQLITE3_ENABLE_COLUMN_METADATA=y 408 | CONFIG_SQLITE3_FTS3=y 409 | CONFIG_SQLITE3_FTS4=y 410 | CONFIG_SQLITE3_FTS5=y 411 | CONFIG_SQLITE3_JSON1=y 412 | CONFIG_SQLITE3_RTREE=y 413 | CONFIG_STRONGSWAN_ROUTING_TABLE="220" 414 | CONFIG_STRONGSWAN_ROUTING_TABLE_PRIO="220" 415 | CONFIG_TARGET_ROOTFS_PARTSIZE=1024 416 | CONFIG_boost-compile-visibility-hidden=y 417 | CONFIG_boost-runtime-shared=y 418 | CONFIG_boost-static-and-shared-libs=y 419 | CONFIG_boost-variant-release=y -------------------------------------------------------------------------------- /configs/x86_64.config: -------------------------------------------------------------------------------- 1 | CONFIG_TARGET_x86=y 2 | CONFIG_TARGET_x86_64=y 3 | CONFIG_TARGET_x86_64_DEVICE_generic=y 4 | CONFIG_ARIA2_BITTORRENT=y 5 | CONFIG_ARIA2_NOXML=y 6 | CONFIG_ARIA2_OPENSSL=y 7 | CONFIG_ARIA2_WEBSOCKET=y 8 | CONFIG_BIND_ENABLE_DOH=y 9 | CONFIG_OPENVPN_openssl_ENABLE_DEF_AUTH=y 10 | CONFIG_OPENVPN_openssl_ENABLE_FRAGMENT=y 11 | CONFIG_OPENVPN_openssl_ENABLE_LZ4=y 12 | CONFIG_OPENVPN_openssl_ENABLE_LZO=y 13 | CONFIG_OPENVPN_openssl_ENABLE_MULTIHOME=y 14 | CONFIG_OPENVPN_openssl_ENABLE_PF=y 15 | CONFIG_OPENVPN_openssl_ENABLE_PORT_SHARE=y 16 | CONFIG_OPENVPN_openssl_ENABLE_SMALL=y 17 | CONFIG_PACKAGE_6in4=y 18 | CONFIG_PACKAGE_aria2=y 19 | CONFIG_PACKAGE_ariang=y 20 | CONFIG_PACKAGE_bind-client=y 21 | CONFIG_PACKAGE_bind-libs=y 22 | CONFIG_PACKAGE_boost=y 23 | CONFIG_PACKAGE_boost-date_time=y 24 | CONFIG_PACKAGE_boost-program_options=y 25 | CONFIG_PACKAGE_boost-system=y 26 | CONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y 27 | CONFIG_PACKAGE_ddns-scripts_freedns_42_pl=y 28 | CONFIG_PACKAGE_ddns-scripts_godaddy.com-v1=y 29 | CONFIG_PACKAGE_ddns-scripts_no-ip_com=y 30 | CONFIG_PACKAGE_ddns-scripts_nsupdate=y 31 | CONFIG_PACKAGE_ddns-scripts_route53-v1=y 32 | CONFIG_PACKAGE_frpc=y 33 | CONFIG_PACKAGE_frps=y 34 | CONFIG_PACKAGE_fuse-utils=y 35 | CONFIG_PACKAGE_hd-idle=y 36 | CONFIG_PACKAGE_hysteria=y 37 | CONFIG_PACKAGE_ip6tables=y 38 | CONFIG_PACKAGE_ipt2socks=y 39 | CONFIG_PACKAGE_ipv6helper=y 40 | CONFIG_PACKAGE_kcptun-client=y 41 | CONFIG_PACKAGE_kcptun-config=y 42 | CONFIG_PACKAGE_kmod-fuse=y 43 | CONFIG_PACKAGE_kmod-ipt-nat6=y 44 | CONFIG_PACKAGE_kmod-ipt-offload=y 45 | CONFIG_PACKAGE_kmod-iptunnel=y 46 | CONFIG_PACKAGE_kmod-l2tp=y 47 | CONFIG_PACKAGE_kmod-nf-flow=y 48 | CONFIG_PACKAGE_kmod-nf-nat6=y 49 | CONFIG_PACKAGE_kmod-pppol2tp=y 50 | # CONFIG_PACKAGE_kmod-shortcut-fe is not set 51 | # CONFIG_PACKAGE_kmod-shortcut-fe-cm is not set 52 | CONFIG_PACKAGE_kmod-sit=y 53 | CONFIG_PACKAGE_kmod-usb-printer=y 54 | CONFIG_PACKAGE_libatomic=y 55 | CONFIG_PACKAGE_libbz2=y 56 | CONFIG_PACKAGE_libdb47=y 57 | CONFIG_PACKAGE_libevent2=y 58 | CONFIG_PACKAGE_libffi=y 59 | CONFIG_PACKAGE_libfuse=y 60 | CONFIG_PACKAGE_libgdbm=y 61 | CONFIG_PACKAGE_liblzma=y 62 | CONFIG_PACKAGE_liblzo=y 63 | CONFIG_PACKAGE_libnghttp2=y 64 | CONFIG_PACKAGE_libpython3=y 65 | CONFIG_PACKAGE_libsqlite3=y 66 | CONFIG_PACKAGE_luci-app-aria2=y 67 | CONFIG_PACKAGE_luci-app-frpc=y 68 | CONFIG_PACKAGE_luci-app-frps=y 69 | CONFIG_PACKAGE_luci-app-hd-idle=y 70 | CONFIG_PACKAGE_luci-app-ipsec-server=y 71 | # CONFIG_PACKAGE_luci-app-ipsec-vpnd is not set 72 | CONFIG_PACKAGE_luci-app-nps=y 73 | CONFIG_PACKAGE_luci-app-openvpn-server=y 74 | CONFIG_PACKAGE_luci-app-qbittorrent=y 75 | CONFIG_PACKAGE_luci-app-rclone=y 76 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Hysteria=y 77 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_IPT2Socks=y 78 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Kcptun=y 79 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_NaiveProxy=y 80 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Redsocks2=y 81 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Shadowsocks_Libev_Client=y 82 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Shadowsocks_Rust_Client=y 83 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Shadowsocks_Rust_Server=y 84 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Trojan=y 85 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_V2ray_Plugin=y 86 | CONFIG_PACKAGE_luci-app-ssrserver-python=y 87 | CONFIG_PACKAGE_luci-app-transmission=y 88 | CONFIG_PACKAGE_luci-app-turboacc_INCLUDE_OFFLOADING=y 89 | # CONFIG_PACKAGE_luci-app-turboacc_INCLUDE_SHORTCUT_FE is not set 90 | CONFIG_PACKAGE_luci-app-usb-printer=y 91 | CONFIG_PACKAGE_luci-app-uugamebooster=y 92 | CONFIG_PACKAGE_luci-app-v2ray-server=y 93 | CONFIG_PACKAGE_luci-app-wrtbwmon=y 94 | # CONFIG_PACKAGE_luci-app-xlnetacc is not set 95 | CONFIG_PACKAGE_luci-i18n-aria2-zh-cn=y 96 | CONFIG_PACKAGE_luci-i18n-frpc-zh-cn=y 97 | CONFIG_PACKAGE_luci-i18n-frps-zh-cn=y 98 | CONFIG_PACKAGE_luci-i18n-hd-idle-zh-cn=y 99 | CONFIG_PACKAGE_luci-i18n-ipsec-server-zh-cn=y 100 | CONFIG_PACKAGE_luci-i18n-nps-zh-cn=y 101 | CONFIG_PACKAGE_luci-i18n-openvpn-server-zh-cn=y 102 | CONFIG_PACKAGE_luci-i18n-qbittorrent-zh-cn=y 103 | CONFIG_PACKAGE_luci-i18n-rclone-zh-cn=y 104 | CONFIG_PACKAGE_luci-i18n-ssrserver-python-zh-cn=y 105 | CONFIG_PACKAGE_luci-i18n-transmission-zh-cn=y 106 | CONFIG_PACKAGE_luci-i18n-usb-printer-zh-cn=y 107 | CONFIG_PACKAGE_luci-i18n-uugamebooster-zh-cn=y 108 | CONFIG_PACKAGE_luci-i18n-v2ray-server-zh-cn=y 109 | CONFIG_PACKAGE_luci-i18n-wrtbwmon-zh-cn=y 110 | CONFIG_PACKAGE_luci-proto-ipv6=y 111 | CONFIG_PACKAGE_naiveproxy=y 112 | CONFIG_PACKAGE_nano=y 113 | CONFIG_PACKAGE_npc=y 114 | CONFIG_PACKAGE_odhcp6c=y 115 | CONFIG_PACKAGE_odhcp6c_ext_cer_id=0 116 | CONFIG_PACKAGE_odhcpd-ipv6only=y 117 | CONFIG_PACKAGE_odhcpd_ipv6only_ext_cer_id=0 118 | CONFIG_PACKAGE_openvpn-easy-rsa=y 119 | CONFIG_PACKAGE_openvpn-openssl=y 120 | CONFIG_PACKAGE_p910nd=y 121 | CONFIG_PACKAGE_ppp-mod-pppol2tp=y 122 | CONFIG_PACKAGE_python3=y 123 | CONFIG_PACKAGE_python3-asyncio=y 124 | CONFIG_PACKAGE_python3-base=y 125 | CONFIG_PACKAGE_python3-cgi=y 126 | CONFIG_PACKAGE_python3-cgitb=y 127 | CONFIG_PACKAGE_python3-codecs=y 128 | CONFIG_PACKAGE_python3-ctypes=y 129 | CONFIG_PACKAGE_python3-dbm=y 130 | CONFIG_PACKAGE_python3-decimal=y 131 | CONFIG_PACKAGE_python3-distutils=y 132 | CONFIG_PACKAGE_python3-email=y 133 | CONFIG_PACKAGE_python3-gdbm=y 134 | CONFIG_PACKAGE_python3-light=y 135 | CONFIG_PACKAGE_python3-logging=y 136 | CONFIG_PACKAGE_python3-lzma=y 137 | CONFIG_PACKAGE_python3-multiprocessing=y 138 | CONFIG_PACKAGE_python3-ncurses=y 139 | CONFIG_PACKAGE_python3-openssl=y 140 | CONFIG_PACKAGE_python3-pydoc=y 141 | CONFIG_PACKAGE_python3-readline=y 142 | CONFIG_PACKAGE_python3-sqlite3=y 143 | CONFIG_PACKAGE_python3-unittest=y 144 | CONFIG_PACKAGE_python3-urllib=y 145 | CONFIG_PACKAGE_python3-xml=y 146 | CONFIG_PACKAGE_qBittorrent-static=y 147 | CONFIG_PACKAGE_rclone=y 148 | CONFIG_PACKAGE_rclone-config=y 149 | CONFIG_PACKAGE_rclone-ng=y 150 | CONFIG_PACKAGE_rclone-webui-react=y 151 | CONFIG_PACKAGE_redsocks2=y 152 | CONFIG_PACKAGE_shadowsocks-libev-ss-local=y 153 | CONFIG_PACKAGE_shadowsocks-libev-ss-redir=y 154 | CONFIG_PACKAGE_shadowsocks-rust-sslocal=y 155 | CONFIG_PACKAGE_shadowsocks-rust-ssserver=y 156 | CONFIG_PACKAGE_strongswan-mod-openssl=y 157 | CONFIG_PACKAGE_transmission-daemon-openssl=y 158 | CONFIG_PACKAGE_transmission-web-control=y 159 | CONFIG_PACKAGE_trojan=y 160 | CONFIG_PACKAGE_unzip=y 161 | CONFIG_PACKAGE_uugamebooster=y 162 | CONFIG_PACKAGE_v2ray-plugin=y 163 | CONFIG_PACKAGE_xl2tpd=y 164 | CONFIG_SQLITE3_DYNAMIC_EXTENSIONS=y 165 | CONFIG_SQLITE3_FTS3=y 166 | CONFIG_SQLITE3_FTS4=y 167 | CONFIG_SQLITE3_FTS5=y 168 | CONFIG_SQLITE3_JSON1=y 169 | CONFIG_SQLITE3_RTREE=y 170 | CONFIG_TARGET_ROOTFS_PARTSIZE=1024 171 | CONFIG_boost-compile-visibility-hidden=y 172 | CONFIG_boost-runtime-shared=y 173 | CONFIG_boost-static-and-shared-libs=y 174 | CONFIG_boost-variant-release=y -------------------------------------------------------------------------------- /images/openwrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurokosama/AutoBuild-OpenWRT/cac2e3c03e03e62be18d3b914a5749e0b6c52752/images/openwrt.png -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kurokosama/AutoBuild-OpenWRT/cac2e3c03e03e62be18d3b914a5749e0b6c52752/images/screenshot.png --------------------------------------------------------------------------------