oe-find-native-sysroot: create usage output

Created usage output for oe-find-native-sysroot script.

[YOCTO #10751]

(From OE-Core rev: 8ddfc48c7f3e2ca45c035cec492fdc31c6ad484f)

Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Ed Bartosh 2016-12-09 18:04:26 +02:00 committed by Richard Purdie
parent 0ebe2e64ba
commit 556bdb6642
1 changed files with 14 additions and 0 deletions

View File

@ -30,6 +30,20 @@
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
if [ "$1" = '--help' -o "$1" = '-h' ] ; then
echo 'Usage: oe-find-native-sysroot [-h|--help]'
echo ''
echo 'OpenEmbedded find-native-sysroot - helper script to set'
echo 'environment variables OECORE_NATIVE_SYSROOT and PSEUDO'
echo 'to the path of the native sysroot directory and pseudo'
echo 'executable binary'
echo ''
echo 'options:'
echo ' -h, --help show this help message and exit'
echo ''
exit 2
fi
if [ "x$OECORE_NATIVE_SYSROOT" = "x" ]; then
BITBAKE=`which bitbake 2> /dev/null`
if [ "x$BITBAKE" != "x" ]; then