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>
This commit is contained in:
Mark Hatle 2013-07-15 15:10:28 -05:00 committed by Richard Purdie
parent 3cef1294f2
commit e9b5ef1c20
1 changed files with 1 additions and 1 deletions

View 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