aboutsummaryrefslogtreecommitdiffstats
path: root/target
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-02-01 00:34:51 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-02-01 00:34:51 +0000
commit50d6e449b3a145cdfd1117eb040b4acf58faebe0 (patch)
tree5a5ab62b89e3a56046663d20f1c3f9ae6b6bfa6e /target
parent0f149688a66387671b22a8eadb2e69899268abeb (diff)
downloadupstream-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_atheros4
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
}
}
href='#n171'>171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227