diff options
author | Dexuan Cui <dexuan.cui@intel.com> | 2010-08-19 15:01:29 +0800 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-08-20 16:20:13 +0100 |
commit | e8231e09505dd05a0541f117a1acd25783cb83e1 (patch) | |
tree | 692c539af33ec289ec908d6de4b754e0000bd252 /scripts/poky-qemu-internal | |
parent | 9cb1b87640fff33d20bb87b67b63cfa6988462c4 (diff) | |
download | openembedded-core-e8231e09505dd05a0541f117a1acd25783cb83e1.tar.gz openembedded-core-e8231e09505dd05a0541f117a1acd25783cb83e1.tar.bz2 openembedded-core-e8231e09505dd05a0541f117a1acd25783cb83e1.tar.xz openembedded-core-e8231e09505dd05a0541f117a1acd25783cb83e1.zip |
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>
Diffstat (limited to 'scripts/poky-qemu-internal')
-rwxr-xr-x | scripts/poky-qemu-internal | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/poky-qemu-internal b/scripts/poky-qemu-internal index aac51b588..a9029dc63 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 |