mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
Fix for packages updates and versions updates
This commit is contained in:
parent
51ad144788
commit
4c781208a1
14 changed files with 145 additions and 116 deletions
|
@ -9,8 +9,8 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=mptcp
|
||||
PKG_VERSION:=4.0
|
||||
PKG_RELEASE:=2
|
||||
PKG_VERSION:=5.0
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_MAINTAINER:=Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
|
||||
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
||||
|
|
|
@ -1,13 +1,15 @@
|
|||
#!/bin/sh
|
||||
uci -q batch <<-EOF
|
||||
set network.globals.multipath='enable'
|
||||
set network.globals.mptcp_path_manager='fullmesh'
|
||||
set network.globals.mptcp_scheduler='default'
|
||||
set network.globals.congestion='olia'
|
||||
set network.globals.mptcp_checksum=1
|
||||
set network.globals.mptcp_syn_retries=4
|
||||
commit network
|
||||
EOF
|
||||
if [ "$(uci -q show network.globals | grep multipath)" = "" ]; then
|
||||
uci -q batch <<-EOF
|
||||
set network.globals.multipath='enable'
|
||||
set network.globals.mptcp_path_manager='fullmesh'
|
||||
set network.globals.mptcp_scheduler='default'
|
||||
set network.globals.congestion='olia'
|
||||
set network.globals.mptcp_checksum=1
|
||||
set network.globals.mptcp_syn_retries=4
|
||||
commit network
|
||||
EOF
|
||||
fi
|
||||
uci -q batch <<-EOF
|
||||
delete ucitrack.@mptcp[-1]
|
||||
add ucitrack mptcp
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue