From de3ca00f4af211bc2867204ad3229e05c0caf8e8 Mon Sep 17 00:00:00 2001 From: John Doe Date: Fri, 27 Aug 2021 11:01:23 +0800 Subject: [PATCH] tidy config lines --- .github/workflows/lo-test.yml | 10 ++-- common.seed | 69 +++++++++++++++++++++++++ extra_packages.seed | 26 +++++----- r1p.config.seed | 68 ------------------------ r1s-h3.config.seed | 97 +++++++++++------------------------ r1s.config.seed | 68 ------------------------ r2c.config.seed | 68 ------------------------ r2s.config.seed | 68 ------------------------ r4s.config.seed | 68 ------------------------ x86.config.seed | 69 +------------------------ 10 files changed, 117 insertions(+), 494 deletions(-) create mode 100644 common.seed diff --git a/.github/workflows/lo-test.yml b/.github/workflows/lo-test.yml index 879bbdb..dc44c8c 100644 --- a/.github/workflows/lo-test.yml +++ b/.github/workflows/lo-test.yml @@ -79,7 +79,7 @@ jobs: - name: Custom configure file run: | cd ~/lede - cat $GITHUB_WORKSPACE/$DEVICE.config.seed | sed 's/\(CONFIG_PACKAGE_luci-app-[^A-Z]*=\)y/\1m/' > .config + cat $GITHUB_WORKSPACE/$DEVICE.config.seed $GITHUB_WORKSPACE/common.seed | sed 's/\(CONFIG_PACKAGE_luci-app-[^A-Z]*=\)y/\1m/' > .config find package/ -type d -name luci-app-* | rev | cut -d'/' -f1 | rev | xargs -n1 -i echo CONFIG_PACKAGE_{}=m >> .config cat $GITHUB_WORKSPACE/extra_packages.seed >> .config cat more_luci.txt >> .config @@ -201,7 +201,7 @@ jobs: sed -i '/luci-lib-base/d;/luci-lib-ipkg/d' include/target.mk sed -i 's/luci-app-[^ ]*//g' include/target.mk $(find target/ -name Makefile) sed -i 's/$(OPKG) install $(BUILD_PACKAGES)/$(OPKG) install --force-overwrite $(BUILD_PACKAGES)/' Makefile - PACKAGES=$(cd packages; cat $GITHUB_WORKSPACE/$DEVICE.config.seed | grep CONFIG_PACKAGE | sed 's/CONFIG_PACKAGE_//;s/=y//' | xargs -n1 -i sh -c 'ls {}* 2>/dev/null' | grep -v luci-app | sed 's/\([^_]*\)_.*ipk/\1/g' | xargs echo) + PACKAGES=$(cd packages; cat $GITHUB_WORKSPACE/$DEVICE.config.seed $GITHUB_WORKSPACE/common.seed | grep CONFIG_PACKAGE | sed 's/CONFIG_PACKAGE_//;s/=y//' | xargs -n1 -i sh -c 'ls {}* 2>/dev/null' | grep -v luci-app | sed 's/\([^_]*\)_.*ipk/\1/g' | xargs echo) make image PACKAGES="$PACKAGES $LUCI $LP luci-i18n-base-zh-cn luci-i18n-firewall-zh-cn" FILES="files" mkdir -p $GITHUB_WORKSPACE/release @@ -246,8 +246,8 @@ jobs: sed -i '/luci-lib-base/d;/luci-lib-ipkg/d' include/target.mk sed -i 's/luci-app-[^ ]*//g' include/target.mk $(find target/ -name Makefile) sed -i 's/$(OPKG) install $(BUILD_PACKAGES)/$(OPKG) install --force-overwrite $(BUILD_PACKAGES)/' Makefile - PACKAGES=$(cd packages; cat $GITHUB_WORKSPACE/$DEVICE.config.seed | grep CONFIG_PACKAGE | sed 's/CONFIG_PACKAGE_//;s/=y//' | xargs -n1 -i sh -c 'ls {}* 2>/dev/null' | grep -v luci-app | sed 's/\([^_]*\)_.*ipk/\1/g' | xargs echo) - LUCI=$(cd packages; cat $GITHUB_WORKSPACE/$DEVICE.config.seed | grep luci-app | sed 's/CONFIG_PACKAGE_//;s/=y//' | xargs -n1 -i sh -c 'ls {}* 2>/dev/null' | grep -v docker | sed 's/\([^_]*\)_.*ipk/\1/g' | xargs echo) + PACKAGES=$(cd packages; cat $GITHUB_WORKSPACE/$DEVICE.config.seed $GITHUB_WORKSPACE/common.seed | grep CONFIG_PACKAGE | sed 's/CONFIG_PACKAGE_//;s/=y//' | xargs -n1 -i sh -c 'ls {}* 2>/dev/null' | grep -v luci-app | sed 's/\([^_]*\)_.*ipk/\1/g' | xargs echo) + LUCI=$(cd packages; cat $GITHUB_WORKSPACE/$DEVICE.config.seed $GITHUB_WORKSPACE/common.seed | grep luci-app | sed 's/CONFIG_PACKAGE_//;s/=y//' | xargs -n1 -i sh -c 'ls {}* 2>/dev/null' | grep -v docker | sed 's/\([^_]*\)_.*ipk/\1/g' | xargs echo) LP=$(cd packages; echo $LUCI | sed 's/-app-/-i18n-/g;s/ /\n/g' | xargs -n1 -i sh -c 'ls {}-zh-cn* 2>/dev/null' | sed 's/zh-.*.ipk/zh-cn/' | xargs echo) make image PACKAGES="$PACKAGES $LUCI $LP luci-i18n-base-zh-cn luci-i18n-firewall-zh-cn" FILES="files" @@ -263,7 +263,7 @@ jobs: fi cd $GITHUB_WORKSPACE/ib rm -rf bin/ - LUCI=$(cd packages; cat $GITHUB_WORKSPACE/$DEVICE.config.seed | grep luci-app | sed 's/CONFIG_PACKAGE_//;s/=y//' | xargs -n1 -i sh -c 'ls {}* 2>/dev/null' | sed 's/\([^_]*\)_.*ipk/\1/g' | xargs echo) + LUCI=$(cd packages; cat $GITHUB_WORKSPACE/$DEVICE.config.seed $GITHUB_WORKSPACE/common.seed | grep luci-app | sed 's/CONFIG_PACKAGE_//;s/=y//' | xargs -n1 -i sh -c 'ls {}* 2>/dev/null' | sed 's/\([^_]*\)_.*ipk/\1/g' | xargs echo) LP=$(cd packages; echo $LUCI | sed 's/-app-/-i18n-/g;s/ /\n/g' | xargs -n1 -i sh -c 'ls {}-zh-cn* 2>/dev/null' | sed 's/zh-.*.ipk/zh-cn/' | xargs echo) make image PACKAGES="$PACKAGES $LUCI $LP luci-i18n-base-zh-cn luci-i18n-firewall-zh-cn" FILES="files" mv $(ls -1 ./bin/targets/*/*/*img.gz | head -1) $GITHUB_WORKSPACE/release/$DEVICE-with-docker.img.gz diff --git a/common.seed b/common.seed new file mode 100644 index 0000000..2c2ba0c --- /dev/null +++ b/common.seed @@ -0,0 +1,69 @@ +CONFIG_CCACHE=y +CONFIG_IB_STANDALONE=y +CONFIG_IB=y +CONFIG_TARGET_OPTIONS=y +CONFIG_TARGET_ROOTFS_EXT4FS=y +# CONFIG_TARGET_ROOTFS_SQUASHFS is not set +# CONFIG_OPENSSL_ENGINE_BUILTIN_AFALG is not set +# CONFIG_OPENSSL_ENGINE_BUILTIN_DEVCRYPTO is not set +# CONFIG_SIGNED_PACKAGES is not set +CONFIG_DROPBEAR_ECC_FULL=y +CONFIG_DROPBEAR_ECC=y +CONFIG_PACKAGE_luci-app-adguardhome=y +CONFIG_PACKAGE_luci-app-argon-config=y +CONFIG_PACKAGE_luci-app-aria2=y +CONFIG_PACKAGE_luci-app-arpbind=y +CONFIG_PACKAGE_luci-app-cpufreq=y +CONFIG_PACKAGE_luci-app-ddns=y +CONFIG_PACKAGE_luci-app-diskman=y +CONFIG_PACKAGE_luci-app-filetransfer=y +CONFIG_PACKAGE_luci-app-frpc=y +CONFIG_PACKAGE_luci-app-jd-dailybonus=y +CONFIG_PACKAGE_luci-app-ksmbd=y +CONFIG_PACKAGE_luci-app-openvpn=y +CONFIG_PACKAGE_luci-app-serverchan=y +CONFIG_PACKAGE_luci-app-services-wolplus=y +CONFIG_PACKAGE_luci-app-smartdns=y +CONFIG_PACKAGE_luci-app-ssr-plus=y +CONFIG_PACKAGE_luci-app-tencentddns=y +CONFIG_PACKAGE_luci-app-ttyd=y +CONFIG_PACKAGE_luci-app-turboacc_INCLUDE_shortcut-fe=y +CONFIG_PACKAGE_luci-app-turboacc=y +CONFIG_PACKAGE_luci-app-unblockmusic=y +CONFIG_PACKAGE_luci-app-upnp=y +CONFIG_PACKAGE_luci-app-usb-printer=y +CONFIG_PACKAGE_luci-app-vlmcsd=y +CONFIG_PACKAGE_luci-app-vnstat=y +CONFIG_PACKAGE_luci-app-vsftpd=y +CONFIG_PACKAGE_luci-app-xlnetacc=y +CONFIG_PACKAGE_luci-theme-argonv3=y +CONFIG_PACKAGE_luci-theme-bootstrap=y +CONFIG_PACKAGE_luci-theme-infinityfreedom=y +CONFIG_PACKAGE_luci-theme-material=y +CONFIG_PACKAGE_luci-theme-netgear=y +CONFIG_PACKAGE_luci-theme-rosy=y +CONFIG_PACKAGE_bash=y +CONFIG_PACKAGE_coremark=y +CONFIG_PACKAGE_coreutils-truncate=y +CONFIG_PACKAGE_curl=y +CONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y +CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y +CONFIG_PACKAGE_fdisk=y +CONFIG_PACKAGE_htop=y +CONFIG_PACKAGE_iperf3=y +CONFIG_PACKAGE_iptables-mod-conntrack-extra=y +CONFIG_PACKAGE_iptables-mod-ipopt=y +CONFIG_PACKAGE_iptables-mod-tproxy=y +CONFIG_PACKAGE_ipv6helper=y +CONFIG_PACKAGE_kmod-fast-classifier=y +CONFIG_PACKAGE_kmod-ipt-offload=y +CONFIG_PACKAGE_kmod-pppol2tp=y +CONFIG_PACKAGE_kmod-tcp-bbr=y +CONFIG_PACKAGE_kmod-zram=y +CONFIG_PACKAGE_ksmbd-utils=y +CONFIG_PACKAGE_losetup=y +CONFIG_PACKAGE_pv=y +CONFIG_PACKAGE_resize2fs=y +CONFIG_PACKAGE_sfdisk=y +CONFIG_PACKAGE_usb-modeswitch=y +CONFIG_PACKAGE_wget=y \ No newline at end of file diff --git a/extra_packages.seed b/extra_packages.seed index 453f2cc..6c94d11 100644 --- a/extra_packages.seed +++ b/extra_packages.seed @@ -1,19 +1,19 @@ +CONFIG_DEFAULT_SETTINGS_OPTIMIZE_FOR_CHINESE=y +CONFIG_PACKAGE_kmod-ebtables-ipv6=m +CONFIG_PACKAGE_kmod-usb2=m +CONFIG_PACKAGE_kmod-usb3=m +CONFIG_PACKAGE_kmod-usb-net-asix-ax88179=m +CONFIG_PACKAGE_kmod-usb-net-rndis=m +CONFIG_PACKAGE_luci-app-openvpn=m +CONFIG_PACKAGE_luci-app-udpxy=m +CONFIG_PACKAGE_luci-app-wireguard=m +CONFIG_PACKAGE_luci-proto-bonding=m +CONFIG_PACKAGE_luci-proto-openconnect=m +CONFIG_PACKAGE_ebtables=m CONFIG_PACKAGE_fstrim=m CONFIG_PACKAGE_igmpproxy=m CONFIG_PACKAGE_node-npm=m CONFIG_PACKAGE_smartmontools-drivedb=m -CONFIG_PACKAGE_ebtables=m -CONFIG_PACKAGE_kmod-ebtables-ipv6=m -CONFIG_PACKAGE_kmod-usb-net-rndis=m -CONFIG_PACKAGE_kmod-usb-net-asix-ax88179=m -CONFIG_PACKAGE_kmod-usb2=m -CONFIG_PACKAGE_kmod-usb3=m CONFIG_PACKAGE_usbutils=m CONFIG_PACKAGE_xl2tpd=m -CONFIG_PACKAGE_zram-swap=m -CONFIG_PACKAGE_luci-proto-openconnect=m -CONFIG_PACKAGE_luci-proto-bonding=m -CONFIG_PACKAGE_luci-app-openvpn=m -CONFIG_PACKAGE_luci-app-wireguard=m -CONFIG_PACKAGE_luci-app-udpxy=m -CONFIG_DEFAULT_SETTINGS_OPTIMIZE_FOR_CHINESE=y \ No newline at end of file +CONFIG_PACKAGE_zram-swap=m \ No newline at end of file diff --git a/r1p.config.seed b/r1p.config.seed index 622af41..af95d32 100644 --- a/r1p.config.seed +++ b/r1p.config.seed @@ -1,98 +1,30 @@ CONFIG_TARGET_rockchip=y CONFIG_TARGET_rockchip_armv8=y CONFIG_TARGET_rockchip_armv8_DEVICE_xunlong_orangepi-r1-plus=y -CONFIG_CCACHE=y -CONFIG_TARGET_OPTIONS=y CONFIG_TARGET_OPTIMIZATION="-O3 -pipe -march=armv8-a+crypto+crc -mcpu=cortex-a53+crypto+crc -mtune=cortex-a53" CONFIG_TARGET_ROOTFS_PARTSIZE=600 -CONFIG_TARGET_ROOTFS_EXT4FS=y -# CONFIG_TARGET_ROOTFS_SQUASHFS is not set -# CONFIG_SIGNED_PACKAGES is not set -CONFIG_IB=y -CONFIG_IB_STANDALONE=y -CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y -CONFIG_PACKAGE_ipv6helper=y CONFIG_PACKAGE_luci-app-adbyby-plus=y -CONFIG_PACKAGE_luci-app-adguardhome=y -CONFIG_PACKAGE_luci-app-argon-config=y -CONFIG_PACKAGE_luci-app-aria2=y -CONFIG_PACKAGE_luci-app-arpbind=y -CONFIG_PACKAGE_luci-app-ksmbd=y -CONFIG_PACKAGE_luci-app-cpufreq=y -CONFIG_PACKAGE_luci-app-ddns=y CONFIG_PACKAGE_luci-app-ddnsto=y -CONFIG_PACKAGE_luci-app-diskman=y CONFIG_PACKAGE_luci-app-dockerman=y CONFIG_DOCKER_OPTIONAL_FEATURES=y -CONFIG_PACKAGE_luci-app-filetransfer=y -CONFIG_PACKAGE_luci-app-frpc=y CONFIG_PACKAGE_luci-app-godproxy=y -CONFIG_PACKAGE_luci-app-jd-dailybonus=y CONFIG_PACKAGE_luci-app-linkease=y CONFIG_PACKAGE_luci-app-netdata=y CONFIG_PACKAGE_luci-app-openclash=y CONFIG_PACKAGE_luci-app-passwall=y CONFIG_PACKAGE_luci-app-qbittorrent=y -CONFIG_PACKAGE_luci-app-serverchan=y -CONFIG_PACKAGE_luci-app-services-wolplus=y -CONFIG_PACKAGE_luci-app-smartdns=y -CONFIG_PACKAGE_luci-app-ssr-plus=y CONFIG_PACKAGE_luci-app-statistics=y -CONFIG_PACKAGE_luci-app-tencentddns=y CONFIG_PACKAGE_luci-app-transmission=y -CONFIG_PACKAGE_luci-app-ttyd=y -CONFIG_PACKAGE_luci-app-turboacc=y -CONFIG_PACKAGE_luci-app-turboacc_INCLUDE_shortcut-fe=y -CONFIG_PACKAGE_luci-app-unblockmusic=y -CONFIG_PACKAGE_luci-app-upnp=y -CONFIG_PACKAGE_luci-app-usb-printer=y CONFIG_PACKAGE_luci-app-uugamebooster=y -CONFIG_PACKAGE_luci-app-vlmcsd=y -CONFIG_PACKAGE_luci-app-vnstat=y -CONFIG_PACKAGE_luci-app-vsftpd=y CONFIG_PACKAGE_luci-app-vssr=y -CONFIG_PACKAGE_luci-app-xlnetacc=y CONFIG_PACKAGE_luci-theme-argon=y -CONFIG_PACKAGE_luci-theme-argonv3=y -CONFIG_PACKAGE_luci-theme-bootstrap=y -CONFIG_PACKAGE_luci-theme-material=y -CONFIG_PACKAGE_luci-theme-netgear=y CONFIG_PACKAGE_luci-theme-openwrt=y CONFIG_PACKAGE_luci-theme-openwrt-2020=y -CONFIG_PACKAGE_luci-theme-rosy=y -CONFIG_PACKAGE_luci-theme-infinityfreedom=y -CONFIG_PACKAGE_bash=y -CONFIG_PACKAGE_coremark=y -CONFIG_PACKAGE_coreutils-truncate=y -CONFIG_PACKAGE_curl=y -CONFIG_PACKAGE_fdisk=y -CONFIG_PACKAGE_htop=y -CONFIG_PACKAGE_iperf3=y -CONFIG_PACKAGE_ksmbd-utils=y -CONFIG_PACKAGE_losetup=y -CONFIG_PACKAGE_pv=y -CONFIG_PACKAGE_resize2fs=y -CONFIG_PACKAGE_sfdisk=y -CONFIG_PACKAGE_usb-modeswitch=y -CONFIG_PACKAGE_wget=y -# CONFIG_OPENSSL_ENGINE_BUILTIN_AFALG is not set -# CONFIG_OPENSSL_ENGINE_BUILTIN_DEVCRYPTO is not set CONFIG_PACKAGE_collectd-mod-ping=y CONFIG_PACKAGE_collectd-mod-thermal=y CONFIG_PACKAGE_ddns-scripts_cloudflare.com=y -CONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y -CONFIG_PACKAGE_iptables-mod-conntrack-extra=y -CONFIG_PACKAGE_iptables-mod-ipopt=y -CONFIG_PACKAGE_iptables-mod-tproxy=y -CONFIG_PACKAGE_kmod-tcp-bbr=y -CONFIG_PACKAGE_kmod-ipt-offload=y -CONFIG_PACKAGE_kmod-fast-classifier=y -CONFIG_PACKAGE_kmod-pppol2tp=y -CONFIG_PACKAGE_kmod-zram=y -CONFIG_DROPBEAR_ECC=y -CONFIG_DROPBEAR_ECC_FULL=y CONFIG_PACKAGE_kmod-drm-rockchip=y CONFIG_PACKAGE_kmod-gpu-lima=y diff --git a/r1s-h3.config.seed b/r1s-h3.config.seed index fe51e9b..5948f8f 100644 --- a/r1s-h3.config.seed +++ b/r1s-h3.config.seed @@ -1,78 +1,39 @@ CONFIG_TARGET_sunxi=y CONFIG_TARGET_sunxi_cortexa7=y CONFIG_TARGET_sunxi_cortexa7_DEVICE_friendlyarm_nanopi-r1=y -CONFIG_CCACHE=y -CONFIG_TARGET_OPTIONS=y CONFIG_TARGET_OPTIMIZATION="-O3 -pipe -mtune=cortex-a7" CONFIG_TARGET_ROOTFS_PARTSIZE=360 -CONFIG_TARGET_ROOTFS_EXT4FS=y -# CONFIG_TARGET_ROOTFS_SQUASHFS is not set -# CONFIG_SIGNED_PACKAGES is not set -CONFIG_IB=y -CONFIG_IB_STANDALONE=y -CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y -CONFIG_PACKAGE_ipv6helper=y -CONFIG_PACKAGE_luci-app-adguardhome=y -CONFIG_PACKAGE_luci-app-argon-config=y -CONFIG_PACKAGE_luci-app-aria2=y -CONFIG_PACKAGE_luci-app-arpbind=y -CONFIG_PACKAGE_luci-app-ksmbd=y -CONFIG_PACKAGE_luci-app-cpufreq=y -CONFIG_PACKAGE_luci-app-ddns=y -CONFIG_PACKAGE_luci-app-diskman=y -CONFIG_PACKAGE_luci-app-filetransfer=y -CONFIG_PACKAGE_luci-app-frpc=y -CONFIG_PACKAGE_luci-app-jd-dailybonus=y -CONFIG_PACKAGE_luci-app-serverchan=y -CONFIG_PACKAGE_luci-app-services-wolplus=y -CONFIG_PACKAGE_luci-app-smartdns=y -CONFIG_PACKAGE_luci-app-ssr-plus=y -CONFIG_PACKAGE_luci-app-tencentddns=y -CONFIG_PACKAGE_luci-app-ttyd=y -CONFIG_PACKAGE_luci-app-turboacc=y -CONFIG_PACKAGE_luci-app-turboacc_INCLUDE_shortcut-fe=y -CONFIG_PACKAGE_luci-app-unblockmusic=y -CONFIG_PACKAGE_luci-app-upnp=y -CONFIG_PACKAGE_luci-app-usb-printer=y -CONFIG_PACKAGE_luci-app-vlmcsd=y -CONFIG_PACKAGE_luci-app-vnstat=y -CONFIG_PACKAGE_luci-app-vsftpd=y -CONFIG_PACKAGE_luci-app-xlnetacc=y -CONFIG_PACKAGE_luci-theme-argonv3=y -CONFIG_PACKAGE_luci-theme-bootstrap=y -CONFIG_PACKAGE_luci-theme-material=y -CONFIG_PACKAGE_luci-theme-netgear=y -CONFIG_PACKAGE_luci-theme-rosy=y -CONFIG_PACKAGE_luci-theme-infinityfreedom=y -CONFIG_PACKAGE_bash=y -CONFIG_PACKAGE_coremark=y -CONFIG_PACKAGE_coreutils-truncate=y -CONFIG_PACKAGE_curl=y -CONFIG_PACKAGE_fdisk=y -CONFIG_PACKAGE_htop=y -CONFIG_PACKAGE_iperf3=y -CONFIG_PACKAGE_ksmbd-utils=y -CONFIG_PACKAGE_losetup=y -CONFIG_PACKAGE_pv=y -CONFIG_PACKAGE_resize2fs=y -CONFIG_PACKAGE_sfdisk=y -CONFIG_PACKAGE_usb-modeswitch=y -CONFIG_PACKAGE_wget=y -# CONFIG_OPENSSL_ENGINE_BUILTIN_AFALG is not set -# CONFIG_OPENSSL_ENGINE_BUILTIN_DEVCRYPTO is not set -CONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y -CONFIG_PACKAGE_iptables-mod-conntrack-extra=y -CONFIG_PACKAGE_iptables-mod-ipopt=y -CONFIG_PACKAGE_iptables-mod-tproxy=y -CONFIG_PACKAGE_kmod-tcp-bbr=y -CONFIG_PACKAGE_kmod-ipt-offload=y -CONFIG_PACKAGE_kmod-fast-classifier=y -CONFIG_PACKAGE_kmod-pppol2tp=y -CONFIG_PACKAGE_kmod-zram=y -CONFIG_DROPBEAR_ECC=y -CONFIG_DROPBEAR_ECC_FULL=y + + + + + + + + + + + + + + + + + + + + + + + + + + + + + CONFIG_PACKAGE_iw=y CONFIG_PACKAGE_iwinfo=y diff --git a/r1s.config.seed b/r1s.config.seed index 257c3b9..5d8d258 100644 --- a/r1s.config.seed +++ b/r1s.config.seed @@ -1,75 +1,7 @@ CONFIG_TARGET_sunxi=y CONFIG_TARGET_sunxi_cortexa53=y CONFIG_TARGET_sunxi_cortexa53_DEVICE_friendlyarm_nanopi-r1s-h5=y -CONFIG_CCACHE=y -CONFIG_TARGET_OPTIONS=y CONFIG_TARGET_OPTIMIZATION="-O3 -pipe -march=armv8-a+crypto+crc -mcpu=cortex-a53+crypto+crc -mtune=cortex-a53" CONFIG_TARGET_ROOTFS_PARTSIZE=360 -CONFIG_TARGET_ROOTFS_EXT4FS=y -# CONFIG_TARGET_ROOTFS_SQUASHFS is not set -# CONFIG_SIGNED_PACKAGES is not set -CONFIG_IB=y -CONFIG_IB_STANDALONE=y -CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y -CONFIG_PACKAGE_ipv6helper=y -CONFIG_PACKAGE_luci-app-adguardhome=y -CONFIG_PACKAGE_luci-app-argon-config=y -CONFIG_PACKAGE_luci-app-aria2=y -CONFIG_PACKAGE_luci-app-arpbind=y -CONFIG_PACKAGE_luci-app-ksmbd=y -CONFIG_PACKAGE_luci-app-cpufreq=y -CONFIG_PACKAGE_luci-app-ddns=y -CONFIG_PACKAGE_luci-app-diskman=y -CONFIG_PACKAGE_luci-app-filetransfer=y -CONFIG_PACKAGE_luci-app-frpc=y -CONFIG_PACKAGE_luci-app-jd-dailybonus=y -CONFIG_PACKAGE_luci-app-serverchan=y -CONFIG_PACKAGE_luci-app-services-wolplus=y -CONFIG_PACKAGE_luci-app-smartdns=y -CONFIG_PACKAGE_luci-app-ssr-plus=y -CONFIG_PACKAGE_luci-app-tencentddns=y -CONFIG_PACKAGE_luci-app-ttyd=y -CONFIG_PACKAGE_luci-app-turboacc=y -CONFIG_PACKAGE_luci-app-turboacc_INCLUDE_shortcut-fe=y -CONFIG_PACKAGE_luci-app-unblockmusic=y -CONFIG_PACKAGE_luci-app-upnp=y -CONFIG_PACKAGE_luci-app-usb-printer=y -CONFIG_PACKAGE_luci-app-vlmcsd=y -CONFIG_PACKAGE_luci-app-vnstat=y -CONFIG_PACKAGE_luci-app-vsftpd=y -CONFIG_PACKAGE_luci-app-xlnetacc=y -CONFIG_PACKAGE_luci-theme-argonv3=y -CONFIG_PACKAGE_luci-theme-bootstrap=y -CONFIG_PACKAGE_luci-theme-material=y -CONFIG_PACKAGE_luci-theme-netgear=y -CONFIG_PACKAGE_luci-theme-rosy=y -CONFIG_PACKAGE_luci-theme-infinityfreedom=y -CONFIG_PACKAGE_bash=y -CONFIG_PACKAGE_coremark=y -CONFIG_PACKAGE_coreutils-truncate=y -CONFIG_PACKAGE_curl=y -CONFIG_PACKAGE_fdisk=y -CONFIG_PACKAGE_htop=y -CONFIG_PACKAGE_iperf3=y -CONFIG_PACKAGE_ksmbd-utils=y -CONFIG_PACKAGE_losetup=y -CONFIG_PACKAGE_pv=y -CONFIG_PACKAGE_resize2fs=y -CONFIG_PACKAGE_sfdisk=y -CONFIG_PACKAGE_usb-modeswitch=y -CONFIG_PACKAGE_wget=y -# CONFIG_OPENSSL_ENGINE_BUILTIN_AFALG is not set -# CONFIG_OPENSSL_ENGINE_BUILTIN_DEVCRYPTO is not set -CONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y -CONFIG_PACKAGE_iptables-mod-conntrack-extra=y -CONFIG_PACKAGE_iptables-mod-ipopt=y -CONFIG_PACKAGE_iptables-mod-tproxy=y -CONFIG_PACKAGE_kmod-tcp-bbr=y -CONFIG_PACKAGE_kmod-ipt-offload=y -CONFIG_PACKAGE_kmod-fast-classifier=y -CONFIG_PACKAGE_kmod-pppol2tp=y -CONFIG_PACKAGE_kmod-zram=y -CONFIG_DROPBEAR_ECC=y -CONFIG_DROPBEAR_ECC_FULL=y diff --git a/r2c.config.seed b/r2c.config.seed index a88e429..bc12c20 100644 --- a/r2c.config.seed +++ b/r2c.config.seed @@ -1,98 +1,30 @@ CONFIG_TARGET_rockchip=y CONFIG_TARGET_rockchip_armv8=y CONFIG_TARGET_rockchip_armv8_DEVICE_friendlyarm_nanopi-r2c=y -CONFIG_CCACHE=y -CONFIG_TARGET_OPTIONS=y CONFIG_TARGET_OPTIMIZATION="-O3 -pipe -march=armv8-a+crypto+crc -mcpu=cortex-a53+crypto+crc -mtune=cortex-a53" CONFIG_TARGET_ROOTFS_PARTSIZE=600 -CONFIG_TARGET_ROOTFS_EXT4FS=y -# CONFIG_TARGET_ROOTFS_SQUASHFS is not set -# CONFIG_SIGNED_PACKAGES is not set -CONFIG_IB=y -CONFIG_IB_STANDALONE=y -CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y -CONFIG_PACKAGE_ipv6helper=y CONFIG_PACKAGE_luci-app-adbyby-plus=y -CONFIG_PACKAGE_luci-app-adguardhome=y -CONFIG_PACKAGE_luci-app-argon-config=y -CONFIG_PACKAGE_luci-app-aria2=y -CONFIG_PACKAGE_luci-app-arpbind=y -CONFIG_PACKAGE_luci-app-ksmbd=y -CONFIG_PACKAGE_luci-app-cpufreq=y -CONFIG_PACKAGE_luci-app-ddns=y CONFIG_PACKAGE_luci-app-ddnsto=y -CONFIG_PACKAGE_luci-app-diskman=y CONFIG_PACKAGE_luci-app-dockerman=y CONFIG_DOCKER_OPTIONAL_FEATURES=y -CONFIG_PACKAGE_luci-app-filetransfer=y -CONFIG_PACKAGE_luci-app-frpc=y CONFIG_PACKAGE_luci-app-godproxy=y -CONFIG_PACKAGE_luci-app-jd-dailybonus=y CONFIG_PACKAGE_luci-app-linkease=y CONFIG_PACKAGE_luci-app-netdata=y CONFIG_PACKAGE_luci-app-openclash=y CONFIG_PACKAGE_luci-app-passwall=y CONFIG_PACKAGE_luci-app-qbittorrent=y -CONFIG_PACKAGE_luci-app-serverchan=y -CONFIG_PACKAGE_luci-app-services-wolplus=y -CONFIG_PACKAGE_luci-app-smartdns=y -CONFIG_PACKAGE_luci-app-ssr-plus=y CONFIG_PACKAGE_luci-app-statistics=y -CONFIG_PACKAGE_luci-app-tencentddns=y CONFIG_PACKAGE_luci-app-transmission=y -CONFIG_PACKAGE_luci-app-ttyd=y -CONFIG_PACKAGE_luci-app-turboacc=y -CONFIG_PACKAGE_luci-app-turboacc_INCLUDE_shortcut-fe=y -CONFIG_PACKAGE_luci-app-unblockmusic=y -CONFIG_PACKAGE_luci-app-upnp=y -CONFIG_PACKAGE_luci-app-usb-printer=y CONFIG_PACKAGE_luci-app-uugamebooster=y -CONFIG_PACKAGE_luci-app-vlmcsd=y -CONFIG_PACKAGE_luci-app-vnstat=y -CONFIG_PACKAGE_luci-app-vsftpd=y CONFIG_PACKAGE_luci-app-vssr=y -CONFIG_PACKAGE_luci-app-xlnetacc=y CONFIG_PACKAGE_luci-theme-argon=y -CONFIG_PACKAGE_luci-theme-argonv3=y -CONFIG_PACKAGE_luci-theme-bootstrap=y -CONFIG_PACKAGE_luci-theme-material=y -CONFIG_PACKAGE_luci-theme-netgear=y CONFIG_PACKAGE_luci-theme-openwrt=y CONFIG_PACKAGE_luci-theme-openwrt-2020=y -CONFIG_PACKAGE_luci-theme-rosy=y -CONFIG_PACKAGE_luci-theme-infinityfreedom=y -CONFIG_PACKAGE_bash=y -CONFIG_PACKAGE_coremark=y -CONFIG_PACKAGE_coreutils-truncate=y -CONFIG_PACKAGE_curl=y -CONFIG_PACKAGE_fdisk=y -CONFIG_PACKAGE_htop=y -CONFIG_PACKAGE_iperf3=y -CONFIG_PACKAGE_ksmbd-utils=y -CONFIG_PACKAGE_losetup=y -CONFIG_PACKAGE_pv=y -CONFIG_PACKAGE_resize2fs=y -CONFIG_PACKAGE_sfdisk=y -CONFIG_PACKAGE_usb-modeswitch=y -CONFIG_PACKAGE_wget=y -# CONFIG_OPENSSL_ENGINE_BUILTIN_AFALG is not set -# CONFIG_OPENSSL_ENGINE_BUILTIN_DEVCRYPTO is not set CONFIG_PACKAGE_collectd-mod-ping=y CONFIG_PACKAGE_collectd-mod-thermal=y CONFIG_PACKAGE_ddns-scripts_cloudflare.com=y -CONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y -CONFIG_PACKAGE_iptables-mod-conntrack-extra=y -CONFIG_PACKAGE_iptables-mod-ipopt=y -CONFIG_PACKAGE_iptables-mod-tproxy=y -CONFIG_PACKAGE_kmod-tcp-bbr=y -CONFIG_PACKAGE_kmod-ipt-offload=y -CONFIG_PACKAGE_kmod-fast-classifier=y -CONFIG_PACKAGE_kmod-pppol2tp=y -CONFIG_PACKAGE_kmod-zram=y -CONFIG_DROPBEAR_ECC=y -CONFIG_DROPBEAR_ECC_FULL=y CONFIG_PACKAGE_kmod-drm-rockchip=y CONFIG_PACKAGE_kmod-gpu-lima=y diff --git a/r2s.config.seed b/r2s.config.seed index fd81607..7845fc5 100644 --- a/r2s.config.seed +++ b/r2s.config.seed @@ -1,98 +1,30 @@ CONFIG_TARGET_rockchip=y CONFIG_TARGET_rockchip_armv8=y CONFIG_TARGET_rockchip_armv8_DEVICE_friendlyarm_nanopi-r2s=y -CONFIG_CCACHE=y -CONFIG_TARGET_OPTIONS=y CONFIG_TARGET_OPTIMIZATION="-O3 -pipe -march=armv8-a+crypto+crc -mcpu=cortex-a53+crypto+crc -mtune=cortex-a53" CONFIG_TARGET_ROOTFS_PARTSIZE=600 -CONFIG_TARGET_ROOTFS_EXT4FS=y -# CONFIG_TARGET_ROOTFS_SQUASHFS is not set -# CONFIG_SIGNED_PACKAGES is not set -CONFIG_IB=y -CONFIG_IB_STANDALONE=y -CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y -CONFIG_PACKAGE_ipv6helper=y CONFIG_PACKAGE_luci-app-adbyby-plus=y -CONFIG_PACKAGE_luci-app-adguardhome=y -CONFIG_PACKAGE_luci-app-argon-config=y -CONFIG_PACKAGE_luci-app-aria2=y -CONFIG_PACKAGE_luci-app-arpbind=y -CONFIG_PACKAGE_luci-app-ksmbd=y -CONFIG_PACKAGE_luci-app-cpufreq=y -CONFIG_PACKAGE_luci-app-ddns=y CONFIG_PACKAGE_luci-app-ddnsto=y -CONFIG_PACKAGE_luci-app-diskman=y CONFIG_PACKAGE_luci-app-dockerman=y CONFIG_DOCKER_OPTIONAL_FEATURES=y -CONFIG_PACKAGE_luci-app-filetransfer=y -CONFIG_PACKAGE_luci-app-frpc=y CONFIG_PACKAGE_luci-app-godproxy=y -CONFIG_PACKAGE_luci-app-jd-dailybonus=y CONFIG_PACKAGE_luci-app-linkease=y CONFIG_PACKAGE_luci-app-netdata=y CONFIG_PACKAGE_luci-app-openclash=y CONFIG_PACKAGE_luci-app-passwall=y CONFIG_PACKAGE_luci-app-qbittorrent=y -CONFIG_PACKAGE_luci-app-serverchan=y -CONFIG_PACKAGE_luci-app-services-wolplus=y -CONFIG_PACKAGE_luci-app-smartdns=y -CONFIG_PACKAGE_luci-app-ssr-plus=y CONFIG_PACKAGE_luci-app-statistics=y -CONFIG_PACKAGE_luci-app-tencentddns=y CONFIG_PACKAGE_luci-app-transmission=y -CONFIG_PACKAGE_luci-app-ttyd=y -CONFIG_PACKAGE_luci-app-turboacc=y -CONFIG_PACKAGE_luci-app-turboacc_INCLUDE_shortcut-fe=y -CONFIG_PACKAGE_luci-app-unblockmusic=y -CONFIG_PACKAGE_luci-app-upnp=y -CONFIG_PACKAGE_luci-app-usb-printer=y CONFIG_PACKAGE_luci-app-uugamebooster=y -CONFIG_PACKAGE_luci-app-vlmcsd=y -CONFIG_PACKAGE_luci-app-vnstat=y -CONFIG_PACKAGE_luci-app-vsftpd=y CONFIG_PACKAGE_luci-app-vssr=y -CONFIG_PACKAGE_luci-app-xlnetacc=y CONFIG_PACKAGE_luci-theme-argon=y -CONFIG_PACKAGE_luci-theme-argonv3=y -CONFIG_PACKAGE_luci-theme-bootstrap=y -CONFIG_PACKAGE_luci-theme-material=y -CONFIG_PACKAGE_luci-theme-netgear=y CONFIG_PACKAGE_luci-theme-openwrt=y CONFIG_PACKAGE_luci-theme-openwrt-2020=y -CONFIG_PACKAGE_luci-theme-rosy=y -CONFIG_PACKAGE_luci-theme-infinityfreedom=y -CONFIG_PACKAGE_bash=y -CONFIG_PACKAGE_coremark=y -CONFIG_PACKAGE_coreutils-truncate=y -CONFIG_PACKAGE_curl=y -CONFIG_PACKAGE_fdisk=y -CONFIG_PACKAGE_htop=y -CONFIG_PACKAGE_iperf3=y -CONFIG_PACKAGE_ksmbd-utils=y -CONFIG_PACKAGE_losetup=y -CONFIG_PACKAGE_pv=y -CONFIG_PACKAGE_resize2fs=y -CONFIG_PACKAGE_sfdisk=y -CONFIG_PACKAGE_usb-modeswitch=y -CONFIG_PACKAGE_wget=y -# CONFIG_OPENSSL_ENGINE_BUILTIN_AFALG is not set -# CONFIG_OPENSSL_ENGINE_BUILTIN_DEVCRYPTO is not set CONFIG_PACKAGE_collectd-mod-ping=y CONFIG_PACKAGE_collectd-mod-thermal=y CONFIG_PACKAGE_ddns-scripts_cloudflare.com=y -CONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y -CONFIG_PACKAGE_iptables-mod-conntrack-extra=y -CONFIG_PACKAGE_iptables-mod-ipopt=y -CONFIG_PACKAGE_iptables-mod-tproxy=y -CONFIG_PACKAGE_kmod-tcp-bbr=y -CONFIG_PACKAGE_kmod-ipt-offload=y -CONFIG_PACKAGE_kmod-fast-classifier=y -CONFIG_PACKAGE_kmod-pppol2tp=y -CONFIG_PACKAGE_kmod-zram=y -CONFIG_DROPBEAR_ECC=y -CONFIG_DROPBEAR_ECC_FULL=y CONFIG_PACKAGE_kmod-drm-rockchip=y CONFIG_PACKAGE_kmod-gpu-lima=y diff --git a/r4s.config.seed b/r4s.config.seed index f920167..0f9c1de 100644 --- a/r4s.config.seed +++ b/r4s.config.seed @@ -1,98 +1,30 @@ CONFIG_TARGET_rockchip=y CONFIG_TARGET_rockchip_armv8=y CONFIG_TARGET_rockchip_armv8_DEVICE_friendlyarm_nanopi-r4s=y -CONFIG_CCACHE=y -CONFIG_TARGET_OPTIONS=y CONFIG_TARGET_OPTIMIZATION="-O3 -pipe -march=armv8-a+crypto+crc -mcpu=cortex-a72.cortex-a53+crypto+crc -mtune=cortex-a72.cortex-a53" CONFIG_TARGET_ROOTFS_PARTSIZE=600 -CONFIG_TARGET_ROOTFS_EXT4FS=y -# CONFIG_TARGET_ROOTFS_SQUASHFS is not set -# CONFIG_SIGNED_PACKAGES is not set -CONFIG_IB=y -CONFIG_IB_STANDALONE=y -CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y -CONFIG_PACKAGE_ipv6helper=y CONFIG_PACKAGE_luci-app-adbyby-plus=y -CONFIG_PACKAGE_luci-app-adguardhome=y -CONFIG_PACKAGE_luci-app-argon-config=y -CONFIG_PACKAGE_luci-app-aria2=y -CONFIG_PACKAGE_luci-app-arpbind=y -CONFIG_PACKAGE_luci-app-ksmbd=y -CONFIG_PACKAGE_luci-app-cpufreq=y -CONFIG_PACKAGE_luci-app-ddns=y CONFIG_PACKAGE_luci-app-ddnsto=y -CONFIG_PACKAGE_luci-app-diskman=y CONFIG_PACKAGE_luci-app-dockerman=y CONFIG_DOCKER_OPTIONAL_FEATURES=y -CONFIG_PACKAGE_luci-app-filetransfer=y -CONFIG_PACKAGE_luci-app-frpc=y CONFIG_PACKAGE_luci-app-godproxy=y -CONFIG_PACKAGE_luci-app-jd-dailybonus=y CONFIG_PACKAGE_luci-app-linkease=y CONFIG_PACKAGE_luci-app-netdata=y CONFIG_PACKAGE_luci-app-openclash=y CONFIG_PACKAGE_luci-app-passwall=y CONFIG_PACKAGE_luci-app-qbittorrent=y -CONFIG_PACKAGE_luci-app-serverchan=y -CONFIG_PACKAGE_luci-app-services-wolplus=y -CONFIG_PACKAGE_luci-app-smartdns=y -CONFIG_PACKAGE_luci-app-ssr-plus=y CONFIG_PACKAGE_luci-app-statistics=y -CONFIG_PACKAGE_luci-app-tencentddns=y CONFIG_PACKAGE_luci-app-transmission=y -CONFIG_PACKAGE_luci-app-ttyd=y -CONFIG_PACKAGE_luci-app-turboacc=y -CONFIG_PACKAGE_luci-app-turboacc_INCLUDE_shortcut-fe=y -CONFIG_PACKAGE_luci-app-unblockmusic=y -CONFIG_PACKAGE_luci-app-upnp=y -CONFIG_PACKAGE_luci-app-usb-printer=y CONFIG_PACKAGE_luci-app-uugamebooster=y -CONFIG_PACKAGE_luci-app-vlmcsd=y -CONFIG_PACKAGE_luci-app-vnstat=y -CONFIG_PACKAGE_luci-app-vsftpd=y CONFIG_PACKAGE_luci-app-vssr=y -CONFIG_PACKAGE_luci-app-xlnetacc=y CONFIG_PACKAGE_luci-theme-argon=y -CONFIG_PACKAGE_luci-theme-argonv3=y -CONFIG_PACKAGE_luci-theme-bootstrap=y -CONFIG_PACKAGE_luci-theme-material=y -CONFIG_PACKAGE_luci-theme-netgear=y CONFIG_PACKAGE_luci-theme-openwrt=y CONFIG_PACKAGE_luci-theme-openwrt-2020=y -CONFIG_PACKAGE_luci-theme-rosy=y -CONFIG_PACKAGE_luci-theme-infinityfreedom=y -CONFIG_PACKAGE_bash=y -CONFIG_PACKAGE_coremark=y -CONFIG_PACKAGE_coreutils-truncate=y -CONFIG_PACKAGE_curl=y -CONFIG_PACKAGE_fdisk=y -CONFIG_PACKAGE_htop=y -CONFIG_PACKAGE_iperf3=y -CONFIG_PACKAGE_ksmbd-utils=y -CONFIG_PACKAGE_losetup=y -CONFIG_PACKAGE_pv=y -CONFIG_PACKAGE_resize2fs=y -CONFIG_PACKAGE_sfdisk=y -CONFIG_PACKAGE_usb-modeswitch=y -CONFIG_PACKAGE_wget=y -# CONFIG_OPENSSL_ENGINE_BUILTIN_AFALG is not set -# CONFIG_OPENSSL_ENGINE_BUILTIN_DEVCRYPTO is not set CONFIG_PACKAGE_collectd-mod-ping=y CONFIG_PACKAGE_collectd-mod-thermal=y CONFIG_PACKAGE_ddns-scripts_cloudflare.com=y -CONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y -CONFIG_PACKAGE_iptables-mod-conntrack-extra=y -CONFIG_PACKAGE_iptables-mod-ipopt=y -CONFIG_PACKAGE_iptables-mod-tproxy=y -CONFIG_PACKAGE_kmod-tcp-bbr=y -CONFIG_PACKAGE_kmod-ipt-offload=y -CONFIG_PACKAGE_kmod-fast-classifier=y -CONFIG_PACKAGE_kmod-pppol2tp=y -CONFIG_PACKAGE_kmod-zram=y -CONFIG_DROPBEAR_ECC=y -CONFIG_DROPBEAR_ECC_FULL=y CONFIG_PACKAGE_kmod-drm-rockchip=y CONFIG_PACKAGE_kmod-gpu-lima=y diff --git a/x86.config.seed b/x86.config.seed index 15e9240..5c73da0 100644 --- a/x86.config.seed +++ b/x86.config.seed @@ -3,97 +3,30 @@ CONFIG_TARGET_x86_64=y CONFIG_TARGET_x86_64_DEVICE_generic=y # CONFIG_GRUB_IMAGES is not set # CONFIG_VMDK_IMAGES is not set -CONFIG_CCACHE=y -CONFIG_TARGET_OPTIONS=y CONFIG_TARGET_ROOTFS_PARTSIZE=600 -CONFIG_TARGET_ROOTFS_EXT4FS=y -# CONFIG_TARGET_ROOTFS_SQUASHFS is not set -# CONFIG_SIGNED_PACKAGES is not set -CONFIG_IB=y -CONFIG_IB_STANDALONE=y -CONFIG_PACKAGE_dnsmasq_full_dhcpv6=y -CONFIG_PACKAGE_ipv6helper=y CONFIG_PACKAGE_luci-app-adbyby-plus=y -CONFIG_PACKAGE_luci-app-adguardhome=y -CONFIG_PACKAGE_luci-app-argon-config=y -CONFIG_PACKAGE_luci-app-aria2=y -CONFIG_PACKAGE_luci-app-arpbind=y -CONFIG_PACKAGE_luci-app-ksmbd=y -CONFIG_PACKAGE_luci-app-cpufreq=y -CONFIG_PACKAGE_luci-app-ddns=y CONFIG_PACKAGE_luci-app-ddnsto=y -CONFIG_PACKAGE_luci-app-diskman=y CONFIG_PACKAGE_luci-app-dockerman=y CONFIG_DOCKER_OPTIONAL_FEATURES=y -CONFIG_PACKAGE_luci-app-filetransfer=y -CONFIG_PACKAGE_luci-app-frpc=y CONFIG_PACKAGE_luci-app-godproxy=y -CONFIG_PACKAGE_luci-app-jd-dailybonus=y CONFIG_PACKAGE_luci-app-linkease=y CONFIG_PACKAGE_luci-app-netdata=y CONFIG_PACKAGE_luci-app-openclash=y CONFIG_PACKAGE_luci-app-passwall=y CONFIG_PACKAGE_luci-app-qbittorrent=y -CONFIG_PACKAGE_luci-app-serverchan=y -CONFIG_PACKAGE_luci-app-services-wolplus=y -CONFIG_PACKAGE_luci-app-smartdns=y -CONFIG_PACKAGE_luci-app-ssr-plus=y CONFIG_PACKAGE_luci-app-statistics=y -CONFIG_PACKAGE_luci-app-tencentddns=y CONFIG_PACKAGE_luci-app-transmission=y -CONFIG_PACKAGE_luci-app-ttyd=y -CONFIG_PACKAGE_luci-app-turboacc=y -CONFIG_PACKAGE_luci-app-turboacc_INCLUDE_shortcut-fe=y -CONFIG_PACKAGE_luci-app-unblockmusic=y -CONFIG_PACKAGE_luci-app-upnp=y -CONFIG_PACKAGE_luci-app-usb-printer=y CONFIG_PACKAGE_luci-app-uugamebooster=y -CONFIG_PACKAGE_luci-app-vlmcsd=y -CONFIG_PACKAGE_luci-app-vnstat=y -CONFIG_PACKAGE_luci-app-vsftpd=y CONFIG_PACKAGE_luci-app-vssr=y -CONFIG_PACKAGE_luci-app-xlnetacc=y CONFIG_PACKAGE_luci-theme-argon=y -CONFIG_PACKAGE_luci-theme-argonv3=y -CONFIG_PACKAGE_luci-theme-bootstrap=y -CONFIG_PACKAGE_luci-theme-material=y -CONFIG_PACKAGE_luci-theme-netgear=y CONFIG_PACKAGE_luci-theme-openwrt=y CONFIG_PACKAGE_luci-theme-openwrt-2020=y -CONFIG_PACKAGE_luci-theme-rosy=y -CONFIG_PACKAGE_luci-theme-infinityfreedom=y -CONFIG_PACKAGE_bash=y -CONFIG_PACKAGE_coremark=y -CONFIG_PACKAGE_coreutils-truncate=y -CONFIG_PACKAGE_curl=y -CONFIG_PACKAGE_fdisk=y -CONFIG_PACKAGE_htop=y -CONFIG_PACKAGE_iperf3=y -CONFIG_PACKAGE_ksmbd-utils=y -CONFIG_PACKAGE_losetup=y -CONFIG_PACKAGE_pv=y -CONFIG_PACKAGE_resize2fs=y -CONFIG_PACKAGE_sfdisk=y -CONFIG_PACKAGE_usb-modeswitch=y -CONFIG_PACKAGE_wget=y -# CONFIG_OPENSSL_ENGINE_BUILTIN_AFALG is not set -# CONFIG_OPENSSL_ENGINE_BUILTIN_DEVCRYPTO is not set CONFIG_PACKAGE_collectd-mod-ping=y CONFIG_PACKAGE_collectd-mod-thermal=y CONFIG_PACKAGE_ddns-scripts_cloudflare.com=y -CONFIG_PACKAGE_ddns-scripts_cloudflare.com-v4=y -CONFIG_PACKAGE_iptables-mod-conntrack-extra=y -CONFIG_PACKAGE_iptables-mod-ipopt=y -CONFIG_PACKAGE_iptables-mod-tproxy=y -CONFIG_PACKAGE_kmod-tcp-bbr=y -CONFIG_PACKAGE_kmod-ipt-offload=y -CONFIG_PACKAGE_kmod-fast-classifier=y -CONFIG_PACKAGE_kmod-pppol2tp=y -CONFIG_PACKAGE_kmod-zram=y -CONFIG_DROPBEAR_ECC=y -CONFIG_DROPBEAR_ECC_FULL=y + CONFIG_PACKAGE_kmod-ath9k-htc=y CONFIG_PACKAGE_kmod-mt76x0u=y