diff options
-rwxr-xr-x | scripts/runqemu-extract-sdk | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/scripts/runqemu-extract-sdk b/scripts/runqemu-extract-sdk index 13e02fa2ca..4da3eb10a7 100755 --- a/scripts/runqemu-extract-sdk +++ b/scripts/runqemu-extract-sdk | |||
@@ -31,9 +31,9 @@ fi | |||
31 | 31 | ||
32 | SYSROOT_SETUP_SCRIPT=`which oe-find-native-sysroot 2> /dev/null` | 32 | SYSROOT_SETUP_SCRIPT=`which oe-find-native-sysroot 2> /dev/null` |
33 | if [ -z "$SYSROOT_SETUP_SCRIPT" ]; then | 33 | if [ -z "$SYSROOT_SETUP_SCRIPT" ]; then |
34 | echo "Error: Unable to find the oe-find-native-sysroot script" | 34 | echo "Error: Unable to find the oe-find-native-sysroot script" |
35 | echo "Did you forget to source your build system environment setup script?" | 35 | echo "Did you forget to source your build system environment setup script?" |
36 | exit 1 | 36 | exit 1 |
37 | fi | 37 | fi |
38 | . $SYSROOT_SETUP_SCRIPT meta-ide-support | 38 | . $SYSROOT_SETUP_SCRIPT meta-ide-support |
39 | PSEUDO_OPTS="-P $OECORE_NATIVE_SYSROOT/usr" | 39 | PSEUDO_OPTS="-P $OECORE_NATIVE_SYSROOT/usr" |
@@ -42,9 +42,9 @@ ROOTFS_TARBALL=$1 | |||
42 | SDK_ROOTFS_DIR=$2 | 42 | SDK_ROOTFS_DIR=$2 |
43 | 43 | ||
44 | if [ ! -e "$ROOTFS_TARBALL" ]; then | 44 | if [ ! -e "$ROOTFS_TARBALL" ]; then |
45 | echo "Error: sdk tarball '$ROOTFS_TARBALL' does not exist" | 45 | echo "Error: sdk tarball '$ROOTFS_TARBALL' does not exist" |
46 | usage | 46 | usage |
47 | exit 1 | 47 | exit 1 |
48 | fi | 48 | fi |
49 | 49 | ||
50 | # Convert SDK_ROOTFS_DIR to a full pathname | 50 | # Convert SDK_ROOTFS_DIR to a full pathname |
@@ -84,7 +84,7 @@ debug_image="`echo $ROOTFS_TARBALL | grep '\-dbg\.tar\.'`" | |||
84 | if [ -e "$pseudo_state_dir" -a -z "$debug_image" ]; then | 84 | if [ -e "$pseudo_state_dir" -a -z "$debug_image" ]; then |
85 | echo "Error: $pseudo_state_dir already exists!" | 85 | echo "Error: $pseudo_state_dir already exists!" |
86 | echo "Please delete the rootfs tree and pseudo directory manually" | 86 | echo "Please delete the rootfs tree and pseudo directory manually" |
87 | echo "if this is really what you want." | 87 | echo "if this is really what you want." |
88 | exit 1 | 88 | exit 1 |
89 | fi | 89 | fi |
90 | 90 | ||