diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-07-28 10:56:18 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-07-28 10:56:18 +0000 |
commit | 32c053451693fa5c729000baa46df184028fbb12 (patch) | |
tree | 11a6e7ccaa31eaa1c2405c66307803a31cad0e48 | |
parent | 57663ce25b77b8c0c95ea3bc53deb9d81b1b9354 (diff) | |
download | mtk-20170518-32c053451693fa5c729000baa46df184028fbb12.zip mtk-20170518-32c053451693fa5c729000baa46df184028fbb12.tar.gz mtk-20170518-32c053451693fa5c729000baa46df184028fbb12.tar.bz2 |
ramips: rt305x: fix uci-defaults/network script for the RT3350 based boards
This change corrects expected CPU name of Ralink RT3050, which
describes itself as RT3350 (this name is ripped off chip and elevated
to user space via /proc/cpuinfo.)
This patch fixes wired network on DIR-300 rev B and DIR-600 rev B
Signed-off-by: Slawomir Cygan <wiewior@wiewior.eu.org>
SVN-Revision: 27804
-rwxr-xr-x | target/linux/ramips/base-files/etc/uci-defaults/network | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/ramips/base-files/etc/uci-defaults/network b/target/linux/ramips/base-files/etc/uci-defaults/network index 8d4c6d5..35b2fcc 100755 --- a/target/linux/ramips/base-files/etc/uci-defaults/network +++ b/target/linux/ramips/base-files/etc/uci-defaults/network @@ -1,6 +1,6 @@ #!/bin/sh -RT305X=`cat /proc/cpuinfo | grep RT305` -[ -z "${RT305X}" ] || { +RT3X5X=`cat /proc/cpuinfo | grep RT3.5` +[ -z "${RT3X5X}" ] || { uci batch <<EOF set network.lan.ifname=eth0.1 set network.wan=interface |