xserver-xorg: Add n810 config

git-svn-id: svn://svn.openwrt.org/openwrt/packages@23005 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
mb 2010-09-11 15:57:34 +00:00
parent 1fad6ceed4
commit 15e8cb8e17
2 changed files with 35 additions and 0 deletions

View File

@ -35,6 +35,9 @@ endif
ifeq ($(CONFIG_TARGET_s3c24xx),y)
X_CONFIG=om_gta02
endif
ifeq ($(CONFIG_TARGET_omap24xx_n810-gui),y)
X_CONFIG=nokia_n810
endif
define Package/xorg/Default
SECTION:=xorg-server

View File

@ -0,0 +1,32 @@
Section "InputDevice"
Identifier "Touchscreen"
Driver "tslib"
Option "CorePointer" "true"
Option "SendCoreEvents" "true"
Option "Device" "/dev/input/event1"
Option "Protocol" "Auto"
Option "Width" "800"
Option "Height" "480"
EndSection
Section "Monitor"
Identifier "InternalLCD"
EndSection
Section "Device"
Identifier "FramebufferDevice"
Driver "omapfb"
Option "fb" "/dev/fb0"
EndSection
Section "Screen"
Identifier "InternalScreen"
Device "FramebufferDevice"
Monitor "InternalLCD"
EndSection
Section "ServerLayout"
Identifier "DefaultLayout"
Screen "InternalScreen"
InputDevice "Touchscreen" "CorePointer"
EndSection