summaryrefslogtreecommitdiffstats
path: root/scripts/oe-find-native-sysroot
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2016-12-09 18:04:26 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-12-13 22:55:21 +0000
commit556bdb6642294f820b06415aa5243c6beef18a17 (patch)
treebe4fec22a61197faa39e7b5a0277d68526b0510c /scripts/oe-find-native-sysroot
parent0ebe2e64bae6dc554b771d40dc539e5d0dd96060 (diff)
downloadpoky-556bdb6642294f820b06415aa5243c6beef18a17.tar.gz
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>
Diffstat (limited to 'scripts/oe-find-native-sysroot')
-rwxr-xr-xscripts/oe-find-native-sysroot14
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/oe-find-native-sysroot b/scripts/oe-find-native-sysroot
index 81d62b8882..13a5c46039 100755
--- a/scripts/oe-find-native-sysroot
+++ b/scripts/oe-find-native-sysroot
@@ -30,6 +30,20 @@
30# with this program; if not, write to the Free Software Foundation, Inc., 30# with this program; if not, write to the Free Software Foundation, Inc.,
31# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 31# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
32 32
33if [ "$1" = '--help' -o "$1" = '-h' ] ; then
34 echo 'Usage: oe-find-native-sysroot [-h|--help]'
35 echo ''
36 echo 'OpenEmbedded find-native-sysroot - helper script to set'
37 echo 'environment variables OECORE_NATIVE_SYSROOT and PSEUDO'
38 echo 'to the path of the native sysroot directory and pseudo'
39 echo 'executable binary'
40 echo ''
41 echo 'options:'
42 echo ' -h, --help show this help message and exit'
43 echo ''
44 exit 2
45fi
46
33if [ "x$OECORE_NATIVE_SYSROOT" = "x" ]; then 47if [ "x$OECORE_NATIVE_SYSROOT" = "x" ]; then
34 BITBAKE=`which bitbake 2> /dev/null` 48 BITBAKE=`which bitbake 2> /dev/null`
35 if [ "x$BITBAKE" != "x" ]; then 49 if [ "x$BITBAKE" != "x" ]; then