diff options
author | Ross Burton <ross@openedhand.com> | 2008-04-24 14:30:55 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2008-04-24 14:30:55 +0000 |
commit | 85049069b0a5d4df154a8a1df612ab3163ed1045 (patch) | |
tree | e3095c6a430c2a4929aef05087456120dd9b2dd9 /scripts/poky-qemu-internal | |
parent | 5e6ec763b795ffa2329f32063d01a1fbec2c1f9d (diff) | |
download | poky-85049069b0a5d4df154a8a1df612ab3163ed1045.tar.gz |
Allow user-specified options to be passed to qemu via poky-qemu
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4327 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'scripts/poky-qemu-internal')
-rwxr-xr-x | scripts/poky-qemu-internal | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/poky-qemu-internal b/scripts/poky-qemu-internal index ac2772d3f9..d3a662e9e1 100755 --- a/scripts/poky-qemu-internal +++ b/scripts/poky-qemu-internal | |||
@@ -215,8 +215,8 @@ else | |||
215 | fi | 215 | fi |
216 | 216 | ||
217 | echo "Running $QEMU using sudo..." | 217 | echo "Running $QEMU using sudo..." |
218 | echo $QEMUBIN -kernel $ZIMAGE $QEMUOPTIONS $SERIALOPTS --append "$KERNCMDLINE" | 218 | echo $QEMUBIN -kernel $ZIMAGE $QEMUOPTIONS $SERIALOPTS $* --append "$KERNCMDLINE" |
219 | sudo $QEMUBIN -kernel $ZIMAGE $QEMUOPTIONS $SERIALOPTS --append "$KERNCMDLINE" || /bin/true | 219 | sudo $QEMUBIN -kernel $ZIMAGE $QEMUOPTIONS $SERIALOPTS $* --append "$KERNCMDLINE" || /bin/true |
220 | 220 | ||
221 | trap - INT TERM QUIT | 221 | trap - INT TERM QUIT |
222 | return | 222 | return |