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>
This commit is contained in:
Darren Hart 2011-03-15 16:30:07 -07:00
parent 2bd6b798cb
commit 14f57b958b
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,26 @@
Section "Device"
Identifier "Intel Graphics Driver"
Driver "intel"
EndSection
Section "Monitor"
Identifier "Generic Monitor"
Option "DPMS"
EndSection
Section "Screen"
Identifier "Default Screen"
Device "Intel Graphics Driver"
Monitor "Generic Monitor"
DefaultDepth 24
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Default Screen"
EndSection
Section "ServerFlags"
Option "DontZap" "0"
Option "AutoAddDevices" "False"
EndSection

View File

@ -0,0 +1,3 @@
THISDIR := "${@os.path.dirname(bb.data.getVar('FILE', d, True))}"
FILESPATH =. "${@base_set_filespath(["${THISDIR}/${PN}"], d)}:"