Skip to content

Commit b0ce3f0

Browse files
committed
Merge remote-tracking branch 'remotes/kraxel/tags/fixes-20200724-pull-request' into staging
bugfixes: virtio-input, usb-dwc2, pixman. # gpg: Signature made Fri 24 Jul 2020 17:42:43 BST # gpg: using RSA key 4CB6D8EED3E87138 # gpg: Good signature from "Gerd Hoffmann (work) <[email protected]>" [full] # gpg: aka "Gerd Hoffmann <[email protected]>" [full] # gpg: aka "Gerd Hoffmann (private) <[email protected]>" [full] # Primary key fingerprint: A032 8CFF B93A 17A7 9901 FE7D 4CB6 D8EE D3E8 7138 * remotes/kraxel/tags/fixes-20200724-pull-request: configure: Allow to build tools without pixman hw/input/virtio-input-hid.c: Don't undef CONFIG_CURSES hw: Only compile the usb-dwc2 controller if it is really needed Signed-off-by: Peter Maydell <[email protected]>
2 parents 8226a4b + 9b52b17 commit b0ce3f0

File tree

4 files changed

+2
-3
lines changed

4 files changed

+2
-3
lines changed

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4065,7 +4065,7 @@ fi
40654065
##########################################
40664066
# pixman support probe
40674067

4068-
if test "$want_tools" = "no" && test "$softmmu" = "no"; then
4068+
if test "$softmmu" = "no"; then
40694069
pixman_cflags=
40704070
pixman_libs=
40714071
elif $pkg_config --atleast-version=0.21.8 pixman-1 > /dev/null 2>&1; then

hw/arm/Kconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,7 @@ config RASPI
315315
select FRAMEBUFFER
316316
select PL011 # UART
317317
select SDHCI
318+
select USB_DWC2
318319

319320
config STM32F205_SOC
320321
bool

hw/input/virtio-input-hid.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
#include "hw/qdev-properties.h"
1313
#include "hw/virtio/virtio-input.h"
1414

15-
#undef CONFIG_CURSES
1615
#include "ui/console.h"
1716

1817
#include "standard-headers/linux/input.h"

hw/usb/Kconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ config USB_MUSB
4848

4949
config USB_DWC2
5050
bool
51-
default y
5251
select USB
5352

5453
config TUSB6010

0 commit comments

Comments
 (0)