aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ipq806x/base-files
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2015-04-21 07:15:47 +0000
committerJohn Crispin <blogic@openwrt.org>2015-04-21 07:15:47 +0000
commit73951af83899177c180c0dd70ed75447899289af (patch)
treea30b114df4524afb5a9c3dfb5ab7288b49e42b67 /target/linux/ipq806x/base-files
parent3cb0af6e7f9db8e7552ffa06527708e8a6a23c8d (diff)
downloadmaster-187ad058-73951af83899177c180c0dd70ed75447899289af.tar.gz
master-187ad058-73951af83899177c180c0dd70ed75447899289af.tar.bz2
master-187ad058-73951af83899177c180c0dd70ed75447899289af.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> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45537 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ipq806x/base-files')
-rwxr-xr-xtarget/linux/ipq806x/base-files/etc/uci-defaults/network6
-rw-r--r--target/linux/ipq806x/base-files/lib/ipq806x.sh3
2 files changed, 9 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"
;;
diff --git a/target/linux/ipq806x/base-files/lib/ipq806x.sh b/target/linux/ipq806x/base-files/lib/ipq806x.sh
index 7c47fa2a85..2790f3f386 100644
--- a/target/linux/ipq806x/base-files/lib/ipq806x.sh
+++ b/target/linux/ipq806x/base-files/lib/ipq806x.sh
@@ -17,6 +17,9 @@ ipq806x_board_detect() {
*"AP148")
name="ap148"
;;
+ *"DB149")
+ name="db149"
+ ;;
esac
[ -z "$name" ] && name="unknown"