mirror of
https://github.com/Ysurac/openmptcprouter-feeds.git
synced 2025-03-09 15:40:03 +00:00
fix
This commit is contained in:
parent
6339d3ea3e
commit
6a171b4752
6 changed files with 37 additions and 4 deletions
8
netifd/Makefile
Executable file → Normal file
8
netifd/Makefile
Executable file → Normal file
|
@ -1,13 +1,13 @@
|
||||||
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:=2023-11-10
|
PKG_SOURCE_DATE:=2023-08-31
|
||||||
PKG_SOURCE_VERSION:=35facc8306f590a7330789ab6d5785c0d43073ef
|
PKG_SOURCE_VERSION:=1a07f1dff32b3af49e39533e33e8964b59535662
|
||||||
PKG_MIRROR_HASH:=4f73591ae1873e18df235349e478f2196ca0d3123c313a04149dc9d5e2bfb403
|
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
|
||||||
|
|
0
netifd/files/etc/hotplug.d/iface/00-netstate
Executable file → Normal file
0
netifd/files/etc/hotplug.d/iface/00-netstate
Executable file → Normal file
0
netifd/files/etc/uci-defaults/14_migrate-dhcp-release
Executable file → Normal file
0
netifd/files/etc/uci-defaults/14_migrate-dhcp-release
Executable file → Normal file
0
netifd/files/etc/udhcpc.user
Executable file → Normal file
0
netifd/files/etc/udhcpc.user
Executable file → Normal file
|
@ -1,6 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
ifup_all=
|
ifup_all=
|
||||||
|
setup_wifi=
|
||||||
|
|
||||||
if_call() {
|
if_call() {
|
||||||
local interface="$1"
|
local interface="$1"
|
||||||
|
@ -13,6 +14,7 @@ case "$0" in
|
||||||
*ifdown) modes=down;;
|
*ifdown) modes=down;;
|
||||||
*ifup)
|
*ifup)
|
||||||
modes="down up"
|
modes="down up"
|
||||||
|
setup_wifi=1
|
||||||
;;
|
;;
|
||||||
*) echo "Invalid command: $0";;
|
*) echo "Invalid command: $0";;
|
||||||
esac
|
esac
|
||||||
|
@ -23,6 +25,10 @@ while :; do
|
||||||
ifup_all=1
|
ifup_all=1
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
|
-w)
|
||||||
|
setup_wifi=
|
||||||
|
shift
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
break
|
break
|
||||||
;;
|
;;
|
||||||
|
@ -34,6 +40,7 @@ if [ -n "$ifup_all" ]; then
|
||||||
for interface in $(ubus -S list 'network.interface.*'); do
|
for interface in $(ubus -S list 'network.interface.*'); do
|
||||||
if_call "${interface##network.interface.}"
|
if_call "${interface##network.interface.}"
|
||||||
done
|
done
|
||||||
|
[ -n "$setup_wifi" ] && /sbin/wifi up
|
||||||
exit
|
exit
|
||||||
else
|
else
|
||||||
ubus -S list "network.interface.$1" > /dev/null || {
|
ubus -S list "network.interface.$1" > /dev/null || {
|
||||||
|
@ -42,3 +49,29 @@ else
|
||||||
}
|
}
|
||||||
if_call "$1"
|
if_call "$1"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ -n "$setup_wifi" ] && grep -sq config /etc/config/wireless; then
|
||||||
|
. /lib/functions.sh
|
||||||
|
|
||||||
|
find_related_radios() {
|
||||||
|
local wdev wnet
|
||||||
|
config_get wdev "$1" device
|
||||||
|
config_get wnet "$1" network
|
||||||
|
|
||||||
|
if [ -n "$wdev" ]; then
|
||||||
|
for wnet in $wnet; do
|
||||||
|
if [ "$wnet" = "$network" ]; then
|
||||||
|
append radio_devs "$wdev" "$N"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
network="$1"
|
||||||
|
config_load wireless
|
||||||
|
config_foreach find_related_radios wifi-iface
|
||||||
|
|
||||||
|
for dev in $(echo "$radio_devs" | sort -u); do
|
||||||
|
/sbin/wifi up "$dev"
|
||||||
|
done
|
||||||
|
fi
|
||||||
|
|
0
netifd/patches/001-init-pause.patch
Executable file → Normal file
0
netifd/patches/001-init-pause.patch
Executable file → Normal file
Loading…
Add table
Add a link
Reference in a new issue