summaryrefslogtreecommitdiffstats
path: root/meta-n450
diff options
context:
space:
mode:
authorDarren Hart <dvhart@linux.intel.com>2011-03-15 16:30:07 -0700
committerDarren Hart <dvhart@linux.intel.com>2011-03-15 21:29:47 -0700
commit14f57b958ba34ad3c5e82188ff3f457f7737b9b5 (patch)
treed26a932e7622dfb883cee1dd0a7718b27d39b418 /meta-n450
parent2bd6b798cbb21562ace0b53808c544dc38deb4b0 (diff)
downloadmeta-intel-14f57b958ba34ad3c5e82188ff3f457f7737b9b5.tar.gz
n450: add xorg.conf to disable AutoAddDevices
Fixes [YOCTO #869] (2 of 2) The n450 needs: Option "AutoAddDevices" "False" In the ServerFlags, or it will fail to detect the keyboard. Signed-off-by: Darren Hart <dvhart@linux.intel.com> Acked-by: Tom Zanussi <tom.zanussi@intel.com>
Diffstat (limited to 'meta-n450')
-rw-r--r--meta-n450/recipes-graphics/xorg-xserver/xserver-xf86-config/n450/xorg.conf26
-rw-r--r--meta-n450/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend3
2 files changed, 29 insertions, 0 deletions
diff --git a/meta-n450/recipes-graphics/xorg-xserver/xserver-xf86-config/n450/xorg.conf b/meta-n450/recipes-graphics/xorg-xserver/xserver-xf86-config/n450/xorg.conf
new file mode 100644
index 00000000..e18b9111
--- /dev/null
+++ b/meta-n450/recipes-graphics/xorg-xserver/xserver-xf86-config/n450/xorg.conf
@@ -0,0 +1,26 @@
1Section "Device"
2 Identifier "Intel Graphics Driver"
3 Driver "intel"
4EndSection
5
6Section "Monitor"
7 Identifier "Generic Monitor"
8 Option "DPMS"
9EndSection
10
11Section "Screen"
12 Identifier "Default Screen"
13 Device "Intel Graphics Driver"
14 Monitor "Generic Monitor"
15 DefaultDepth 24
16EndSection
17
18Section "ServerLayout"
19 Identifier "Default Layout"
20 Screen "Default Screen"
21EndSection
22
23Section "ServerFlags"
24 Option "DontZap" "0"
25 Option "AutoAddDevices" "False"
26EndSection
diff --git a/meta-n450/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend b/meta-n450/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend
new file mode 100644
index 00000000..4b8d0e65
--- /dev/null
+++ b/meta-n450/recipes-graphics/xorg-xserver/xserver-xf86-config_0.1.bbappend
@@ -0,0 +1,3 @@
1THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}"
2FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:"
3