diff options
author | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-12-16 07:16:43 +0000 |
---|---|---|
committer | juhosg <juhosg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2013-12-16 07:16:43 +0000 |
commit | a1f2610531e1c9e452c3c79e0b1ecf91430fd2be (patch) | |
tree | 58e221ea83d6eb5ea77d36845c375b748c6746c4 /target/linux/ar71xx/base-files/etc/uci-defaults | |
parent | e862bf5cd2a509eed0132c9422fb316ce6378b12 (diff) |
ar71xx: add userspace support for WD My Net N750
Signed-off-by: Felix Kaechele <heffer@fedoraproject.org>
[juhosg: remove the image generation part until the ethernet
switch issue is resolved]
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39078 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/base-files/etc/uci-defaults')
-rwxr-xr-x | target/linux/ar71xx/base-files/etc/uci-defaults/02_network | 10 | ||||
-rwxr-xr-x | target/linux/ar71xx/base-files/etc/uci-defaults/09_fix-seama-header | 3 |
2 files changed, 12 insertions, 1 deletions
diff --git a/target/linux/ar71xx/base-files/etc/uci-defaults/02_network b/target/linux/ar71xx/base-files/etc/uci-defaults/02_network index ca57fbbcce..a7eeab017c 100755 --- a/target/linux/ar71xx/base-files/etc/uci-defaults/02_network +++ b/target/linux/ar71xx/base-files/etc/uci-defaults/02_network @@ -207,6 +207,16 @@ dir-825-c1) [ -n "$mac" ] && ucidef_set_interface_macaddr "wan" "$mac" ;; +mynet-n750) + local mac + ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" + ucidef_add_switch "switch0" "1" "1" + ucidef_add_switch_vlan "switch0" "1" "0t 1 2 3 4" + ucidef_add_switch_vlan "switch0" "2" "0t 5" + mac=$(mtd_get_mac_ascii devdata "wanmac") + [ -n "$mac" ] && ucidef_set_interface_macaddr "wan" "$mac" + ;; + dir-835-a1 |\ wndr4300) ucidef_set_interfaces_lan_wan "eth0.1" "eth0.2" diff --git a/target/linux/ar71xx/base-files/etc/uci-defaults/09_fix-seama-header b/target/linux/ar71xx/base-files/etc/uci-defaults/09_fix-seama-header index 8114ed47e6..000b773ed7 100755 --- a/target/linux/ar71xx/base-files/etc/uci-defaults/09_fix-seama-header +++ b/target/linux/ar71xx/base-files/etc/uci-defaults/09_fix-seama-header @@ -14,7 +14,8 @@ fix_seama_header() { board=$(ar71xx_board_name) case "$board" in -mynet-n600) +mynet-n600 | \ +mynet-n750) fix_seama_header kernel ;; esac |