diff options
author | Luka Perkov <luka@openwrt.org> | 2014-05-28 21:43:39 +0000 |
---|---|---|
committer | Luka Perkov <luka@openwrt.org> | 2014-05-28 21:43:39 +0000 |
commit | d5c281f5b432137b8ae039d3eeab589bbc145691 (patch) | |
tree | 22eee446c8415e8a0afd98bbf14a56e43a0db5f6 /target/linux/kirkwood/base-files/etc | |
parent | c0c92f8a1aef2a8f2681c8bb43c369f7ced7fa36 (diff) | |
download | upstream-d5c281f5b432137b8ae039d3eeab589bbc145691.tar.gz upstream-d5c281f5b432137b8ae039d3eeab589bbc145691.tar.bz2 upstream-d5c281f5b432137b8ae039d3eeab589bbc145691.zip |
kirkwood: add support for Linksys EA4500
Support is added only for kernel 3.14 - do not show it until
the switch is made.
Following uboot env changes are needed to make it work on stock uboot:
---
setenv owrt_bootargs_root ubi.mtd=3 root=ubi0:rootfs rootfstype=ubifs rw
setenv owrt_mtdparts mtdparts=orion_nand:0x80000@0x0(uboot),0x20000@0x80000(uboot_env),0x200000@0x200000(kernel),-@0x400000(root)
setenv owrt_boot nand read.e \${loadaddr} 0x200000 0x200000 \; setenv bootargs \$(console) \$(owrt_mtdparts) \${owrt_bootargs_root} \; bootm \${loadaddr}
setenv bootcmd run owrt_boot
saveenv
---
Signed-off-by: Luka Perkov <luka@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@40871 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/kirkwood/base-files/etc')
-rw-r--r-- | target/linux/kirkwood/base-files/etc/uci-defaults/01_leds | 6 | ||||
-rw-r--r-- | target/linux/kirkwood/base-files/etc/uci-defaults/02_network | 5 |
2 files changed, 9 insertions, 2 deletions
diff --git a/target/linux/kirkwood/base-files/etc/uci-defaults/01_leds b/target/linux/kirkwood/base-files/etc/uci-defaults/01_leds index 1600464da4..1e7e064085 100644 --- a/target/linux/kirkwood/base-files/etc/uci-defaults/01_leds +++ b/target/linux/kirkwood/base-files/etc/uci-defaults/01_leds @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2012-2013 OpenWrt.org +# Copyright (C) 2012-2014 OpenWrt.org # . /lib/functions/uci-defaults.sh @@ -14,6 +14,10 @@ case "`cat /proc/device-tree/model`" in ucidef_set_led_default "health" "status:green:health" "1" ucidef_set_led_default "fault" "status:orange:fault" "1" ;; +"Linksys EA4500") + ucidef_set_led_default "health" "ea4500:white:health" "1" + ucidef_set_led_default "pulse" "ea4500:white:pulse" "1" + ;; *) ;; esac diff --git a/target/linux/kirkwood/base-files/etc/uci-defaults/02_network b/target/linux/kirkwood/base-files/etc/uci-defaults/02_network index c6ceff78c9..0c55cbfd28 100644 --- a/target/linux/kirkwood/base-files/etc/uci-defaults/02_network +++ b/target/linux/kirkwood/base-files/etc/uci-defaults/02_network @@ -1,6 +1,6 @@ #!/bin/sh # -# Copyright (C) 2012-2013 OpenWrt.org +# Copyright (C) 2012-2014 OpenWrt.org # [ -e /etc/config/network ] && exit 0 @@ -37,6 +37,9 @@ case "`cat /proc/device-tree/model`" in "Cloud Engines Pogoplug E02") set_lan_dhcp "eth0" ;; +"Linksys EA4500") + ucidef_set_interfaces_lan_wan "eth0" "eth1" + ;; *) ucidef_set_interface_lan "eth0" ;; |