summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDexuan Cui <dexuan.cui@intel.com>2010-08-19 15:01:29 +0800
committerRichard Purdie <rpurdie@linux.intel.com>2010-08-20 16:20:13 +0100
commite8231e09505dd05a0541f117a1acd25783cb83e1 (patch)
tree692c539af33ec289ec908d6de4b754e0000bd252
parent9cb1b87640fff33d20bb87b67b63cfa6988462c4 (diff)
downloadast2050-yocto-poky-e8231e09505dd05a0541f117a1acd25783cb83e1.zip
ast2050-yocto-poky-e8231e09505dd05a0541f117a1acd25783cb83e1.tar.gz
poky-qemu-internal: fix the echo of KERNCMDLINE
Without the fix, when the commandline is printed with the "echo" command, it loses the quotes and this confuses people. Thanks Richard for pointing this out. Signed-off-by: Dexuan Cui <dexuan.cui@intel.com>
-rwxr-xr-xscripts/poky-qemu-internal2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/poky-qemu-internal b/scripts/poky-qemu-internal
index aac51b5..a9029dc 100755
--- a/scripts/poky-qemu-internal
+++ b/scripts/poky-qemu-internal
@@ -352,7 +352,7 @@ else
fi
echo "Running $QEMU..."
-echo $QEMUBIN -kernel $ZIMAGE $QEMUOPTIONS $SERIALOPTS $* --append "$KERNCMDLINE"
+echo $QEMUBIN -kernel $ZIMAGE $QEMUOPTIONS $SERIALOPTS $* --append '"'$KERNCMDLINE'"'
$QEMUBIN -kernel $ZIMAGE $QEMUOPTIONS $SERIALOPTS $* --append "$KERNCMDLINE" || /bin/true
release_lock
OpenPOWER on IntegriCloud