diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2012-04-10 09:20:08 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-04-11 12:10:14 +0100 |
commit | 0f21f39fad3717daef733fac3e9eb81976a3c866 (patch) | |
tree | 51b72c1e7a37e82e097c5c456f99617ea0cfd4d8 /meta-yocto/conf/machine | |
parent | 8c48ab6183934fd32600997cc33e0cd3bf63139b (diff) | |
download | poky-0f21f39fad3717daef733fac3e9eb81976a3c866.tar.gz |
beagleboard.conf: fix hardcode of virtual/xserver
Here is the message from the bug 2260:
meta-yocto/conf/machine/beagleboard.conf hardcodes the virtual/xserver
provider, i.e., it includes the following:
PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg-lite"
I don't think machine conf is the correct place for selecting what is
essentially a distro feature, but at least this should use the '?='
operator; as is to select a different provider one must provide a
complete beagleboard.conf file.
[YOCTO #2260]
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Diffstat (limited to 'meta-yocto/conf/machine')
-rw-r--r-- | meta-yocto/conf/machine/beagleboard.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-yocto/conf/machine/beagleboard.conf b/meta-yocto/conf/machine/beagleboard.conf index fa2f8e7a55..06a0ecd388 100644 --- a/meta-yocto/conf/machine/beagleboard.conf +++ b/meta-yocto/conf/machine/beagleboard.conf | |||
@@ -2,8 +2,8 @@ | |||
2 | #@NAME: Beagleboard machine | 2 | #@NAME: Beagleboard machine |
3 | #@DESCRIPTION: Machine configuration for the http://beagleboard.org/ board | 3 | #@DESCRIPTION: Machine configuration for the http://beagleboard.org/ board |
4 | 4 | ||
5 | PREFERRED_PROVIDER_virtual/xserver = "xserver-xorg-lite" | 5 | PREFERRED_PROVIDER_virtual/xserver ?= "xserver-xorg-lite" |
6 | XSERVER = "xserver-xorg-lite \ | 6 | XSERVER ?= "xserver-xorg-lite \ |
7 | xf86-input-evdev \ | 7 | xf86-input-evdev \ |
8 | xf86-input-mouse \ | 8 | xf86-input-mouse \ |
9 | xf86-video-omapfb \ | 9 | xf86-video-omapfb \ |