* [PATCH] xserver-xorg-conf/palmpre/xorg.conf
@ 2010-09-06 15:57 Peter Klassen
2010-09-06 16:26 ` Simon Busch
0 siblings, 1 reply; 3+ messages in thread
From: Peter Klassen @ 2010-09-06 15:57 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 189 bytes --]
Hey devs,
attached to this mail you will find a pathch for xorg-conf
to support palm pre.
This is my very first patch ever, so I hope I havent't build in any
faux pas
best
Peter
[-- Attachment #2: palmpre-xorg-conf.patch --]
[-- Type: text/x-patch, Size: 2393 bytes --]
From 184476a1f2d5721bc2fe609aca91c299f4ccd0bd Mon Sep 17 00:00:00 2001
From: Peter Klassen <pklassen@web.de>
Date: Mon, 6 Sep 2010 16:29:31 +0200
Subject: [PATCH] xorg.conf for palmpre
initial xorg.conf for palm pre taken (and modified)
from freesmartphone git tree
---
.../xserver-xorg-conf/palmpre/xorg.conf | 44 ++++++++++++++++++++
recipes/xorg-xserver/xserver-xorg-conf_0.1.bb | 2 +-
2 files changed, 45 insertions(+), 1 deletions(-)
create mode 100644 recipes/xorg-xserver/xserver-xorg-conf/palmpre/xorg.conf
diff --git a/recipes/xorg-xserver/xserver-xorg-conf/palmpre/xorg.conf b/recipes/xorg-xserver/xserver-xorg-conf/palmpre/xorg.conf
new file mode 100644
index 0000000..822b2ad
--- /dev/null
+++ b/recipes/xorg-xserver/xserver-xorg-conf/palmpre/xorg.conf
@@ -0,0 +1,44 @@
+Section "Module"
+ Load "extmod"
+ Load "dbe"
+ Load "freetype"
+ Load "type1"
+ Load "record"
+ Load "dri"
+EndSection
+
+Section "Monitor"
+ Identifier "Builtin Default Monitor"
+EndSection
+
+Section "Device"
+ Identifier "Builtin Default fbdev Device 0"
+ Driver "omapfb"
+ Option "fb" "/dev/fb0"
+EndSection
+
+Section "Screen"
+ Identifier "Builtin Default fbdev Screen 0"
+ Device "Builtin Default fbdev Device 0"
+ Monitor "Builtin Default Monitor"
+EndSection
+
+Section "ServerLayout"
+ Identifier "Builtin Default Layout"
+ Screen "Builtin Default fbdev Screen 0"
+ InputDevice "Touchscreen" "CorePointer"
+EndSection
+
+Section "InputDevice"
+ Identifier "Touchscreen"
+ Driver "tslib"
+ Option "Device" "/dev/touchscreen"
+ Option "CorePointer" "true"
+ Option "SendCoreEvents" "true"
+ Option "Protocol" "Auto"
+ Option "Width" "320"
+ Option "Height" "480"
+ Option "EmulateRightButton" "1"
+ Option "CorePointer" "true"
+
+EndSection
diff --git a/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb b/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
index c15bae6..0b1b60d 100644
--- a/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
+++ b/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
@@ -1,5 +1,5 @@
DESCRIPTION = "Machine specific xorg.conf files"
-PR = "r31"
+PR = "r32"
SRC_URI = "file://xorg.conf"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] xserver-xorg-conf/palmpre/xorg.conf
2010-09-06 15:57 [PATCH] xserver-xorg-conf/palmpre/xorg.conf Peter Klassen
@ 2010-09-06 16:26 ` Simon Busch
2010-09-08 20:30 ` Peter Klassen
0 siblings, 1 reply; 3+ messages in thread
From: Simon Busch @ 2010-09-06 16:26 UTC (permalink / raw)
To: openembedded-devel
On 06.09.2010 17:57, Peter Klassen wrote:
> Hey devs,
>
> attached to this mail you will find a pathch for xorg-conf
> to support palm pre.
> This is my very first patch ever, so I hope I havent't build in any
> faux pas
>
> best
> Peter
You should change the commit line to something like "xserver-xorg-conf:
add xorg.conf for palmpre machine" to indicate which recipe your are
changing with this patch. If you change this detail:
Acked-by: Simon Busch <morphis@gravedo.de>
regards,
morphis
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] xserver-xorg-conf/palmpre/xorg.conf
2010-09-06 16:26 ` Simon Busch
@ 2010-09-08 20:30 ` Peter Klassen
0 siblings, 0 replies; 3+ messages in thread
From: Peter Klassen @ 2010-09-08 20:30 UTC (permalink / raw)
To: openembedded-devel
[-- Attachment #1: Type: text/plain, Size: 874 bytes --]
Hey,
okay I've changed the commit message.
best
Peter
On 06.09.2010 18:26, Simon Busch wrote:
> On 06.09.2010 17:57, Peter Klassen wrote:
>
>> Hey devs,
>>
>> attached to this mail you will find a pathch for xorg-conf
>> to support palm pre.
>> This is my very first patch ever, so I hope I havent't build in any
>> faux pas
>>
>> best
>> Peter
>>
> You should change the commit line to something like "xserver-xorg-conf:
> add xorg.conf for palmpre machine" to indicate which recipe your are
> changing with this patch. If you change this detail:
> Acked-by: Simon Busch <morphis@gravedo.de>
>
> regards,
> morphis
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
[-- Attachment #2: palmpre-xorg-conf.patch --]
[-- Type: text/x-patch, Size: 2420 bytes --]
From 16559df664ab8ca8d61f6b08d5880a8a155dee7b Mon Sep 17 00:00:00 2001
From: Peter Klassen <pklassen@web.de>
Date: Mon, 6 Sep 2010 16:29:31 +0200
Subject: [PATCH] xserver-xorg-conf:
add xorg.conf for palmpre machine
---
.../xserver-xorg-conf/palmpre/xorg.conf | 44 ++++++++++++++++++++
recipes/xorg-xserver/xserver-xorg-conf_0.1.bb | 2 +-
2 files changed, 45 insertions(+), 1 deletions(-)
create mode 100644 recipes/xorg-xserver/xserver-xorg-conf/palmpre/xorg.conf
diff --git a/recipes/xorg-xserver/xserver-xorg-conf/palmpre/xorg.conf b/recipes/xorg-xserver/xserver-xorg-conf/palmpre/xorg.conf
new file mode 100644
index 0000000..822b2ad
--- /dev/null
+++ b/recipes/xorg-xserver/xserver-xorg-conf/palmpre/xorg.conf
@@ -0,0 +1,44 @@
+Section "Module"
+ Load "extmod"
+ Load "dbe"
+ Load "freetype"
+ Load "type1"
+ Load "record"
+ Load "dri"
+EndSection
+
+Section "Monitor"
+ Identifier "Builtin Default Monitor"
+EndSection
+
+Section "Device"
+ Identifier "Builtin Default fbdev Device 0"
+ Driver "omapfb"
+ Option "fb" "/dev/fb0"
+EndSection
+
+Section "Screen"
+ Identifier "Builtin Default fbdev Screen 0"
+ Device "Builtin Default fbdev Device 0"
+ Monitor "Builtin Default Monitor"
+EndSection
+
+Section "ServerLayout"
+ Identifier "Builtin Default Layout"
+ Screen "Builtin Default fbdev Screen 0"
+ InputDevice "Touchscreen" "CorePointer"
+EndSection
+
+Section "InputDevice"
+ Identifier "Touchscreen"
+ Driver "tslib"
+ Option "Device" "/dev/touchscreen"
+ Option "CorePointer" "true"
+ Option "SendCoreEvents" "true"
+ Option "Protocol" "Auto"
+ Option "Width" "320"
+ Option "Height" "480"
+ Option "EmulateRightButton" "1"
+ Option "CorePointer" "true"
+
+EndSection
diff --git a/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb b/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
index c15bae6..0b1b60d 100644
--- a/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
+++ b/recipes/xorg-xserver/xserver-xorg-conf_0.1.bb
@@ -1,5 +1,5 @@
DESCRIPTION = "Machine specific xorg.conf files"
-PR = "r31"
+PR = "r32"
SRC_URI = "file://xorg.conf"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-09-08 20:31 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-09-06 15:57 [PATCH] xserver-xorg-conf/palmpre/xorg.conf Peter Klassen
2010-09-06 16:26 ` Simon Busch
2010-09-08 20:30 ` Peter Klassen
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.