cb7bb25cc9
X.Org driver for iMX5 GPU. Most of patches come from Yocto project. Tested using: mx5loco_defconfig + BR2_TOOLCHAIN_EXTERNAL=y BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV=y BR2_PACKAGE_QT5=y BR2_PACKAGE_QT5BASE_LICENSE_APPROVED=y BR2_PACKAGE_QT5BASE_EXAMPLES=y BR2_PACKAGE_QT5BASE_OPENGL_LIB=y BR2_PACKAGE_QT5BASE_XCB=y BR2_PACKAGE_QT5BASE_DEFAULT_QPA="xcb" BR2_PACKAGE_QT5BASE_GIF=y BR2_PACKAGE_QT5BASE_JPEG=y BR2_PACKAGE_QT5BASE_PNG=y BR2_PACKAGE_QT5QUICKCONTROLS=y BR2_PACKAGE_XORG7=y BR2_PACKAGE_XSERVER_XORG_SERVER=y BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR=y BR2_PACKAGE_XDRIVER_XF86_INPUT_EVDEV=y BR2_PACKAGE_XDRIVER_XF86_VIDEO_IMX=y BR2_PACKAGE_FREESCALE_IMX=y BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX53=y BR2_PACKAGE_GPU_AMD_BIN_MX51=y BR2_PACKAGE_GPU_AMD_BIN_MX51_EXAMPLES=y [Thomas: minor tweaks to Config.in.] Signed-off-by: Jérôme Pouiller <jezz@sysmic.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
35 lines
1.0 KiB
Diff
35 lines
1.0 KiB
Diff
Fix building using new Xorg 1.14
|
|
|
|
mibstore functions are no longer supported. This patch removes them
|
|
from this driver, following the pattern in
|
|
http://patches.openembedded.org/patch/46133/
|
|
|
|
This checkin shows when/where the changes to the X server were made
|
|
that deleted the header mibstore.h and mentions the reasons.
|
|
http://lists.x.org/archives/xorg-devel/2012-September/033575.html
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
|
|
|
|
Index: xserver-xorg-video-imx-11.09.01/src/imx_driver.c
|
|
===================================================================
|
|
--- xserver-xorg-video-imx-11.09.01.orig/src/imx_driver.c
|
|
+++ xserver-xorg-video-imx-11.09.01/src/imx_driver.c
|
|
@@ -37,7 +37,6 @@
|
|
#include "xf86_OSproc.h"
|
|
|
|
#include "mipointer.h"
|
|
-#include "mibstore.h"
|
|
#include "micmap.h"
|
|
#include "colormapst.h"
|
|
#include "xf86cmap.h"
|
|
@@ -722,7 +721,6 @@ imxScreenInit(SCREEN_INIT_ARGS_DECL)
|
|
/* Initialize for X extensions. */
|
|
imxExtInit();
|
|
|
|
- miInitializeBackingStore(pScreen);
|
|
xf86SetBackingStore(pScreen);
|
|
|
|
/* software cursor */
|