Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH] xserver-xf86-config: pre-load int10 and exa modules
@ 2016-08-20 15:02 Khem Raj
  2016-08-20 15:03 ` Khem Raj
  0 siblings, 1 reply; 4+ messages in thread
From: Khem Raj @ 2016-08-20 15:02 UTC (permalink / raw)
  To: openembedded-core

musl doesn't like lazy loading that xorg uses, therefore
load the needed modules explicitly

[YOCTO #10169]

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../xorg-xserver/xserver-xf86-config/10-preload-modules.conf           | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/10-preload-modules.conf b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/10-preload-modules.conf
index 7ceb6fd..132459c 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/10-preload-modules.conf
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/10-preload-modules.conf
@@ -3,7 +3,8 @@ Section "Module"
     Load "fb"
     Load "shadow"
     Load "shadowfb"
+    Load "int10"
     Load "vbe"
     Load "vgahw"
+    Load "exa"
 EndSection
-
-- 
2.9.3



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH] xserver-xf86-config: pre-load int10 and exa modules
  2016-08-20 15:02 [PATCH] xserver-xf86-config: pre-load int10 and exa modules Khem Raj
@ 2016-08-20 15:03 ` Khem Raj
  2016-08-20 20:13   ` Randle, William C
  0 siblings, 1 reply; 4+ messages in thread
From: Khem Raj @ 2016-08-20 15:03 UTC (permalink / raw)
  To: openembedded-core

musl doesn't like lazy loading that xorg uses, therefore
load the needed modules explicitly

[YOCTO #10169]

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../xorg-xserver/xserver-xf86-config/10-preload-modules.conf           | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/10-preload-modules.conf b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/10-preload-modules.conf
index 7ceb6fd..132459c 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/10-preload-modules.conf
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/10-preload-modules.conf
@@ -3,7 +3,8 @@ Section "Module"
     Load "fb"
     Load "shadow"
     Load "shadowfb"
+    Load "int10"
     Load "vbe"
     Load "vgahw"
+    Load "exa"
 EndSection
-
-- 
2.9.3



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] xserver-xf86-config: pre-load int10 and exa modules
  2016-08-20 15:03 ` Khem Raj
@ 2016-08-20 20:13   ` Randle, William C
  2016-08-20 20:37     ` Khem Raj
  0 siblings, 1 reply; 4+ messages in thread
From: Randle, William C @ 2016-08-20 20:13 UTC (permalink / raw)
  To: openembedded-core@lists.openembedded.org, raj.khem@gmail.com

[-- Attachment #1: Type: text/plain, Size: 1068 bytes --]

This patch is only a partial solution, as the libint10 module is not installed so it can't be loaded.

    -Bill

On Sat, 2016-08-20 at 08:03 -0700, Khem Raj wrote:

musl doesn't like lazy loading that xorg uses, therefore
load the needed modules explicitly

[YOCTO #10169]

Signed-off-by: Khem Raj <raj.khem@gmail.com<mailto:raj.khem@gmail.com>>
---
 .../xorg-xserver/xserver-xf86-config/10-preload-modules.conf           | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/10-preload-modules.conf b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/10-preload-modules.conf
index 7ceb6fd..132459c 100644
--- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/10-preload-modules.conf
+++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/10-preload-modules.conf
@@ -3,7 +3,8 @@ Section "Module"
     Load "fb"
     Load "shadow"
     Load "shadowfb"
+    Load "int10"
     Load "vbe"
     Load "vgahw"
+    Load "exa"
 EndSection
-
--
2.9.3



[-- Attachment #2: Type: text/html, Size: 1515 bytes --]

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] xserver-xf86-config: pre-load int10 and exa modules
  2016-08-20 20:13   ` Randle, William C
@ 2016-08-20 20:37     ` Khem Raj
  0 siblings, 0 replies; 4+ messages in thread
From: Khem Raj @ 2016-08-20 20:37 UTC (permalink / raw)
  To: Randle, William C; +Cc: openembedded-core@lists.openembedded.org


[-- Attachment #1.1: Type: text/plain, Size: 1388 bytes --]


> On Aug 20, 2016, at 1:13 PM, Randle, William C <william.c.randle@intel.com> wrote:
> 
> This patch is only a partial solution, as the libint10 module is not installed so it can't be loaded.
> 

right, there is a v2 just posted, I was assuming that the modules were getting into image via some recommendations but it seems not.

>     -Bill
> 
> On Sat, 2016-08-20 at 08:03 -0700, Khem Raj wrote:
>> musl doesn't like lazy loading that xorg uses, therefore
>> load the needed modules explicitly
>> 
>> [YOCTO #10169]
>> 
>> Signed-off-by: Khem Raj <raj.khem@gmail.com <mailto:raj.khem@gmail.com>>
>> ---
>>  .../xorg-xserver/xserver-xf86-config/10-preload-modules.conf           | 3 ++-
>>  1 file changed, 2 insertions(+), 1 deletion(-)
>> 
>> diff --git a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/10-preload-modules.conf b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/10-preload-modules.conf
>> index 7ceb6fd..132459c 100644
>> --- a/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/10-preload-modules.conf
>> +++ b/meta/recipes-graphics/xorg-xserver/xserver-xf86-config/10-preload-modules.conf
>> @@ -3,7 +3,8 @@ Section "Module"
>>      Load "fb"
>>      Load "shadow"
>>      Load "shadowfb"
>> +    Load "int10"
>>      Load "vbe"
>>      Load "vgahw"
>> +    Load "exa"
>>  EndSection
>> -
>> --
>> 2.9.3
>> 


[-- Attachment #1.2: Type: text/html, Size: 2350 bytes --]

[-- Attachment #2: Message signed with OpenPGP using GPGMail --]
[-- Type: application/pgp-signature, Size: 211 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-08-20 20:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-20 15:02 [PATCH] xserver-xf86-config: pre-load int10 and exa modules Khem Raj
2016-08-20 15:03 ` Khem Raj
2016-08-20 20:13   ` Randle, William C
2016-08-20 20:37     ` Khem Raj

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox