busybox: fix ip reference in simple.script
authorMark Hatle <mark.hatle@windriver.com>
Mon, 15 Jul 2013 20:10:28 +0000 (15:10 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 18 Jul 2013 20:23:42 +0000 (21:23 +0100)
The ip is being installed into /sbin as of the latest busybox.

(From OE-Core rev: 222ae6001db286d66462c6334f7f054ca727b7be)

Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-core/busybox/files/simple.script

index 6973985..78ac424 100644 (file)
@@ -15,7 +15,7 @@ root_is_nfs() {
 }
 
 have_bin_ip=0
-if [ -x /bin/ip ]; then
+if [ -x /sbin/ip ]; then
   have_bin_ip=1
 fi