summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorDennis Menschel <menschel-d@posteo.de>2018-06-13 20:28:16 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-06-18 11:07:57 +0100
commit81c537475128718ae9fb9113e9766fde78181075 (patch)
treefac90886dec780667efe34df4380b84cfd5cbae0 /scripts
parent959aae0c2b4c7b7f0342c825890fdd64b3f08d66 (diff)
downloadpoky-81c537475128718ae9fb9113e9766fde78181075.tar.gz
runqemu-extract-sdk: fix whitespace errors
Indentation using a mix of whitespaces and tabs has been unified in favor of tabs. (From OE-Core rev: 3827f1aa4a2bb433e445802c48e32f72932950e6) Signed-off-by: Dennis Menschel <menschel-d@posteo.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/runqemu-extract-sdk14
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
32SYSROOT_SETUP_SCRIPT=`which oe-find-native-sysroot 2> /dev/null` 32SYSROOT_SETUP_SCRIPT=`which oe-find-native-sysroot 2> /dev/null`
33if [ -z "$SYSROOT_SETUP_SCRIPT" ]; then 33if [ -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
37fi 37fi
38. $SYSROOT_SETUP_SCRIPT meta-ide-support 38. $SYSROOT_SETUP_SCRIPT meta-ide-support
39PSEUDO_OPTS="-P $OECORE_NATIVE_SYSROOT/usr" 39PSEUDO_OPTS="-P $OECORE_NATIVE_SYSROOT/usr"
@@ -42,9 +42,9 @@ ROOTFS_TARBALL=$1
42SDK_ROOTFS_DIR=$2 42SDK_ROOTFS_DIR=$2
43 43
44if [ ! -e "$ROOTFS_TARBALL" ]; then 44if [ ! -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
48fi 48fi
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\.'`"
84if [ -e "$pseudo_state_dir" -a -z "$debug_image" ]; then 84if [ -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
89fi 89fi
90 90