diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2013-07-15 15:10:28 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-07-18 21:23:42 +0100 |
commit | e9b5ef1c2014ee4fbaca7cfd6e206c8fe68d3f7f (patch) | |
tree | 6e9c54cbacac96fcf0864ca398dbbcdd3b1704aa | |
parent | 3cef1294f22052650675bbce833e275670bb1590 (diff) | |
download | poky-e9b5ef1c2014ee4fbaca7cfd6e206c8fe68d3f7f.tar.gz |
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 <mark.hatle@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/busybox/files/simple.script | 2 |
1 files changed, 1 insertions, 1 deletions
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() { | |||
15 | } | 15 | } |
16 | 16 | ||
17 | have_bin_ip=0 | 17 | have_bin_ip=0 |
18 | if [ -x /bin/ip ]; then | 18 | if [ -x /sbin/ip ]; then |
19 | have_bin_ip=1 | 19 | have_bin_ip=1 |
20 | fi | 20 | fi |
21 | 21 | ||