[oe-commits] Denis 'Gnutoo' Carikli : eee701 machine config: fix to use xorg instead of kdrive

git version control git at git.openembedded.org
Sat Feb 13 12:43:06 UTC 2010


Module: openembedded.git
Branch: shr/unstable
Commit: 4facd26dbd345ab60aa5d4d1513323158a9f91eb
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=4facd26dbd345ab60aa5d4d1513323158a9f91eb

Author: Denis 'Gnutoo' Carikli <GNUtoo at no-log.org>
Date:   Fri Feb 12 16:38:45 2010 +0100

eee701 machine config: fix to use xorg instead of kdrive

eFfeM pointed me out that he had a Xvesa binary in his xf46-image,
  for eeepc701 and no Xorg.
So I investigated and found that:
In eee701.conf there were ?= for XSERVER and
  PREFERRED_PROVIDER_virtual/xserver
That was wrong because we required i686-generic.conf which set them
  And so the ?= didn't override the variable.

Note that we can't set theses variables in local.conf anymore because
  they are now overriden by eee701.conf,but In another hand eFfeM pointed me that
  all machine but gta01 and gta02 seem to do the same thing. So I bet that
  not setting theses variables in local.conf is a desirable behaviour.

---

 conf/machine/eee701.conf |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/conf/machine/eee701.conf b/conf/machine/eee701.conf
index 0c4b965..425fedf 100644
--- a/conf/machine/eee701.conf
+++ b/conf/machine/eee701.conf
@@ -6,15 +6,15 @@
 
 require i686-generic.conf
 
-PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg"
-PREFERRED_PROVIDER_virtual/libgl ?= "mesa-dri"
-MACHINE_DRI_MODULES ?= "i915"
+PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg"
+PREFERRED_PROVIDER_virtual/libgl = "mesa-dri"
+MACHINE_DRI_MODULES = "i915"
 
 MACHINE_FEATURES +=" wifi alsa "
 MACHINE_DISPLAY_WIDTH_PIXELS = "800"
 MACHINE_DISPLAY_HEIGHT_PIXELS = "480"
 MACHINE_DISPLAY_ORIENTATION = "0"
-XSERVER ?= "xserver-xorg \
+XSERVER = "xserver-xorg \
            xf86-video-intel \
            xf86-input-evdev \
 	   xf86-input-keyboard \





More information about the Openembedded-commits mailing list