From e9b5ef1c2014ee4fbaca7cfd6e206c8fe68d3f7f Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Mon, 15 Jul 2013 15:10:28 -0500 Subject: busybox: fix ip reference in simple.script The ip is being installed into /sbin as of the latest busybox. (From OE-Core rev: 222ae6001db286d66462c6334f7f054ca727b7be) Signed-off-by: Mark Hatle Signed-off-by: Saul Wold Signed-off-by: Richard Purdie --- meta/recipes-core/busybox/files/simple.script | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/recipes-core') diff --git a/meta/recipes-core/busybox/files/simple.script b/meta/recipes-core/busybox/files/simple.script index 69739850d8..78ac4242a8 100644 --- a/meta/recipes-core/busybox/files/simple.script +++ b/meta/recipes-core/busybox/files/simple.script @@ -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 -- cgit v1.2.3-54-g00ecf