| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 1 | #!/bin/bash | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 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 |  | 
|  | 24 | if [ $# -lt 1 -o "$1" = '--help' -o "$1" = '-h' ] ; then | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 25 | echo 'oe-run-native: the following arguments are required: <native recipe> <native tool>' | 
|  | 26 | echo 'Usage: oe-run-native native-recipe tool [parameters]' | 
|  | 27 | echo '' | 
|  | 28 | echo 'OpenEmbedded run-native - runs native tools' | 
|  | 29 | echo '' | 
|  | 30 | echo 'arguments:' | 
|  | 31 | echo '  native-recipe       The recipe which provoides tool' | 
|  | 32 | echo '  tool                Native tool to run' | 
|  | 33 | echo '' | 
|  | 34 | exit 2 | 
|  | 35 | fi | 
|  | 36 |  | 
|  | 37 | native_recipe="$1" | 
|  | 38 | tool="$2" | 
|  | 39 |  | 
|  | 40 | if [ "${native_recipe%-native}" = "$native_recipe" ]; then | 
|  | 41 | echo Error: $native_recipe is not a native recipe | 
|  | 42 | echo Error: Use \"oe-run-native -h\" for help | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 43 | exit 1 | 
|  | 44 | fi | 
|  | 45 |  | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 46 | shift | 
|  | 47 |  | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 48 | SYSROOT_SETUP_SCRIPT=`which oe-find-native-sysroot 2> /dev/null` | 
|  | 49 | if [ -z "$SYSROOT_SETUP_SCRIPT" ]; then | 
|  | 50 | echo "Error: Unable to find oe-find-native-sysroot script" | 
|  | 51 | exit 1 | 
|  | 52 | fi | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 53 | . $SYSROOT_SETUP_SCRIPT $native_recipe | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 54 |  | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 55 | OLD_PATH=$PATH | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 56 |  | 
|  | 57 | # look for a tool only in native sysroot | 
|  | 58 | PATH=$OECORE_NATIVE_SYSROOT/usr/bin:$OECORE_NATIVE_SYSROOT/bin:$OECORE_NATIVE_SYSROOT/usr/sbin:$OECORE_NATIVE_SYSROOT/sbin | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 59 | tool_find=`/usr/bin/which $tool 2>/dev/null` | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 60 |  | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 61 | if [ -n "$tool_find" ] ; then | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 62 | # add old path to allow usage of host tools | 
|  | 63 | PATH=$PATH:$OLD_PATH $@ | 
|  | 64 | else | 
| Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 65 | echo "Error: Unable to find '$tool' in $PATH" | 
|  | 66 | echo "Error: Have you run 'bitbake $native_recipe -caddto_recipe_sysroot'?" | 
| Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 67 | exit 1 | 
|  | 68 | fi |