mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
Update netifd
This commit is contained in:
parent
370a2479a5
commit
e27ec3fe47
5 changed files with 32 additions and 13 deletions
|
@ -1,19 +1,19 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=netifd
|
PKG_NAME:=netifd
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=3
|
||||||
|
|
||||||
PKG_SOURCE_PROTO:=git
|
PKG_SOURCE_PROTO:=git
|
||||||
PKG_SOURCE_URL=$(PROJECT_GIT)/project/netifd.git
|
PKG_SOURCE_URL=$(PROJECT_GIT)/project/netifd.git
|
||||||
PKG_SOURCE_DATE:=2021-07-26
|
PKG_SOURCE_DATE:=2023-08-31
|
||||||
PKG_SOURCE_VERSION:=440eb0647708274cc8d7d9e7c2bb0cfdfba90023
|
PKG_SOURCE_VERSION:=1a07f1dff32b3af49e39533e33e8964b59535662
|
||||||
PKG_MIRROR_HASH:=eed957036ab608fdc49bdf801fc5b4405fcd2a3a5e5d3343ec39898e156c10e9
|
PKG_MIRROR_HASH:=dc621dd04c3c9631002f929cf10a4620f57af8b0baf614c590bda17957fa6201
|
||||||
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
PKG_MAINTAINER:=Felix Fietkau <nbd@nbd.name>
|
||||||
|
|
||||||
PKG_LICENSE:=GPL-2.0
|
PKG_LICENSE:=GPL-2.0
|
||||||
PKG_LICENSE_FILES:=
|
PKG_LICENSE_FILES:=
|
||||||
|
|
||||||
PKG_BUILD_PARALLEL:=1
|
PKG_BUILD_FLAGS:=lto
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
include $(INCLUDE_DIR)/package.mk
|
||||||
include $(INCLUDE_DIR)/cmake.mk
|
include $(INCLUDE_DIR)/cmake.mk
|
||||||
|
@ -32,10 +32,7 @@ endef
|
||||||
|
|
||||||
TARGET_CFLAGS += \
|
TARGET_CFLAGS += \
|
||||||
-I$(STAGING_DIR)/usr/include/libnl-tiny \
|
-I$(STAGING_DIR)/usr/include/libnl-tiny \
|
||||||
-I$(STAGING_DIR)/usr/include \
|
-I$(STAGING_DIR)/usr/include
|
||||||
-flto
|
|
||||||
|
|
||||||
TARGET_LDFLAGS += -flto -fuse-linker-plugin
|
|
||||||
|
|
||||||
CMAKE_OPTIONS += \
|
CMAKE_OPTIONS += \
|
||||||
-DLIBNL_LIBS=-lnl-tiny \
|
-DLIBNL_LIBS=-lnl-tiny \
|
||||||
|
|
18
netifd/files/etc/init.d/packet_steering
Executable file
18
netifd/files/etc/init.d/packet_steering
Executable file
|
@ -0,0 +1,18 @@
|
||||||
|
#!/bin/sh /etc/rc.common
|
||||||
|
|
||||||
|
START=25
|
||||||
|
USE_PROCD=1
|
||||||
|
|
||||||
|
start_service() {
|
||||||
|
reload_service
|
||||||
|
}
|
||||||
|
|
||||||
|
service_triggers() {
|
||||||
|
procd_add_reload_trigger "network"
|
||||||
|
procd_add_reload_trigger "firewall"
|
||||||
|
procd_add_raw_trigger "interface.*" 1000 /etc/init.d/packet_steering reload
|
||||||
|
}
|
||||||
|
|
||||||
|
reload_service() {
|
||||||
|
/usr/libexec/network/packet-steering.sh
|
||||||
|
}
|
|
@ -61,6 +61,7 @@ setup_interface() {
|
||||||
[ -n "$message" ] && json_add_string message "$message"
|
[ -n "$message" ] && json_add_string message "$message"
|
||||||
[ -n "$timezone" ] && json_add_int timezone "$timezone"
|
[ -n "$timezone" ] && json_add_int timezone "$timezone"
|
||||||
[ -n "$lease" ] && json_add_int leasetime "$lease"
|
[ -n "$lease" ] && json_add_int leasetime "$lease"
|
||||||
|
[ -n "$serverid" ] && json_add_string dhcpserver "$serverid"
|
||||||
proto_close_data
|
proto_close_data
|
||||||
|
|
||||||
proto_send_update "$INTERFACE"
|
proto_send_update "$INTERFACE"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
[ -L /sbin/udhcpc ] || exit 0
|
[ -x /sbin/udhcpc ] || exit 0
|
||||||
|
|
||||||
. /lib/functions.sh
|
. /lib/functions.sh
|
||||||
. ../netifd-proto.sh
|
. ../netifd-proto.sh
|
||||||
|
@ -68,7 +68,7 @@ proto_dhcp_setup() {
|
||||||
-p /var/run/udhcpc-$iface.pid \
|
-p /var/run/udhcpc-$iface.pid \
|
||||||
-s /lib/netifd/dhcp.script \
|
-s /lib/netifd/dhcp.script \
|
||||||
-f -t 0 -i "$iface" \
|
-f -t 0 -i "$iface" \
|
||||||
${ipaddr:+-r $ipaddr} \
|
${ipaddr:+-r ${ipaddr/\/*/}} \
|
||||||
${hostname:+-x "hostname:$hostname"} \
|
${hostname:+-x "hostname:$hostname"} \
|
||||||
${vendorid:+-V "$vendorid"} \
|
${vendorid:+-V "$vendorid"} \
|
||||||
$clientid $defaultreqopts $broadcast $norelease $dhcpopts
|
$clientid $defaultreqopts $broadcast $norelease $dhcpopts
|
||||||
|
|
7
netifd/files/etc/hotplug.d/net/20-smp-packet-steering → netifd/files/usr/libexec/network/packet-steering.sh
Normal file → Executable file
7
netifd/files/etc/hotplug.d/net/20-smp-packet-steering → netifd/files/usr/libexec/network/packet-steering.sh
Normal file → Executable file
|
@ -1,6 +1,4 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
[ "$ACTION" = add ] || exit
|
|
||||||
|
|
||||||
NPROCS="$(grep -c "^processor.*:" /proc/cpuinfo)"
|
NPROCS="$(grep -c "^processor.*:" /proc/cpuinfo)"
|
||||||
[ "$NPROCS" -gt 1 ] || exit
|
[ "$NPROCS" -gt 1 ] || exit
|
||||||
|
|
||||||
|
@ -40,6 +38,11 @@ packet_steering="$(uci get "network.@globals[0].packet_steering")"
|
||||||
exec 512>/var/lock/smp_tune.lock
|
exec 512>/var/lock/smp_tune.lock
|
||||||
flock 512 || exit 1
|
flock 512 || exit 1
|
||||||
|
|
||||||
|
[ -e "/usr/libexec/platform/packet-steering.sh" ] && {
|
||||||
|
/usr/libexec/platform/packet-steering.sh
|
||||||
|
exit 0
|
||||||
|
}
|
||||||
|
|
||||||
for dev in /sys/class/net/*; do
|
for dev in /sys/class/net/*; do
|
||||||
[ -d "$dev" ] || continue
|
[ -d "$dev" ] || continue
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue