From: Dexuan Cui Date: Thu, 19 Aug 2010 07:01:29 +0000 (+0800) Subject: poky-qemu-internal: fix the echo of KERNCMDLINE X-Git-Tag: 2011-1~4795 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=e8231e09505dd05a0541f117a1acd25783cb83e1;p=openembedded-core.git 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 --- diff --git a/scripts/poky-qemu-internal b/scripts/poky-qemu-internal index aac51b5888..a9029dc63f 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