mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-02-15 03:51:51 +00:00
sync (#570)
This commit is contained in:
commit
5fb6463933
2 changed files with 32 additions and 23 deletions
|
@ -31,6 +31,7 @@ global_multipath_settings() {
|
||||||
config_get mptcp_version globals mptcp_version "0"
|
config_get mptcp_version globals mptcp_version "0"
|
||||||
config_get mptcp_stale_loss_cnt globals mptcp_stale_loss_cnt "4"
|
config_get mptcp_stale_loss_cnt globals mptcp_stale_loss_cnt "4"
|
||||||
config_get mptcp_pm_type globals mptcp_pm_type "1"
|
config_get mptcp_pm_type globals mptcp_pm_type "1"
|
||||||
|
config_get mptcp_allow_join_initial_addr_port globals mptcp_allow_join_initial_addr_port "1"
|
||||||
|
|
||||||
[ "$multipath" = "enable" ] && multipath_status=1
|
[ "$multipath" = "enable" ] && multipath_status=1
|
||||||
|
|
||||||
|
@ -62,16 +63,16 @@ global_multipath_settings() {
|
||||||
fi
|
fi
|
||||||
ip mptcp limits set add_addr_accepted $mptcp_add_addr_accepted subflows $mptcp_subflows >/dev/null 2>&1
|
ip mptcp limits set add_addr_accepted $mptcp_add_addr_accepted subflows $mptcp_subflows >/dev/null 2>&1
|
||||||
#[ -z "$mptcp_debug" ] || sysctl -qew net.mptcp.mptcp_debug="$mptcp_debug"
|
#[ -z "$mptcp_debug" ] || sysctl -qew net.mptcp.mptcp_debug="$mptcp_debug"
|
||||||
[ -z "$mptcp_checksum" ] || sysctl -qew net.mptcp.mptcp_checksum="$mptcp_checksum"
|
|
||||||
[ -z "$mptcp_add_addr_timeout" ] || sysctl -qew net.mptcp.add_addr_timeout="$mptcp_add_addr_timeout"
|
[ -z "$mptcp_add_addr_timeout" ] || sysctl -qew net.mptcp.add_addr_timeout="$mptcp_add_addr_timeout"
|
||||||
[ -z "$mptcp_checksum" ] || sysctl -qew net.mptcp.checksum_enabled="$mptcp_checksum"
|
[ -z "$mptcp_checksum" ] || sysctl -qew net.mptcp.checksum_enabled="$mptcp_checksum"
|
||||||
[ -z "$mptcp_stale_loss_cnt" ] || sysctl -qew net.mptcp.stale_loss_cnt="$mptcp_stale_loss_cnt"
|
[ -z "$mptcp_stale_loss_cnt" ] || sysctl -qew net.mptcp.stale_loss_cnt="$mptcp_stale_loss_cnt"
|
||||||
[ -z "$mptcp_pm_type" ] || sysctl -qew net.mptcp.pm_type="$mptcp_pm_type"
|
[ -z "$mptcp_pm_type" ] || sysctl -qew net.mptcp.pm_type="$mptcp_pm_type"
|
||||||
|
[ -z "$mptcp_allow_join_initial_addr_port" ] || sysctl -qew net.mptcp.allow_join_initial_addr_port="$mptcp_allow_initial_addr_port"
|
||||||
if [ -n "$mptcp_scheduler" ]; then
|
if [ -n "$mptcp_scheduler" ]; then
|
||||||
for scheduler in $(ls -1 /usr/share/bpf/scheduler/*.o); do
|
for scheduler in $(ls -1 /usr/share/bpf/scheduler/*.o); do
|
||||||
bpftool struct_ops register $scheduler >/dev/null 2>&1
|
bpftool struct_ops register $scheduler >/dev/null 2>&1
|
||||||
done
|
done
|
||||||
sysctl -qew net.mptcp.scheduler="$mptcp_scheduler"
|
sysctl -qew net.mptcp.scheduler="$(echo $mptcp_scheduler | sed 's/mptcp_//' 's/.o//')" >/dev/null 2>&1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
[ -z "$congestion" ] || sysctl -qew net.ipv4.tcp_congestion_control="$congestion"
|
[ -z "$congestion" ] || sysctl -qew net.ipv4.tcp_congestion_control="$congestion"
|
||||||
|
@ -87,13 +88,14 @@ interface_macaddr_count() {
|
||||||
interface_max_metric() {
|
interface_max_metric() {
|
||||||
local config="$1"
|
local config="$1"
|
||||||
if [ "$1" != "omrvpn" ] && [ "$1" != "omr6in4" ] && [ "$1" != "lan" ] && [ "$1" != "loopback" ]; then
|
if [ "$1" != "omrvpn" ] && [ "$1" != "omr6in4" ] && [ "$1" != "lan" ] && [ "$1" != "loopback" ]; then
|
||||||
config_get metric "$config" metric
|
config_get metric "$config" ip4table
|
||||||
if [ "$metric" -gt "$count" ] && [ "$metric" -lt "1000" ]; then
|
if [ "$metric" -gt "$count" ] && [ "$metric" -lt "1000" ]; then
|
||||||
count=$metric
|
count=$metric
|
||||||
fi
|
fi
|
||||||
elif [ "$1" = "omrvpn" ]; then
|
elif [ "$1" = "omrvpn" ]; then
|
||||||
uci -q batch <<-EOF >/dev/null
|
uci -q batch <<-EOF >/dev/null
|
||||||
set network.${config}.metric=1500
|
set network.${config}.metric=1500
|
||||||
|
set network.${config}.ip4table=1500
|
||||||
commit network
|
commit network
|
||||||
set openmptcprouter.${config}.metric=1500
|
set openmptcprouter.${config}.metric=1500
|
||||||
commit openmptcprouter
|
commit openmptcprouter
|
||||||
|
@ -101,6 +103,7 @@ interface_max_metric() {
|
||||||
elif [ "$1" = "omr6in4" ]; then
|
elif [ "$1" = "omr6in4" ]; then
|
||||||
uci -q batch <<-EOF >/dev/null
|
uci -q batch <<-EOF >/dev/null
|
||||||
set network.${config}.metric=1201
|
set network.${config}.metric=1201
|
||||||
|
set network.${config}.ip4table=1201
|
||||||
commit network
|
commit network
|
||||||
set openmptcprouter.${config}.metric=1201
|
set openmptcprouter.${config}.metric=1201
|
||||||
commit openmptcprouter
|
commit openmptcprouter
|
||||||
|
@ -109,7 +112,7 @@ interface_max_metric() {
|
||||||
}
|
}
|
||||||
|
|
||||||
interface_multipath_settings() {
|
interface_multipath_settings() {
|
||||||
local mode iface proto metric
|
local mode iface proto metric ip4table
|
||||||
local config="$1"
|
local config="$1"
|
||||||
local intf="$2"
|
local intf="$2"
|
||||||
local enabled
|
local enabled
|
||||||
|
@ -130,20 +133,26 @@ interface_multipath_settings() {
|
||||||
metric="$(uci -q get openmptcprouter.${config}.metric)"
|
metric="$(uci -q get openmptcprouter.${config}.metric)"
|
||||||
fi
|
fi
|
||||||
[ "$metric" -gt 1000 ] && [ "${config}" != "omrvpn" ] && [ "${config}" != "omr6in4" ] && [ "${config}" != "loopback" ] && metric=$((metric-1000))
|
[ "$metric" -gt 1000 ] && [ "${config}" != "omrvpn" ] && [ "${config}" != "omr6in4" ] && [ "${config}" != "loopback" ] && metric=$((metric-1000))
|
||||||
if [ "${config}" = "lan" ] || [ "$(uci -q get network.${config}.ip4table)" = "lan" ]; then
|
if [ "${config}" = "lan" ] || [ "$(uci -q get network.${config}.ip4table)" = "lan" ] || [ "$(uci -q get network.${config}.ip4table)" = "9999" ]; then
|
||||||
metric="9999"
|
metric="9999"
|
||||||
elif [ "${config}" = "omrvpn" ]; then
|
elif [ "${config}" = "omrvpn" ]; then
|
||||||
metric="1500"
|
metric="1500"
|
||||||
elif [ "${config}" = "omr6in4" ]; then
|
elif [ "${config}" = "omr6in4" ]; then
|
||||||
metric="1201"
|
metric="1201"
|
||||||
|
elif [ "$(uci -q get network.${config}.multipath)" = "off" ]; then
|
||||||
|
metric="9998"
|
||||||
fi
|
fi
|
||||||
config_set "$config" metric $metric
|
config_set "$config" metric $metric
|
||||||
uci -q set network.${config}.metric=$metric
|
uci -q set network.${config}.metric=$metric
|
||||||
|
uci -q set network.${config}.ip4table=$metric
|
||||||
|
uci -q set network.${config}.ip6table=6$metric
|
||||||
uci -q set openmptcprouter.${config}.metric=$metric
|
uci -q set openmptcprouter.${config}.metric=$metric
|
||||||
config_get mode "$config" multipath
|
config_get mode "$config" multipath
|
||||||
config_get disabled "$config" disabled
|
config_get disabled "$config" disabled
|
||||||
[ "$disabled" = "1" ] && mode="off"
|
[ "$disabled" = "1" ] && mode="off"
|
||||||
id=$metric
|
id=$metric
|
||||||
|
ip4table=$metric
|
||||||
|
ip6table=6$metric
|
||||||
[ -n "$iface" ] && {
|
[ -n "$iface" ] && {
|
||||||
gro=$(uci -q get network.${config}.gro)
|
gro=$(uci -q get network.${config}.gro)
|
||||||
[ "$gro" = "1" ] && ethtool -K $iface gro on >/dev/null 2>&1
|
[ "$gro" = "1" ] && ethtool -K $iface gro on >/dev/null 2>&1
|
||||||
|
@ -282,7 +291,7 @@ interface_multipath_settings() {
|
||||||
commit network
|
commit network
|
||||||
EOF
|
EOF
|
||||||
else
|
else
|
||||||
[ -n "$(ip rule list | grep $id)" ] && ip rule del table $id > /dev/null 2>&1
|
[ -n "$(ip rule list | grep $id)" ] && ip rule del table $ip4table > /dev/null 2>&1
|
||||||
ip route flush $id > /dev/null 2>&1
|
ip route flush $id > /dev/null 2>&1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -300,7 +309,7 @@ interface_multipath_settings() {
|
||||||
set network.${config}_route.interface=${config}
|
set network.${config}_route.interface=${config}
|
||||||
set network.${config}_route.target=${network}
|
set network.${config}_route.target=${network}
|
||||||
set network.${config}_route.netmask=${netmask}
|
set network.${config}_route.netmask=${netmask}
|
||||||
set network.${config}_route.table=${id}
|
set network.${config}_route.table=${ip4table}
|
||||||
set network.${config}_route.created=mptcp
|
set network.${config}_route.created=mptcp
|
||||||
delete network.${config}_route_default
|
delete network.${config}_route_default
|
||||||
set network.${config}_route_default=route
|
set network.${config}_route_default=route
|
||||||
|
@ -308,16 +317,16 @@ interface_multipath_settings() {
|
||||||
set network.${config}_route_default.target='0.0.0.0'
|
set network.${config}_route_default.target='0.0.0.0'
|
||||||
set network.${config}_route_default.netmask='0.0.0.0'
|
set network.${config}_route_default.netmask='0.0.0.0'
|
||||||
set network.${config}_route_default.gateway=$gateway
|
set network.${config}_route_default.gateway=$gateway
|
||||||
set network.${config}_route_default.table=${id}
|
set network.${config}_route_default.table=${ip4table}
|
||||||
set network.${config}_route_default.created=mptcp
|
set network.${config}_route_default.created=mptcp
|
||||||
commit network
|
commit network
|
||||||
EOF
|
EOF
|
||||||
else
|
else
|
||||||
[ -n "$ipaddr" ] && [ -z "$(ip rule show from $ipaddr table $id)" ] && ip rule add from $ipaddr table $id pref 0
|
[ -n "$ipaddr" ] && [ -z "$(ip rule show from $ipaddr table $ip4table)" ] && ip rule add from $ipaddr table $ip4table pref 0
|
||||||
[ -z "$(ip rule show oif $iface table $id)" ] && ip rule add oif $iface table $id pref 0
|
[ -z "$(ip rule show oif $iface table $ip4table)" ] && ip rule add oif $iface table $ip4table pref 0
|
||||||
ip route replace $network/$netmask dev $iface scope link metric $id $initcwrwnd >/dev/null 2>&1
|
ip route replace $network/$netmask dev $iface scope link metric $id $initcwrwnd >/dev/null 2>&1
|
||||||
ip route replace $network/$netmask dev $iface scope link table $id $initcwrwnd >/dev/null 2>&1
|
ip route replace $network/$netmask dev $iface scope link table $ip4table $initcwrwnd >/dev/null 2>&1
|
||||||
ip route replace default via $gateway dev $iface table $id $initcwrwnd >/dev/null 2>&1
|
ip route replace default via $gateway dev $iface table $ip4table $initcwrwnd >/dev/null 2>&1
|
||||||
[ "$(uci -q get openmptcprouter.settings.defaultgw)" != "0" ] && ip route replace default via $gateway dev $iface metric $id $initcwrwnd >/dev/null 2>&1
|
[ "$(uci -q get openmptcprouter.settings.defaultgw)" != "0" ] && ip route replace default via $gateway dev $iface metric $id $initcwrwnd >/dev/null 2>&1
|
||||||
#ip route flush cache $id >/dev/null 2>&1
|
#ip route flush cache $id >/dev/null 2>&1
|
||||||
fi
|
fi
|
||||||
|
@ -376,7 +385,7 @@ interface_multipath_settings() {
|
||||||
commit network
|
commit network
|
||||||
EOF
|
EOF
|
||||||
else
|
else
|
||||||
[ -n "$(ip -6 rule list | grep 6$id)" ] && ip -6 rule del table 6$id > /dev/null 2>&1
|
[ -n "$(ip -6 rule list | grep 6$id)" ] && ip -6 rule del table $ip6table > /dev/null 2>&1
|
||||||
ip -6 route flush 6$id > /dev/null 2>&1
|
ip -6 route flush 6$id > /dev/null 2>&1
|
||||||
fi
|
fi
|
||||||
if [ -n "$gateway6" ] && [ -n "$network6" ]; then
|
if [ -n "$gateway6" ] && [ -n "$network6" ]; then
|
||||||
|
@ -393,23 +402,23 @@ interface_multipath_settings() {
|
||||||
set network.${config}_route6=route6
|
set network.${config}_route6=route6
|
||||||
set network.${config}_route6.interface=${config}
|
set network.${config}_route6.interface=${config}
|
||||||
set network.${config}_route6.target=${network6}/${netmask6}
|
set network.${config}_route6.target=${network6}/${netmask6}
|
||||||
set network.${config}_route6.table=6${id}
|
set network.${config}_route6.table=${ip6table}
|
||||||
set network.${config}_route6.created=mptcp
|
set network.${config}_route6.created=mptcp
|
||||||
delete network.${config}_route6_default
|
delete network.${config}_route6_default
|
||||||
set network.${config}_route6_default=route6
|
set network.${config}_route6_default=route6
|
||||||
set network.${config}_route6_default.interface=${config}
|
set network.${config}_route6_default.interface=${config}
|
||||||
set network.${config}_route6_default.target='::'
|
set network.${config}_route6_default.target='::'
|
||||||
set network.${config}_route6_default.gateway=$gateway6
|
set network.${config}_route6_default.gateway=$gateway6
|
||||||
set network.${config}_route6_default.table=6${id}
|
set network.${config}_route6_default.table=${ip6table}
|
||||||
set network.${config}_route6_default.created=mptcp
|
set network.${config}_route6_default.created=mptcp
|
||||||
commit network
|
commit network
|
||||||
EOF
|
EOF
|
||||||
else
|
else
|
||||||
[ -n "$ip6addr" ] && ip -6 rule add from $ip6addr table 6$id pref 0 >/dev/null 2>&1
|
[ -n "$ip6addr" ] && ip -6 rule add from $ip6addr table $ip6table pref 0 >/dev/null 2>&1
|
||||||
[ -z "$(ip rule show pref 0 table 6$id oif $iface)" ] && ip rule add oif $iface table 6$id pref 0
|
[ -z "$(ip rule show pref 0 table $ip6table oif $iface)" ] && ip rule add oif $iface table $ip6table pref 0
|
||||||
ip -6 route replace $network6/$netmask6 dev $iface scope link metric 6$id $initcwrwnd >/dev/null 2>&1
|
ip -6 route replace $network6/$netmask6 dev $iface scope link metric 6$id $initcwrwnd >/dev/null 2>&1
|
||||||
ip -6 route replace $network6/$netmask6 dev $iface scope link table 6$id $initcwrwnd >/dev/null 2>&1
|
ip -6 route replace $network6/$netmask6 dev $iface scope link table $ip6table $initcwrwnd >/dev/null 2>&1
|
||||||
ip -6 route replace default via $gateway6 dev $iface table 6$id $initcwrwnd >/dev/null 2>&1
|
ip -6 route replace default via $gateway6 dev $iface table $ip6table $initcwrwnd >/dev/null 2>&1
|
||||||
[ "$(uci -q get openmptcprouter.settings.defaultgw)" != "0" ] && ip -6 route replace default via $gateway6 dev $iface metric 6$id $initcwrwnd >/dev/null 2>&1
|
[ "$(uci -q get openmptcprouter.settings.defaultgw)" != "0" ] && ip -6 route replace default via $gateway6 dev $iface metric 6$id $initcwrwnd >/dev/null 2>&1
|
||||||
#ip -6 route flush cache 6$id >/dev/null 2>&1
|
#ip -6 route flush cache 6$id >/dev/null 2>&1
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -77,7 +77,7 @@ MY_DEPENDS := \
|
||||||
usb-modeswitch !(TARGET_mvebu||TARGET_ipq806x):uqmi \
|
usb-modeswitch !(TARGET_mvebu||TARGET_ipq806x):uqmi \
|
||||||
!(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):umbim !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):kmod-mii !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):kmod-usb-net !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):kmod-usb-wdm !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):kmod-usb-net-qmi-wwan !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):kmod-usb-net-cdc-mbim !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):umbim \
|
!(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):umbim !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):kmod-mii !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):kmod-usb-net !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):kmod-usb-wdm !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):kmod-usb-net-qmi-wwan !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):kmod-usb-net-cdc-mbim !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):umbim \
|
||||||
!(TARGET_mvebu||TARGET_ramips||TARGET_ipq40xx||TARGET_ipq806x):kmod-usb-net-huawei-cdc-ncm !(TARGET_mvebu||TARGET_ramips||TARGET_ipq40xx||TARGET_ipq806x):kmod-usb-net-rndis !(TARGET_mvebu||TARGET_ramips||TARGET_ipq40xx||TARGET_ipq806x):kmod-usb-net-cdc-ether !(TARGET_mvebu||TARGET_ramips||TARGET_ipq40xx||TARGET_ipq806x):kmod-usb-net-ipheth !(TARGET_mvebu||TARGET_ramips||TARGET_ipq40xx||TARGET_ipq806x):usbmuxd !(TARGET_mvebu||TARGET_ramips||TARGET_ipq40xx||TARGET_ipq806x):libusbmuxd \
|
!(TARGET_mvebu||TARGET_ramips||TARGET_ipq40xx||TARGET_ipq806x):kmod-usb-net-huawei-cdc-ncm !(TARGET_mvebu||TARGET_ramips||TARGET_ipq40xx||TARGET_ipq806x):kmod-usb-net-rndis !(TARGET_mvebu||TARGET_ramips||TARGET_ipq40xx||TARGET_ipq806x):kmod-usb-net-cdc-ether !(TARGET_mvebu||TARGET_ramips||TARGET_ipq40xx||TARGET_ipq806x):kmod-usb-net-ipheth !(TARGET_mvebu||TARGET_ramips||TARGET_ipq40xx||TARGET_ipq806x):usbmuxd !(TARGET_mvebu||TARGET_ramips||TARGET_ipq40xx||TARGET_ipq806x):libusbmuxd \
|
||||||
!(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):luci-proto-qmi !LINUX_5_4:wpad-mesh-openssl !LINUX_5_4:libopenssl-legacy LINUX_5_4:wpad-basic TARGET_r4s:kmod-r8168 (TARGET_x86||TARGET_x86_64):kmod-usb-net-rtl8152 \
|
!(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):luci-proto-qmi !LINUX_5_4:wpad-mesh-openssl !LINUX_5_4:libopenssl-legacy LINUX_5_4:wpad-basic (TARGET_x86||TARGET_x86_64):kmod-usb-net-rtl8152 \
|
||||||
!(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):luci-app-mlvpn !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):mlvpn 464xlat kmod-zram kmod-swconfig swconfig kmod-ipt-nat kmod-ipt-nat6 luci-app-https-dns-proxy kmod-tcp-nanqinlang iptables-mod-ipopt igmpproxy ss iptraf-ng \
|
!(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):luci-app-mlvpn !(TARGET_mvebu||TARGET_ramips||TARGET_ipq806x):mlvpn 464xlat kmod-zram kmod-swconfig swconfig kmod-ipt-nat kmod-ipt-nat6 luci-app-https-dns-proxy kmod-tcp-nanqinlang iptables-mod-ipopt igmpproxy ss iptraf-ng \
|
||||||
luci-app-acl block-mount blockd fstools luci-app-shutdown libwebp luci-proto-gre tcptraceroute luci-proto-mbim luci-app-ttyd luci-mod-dashboard kmod-usb2 libustream-openssl (TARGET_x86||TARGET_x86_64):kmod-ixgbevf (TARGET_x86||TARGET_x86_64):kmod-igbvf \
|
luci-app-acl block-mount blockd fstools luci-app-shutdown libwebp luci-proto-gre tcptraceroute luci-proto-mbim luci-app-ttyd luci-mod-dashboard kmod-usb2 libustream-openssl (TARGET_x86||TARGET_x86_64):kmod-ixgbevf (TARGET_x86||TARGET_x86_64):kmod-igbvf \
|
||||||
hwinfo (TARGET_x86||TARGET_x86_64):dmidecode kmod-bonding luci-proto-bonding luci-app-sysupgrade \
|
hwinfo (TARGET_x86||TARGET_x86_64):dmidecode kmod-bonding luci-proto-bonding luci-app-sysupgrade \
|
||||||
|
@ -88,14 +88,14 @@ MY_DEPENDS := \
|
||||||
xray-core LINUX_5_4:xray-config !LINUX_5_4:xray-config-nft \
|
xray-core LINUX_5_4:xray-config !LINUX_5_4:xray-config-nft \
|
||||||
shadowsocks-rust-sslocal shadowsocks-rust-ssservice LINUX_5_4:shadowsocks-rust-config !LINUX_5_4:shadowsocks-rust-config-nft luci-app-shadowsocks-rust \
|
shadowsocks-rust-sslocal shadowsocks-rust-ssservice LINUX_5_4:shadowsocks-rust-config !LINUX_5_4:shadowsocks-rust-config-nft luci-app-shadowsocks-rust \
|
||||||
luci-proto-external omr-schedule jq luci-app-ddns \
|
luci-proto-external omr-schedule jq luci-app-ddns \
|
||||||
mbim-utils (TARGET_x86||TARGET_x86_64):kmod-r8169 !(TARGET_ipq40xx||TARGET_x86_64):kmod-mt7601u !TARGET_x86_64:kmod-ath9k-htc \
|
mbim-utils (TARGET_x86||TARGET_x86_64||TARGET_rockchip_armv8):kmod-r8169 !(TARGET_ipq40xx||TARGET_x86_64):kmod-mt7601u !TARGET_x86_64:kmod-ath9k-htc \
|
||||||
TARGET_mvebu:kmod-mwlwifi TARGET_mvebu:mwlwifi-firmware-88w8864 TARGET_mvebu:mwlwifi-firmware-88w8897 TARGET_mvebu:mwlwifi-firmware-88w8964 TARGET_mvebu:mwlwifi-firmware-88w8997 \
|
TARGET_mvebu:kmod-mwlwifi TARGET_mvebu:mwlwifi-firmware-88w8864 TARGET_mvebu:mwlwifi-firmware-88w8897 TARGET_mvebu:mwlwifi-firmware-88w8964 TARGET_mvebu:mwlwifi-firmware-88w8997 \
|
||||||
(LINUX_5_4&&(TARGET_x86_64||TARGET_aarch64)):kmod-tcp-bbr2 \
|
(LINUX_5_4&&(TARGET_x86_64||TARGET_aarch64)):kmod-tcp-bbr2 \
|
||||||
TARGET_x86_64:kmod-atlantic \
|
TARGET_x86_64:kmod-atlantic \
|
||||||
!(LINUX_5_4||LINUX_6_1||TARGET_ramips||TARGET_ipq806x):mptcp-bpf-burst !(LINUX_5_4||LINUX_6_1||TARGET_ramips||TARGET_ipq806x):mptcp-bpf-first !(LINUX_5_4||LINUX_6_1||TARGET_ramips||TARGET_ipq806x):mptcp-bpf-red !(LINUX_5_4||LINUX_6_1||TARGET_ramips||TARGET_ipq806x):mptcp-bpf-rr !(LINUX_5_4||LINUX_6_1||TARGET_ramips||TARGET_ipq806x):bpftool-full \
|
!(LINUX_5_4||LINUX_6_1||TARGET_ramips||TARGET_ipq806x):mptcp-bpf-burst !(LINUX_5_4||LINUX_6_1||TARGET_ramips||TARGET_ipq806x):mptcp-bpf-first !(LINUX_5_4||LINUX_6_1||TARGET_ramips||TARGET_ipq806x):mptcp-bpf-red !(LINUX_5_4||LINUX_6_1||TARGET_ramips||TARGET_ipq806x):mptcp-bpf-rr !(LINUX_5_4||LINUX_6_1||TARGET_ramips||TARGET_ipq806x):bpftool-full \
|
||||||
!(LINUX_6_10||LINUX_6_11||LINUX_6_12):kmod-ovpn-dco-v2 lspci TARGET_rockchip:kmod-r8125
|
!(LINUX_6_10||LINUX_6_11||LINUX_6_12):kmod-ovpn-dco-v2 lspci
|
||||||
|
|
||||||
# !TARGET_ipq40xx:kmod-rt2800-usb (TARGET_x86||TARGET_x86_64):kmod-iwlwifi (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl1000 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl100 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl105 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl135 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl2000 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl2030 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl3160 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl3168 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl5000 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl5150 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl6000g2 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl6000g2a (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl6000g2b (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl6050 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl7260 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl7265 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl7265d (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl8260c (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl8265 \
|
# !TARGET_ipq40xx:kmod-rt2800-usb (TARGET_x86||TARGET_x86_64):kmod-iwlwifi (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl1000 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl100 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl105 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl135 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl2000 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl2030 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl3160 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl3168 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl5000 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl5150 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl6000g2 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl6000g2a (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl6000g2b (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl6050 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl7260 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl7265 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl7265d (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl8260c (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-iwl8265 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-ax201 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-ax200 (TARGET_x86||TARGET_x86_64):iwlwifi-firmware-ax210 \
|
||||||
# !TARGET_ipq40xx:kmod-rtl8xxxu !TARGET_ipq40xx:kmod-rtl8192cu !TARGET_ipq40xx:kmod-net-rtl8192su !LINUX_6_1:kmod-rtl8812au-ct (TARGET_x86||TARGET_x86_64):kmod-r8169 (TARGET_x86||TARGET_x86_64):kmod-8139too (TARGET_x86||TARGET_x86_64):kmod-r8125 !TARGET_ipq40xx:kmod-rtl8187 kmod-rtl8xxxu (TARGET_x86||TARGET_x86_64):rtl8192eu-firmware
|
# !TARGET_ipq40xx:kmod-rtl8xxxu !TARGET_ipq40xx:kmod-rtl8192cu !TARGET_ipq40xx:kmod-net-rtl8192su !LINUX_6_1:kmod-rtl8812au-ct (TARGET_x86||TARGET_x86_64):kmod-r8169 (TARGET_x86||TARGET_x86_64):kmod-8139too (TARGET_x86||TARGET_x86_64):kmod-r8125 !TARGET_ipq40xx:kmod-rtl8187 kmod-rtl8xxxu (TARGET_x86||TARGET_x86_64):rtl8192eu-firmware
|
||||||
|
|
||||||
# shadowsocks-rust-sslocal shadowsocks-rust-ssservice LINUX_5_4:shadowsocks-rust-config !LINUX_5_4:shadowsocks-rust-config-nft luci-app-shadowsocks-rust \
|
# shadowsocks-rust-sslocal shadowsocks-rust-ssservice LINUX_5_4:shadowsocks-rust-config !LINUX_5_4:shadowsocks-rust-config-nft luci-app-shadowsocks-rust \
|
||||||
|
|
Loading…
Reference in a new issue