aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/base-files/etc
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-12-26 09:50:36 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-12-26 09:50:36 +0000
commitf3f05d86fe6dd1d35dfaad95c99ab42835feeac4 (patch)
tree09d4be54462bdfefee51ca9ed21bf7cbf1db6459 /target/linux/ar71xx/base-files/etc
parented1889db334bd8c53baf894182ea4109a28c320c (diff)
downloadupstream-f3f05d86fe6dd1d35dfaad95c99ab42835feeac4.tar.gz
upstream-f3f05d86fe6dd1d35dfaad95c99ab42835feeac4.tar.bz2
upstream-f3f05d86fe6dd1d35dfaad95c99ab42835feeac4.zip
ar71xx: add user-space support for AP136-020
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 34885
Diffstat (limited to 'target/linux/ar71xx/base-files/etc')
-rwxr-xr-xtarget/linux/ar71xx/base-files/etc/diag.sh3
-rwxr-xr-xtarget/linux/ar71xx/base-files/etc/uci-defaults/network7
2 files changed, 9 insertions, 1 deletions
diff --git a/target/linux/ar71xx/base-files/etc/diag.sh b/target/linux/ar71xx/base-files/etc/diag.sh
index bfe1416c85..b8585737ce 100755
--- a/target/linux/ar71xx/base-files/etc/diag.sh
+++ b/target/linux/ar71xx/base-files/etc/diag.sh
@@ -36,7 +36,8 @@ get_status_led() {
all0305)
status_led="eap7660d:green:ds4"
;;
- ap136-010)
+ ap136-010|\
+ ap136-020)
status_led="ap136:green:status"
;;
ap81)
diff --git a/target/linux/ar71xx/base-files/etc/uci-defaults/network b/target/linux/ar71xx/base-files/etc/uci-defaults/network
index fe0ce03d9c..746393dd64 100755
--- a/target/linux/ar71xx/base-files/etc/uci-defaults/network
+++ b/target/linux/ar71xx/base-files/etc/uci-defaults/network
@@ -29,6 +29,13 @@ ap136-010)
ucidef_add_switch_vlan "switch0" "2" "5 6"
;;
+ap136-020)
+ ucidef_set_interfaces_lan_wan "eth1" "eth0"
+ ucidef_add_switch "switch0" "1" "1"
+ ucidef_add_switch_vlan "switch0" "1" "0 1 2 3 4"
+ ucidef_add_switch_vlan "switch0" "2" "5 6"
+ ;;
+
db120 |\
rb-2011l | \
rb-2011uas-2hnd)
' href='#n226'>226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283