diff options
author | John Crispin <john@openwrt.org> | 2015-04-21 07:15:47 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2015-04-21 07:15:47 +0000 |
commit | 0ddebefc74e6e9e265f01c087b132d6b6a7a748b (patch) | |
tree | b25a8abb2a6b33c9389264e8e11e96ba11092b9e /target/linux/ipq806x/base-files/etc | |
parent | 0fd202f3e563573519154f733e3fc411165d4761 (diff) | |
download | upstream-0ddebefc74e6e9e265f01c087b132d6b6a7a748b.tar.gz upstream-0ddebefc74e6e9e265f01c087b132d6b6a7a748b.tar.bz2 upstream-0ddebefc74e6e9e265f01c087b132d6b6a7a748b.zip |
ipq806x: add db149 support to OpenWrt init scripts
DB149 is a IPQ8064 based platform. This patch adds the init scripts to
detect it, configure the network accordingly, and generate a flashable
image for it.
Signed-off-by: Mathieu Olivari <mathieu@codeaurora.org>
SVN-Revision: 45537
Diffstat (limited to 'target/linux/ipq806x/base-files/etc')
-rwxr-xr-x | target/linux/ipq806x/base-files/etc/uci-defaults/network | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/target/linux/ipq806x/base-files/etc/uci-defaults/network b/target/linux/ipq806x/base-files/etc/uci-defaults/network index 34e9fe482b..354cea9e3d 100755 --- a/target/linux/ipq806x/base-files/etc/uci-defaults/network +++ b/target/linux/ipq806x/base-files/etc/uci-defaults/network @@ -22,6 +22,12 @@ ap148) ucidef_add_switch_vlan "switch0" "1" "6 1 2 3 4" ucidef_add_switch_vlan "switch0" "2" "0 5" ;; +db149) + ucidef_set_interfaces_lan_wan "eth1 eth2 eth3" "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" ;; |