diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-02-01 00:34:51 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-02-01 00:34:51 +0000 |
commit | 50d6e449b3a145cdfd1117eb040b4acf58faebe0 (patch) | |
tree | 5a5ab62b89e3a56046663d20f1c3f9ae6b6bfa6e /target | |
parent | 0f149688a66387671b22a8eadb2e69899268abeb (diff) | |
download | upstream-50d6e449b3a145cdfd1117eb040b4acf58faebe0.tar.gz upstream-50d6e449b3a145cdfd1117eb040b4acf58faebe0.tar.bz2 upstream-50d6e449b3a145cdfd1117eb040b4acf58faebe0.zip |
preinit: use grep -q where applicable
SVN-Revision: 19482
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/atheros/base-files/lib/preinit/15_preinit_iface_atheros | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/atheros/base-files/lib/preinit/15_preinit_iface_atheros b/target/linux/atheros/base-files/lib/preinit/15_preinit_iface_atheros index 418d5edd4f..9807365c2a 100644 --- a/target/linux/atheros/base-files/lib/preinit/15_preinit_iface_atheros +++ b/target/linux/atheros/base-files/lib/preinit/15_preinit_iface_atheros @@ -3,7 +3,7 @@ # reset button only supported on ar5315+ at the moment preinit_ip() { if [ -z "$pi_ifname" ]; then - grep 'Atheros AR231[567]' /proc/cpuinfo > /dev/null && { + grep -q 'Atheros AR231[567]' /proc/cpuinfo && { if [ -e "/sys/bus/mdio_bus/drivers/Infineon ADM6996/0:00" -o \ -e "/sys/bus/mdio_bus/drivers/Marvell 88E6060/0:10" ]; then vconfig set_name_type DEV_PLUS_VID_NO_PAD @@ -16,7 +16,7 @@ preinit_ip() { pi_ifname=$ifname } fi - [ -n "$pi_ifname" ] && grep "$pi_ifname" /proc/net/dev >/dev/null && { + [ -n "$pi_ifname" ] && grep -q "$pi_ifname" /proc/net/dev && { ifconfig $pi_ifname $pi_ip netmask $pi_netmask broadcast $pi_broadcast up } } |