summaryrefslogtreecommitdiffstats
path: root/scripts/oe-run-native
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2016-10-06 05:18:23 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-10-06 07:53:51 +0100
commitf12825d4bf7091576856650123c7d7614b9089af (patch)
tree53da4d6911efe13ba03b83990a48c4a461298dc7 /scripts/oe-run-native
parentce7e0252c498c25c782e181283172591d3e8b76b (diff)
downloadpoky-f12825d4bf7091576856650123c7d7614b9089af.tar.gz
scripts: Rename 'native' to 'oe-run-native'
Makes it a bit more descriptive and potentially more discoverable. Most people seemed to prefer an oe- prefix, so let's go with that. (From OE-Core rev: 97e526ca10a00010987ffa3b90ec48337503a573) Signed-off-by: Ulf Magnusson <ulfalizer@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts/oe-run-native')
-rwxr-xr-xscripts/oe-run-native48
1 files changed, 48 insertions, 0 deletions
diff --git a/scripts/oe-run-native b/scripts/oe-run-native
new file mode 100755
index 0000000000..496e34f70e
--- /dev/null
+++ b/scripts/oe-run-native
@@ -0,0 +1,48 @@
1#!/bin/sh
2#
3# Copyright (c) 2016, Intel Corporation.
4# All Rights Reserved
5#
6# This program is free software; you can redistribute it and/or modify
7# it under the terms of the GNU General Public License as published by
8# the Free Software Foundation; either version 2 of the License, or
9# (at your option) any later version.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
14# the GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License
17# along with this program; if not, see <http://www.gnu.org/licenses/>
18#
19
20#
21# This script is for running tools from native oe sysroot
22#
23
24if [ $# -lt 1 -o "$1" = '--help' -o "$1" = '-h' ] ; then
25 echo "Usage: $0 <native tool> [parameters]"
26 exit 1
27fi
28
29SYSROOT_SETUP_SCRIPT=`which oe-find-native-sysroot 2> /dev/null`
30if [ -z "$SYSROOT_SETUP_SCRIPT" ]; then
31 echo "Error: Unable to find oe-find-native-sysroot script"
32 exit 1
33fi
34. $SYSROOT_SETUP_SCRIPT
35
36OLDPATH=$PATH
37
38# look for a tool only in native sysroot
39PATH=$OECORE_NATIVE_SYSROOT/usr/bin:$OECORE_NATIVE_SYSROOT/bin:$OECORE_NATIVE_SYSROOT/usr/sbin:$OECORE_NATIVE_SYSROOT/sbin
40tool=`/usr/bin/which $1 2>/dev/null`
41
42if [ -n "$tool" ] ; then
43 # add old path to allow usage of host tools
44 PATH=$PATH:$OLD_PATH $@
45else
46 echo "Error: Unable to find '$1' in native sysroot"
47 exit 1
48fi