├── CNAME ├── usign ├── keys └── 5e99c2573f29d764 ├── friendlywrt_source.sh ├── init_env.sh ├── add_packages_to_lean.sh ├── README.md ├── .github └── workflows │ └── packages.yml └── packages.seed /CNAME: -------------------------------------------------------------------------------- 1 | nanopi-r2s-opkg-feeds.songchenwen.com -------------------------------------------------------------------------------- /usign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songchenwen/nanopi-r2s-opkg-feeds/HEAD/usign -------------------------------------------------------------------------------- /keys/5e99c2573f29d764: -------------------------------------------------------------------------------- 1 | untrusted comment: public key 5e99c2573f29d764 2 | RWRemcJXPynXZMcLzBZMTPYoxJd5Ath1Ial7XpXb+2nXwo9AhrEQ+a9l -------------------------------------------------------------------------------- /friendlywrt_source.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | mkdir friendlywrt-rk3328 3 | cd friendlywrt-rk3328 4 | repo init -u https://github.com/friendlyarm/friendlywrt_manifests -b master-v19.07.1 -m rk3328.xml --repo-url=https://github.com/friendlyarm/repo --no-clone-bundle --depth=1 5 | repo sync -c --no-tags --no-clone-bundle -j8 6 | -------------------------------------------------------------------------------- /init_env.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | sudo rm -rf /etc/apt/sources.list.d 3 | sudo apt-get update 4 | sudo apt-get -y --no-install-recommends install build-essential asciidoc binutils bzip2 gawk gettext git libncurses5-dev libz-dev patch python3 unzip zlib1g-dev lib32gcc1 libc6-dev-i386 subversion flex uglifyjs gcc-multilib g++-multilib p7zip p7zip-full msmtp libssl-dev texinfo libglib2.0-dev xmlto qemu-utils upx libelf-dev autoconf automake libtool autopoint device-tree-compiler antlr3 jq 5 | curl https://raw.githubusercontent.com/friendlyarm/build-env-on-ubuntu-bionic/master/install.sh | sed '/#/d' | sed 's/\\//g' | sed 's/exit 0//g' | sed 's/sudo apt -y install//g' | sed 's/sudo apt-get -y install//g' | sed 's/:i386//g' | xargs sudo apt-get -y --no-install-recommends install 6 | sudo rm -rf /usr/share/dotnet /usr/local/lib/android/sdk 7 | sudo docker image prune -a -f 8 | 9 | git clone https://github.com/friendlyarm/repo 10 | sudo cp repo/repo /usr/bin/ 11 | -------------------------------------------------------------------------------- /add_packages_to_lean.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | cd friendlywrt-rk3328/friendlywrt 3 | cd package/lean/ 4 | rm -rf luci-theme-argon 5 | pwd 6 | git clone -b 18.06 --depth 1 https://github.com/jerrykuku/luci-theme-argon.git 7 | cd .. 8 | 9 | pwd 10 | git clone --depth 1 https://github.com/rufengsuixing/luci-app-adguardhome.git 11 | 12 | pwd 13 | git clone --depth 1 https://github.com/tty228/luci-app-serverchan.git 14 | 15 | git clone --depth 1 -b master https://github.com/vernesong/OpenClash.git 16 | mv OpenClash/luci-app-openclash/ ./ 17 | rm -rf OpenClash/ 18 | 19 | git clone --depth 1 https://github.com/fw876/helloworld.git 20 | 21 | git clone --depth 1 https://github.com/songchenwen/nanopi-r2s.git 22 | cp -r nanopi-r2s/luci-app-r2sflasher ./ 23 | rm -rf nanopi-r2s 24 | pwd 25 | ls 26 | 27 | cd .. 28 | pwd 29 | echo "src-git scw https://github.com/songchenwen/openwrt-package" >> feeds.conf.default 30 | echo "src-git xwrt https://github.com/x-wrt/com.x-wrt" >> feeds.conf.default 31 | 32 | echo "feeds.conf.default" 33 | cat feeds.conf.default 34 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NanoPi R2S 专用软件源 2 | 3 | ![packages](https://github.com/songchenwen/nanopi-r2s-opkg-feeds/workflows/packages/badge.svg) 4 | 5 | [看看都包含哪些包](https://github.com/songchenwen/nanopi-r2s-opkg-feeds/tree/master/packages) 6 | 7 | ---------------- 8 | 9 | ## 添加软件源 10 | 11 | 在 `软件包 - 配置 - 自定义软件源` 中添加如下一行 12 | 13 | ~~~ 14 | src/gz songchenwen https://nanopi-r2s-opkg-feeds.songchenwen.com/packages/ 15 | ~~~ 16 | 17 | ## 添加签名公钥 18 | 19 | ssh 进路由器 执行 20 | 21 | ~~~ 22 | mkdir -p /etc/opkg/keys; wget -qO /etc/opkg/keys/5e99c2573f29d764 "https://nanopi-r2s-opkg-feeds.songchenwen.com/keys/5e99c2573f29d764" 23 | ~~~ 24 | 25 | 或禁用签名检查,在 `软件包 - 配置` 中删掉这一行 `option check_signature 1` 26 | 27 | ## 已集成固件 28 | 29 | - [songchenwen/nanopi-r2s](https://github.com/songchenwen/nanopi-r2s) 30 | 31 | ---------------- 32 | 33 | [欢迎 PR 和 issue](https://github.com/songchenwen/nanopi-r2s-opkg-feeds) 34 | 35 | 改动 [packages.seed](https://github.com/songchenwen/nanopi-r2s-opkg-feeds/blob/src/packages.seed)。参考其它行的格式,为你想要加的包添加一行,并提交 PR。只要编译能通过我都会合并。 36 | 37 | 如果你要的包当前 Feeds 里没有,可以对 [add_packages_to_lean.sh](https://github.com/songchenwen/nanopi-r2s-opkg-feeds/blob/src/add_packages_to_lean.sh) 进行改动来添加。 38 | -------------------------------------------------------------------------------- /.github/workflows/packages.yml: -------------------------------------------------------------------------------- 1 | name: packages 2 | 3 | 4 | on: 5 | repository_dispatch: 6 | push: 7 | branches: 8 | - src 9 | paths: 10 | - '.github/workflows/packages.yml' 11 | - 'packages.seed' 12 | - '*.sh' 13 | pull_request: 14 | branches: 15 | - src 16 | schedule: 17 | - cron: '0 17 * * 1' 18 | 19 | jobs: 20 | build: 21 | runs-on: ubuntu-latest 22 | 23 | steps: 24 | - name: Setup timezone 25 | uses: zcong1993/setup-timezone@master 26 | with: 27 | timezone: Asia/Shanghai 28 | 29 | - name: Checkout 30 | uses: actions/checkout@master 31 | with: 32 | ref: src 33 | fetch-depth: 0 34 | 35 | - name: Save Private Key 36 | if: github.event_name == 'push' 37 | run: | 38 | echo 'untrusted comment: private key 5e99c2573f29d764' > private.key 39 | echo "${{ secrets.private_key }}" >> private.key 40 | 41 | - name: Init Env 42 | env: 43 | DEBIAN_FRONTEND: noninteractive 44 | run: | 45 | . init_env.sh 46 | 47 | - name: Friendlywrt Source 48 | run: | 49 | . friendlywrt_source.sh 50 | 51 | - name: Change Feeds to Lean 52 | run: | 53 | cd friendlywrt-rk3328 54 | git clone https://github.com/coolsnowwolf/lede 55 | cd friendlywrt 56 | cp -r ../lede/package/lean package/ 57 | sed -i 's/^src-git luci.*/src-git luci https:\/\/github.com\/coolsnowwolf\/luci/' feeds.conf.default 58 | sed -i 's/^src-git packages.*/src-git packages https:\/\/github.com\/coolsnowwolf\/packages/' feeds.conf.default 59 | 60 | - name: Add Packages to Lean 61 | run: | 62 | . add_packages_to_lean.sh 63 | 64 | - name: Install Openwrt Libs 65 | run: | 66 | git config --global user.email "action@github.com" && git config --global user.name "GitHub Action" 67 | cd friendlywrt-rk3328 68 | git clone https://github.com/openwrt/openwrt 69 | rm -rf friendlywrt/package/libs 70 | cp -r openwrt/package/libs friendlywrt/package/ 71 | 72 | - name: Use Chuck's Kernel 73 | run: | 74 | cd friendlywrt-rk3328 75 | rm -rf kernel 76 | git clone --depth=1 https://github.com/fanck0605/friendlywrt-kernel.git kernel 77 | cd openwrt 78 | ./scripts/patch-kernel.sh ../kernel target/linux/generic/backport-5.4 79 | ./scripts/patch-kernel.sh ../kernel target/linux/generic/pending-5.4 80 | ./scripts/patch-kernel.sh ../kernel target/linux/generic/hack-5.4 81 | ./scripts/patch-kernel.sh ../kernel target/linux/octeontx/patches-5.4 82 | cp -a ./target/linux/generic/files/* ../kernel/ 83 | cd ../kernel 84 | wget -O net/netfilter/xt_FULLCONENAT.c https://raw.githubusercontent.com/Chion82/netfilter-full-cone-nat/master/xt_FULLCONENAT.c 85 | wget -O ../fullcone_nat.patch https://github.com/fanck0605/nanopi-r2s/raw/openwrt-lienol/patches/001-kernel-add-full_cone_nat.patch 86 | git apply ../fullcone_nat.patch 87 | 88 | - name: Update Feeds 89 | run: | 90 | cd friendlywrt-rk3328/friendlywrt 91 | ./scripts/feeds update -a 92 | ./scripts/feeds install -a 93 | 94 | - name: Install UPX 95 | run: | 96 | mkdir -p friendlywrt-rk3328/friendlywrt/staging_dir/host/bin/ 97 | ln -s /usr/bin/upx-ucl friendlywrt-rk3328/friendlywrt/staging_dir/host/bin/upx 98 | 99 | - name: Update Target.mk 100 | run: | 101 | cd friendlywrt-rk3328/friendlywrt/include 102 | sed -i 's/dnsmasq /dnsmasq-full default-settings luci /' target.mk 103 | 104 | - name: Build Config 105 | run: | 106 | cd friendlywrt-rk3328 107 | cat configs/config_rk3328 | grep "TARGET" > ../rk3328.config 108 | cat ../packages.seed >> ../rk3328.config 109 | cat ../rk3328.config > configs/config_rk3328 110 | cat configs/config_rk3328 111 | 112 | - name: Clean src 113 | run: | 114 | cd friendlywrt-rk3328 115 | rm -rf lede 116 | rm -rf openwrt 117 | 118 | - name: Add usign 119 | run: | 120 | mkdir -p friendlywrt-rk3328/friendlywrt/staging_dir/host/bin/ 121 | sudo chmod a+x usign 122 | cp usign friendlywrt-rk3328/friendlywrt/staging_dir/host/bin/ 123 | sudo mv usign /usr/bin/ 124 | 125 | - name: Build Friendlywrt 126 | env: 127 | IGNORE_ERRORS: 1 128 | run: | 129 | cd friendlywrt-rk3328 130 | ./build.sh nanopi_r2s.mk 131 | 132 | - name: Collect Packages 133 | run: | 134 | cd friendlywrt-rk3328 135 | mkdir -p packagerepo/packages 136 | mv friendlywrt/bin/packages/aarch64_cortex-a53/*/*.ipk packagerepo/packages/ 137 | mv friendlywrt/bin/targets/rockchip-rk3328/generic/packages/*.ipk packagerepo/packages/ 138 | cat -s friendlywrt/bin/packages/aarch64_cortex-a53/*/Packages > packagerepo/packages/Packages 139 | cat -s friendlywrt/bin/targets/rockchip-rk3328/generic/packages/Packages >> packagerepo/packages/Packages 140 | cat -s friendlywrt/bin/packages/aarch64_cortex-a53/*/Packages.manifest > packagerepo/packages/Packages.manifest 141 | cat -s friendlywrt/bin/targets/rockchip-rk3328/generic/packages/Packages.manifest >> packagerepo/packages/Packages.manifest 142 | cd packagerepo/packages/ 143 | gzip -k Packages 144 | ls *.ipk 145 | 146 | - name: Sign Packages 147 | if: github.event_name == 'push' 148 | run: | 149 | cd friendlywrt-rk3328 150 | cd packagerepo/packages 151 | usign -S -m Packages -s ../../../private.key -x Packages.sig 152 | 153 | - name: Push Changes 154 | if: github.event_name == 'push' 155 | run: | 156 | cd friendlywrt-rk3328/packagerepo 157 | mkdir keys 158 | cp ../../keys/* keys/ 159 | cp ../../README.md ./ 160 | cp ../../README.md ./packages/ 161 | cp ../../CNAME ./ 162 | git init 163 | git add . 164 | git commit -m "Depoly at $(date +%Y-%m-%d)" 165 | git push -f "https://${{ secrets.sec_token }}@github.com/songchenwen/nanopi-r2s-opkg-feeds.git" master:master 166 | -------------------------------------------------------------------------------- /packages.seed: -------------------------------------------------------------------------------- 1 | CONFIG_AUTOREMOVE=y 2 | CONFIG_BUILD_PATENTED=y 3 | CONFIG_BRCMFMAC_SDIO=y 4 | CONFIG_IMAGEOPT=y 5 | CONFIG_KERNEL_AIO=y 6 | CONFIG_JSON_ADD_IMAGE_INFO=y 7 | CONFIG_KERNEL_ARM_PMU=y 8 | CONFIG_KERNEL_BLK_CGROUP=y 9 | CONFIG_KERNEL_BLK_DEV_THROTTLING=y 10 | CONFIG_KERNEL_BTRFS_FS_POSIX_ACL=y 11 | CONFIG_KERNEL_KALLSYMS=y 12 | CONFIG_KERNEL_PERF_EVENTS=y 13 | CONFIG_KERNEL_CGROUPS=y 14 | CONFIG_KERNEL_CGROUP_CPUACCT=y 15 | CONFIG_KERNEL_CGROUP_DEVICE=y 16 | CONFIG_KERNEL_CGROUP_FREEZER=y 17 | CONFIG_KERNEL_CGROUP_PIDS=y 18 | CONFIG_KERNEL_CGROUP_SCHED=y 19 | CONFIG_KERNEL_MEMCG=y 20 | CONFIG_KERNEL_MEMCG_KMEM=y 21 | CONFIG_KERNEL_MM_OWNER=y 22 | CONFIG_KERNEL_NETPRIO_CGROUP=y 23 | CONFIG_KERNEL_NET_CLS_CGROUP=y 24 | CONFIG_KERNEL_CPUSETS=y 25 | CONFIG_KERNEL_FAIR_GROUP_SCHED=y 26 | CONFIG_KERNEL_FANOTIFY=y 27 | CONFIG_KERNEL_FHANDLE=y 28 | CONFIG_KERNEL_FREEZER=y 29 | CONFIG_KERNEL_RESOURCE_COUNTERS=y 30 | CONFIG_KERNEL_RT_GROUP_SCHED=y 31 | CONFIG_LUCI_LANG_en=y 32 | CONFIG_LUCI_LANG_zh-cn=y 33 | CONFIG_LUCI_LANG_zh-tw=y 34 | CONFIG_PACKAGE_libustream-openssl=y 35 | CONFIG_PACKAGE_ca-bundle=y 36 | CONFIG_PACKAGE_ca-certificates=y 37 | CONFIG_PACKAGE_bash=y 38 | CONFIG_PACKAGE_wget=y 39 | CONFIG_PACKAGE_triggerhappy=y 40 | CONFIG_PACKAGE_uboot-envtools=y 41 | CONFIG_PACKAGE_usb-modeswitch=y 42 | CONFIG_PACKAGE_kmod-mmc=y 43 | CONFIG_PACKAGE_kmod-ikconfig=y 44 | CONFIG_PACKAGE_kmod-tun=y 45 | CONFIG_PACKAGE_kmod-usb-net=y 46 | CONFIG_PACKAGE_kmod-usb-net-rtl8150=y 47 | CONFIG_PACKAGE_kmod-usb-net-rtl8152=y 48 | CONFIG_PACKAGE_iw=y 49 | CONFIG_PACKAGE_iwinfo=y 50 | CONFIG_PACKAGE_hostapd=y 51 | CONFIG_PACKAGE_hostapd-basic=y 52 | CONFIG_PACKAGE_hostapd-utils=y 53 | CONFIG_PACKAGE_wpad=y 54 | CONFIG_PACKAGE_wpad-mini=y 55 | CONFIG_PACKAGE_wpa-supplicant=y 56 | CONFIG_DRIVER_11N_SUPPORT=y 57 | CONFIG_DRIVER_11AC_SUPPORT=y 58 | CONFIG_DRIVER_11W_SUPPORT=y 59 | CONFIG_PACKAGE_kmod-brcmfmac=y 60 | CONFIG_PACKAGE_kmod-cfg80211=y 61 | CONFIG_PACKAGE_ipv6helper=y 62 | CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y 63 | CONFIG_OPENSSL_ENGINE_BUILTIN=y 64 | CONFIG_OPENSSL_ENGINE_BUILTIN_AFALG=y 65 | CONFIG_OPENSSL_OPTIMIZE_SPEED=y 66 | CONFIG_OPENSSL_WITH_DTLS=y 67 | CONFIG_OPENSSL_WITH_EC2M=y 68 | CONFIG_OPENSSL_WITH_NPN=y 69 | # CONFIG_OPENSSL_ENGINE_BUILTIN_DEVCRYPTO is not set 70 | # CONFIG_PACKAGE_kmod-cryptodev is not set 71 | # CONFIG_PACKAGE_libopenssl-devcrypto is not set 72 | CONFIG_LIBSODIUM_MINIMAL=y 73 | CONFIG_PACKAGE_collectd-mod-thermal=y 74 | CONFIG_PACKAGE_collectd-mod-uptime=y 75 | CONFIG_PACKAGE_collectd-mod-wireless=y 76 | CONFIG_PACKAGE_collectd=y 77 | CONFIG_PACKAGE_curl=y 78 | CONFIG_PACKAGE_lrzsz=y 79 | CONFIG_PACKAGE_nano=y 80 | CONFIG_PACKAGE_bash=y 81 | CONFIG_PACKAGE_resolveip=y 82 | CONFIG_PACKAGE_sudo=y 83 | CONFIG_PACKAGE_tcping=y 84 | CONFIG_PACKAGE_autocore=y 85 | CONFIG_PACKAGE_htop=y 86 | CONFIG_PACKAGE_diffutils=y 87 | CONFIG_PACKAGE_vim-fuller=y 88 | CONFIG_PACKAGE_pv=y 89 | CONFIG_PACKAGE_pigz=y 90 | CONFIG_PACKAGE_unzip=y 91 | CONFIG_PACKAGE_ethtool=y 92 | CONFIG_PACKAGE_coreutils-nohup=y 93 | CONFIG_PACKAGE_coreutils-timeout=y 94 | CONFIG_PACKAGE_luci-app-opkg=y 95 | CONFIG_PACKAGE_iptables-mod-extra=y 96 | CONFIG_PACKAGE_kmod-ipt-extra=y 97 | CONFIG_PACKAGE_libltdl=y 98 | CONFIG_PACKAGE_losetup=y 99 | CONFIG_PACKAGE_zstd=y 100 | CONFIG_PACKAGE_brook=y 101 | CONFIG_PACKAGE_zlib=y 102 | CONFIG_PACKAGE_chinadns-ng=y 103 | CONFIG_PACKAGE_haproxy=y 104 | CONFIG_PACKAGE_kcptun-client=y 105 | CONFIG_PACKAGE_luci-app-upnp=y 106 | CONFIG_PACKAGE_luci-app-accesscontrol=y 107 | CONFIG_PACKAGE_luci-app-arpbind=y 108 | CONFIG_PACKAGE_luci-app-autoreboot=y 109 | CONFIG_PACKAGE_luci-app-ddns=y 110 | CONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y 111 | CONFIG_PACKAGE_luci-app-filetransfer=y 112 | CONFIG_PACKAGE_luci-app-firewall=y 113 | CONFIG_PACKAGE_luci-app-ramfree=y 114 | CONFIG_PACKAGE_luci-app-netdata=y 115 | CONFIG_PACKAGE_luci-app-vlmcsd=y 116 | CONFIG_PACKAGE_luci-app-wol=y 117 | CONFIG_PACKAGE_luci-app-wrtbwmon=y 118 | CONFIG_PACKAGE_luci-app-serverchan=y 119 | CONFIG_PACKAGE_luci-app-fileassistant=y 120 | CONFIG_PACKAGE_luci-app-r2sflasher=y 121 | CONFIG_PACKAGE_luci-app-passwall=y 122 | CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Brook=y 123 | CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Shadowsocks=y 124 | CONFIG_PACKAGE_luci-app-passwall_INCLUDE_ShadowsocksR_socks=y 125 | CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Shadowsocks_socks=y 126 | CONFIG_PACKAGE_luci-app-passwall_INCLUDE_Trojan=y 127 | CONFIG_PACKAGE_luci-app-passwall_INCLUDE_kcptun=y 128 | CONFIG_PACKAGE_luci-app-passwall_INCLUDE_simple-obfs=y 129 | CONFIG_PACKAGE_luci-app-passwall_INCLUDE_v2ray-plugin=y 130 | CONFIG_PACKAGE_luci-app-ssr-plus=y 131 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Kcptun=y 132 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Redsocks2=y 133 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_ShadowsocksR_Server=y 134 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_Trojan=y 135 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_V2ray=y 136 | CONFIG_PACKAGE_luci-app-ssr-plus_INCLUDE_V2ray_plugin=y 137 | CONFIG_PACKAGE_v2ray-plugin=y 138 | CONFIG_PACKAGE_v2ray=y 139 | # CONFIG_V2RAY_COMPRESS_GOPROXY is not set 140 | # CONFIG_V2RAY_JSON_V2CTL is not set 141 | CONFIG_V2RAY_JSON_INTERNAL=y 142 | # CONFIG_V2RAY_JSON_NONE is not set 143 | CONFIG_V2RAY_EXCLUDE_V2CTL=y 144 | CONFIG_V2RAY_EXCLUDE_ASSETS=y 145 | # CONFIG_V2RAY_COMPRESS_UPX is not set 146 | CONFIG_V2RAY_DISABLE_NONE=y 147 | # CONFIG_V2RAY_DISABLE_CUSTOM is not set 148 | CONFIG_PACKAGE_luci-app-adguardhome=y 149 | CONFIG_PACKAGE_luci-theme-argon=y 150 | CONFIG_PACKAGE_luci-theme-argon-dark-mod=y 151 | CONFIG_PACKAGE_luci-app-adbyby-plus=y 152 | CONFIG_PACKAGE_luci-app-aria2=y 153 | CONFIG_PACKAGE_ddns-scripts_aliyun=y 154 | CONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y 155 | CONFIG_PACKAGE_luci-app-frpc=y 156 | CONFIG_PACKAGE_luci-app-samba=y 157 | CONFIG_PACKAGE_autosamba=y 158 | CONFIG_PACKAGE_wsdd2=y 159 | CONFIG_PACKAGE_luci-app-unblockmusic=y 160 | CONFIG_UnblockNeteaseMusic_Go=y 161 | CONFIG_UnblockNeteaseMusic_NodeJS=y 162 | CONFIG_PACKAGE_luci-app-zerotier=y 163 | CONFIG_PACKAGE_luci-app-wireguard=y 164 | 165 | CONFIG_PACKAGE_luci-app-acme=m 166 | CONFIG_PACKAGE_luci-app-adblock=m 167 | CONFIG_PACKAGE_luci-app-amule=m 168 | CONFIG_PACKAGE_luci-app-baidupcs-web=m 169 | CONFIG_PACKAGE_luci-app-brook-server=m 170 | CONFIG_PACKAGE_luci-app-commands=m 171 | CONFIG_PACKAGE_luci-app-control-timewol=m 172 | CONFIG_PACKAGE_luci-app-control-webrestriction=m 173 | CONFIG_PACKAGE_luci-app-control-weburl=m 174 | CONFIG_PACKAGE_luci-app-filebrowser=m 175 | CONFIG_PACKAGE_luci-app-flowoffload=m 176 | CONFIG_PACKAGE_luci-app-frps=m 177 | CONFIG_PACKAGE_luci-app-guest-wifi=m 178 | CONFIG_PACKAGE_luci-app-haproxy-tcp=m 179 | CONFIG_PACKAGE_luci-app-ipsec-vpnd=m 180 | CONFIG_PACKAGE_luci-app-ipsec-vpnserver-manyusers=m 181 | CONFIG_PACKAGE_luci-app-kcptun=m 182 | CONFIG_PACKAGE_luci-app-kodexplorer=m 183 | CONFIG_PACKAGE_luci-app-lxc=m 184 | CONFIG_PACKAGE_luci-app-minidlna=m 185 | CONFIG_PACKAGE_luci-app-mwan3=m 186 | CONFIG_PACKAGE_luci-app-mwan3helper=m 187 | CONFIG_PACKAGE_luci-app-n2n_v2=m 188 | CONFIG_PACKAGE_luci-app-nfs=m 189 | CONFIG_PACKAGE_luci-app-nft-qos=m 190 | CONFIG_PACKAGE_luci-app-nlbwmon=m 191 | CONFIG_PACKAGE_luci-app-noddos=m 192 | CONFIG_PACKAGE_luci-app-dockerman=m 193 | CONFIG_PACKAGE_luci-app-pppoe-relay=m 194 | CONFIG_PACKAGE_luci-app-pppoe-server=m 195 | CONFIG_PACKAGE_luci-app-privoxy=m 196 | CONFIG_PACKAGE_luci-app-qbittorrent=m 197 | CONFIG_PACKAGE_luci-app-qos=m 198 | CONFIG_PACKAGE_luci-app-rp-pppoe-server=m 199 | CONFIG_PACKAGE_luci-app-shadowsocks-libev=m 200 | CONFIG_PACKAGE_luci-app-simple-adblock=m 201 | CONFIG_PACKAGE_luci-app-statistics=m 202 | CONFIG_PACKAGE_luci-app-syncdial=m 203 | CONFIG_PACKAGE_luci-app-syncthing=m 204 | CONFIG_PACKAGE_luci-app-timecontrol=m 205 | CONFIG_PACKAGE_luci-app-tinyproxy=m 206 | CONFIG_PACKAGE_luci-app-transmission=m 207 | CONFIG_PACKAGE_luci-app-ttyd=m 208 | CONFIG_PACKAGE_luci-app-udpxy=m 209 | CONFIG_PACKAGE_luci-app-unbound=m 210 | CONFIG_PACKAGE_luci-app-v2ray-server=m 211 | CONFIG_PACKAGE_luci-app-verysync=m 212 | CONFIG_PACKAGE_luci-app-vpnbypass=m 213 | CONFIG_PACKAGE_luci-app-watchcat=m 214 | CONFIG_PACKAGE_luci-app-webadmin=m 215 | CONFIG_PACKAGE_luci-app-wifischedule=m 216 | CONFIG_PACKAGE_luci-app-xlnetacc=m 217 | CONFIG_PACKAGE_luci-app-openclash=m 218 | 219 | CONFIG_PACKAGE_python=m 220 | CONFIG_PACKAGE_python3=m 221 | 222 | CONFIG_PACKAGE_screen=m 223 | CONFIG_PACKAGE_git=m 224 | --------------------------------------------------------------------------------