mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
remove-hardcoded-libexec.patch: removed
- included in the new version
qemu-vmware-vga-depth.patch: removed
- doesn't apply anymore
- the problem addressed by the patch is fixed by
reverting commit 1f202568e0553b416483e5993f1bde219c22cf72
Revert-vmware_vga-Add-back-some-info-in-local-state-.patch:
- VMware VGA requires that the depth presented to the guest
to be the same as the Display Surface depth in order to do not
corrupt the display
- do not cache the DS depth (the depth might change)
- revert commit 1f202568
- QEMU now uses pixman (DEPENDS += "pixman")
- rearrange the recipe in order to mimic the bitbake flow
- update both variants (.tar.bz2, git)
(From OE-Core rev: 7622c4f6c050f26f252066a0fcaacdbf340dcefa)
Signed-off-by: Constantin Musca <constantinx.musca@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
19 lines
685 B
Diff
19 lines
685 B
Diff
# This is a workaround to the crashes seen on Ubuntu. Setting info to zero
|
|
# makes info.info.x11.display zero and avoids the calls to
|
|
# opengl_exec_set_parent_window, one of which is crashing.
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Index: qemu-0.14.0/ui/sdl.c
|
|
===================================================================
|
|
--- qemu-0.14.0.orig/ui/sdl.c
|
|
+++ qemu-0.14.0/ui/sdl.c
|
|
@@ -863,6 +863,7 @@ void sdl_display_init(DisplayState *ds,
|
|
vi = SDL_GetVideoInfo();
|
|
host_format = *(vi->vfmt);
|
|
|
|
+ bzero(&info, sizeof(info));
|
|
SDL_GetWMInfo(&info);
|
|
if (info.subsystem == SDL_SYSWM_X11 && info.info.x11.display)
|
|
opengl_exec_set_parent_window(info.info.x11.display,
|