diff options
author | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:20:04 +0200 |
commit | 1b8dfe266937a37a4c642f96ceb2347bf4c00a17 (patch) | |
tree | 0c6aab146bb3c82efd9c7846a9a4e70dcb0ec84f /meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0008-xserver-common-add-dpi-and-nocursor-params-for-gta01.patch | |
download | meta-openembedded-daisy-140929.tar.gz |
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0008-xserver-common-add-dpi-and-nocursor-params-for-gta01.patch')
-rw-r--r-- | meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0008-xserver-common-add-dpi-and-nocursor-params-for-gta01.patch | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0008-xserver-common-add-dpi-and-nocursor-params-for-gta01.patch b/meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0008-xserver-common-add-dpi-and-nocursor-params-for-gta01.patch new file mode 100644 index 0000000000..e35e4a74ab --- /dev/null +++ b/meta-oe/recipes-graphics/xserver-common/xserver-common-1.34/0008-xserver-common-add-dpi-and-nocursor-params-for-gta01.patch | |||
@@ -0,0 +1,40 @@ | |||
1 | From 0ee7bf87e0c83abc79de3a99dfa3c87dd5c5b229 Mon Sep 17 00:00:00 2001 | ||
2 | From: Martin Jansa <Martin.Jansa@gmail.com> | ||
3 | Date: Wed, 11 Apr 2012 14:37:29 +0200 | ||
4 | Subject: [PATCH 08/12] xserver-common: add dpi and nocursor params for gta01 | ||
5 | and gta02 | ||
6 | |||
7 | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> | ||
8 | --- | ||
9 | X11/xserver-common | 8 ++++++-- | ||
10 | 1 files changed, 6 insertions(+), 2 deletions(-) | ||
11 | |||
12 | diff --git a/X11/xserver-common b/X11/xserver-common | ||
13 | index 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 | -- | ||
39 | 1.7.8.5 | ||
40 | |||