[oe-commits] Roy.Li : zeroconf: The ip is being installed into / sbin as of the latest busybox.

git at git.openembedded.org git at git.openembedded.org
Wed Jul 17 19:44:39 UTC 2013


Module: meta-openembedded.git
Branch: master
Commit: 69814da193dc5073ad447a310f8a590fedc46e6a
URL:    http://git.openembedded.org/?p=meta-openembedded.git&a=commit;h=69814da193dc5073ad447a310f8a590fedc46e6a

Author: Roy.Li <rongqing.li at windriver.com>
Date:   Tue Jul 16 17:53:39 2013 +0800

zeroconf: The ip is being installed into /sbin as of the latest busybox.

The ip is being installed into /sbin as of the latest busybox, or oe-core.

Signed-off-by: Roy.Li <rongqing.li at windriver.com>
Signed-off-by: Joe MacDonald <joe.macdonald at windriver.com>

---

 .../zeroconf/zeroconf/debian-zeroconf              |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-networking/recipes-protocols/zeroconf/zeroconf/debian-zeroconf b/meta-networking/recipes-protocols/zeroconf/zeroconf/debian-zeroconf
index c3705d2..0c9d15b 100644
--- a/meta-networking/recipes-protocols/zeroconf/zeroconf/debian-zeroconf
+++ b/meta-networking/recipes-protocols/zeroconf/zeroconf/debian-zeroconf
@@ -35,10 +35,10 @@ done
 
 # should we only allocate an address if we do not already have one?
 if [ -n "$FALLBACK" ]; then
-    /bin/ip addr show $IFACE scope global | grep -q "inet"
+    /sbin/ip addr show $IFACE scope global | grep -q "inet"
     IP=$?
     if [ $IP -eq 0 ]; then
-        /bin/ip route add 169.254.0.0/16 dev $IFACE
+        /sbin/ip route add 169.254.0.0/16 dev $IFACE
         exit 0
     fi
 fi



More information about the Openembedded-commits mailing list