blob: e35e4a74ab8115c0c1bb41bf3f424afb900f6c34 [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001From 0ee7bf87e0c83abc79de3a99dfa3c87dd5c5b229 Mon Sep 17 00:00:00 2001
2From: Martin Jansa <Martin.Jansa@gmail.com>
3Date: Wed, 11 Apr 2012 14:37:29 +0200
4Subject: [PATCH 08/12] xserver-common: add dpi and nocursor params for gta01
5 and gta02
6
7Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
8---
9 X11/xserver-common | 8 ++++++--
10 1 files changed, 6 insertions(+), 2 deletions(-)
11
12diff --git a/X11/xserver-common b/X11/xserver-common
13index de92bb7..f76fa5f 100644
14--- a/X11/xserver-common
15+++ b/X11/xserver-common
16@@ -133,15 +133,19 @@ else
17 ARGS="$ARGS -screen ${SCREEN_SIZE}"
18 DPI="225" ;;
19 "gta01" )
20- DPI="285"
21+ DPI="280"
22 if [ "$XSERVER" != "Xorg" ] ; then
23 ARGS="$ARGS -screen 480x640"
24+ else
25+ ARGS="$ARGS -dpi ${DPI} -nocursor"
26 fi
27 ;;
28 "gta02")
29- DPI="285"
30+ DPI="280"
31 if [ "$XSERVER" != "Xorg" ] ; then
32 ARGS="$ARGS -screen ${SCREEN_SIZE}"
33+ else
34+ ARGS="$ARGS -dpi ${DPI} -nocursor"
35 fi
36 ;;
37 "motorola_ezx_platform")
38--
391.7.8.5
40