diff options
author | Eric Bénard <eric@eukrea.com> | 2013-02-05 11:04:04 +0100 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2013-02-05 09:03:42 -0200 |
commit | c38a612a9797dc7d1bf14339a8e53b4e4267ef66 (patch) | |
tree | 6cfc6d483191cb333136a985c26dd59e73d59f5b | |
parent | 82773df9243a50d4d4b54942474de07f6959549a (diff) | |
download | meta-fsl-arm-c38a612a9797dc7d1bf14339a8e53b4e4267ef66.tar.gz |
xf86-video-imxfb: fix build error due to missing uint declaration
Signed-off-by: Eric Bénard <eric@eukrea.com>
-rw-r--r-- | recipes-graphics/xorg-driver/xf86-video-imxfb/Fix-error-unknown-type-name-uint.patch | 33 | ||||
-rw-r--r-- | recipes-graphics/xorg-driver/xf86-video-imxfb_11.09.01.bb | 3 |
2 files changed, 35 insertions, 1 deletions
diff --git a/recipes-graphics/xorg-driver/xf86-video-imxfb/Fix-error-unknown-type-name-uint.patch b/recipes-graphics/xorg-driver/xf86-video-imxfb/Fix-error-unknown-type-name-uint.patch new file mode 100644 index 0000000..6a2fcdf --- /dev/null +++ b/recipes-graphics/xorg-driver/xf86-video-imxfb/Fix-error-unknown-type-name-uint.patch | |||
@@ -0,0 +1,33 @@ | |||
1 | From ccdfce5e75ba707deacdd5808a8f3de8744848d0 Mon Sep 17 00:00:00 2001 | ||
2 | From: =?UTF-8?q?Eric=20B=C3=A9nard?= <eric@eukrea.com> | ||
3 | Date: Tue, 5 Feb 2013 10:57:47 +0100 | ||
4 | Subject: [PATCH] Fix "error: unknown type name 'uint'" | ||
5 | MIME-Version: 1.0 | ||
6 | Content-Type: text/plain; charset=UTF-8 | ||
7 | Content-Transfer-Encoding: 8bit | ||
8 | |||
9 | In file included from imx_driver.c:33:0: | ||
10 | .../sysroots/imx53qsb/usr/src/kernel/include/linux/mxcfb.h:107:2: error: unknown type name 'uint' | ||
11 | |||
12 | Upstream-Status: Pending | ||
13 | |||
14 | Signed-off-by: Eric Bénard <eric@eukrea.com> | ||
15 | --- | ||
16 | src/imx_driver.c | 1 + | ||
17 | 1 file changed, 1 insertion(+) | ||
18 | |||
19 | diff --git a/src/imx_driver.c b/src/imx_driver.c | ||
20 | index f4b3e38..4cf662d 100644 | ||
21 | --- a/src/imx_driver.c | ||
22 | +++ b/src/imx_driver.c | ||
23 | @@ -29,6 +29,7 @@ | ||
24 | #include <errno.h> | ||
25 | #include <fcntl.h> | ||
26 | #include <string.h> | ||
27 | +#include <sys/types.h> | ||
28 | #include <linux/fb.h> | ||
29 | #include <linux/mxcfb.h> | ||
30 | |||
31 | -- | ||
32 | 1.7.10.4 | ||
33 | |||
diff --git a/recipes-graphics/xorg-driver/xf86-video-imxfb_11.09.01.bb b/recipes-graphics/xorg-driver/xf86-video-imxfb_11.09.01.bb index 668641b..f327330 100644 --- a/recipes-graphics/xorg-driver/xf86-video-imxfb_11.09.01.bb +++ b/recipes-graphics/xorg-driver/xf86-video-imxfb_11.09.01.bb | |||
@@ -6,12 +6,13 @@ LICENSE = "MIT-X" | |||
6 | DEPENDS = "virtual/xserver virtual/libx11 xproto randrproto util-macros amd-gpu-x11-bin-mx51 libz160" | 6 | DEPENDS = "virtual/xserver virtual/libx11 xproto randrproto util-macros amd-gpu-x11-bin-mx51 libz160" |
7 | LIC_FILES_CHKSUM = "file://COPYING;md5=f7bdc0c63080175d1667091b864cb12c" | 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=f7bdc0c63080175d1667091b864cb12c" |
8 | 8 | ||
9 | PR = "r9" | 9 | PR = "r10" |
10 | 10 | ||
11 | SRC_URI = "${FSL_MIRROR}/xserver-xorg-video-imx-${PV}.tar.gz \ | 11 | SRC_URI = "${FSL_MIRROR}/xserver-xorg-video-imx-${PV}.tar.gz \ |
12 | file://xf86-video-imxfb-fix-m4-hardcodded-paths.patch \ | 12 | file://xf86-video-imxfb-fix-m4-hardcodded-paths.patch \ |
13 | file://Make-video-API-forward-and-backward-compatible.patch \ | 13 | file://Make-video-API-forward-and-backward-compatible.patch \ |
14 | file://ext-Update-to-newer-swap-macros.patch \ | 14 | file://ext-Update-to-newer-swap-macros.patch \ |
15 | file://Fix-error-unknown-type-name-uint.patch \ | ||
15 | " | 16 | " |
16 | SRC_URI[md5sum] = "d19148399b5d1c4dab90d0cc6f2c4789" | 17 | SRC_URI[md5sum] = "d19148399b5d1c4dab90d0cc6f2c4789" |
17 | SRC_URI[sha256sum] = "d7d85e9f13c6dd58addab89847f3a8a67f6382a54135c7978c9a95368af024d4" | 18 | SRC_URI[sha256sum] = "d7d85e9f13c6dd58addab89847f3a8a67f6382a54135c7978c9a95368af024d4" |