diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2017-08-18 18:19:14 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-19 22:15:39 +0100 |
commit | f6857d9832a799f39e1c9d6b09fbb7c76fca88da (patch) | |
tree | c567bfc5bf0357b612ddeb831ead7abc33b31941 /meta/conf/machine/qemuppc.conf | |
parent | 045e3f9283b879f0a09a1512ec509b0c86948b45 (diff) | |
download | poky-f6857d9832a799f39e1c9d6b09fbb7c76fca88da.tar.gz |
qemu conf: replace deprecated option with new option
Replace the deprecated '-usbdevice' option with '-device usb-xx' option.
This would fix runqemu boot error like below.
'-usbdevice' is deprecated, please use '-device usb-...' instead
(From OE-Core rev: 2f1f3480d344f8521e01f456d2dcd6c4e989ec59)
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/machine/qemuppc.conf')
-rw-r--r-- | meta/conf/machine/qemuppc.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/machine/qemuppc.conf b/meta/conf/machine/qemuppc.conf index a9ef64b0af..537b2f6774 100644 --- a/meta/conf/machine/qemuppc.conf +++ b/meta/conf/machine/qemuppc.conf | |||
@@ -17,5 +17,5 @@ QB_MACHINE = "-machine mac99" | |||
17 | QB_CPU = "-cpu G4" | 17 | QB_CPU = "-cpu G4" |
18 | QB_KERNEL_CMDLINE_APPEND = "console=tty console=ttyS0" | 18 | QB_KERNEL_CMDLINE_APPEND = "console=tty console=ttyS0" |
19 | # Add the 'virtio-rng-pci' device otherwise the guest may run out of entropy | 19 | # Add the 'virtio-rng-pci' device otherwise the guest may run out of entropy |
20 | QB_OPT_APPEND = "-show-cursor -usb -usbdevice tablet -device virtio-rng-pci" | 20 | QB_OPT_APPEND = "-show-cursor -usb -device usb-tablet -device virtio-rng-pci" |
21 | QB_TAP_OPT = "-netdev tap,id=net0,ifname=@TAP@,script=no,downscript=no" | 21 | QB_TAP_OPT = "-netdev tap,id=net0,ifname=@TAP@,script=no,downscript=no" |