mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
ipq806x: initialize the network on AP148
Signed-off-by: Mathieu Olivari <mathieu@codeaurora.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44522 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
59b92343aa
commit
5b71c599e2
32
target/linux/ipq806x/base-files/etc/uci-defaults/network
Executable file
32
target/linux/ipq806x/base-files/etc/uci-defaults/network
Executable file
@ -0,0 +1,32 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (c) 2015 The Linux Foundation. All rights reserved.
|
||||
# Copyright (C) 2011 OpenWrt.org
|
||||
#
|
||||
|
||||
[ -e /etc/config/network ] && exit 0
|
||||
|
||||
touch /etc/config/network
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
. /lib/ipq806x.sh
|
||||
|
||||
ucidef_set_interface_loopback
|
||||
|
||||
board=$(ipq806x_board_name)
|
||||
|
||||
case "$board" in
|
||||
ap148)
|
||||
ucidef_set_interfaces_lan_wan "eth1" "eth0"
|
||||
ucidef_add_switch "switch0" "1" "1"
|
||||
ucidef_add_switch_vlan "switch0" "1" "6 1 2 3 4"
|
||||
ucidef_add_switch_vlan "switch0" "2" "0 5"
|
||||
;;
|
||||
*)
|
||||
echo "Unsupported hardware. Network interfaces not intialized"
|
||||
;;
|
||||
esac
|
||||
|
||||
uci commit network
|
||||
|
||||
exit 0
|
||||
Loading…
x
Reference in New Issue
Block a user