From b20bd87e3776cf01c184cf109b5fe810abe1e280 Mon Sep 17 00:00:00 2001 From: Daniel Pawlik Date: Mon, 31 Mar 2025 16:11:06 +0200 Subject: [PATCH] Disable usteer in main config; install qosify by default --- configs/common/main-router | 4 ++-- openwrt-configure.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configs/common/main-router b/configs/common/main-router index bb3a3c3..e555316 100644 --- a/configs/common/main-router +++ b/configs/common/main-router @@ -80,8 +80,8 @@ CONFIG_PACKAGE_collectd-mod-dns=y # CONFIG_PACKAGE_luci-app-dawn=y ### usteer -CONFIG_PACKAGE_usteer=y -CONFIG_PACKAGE_luci-app-usteer=y +# CONFIG_PACKAGE_usteer=y +# CONFIG_PACKAGE_luci-app-usteer=y # SQM # CONFIG_PACKAGE_luci-app-sqm=y diff --git a/openwrt-configure.sh b/openwrt-configure.sh index 32d33cc..369f0ba 100755 --- a/openwrt-configure.sh +++ b/openwrt-configure.sh @@ -20,8 +20,8 @@ CRYPTO_LIB=${CRYPTO_LIB:-'openssl'} # wolfssl or openssl; if empty - mbedtls ADDITIONAL_PACKAGES=${ADDITIONAL_PACKAGES:-'bmon rsync bind-dig ethtool-full pciutils tcpdump iperf3 vim'} INSTALL_LANG_PACKAGES=${INSTALL_LANG_PACKAGES:-'true'} INSTALL_MINIMUM_PACKAGES=${INSTALL_MINIMUM_PACKAGES:-'false'} -SQM_TOOL=${SQM_TOOL:-''} # qosify or luci-app-sqm -SPEEDTEST_TOOLS=${SPEEDTEST_TOOLS:=''} # librespeed-go +SQM_TOOL=${SQM_TOOL:-'qosify'} # qosify or luci-app-sqm +SPEEDTEST_TOOLS=${SPEEDTEST_TOOLS:='librespeed-go'} # librespeed-go if [ -z "$ROUTER_IP" ]; then echo "Please provide router ip like: 192.168.1.1"