diff options
-rw-r--r-- | meta/recipes-graphics/xorg-xserver/xserver-xorg/musl-arm-inb-outb.patch | 18 | ||||
-rw-r--r-- | meta/recipes-graphics/xorg-xserver/xserver-xorg_1.18.0.bb | 4 |
2 files changed, 21 insertions, 1 deletions
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xorg/musl-arm-inb-outb.patch b/meta/recipes-graphics/xorg-xserver/xserver-xorg/musl-arm-inb-outb.patch new file mode 100644 index 0000000000..4be441fb71 --- /dev/null +++ b/meta/recipes-graphics/xorg-xserver/xserver-xorg/musl-arm-inb-outb.patch | |||
@@ -0,0 +1,18 @@ | |||
1 | inb/outb family for arm is only implemented on glibc | ||
2 | so assumption across linux is wrong | ||
3 | |||
4 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
5 | Upstream-Status: Pending | ||
6 | Index: xorg-server-1.18.0/hw/xfree86/common/compiler.h | ||
7 | =================================================================== | ||
8 | --- xorg-server-1.18.0.orig/hw/xfree86/common/compiler.h | ||
9 | +++ xorg-server-1.18.0/hw/xfree86/common/compiler.h | ||
10 | @@ -758,7 +758,7 @@ inl(unsigned short port) | ||
11 | return xf86ReadMmio32Le((void *) ioBase, port); | ||
12 | } | ||
13 | |||
14 | -#elif defined(__arm__) && defined(__linux__) | ||
15 | +#elif defined(__arm__) && defined(__GLIBC__) | ||
16 | |||
17 | /* for Linux on ARM, we use the LIBC inx/outx routines */ | ||
18 | /* note that the appropriate setup via "ioperm" needs to be done */ | ||
diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.18.0.bb b/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.18.0.bb index 60973c5ac9..e606dac5f9 100644 --- a/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.18.0.bb +++ b/meta/recipes-graphics/xorg-xserver/xserver-xorg_1.18.0.bb | |||
@@ -1,6 +1,8 @@ | |||
1 | require xserver-xorg.inc | 1 | require xserver-xorg.inc |
2 | 2 | ||
3 | SRC_URI += "file://configure.ac-Use-libsystemd-in-REQUIRED_LIBS-check.patch" | 3 | SRC_URI += "file://configure.ac-Use-libsystemd-in-REQUIRED_LIBS-check.patch \ |
4 | file://musl-arm-inb-outb.patch \ | ||
5 | " | ||
4 | SRC_URI[md5sum] = "3c1c1057d3ad27380d8dd87ffcc182cd" | 6 | SRC_URI[md5sum] = "3c1c1057d3ad27380d8dd87ffcc182cd" |
5 | SRC_URI[sha256sum] = "195670819695d9cedd8dde95fbe069be0d0f488a77797a2d409f9f702daf312e" | 7 | SRC_URI[sha256sum] = "195670819695d9cedd8dde95fbe069be0d0f488a77797a2d409f9f702daf312e" |
6 | 8 | ||