mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2025-03-02 11:42:27 +00:00
preinit: use grep -q where applicable
SVN-Revision: 19482
This commit is contained in:
parent
0f149688a6
commit
50d6e449b3
@ -3,7 +3,7 @@
|
|||||||
# reset button only supported on ar5315+ at the moment
|
# reset button only supported on ar5315+ at the moment
|
||||||
preinit_ip() {
|
preinit_ip() {
|
||||||
if [ -z "$pi_ifname" ]; then
|
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 \
|
if [ -e "/sys/bus/mdio_bus/drivers/Infineon ADM6996/0:00" -o \
|
||||||
-e "/sys/bus/mdio_bus/drivers/Marvell 88E6060/0:10" ]; then
|
-e "/sys/bus/mdio_bus/drivers/Marvell 88E6060/0:10" ]; then
|
||||||
vconfig set_name_type DEV_PLUS_VID_NO_PAD
|
vconfig set_name_type DEV_PLUS_VID_NO_PAD
|
||||||
@ -16,7 +16,7 @@ preinit_ip() {
|
|||||||
pi_ifname=$ifname
|
pi_ifname=$ifname
|
||||||
}
|
}
|
||||||
fi
|
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
|
ifconfig $pi_ifname $pi_ip netmask $pi_netmask broadcast $pi_broadcast up
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user