mirror of
https://github.com/gtxaspec/wz_mini_hacks.git
synced 2024-11-22 05:27:24 +00:00
Start adding support for Bonding Ethernet and Wifi
This commit is contained in:
parent
f4af3ddb21
commit
2736fc299d
@ -63,17 +63,37 @@ wait_wlan() {
|
||||
rename_interface() {
|
||||
##Fool iCamera by renaming the hardline interface to wlan0
|
||||
echo "renaming interfaces"
|
||||
|
||||
# Bring all interfaces down
|
||||
ifconfig $1 down
|
||||
ifconfig wlan0 down
|
||||
ifconfig bond0 down
|
||||
|
||||
# Rename the real wlan0 interface
|
||||
/opt/wz_mini/bin/busybox ip link set wlan0 name wlanold
|
||||
/opt/wz_mini/bin/busybox ip addr flush dev wlanold
|
||||
/opt/wz_mini/bin/busybox ip link set $1 name wlan0
|
||||
|
||||
# Have to bring bond0 up to be able to bond our slaves.
|
||||
/opt/wz_mini/bin/busybox ip link set bond0 up
|
||||
|
||||
# Enslave the Ethernet and Original Wifi interfaces
|
||||
# under the Bonding interface.
|
||||
/opt/wz_mini/tmp/.bin/ifenslave bond0 eth0 wlanold
|
||||
|
||||
# Have to bring bond0 down to be rename the interface
|
||||
/opt/wz_mini/bin/busybox ip link set bond0 down
|
||||
|
||||
# Name the bond0 interface to be the "new" wlan0 interface
|
||||
/opt/wz_mini/bin/busybox ip link set bond0 name wlan0
|
||||
|
||||
# Bring the newly renamed wlan0 back up
|
||||
eth_wlan_up
|
||||
}
|
||||
|
||||
eth_wlan_up() {
|
||||
##Run DHCP client, and bind mount our fake wpa_cli.sh to fool iCamera
|
||||
ifconfig wlan0 up
|
||||
|
||||
pkill udhcpc
|
||||
udhcpc -i wlan0 -x hostname:$HOSTNAME -p /var/run/udhcpc.pid -b
|
||||
if [[ "$V2" == "true" ]]; then
|
||||
@ -224,6 +244,9 @@ if [[ "$ENABLE_USB_ETH" == "true" ]]; then
|
||||
insmod $KMOD_PATH/kernel/drivers/net/usb/$i.ko
|
||||
done
|
||||
|
||||
# Insert the bonding driver when running Ethernet
|
||||
insmod $KMOD_PATH/kernel/drivers/net/bonding.ko mode=active-backup miimon=100 downdelay=5000 updelay=5000 primary=eth0
|
||||
|
||||
swap_enable
|
||||
|
||||
netloop eth0
|
||||
|
Loading…
Reference in New Issue
Block a user