summaryrefslogtreecommitdiff
path: root/org.handhelds.familiar/packages/xserver-common
diff options
context:
space:
mode:
authorRene Wagner <rw@handhelds.org>2006-05-13 15:42:03 +0200
committerRene Wagner <rw@handhelds.org>2006-05-13 15:42:03 +0200
commit5a5346dfbec459c10d9e61e16e125b83975a1ef1 (patch)
tree342e16f3fe790d03b93294344e6154459888939f /org.handhelds.familiar/packages/xserver-common
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e35772d79306d1d9de19c12b23681618532d.
Diffstat (limited to 'org.handhelds.familiar/packages/xserver-common')
-rw-r--r--org.handhelds.familiar/packages/xserver-common/files/100dpi.patch35
-rw-r--r--org.handhelds.familiar/packages/xserver-common/files/cxk-rotation.patch24
-rw-r--r--org.handhelds.familiar/packages/xserver-common/files/no-colliehack.patch12
-rw-r--r--org.handhelds.familiar/packages/xserver-common/xserver-common-1.7/100dpi.patch23
-rw-r--r--org.handhelds.familiar/packages/xserver-common/xserver-common-1.8/100dpi.patch23
-rw-r--r--org.handhelds.familiar/packages/xserver-common/xserver-common_1.1.bb12
-rw-r--r--org.handhelds.familiar/packages/xserver-common/xserver-common_1.2.bb14
-rw-r--r--org.handhelds.familiar/packages/xserver-common/xserver-common_1.7.bb12
-rw-r--r--org.handhelds.familiar/packages/xserver-common/xserver-common_1.8.bb12
9 files changed, 167 insertions, 0 deletions
diff --git a/org.handhelds.familiar/packages/xserver-common/files/100dpi.patch b/org.handhelds.familiar/packages/xserver-common/files/100dpi.patch
new file mode 100644
index 0000000..d7492ab
--- /dev/null
+++ b/org.handhelds.familiar/packages/xserver-common/files/100dpi.patch
@@ -0,0 +1,35 @@
+--- /tmp/Xserver 2006-01-15 15:13:24.000000000 +0100
++++ xserver-common-1.2/X11/Xserver 2006-01-15 15:14:00.000000000 +0100
+@@ -44,12 +44,12 @@
+ case `module_id` in
+ "HP iPAQ H3100" | "HP iPAQ H3800")
+ ARGS="$ARGS -dpi 100 -screen 320x240@90 -rgba vrgb" ;;
+- "HP iPAQ H3600" | "HP -dpi 100 iPAQ H3700" | "HP iPAQ H3900")
+- ARGS="$ARGS -screen 320x240@270 -rgba vbgr" ;;
++ "HP iPAQ H3600" | "HP iPAQ H3700" | "HP iPAQ H3900")
++ ARGS="$ARGS -dpi 100 -screen 320x240@270 -rgba vbgr" ;;
+ "HP iPAQ H5400" | "HP iPAQ H2200")
+ ARGS="$ARGS -dpi 100 -rgba rgb" ;;
+ "HP iPAQ HX4700")
+- ARGS="$ARGS -dpi 200" ;;
++ ARGS="$ARGS -dpi 100" ;;
+ "Ramses")
+ # What is this "vt2" in aid of?
+ ARGS="$ARGS -dpi 100 -screen 320x240@90 -rgba vrgb vt2" ;;
+@@ -63,13 +63,13 @@
+ killall -9 apmd
+ ;;
+ "SHARP Shepherd" | "SHARP Husky" | "SHARP Corgi")
+- ARGS="$ARGS -dpi 200 -rgba rgb" ;;
++ ARGS="$ARGS -dpi 100 -rgba rgb" ;;
+ "SHARP Spitz" | "SHARP Akita" | "SHARP Borzoi")
+- ARGS="$ARGS -dpi 200 -rgba rgb -screen 480x640@270" ;;
++ ARGS="$ARGS -dpi 100 -rgba rgb -screen 480x640@270" ;;
+ "Simpad")
+ ARGS="$ARGS -dpi 100 -rgba rgb" ;;
+ "Generic OMAP1510/1610/1710")
+- ARGS="$ARGS -dpi 220 -mouse /dev/input/event0" ;;
++ ARGS="$ARGS -dpi 100 -mouse /dev/input/event0" ;;
+ esac
+
+ exec $XSERVER $ARGS $*
diff --git a/org.handhelds.familiar/packages/xserver-common/files/cxk-rotation.patch b/org.handhelds.familiar/packages/xserver-common/files/cxk-rotation.patch
new file mode 100644
index 0000000..f29d052
--- /dev/null
+++ b/org.handhelds.familiar/packages/xserver-common/files/cxk-rotation.patch
@@ -0,0 +1,24 @@
+diff -Nur xserver-common-1.1~/X11/Xinit.d/11zaurus xserver-common-1.1/X11/Xinit.d/11zaurus
+--- xserver-common-1.1~/X11/Xinit.d/11zaurus 2005-08-29 03:52:46.000000000 -0700
++++ xserver-common-1.1/X11/Xinit.d/11zaurus 2005-09-12 11:03:37.000000000 -0700
+@@ -5,8 +5,19 @@
+ exit 0
+ fi
+
++module_id() {
++ # Get model name
++ echo `grep "^Hardware" /proc/cpuinfo | sed -e "s/.*: *//" | tr a-z A-Z`
++}
++
+ chkhinge -e
+ if [ $? = 12 ]; then
+- xrandr -o right
++ case `module_id` in
++ *SPITZ | *AKITA | *BORZOI)
++ DIRECTION="left" ;;
++ default)
++ DIRECTION="right" ;;
++ esac
++ xrandr -o $DIRECTION
+ fi
+
diff --git a/org.handhelds.familiar/packages/xserver-common/files/no-colliehack.patch b/org.handhelds.familiar/packages/xserver-common/files/no-colliehack.patch
new file mode 100644
index 0000000..5715d46
--- /dev/null
+++ b/org.handhelds.familiar/packages/xserver-common/files/no-colliehack.patch
@@ -0,0 +1,12 @@
+--- /tmp/Xserver 2005-12-01 14:33:44.507282728 +0100
++++ xserver-common-1.2/X11/Xserver 2005-12-01 14:34:07.741750552 +0100
+@@ -58,9 +58,6 @@
+ ARGS="$ARGS -dpi 100 -screen 320x240@270 -rgba vrgb" ;;
+ *Collie)
+ ARGS="$ARGS -dpi 100 -screen 320x240@270 -rgba vrgb"
+- # Horrible hack required to enable resuming after suspend
+- rm -f /dev/apm_bios
+- killall -9 apmd
+ ;;
+ "SHARP Shepherd" | "SHARP Husky" | "SHARP Corgi")
+ ARGS="$ARGS -dpi 100 -rgba rgb" ;;
diff --git a/org.handhelds.familiar/packages/xserver-common/xserver-common-1.7/100dpi.patch b/org.handhelds.familiar/packages/xserver-common/xserver-common-1.7/100dpi.patch
new file mode 100644
index 0000000..f9b481d
--- /dev/null
+++ b/org.handhelds.familiar/packages/xserver-common/xserver-common-1.7/100dpi.patch
@@ -0,0 +1,23 @@
+--- xserver-common-1.7/X11/Xserver.orig 2006-02-16 12:11:22.316078680 -0800
++++ xserver-common-1.7/X11/Xserver 2006-02-16 12:11:53.681310440 -0800
+@@ -49,7 +49,7 @@ case `module_id` in
+ "HP iPAQ H5400" | "HP iPAQ H2200")
+ ARGS="$ARGS -dpi 100 -rgba rgb" ;;
+ "HP iPAQ HX4700")
+- ARGS="$ARGS -dpi 200" ;;
++ ARGS="$ARGS -dpi 100" ;;
+ "Ramses")
+ # What is this "vt2" in aid of?
+ ARGS="$ARGS -dpi 100 -rgba vrgb -screen 320x240@90 vt2" ;;
+@@ -60,9 +60,9 @@ case `module_id` in
+ ARGS="$ARGS -dpi 100 -rgba vrgb -screen 320x240@270"
+ ;;
+ "SHARP Shepherd" | "SHARP Husky" | "SHARP Corgi")
+- ARGS="$ARGS -dpi 200 -rgba rgb" ;;
++ ARGS="$ARGS -dpi 100 -rgba rgb" ;;
+ "SHARP Spitz" | "SHARP Akita" | "SHARP Borzoi")
+- ARGS="$ARGS -dpi 200 -rgba rgb -screen 480x640@270" ;;
++ ARGS="$ARGS -dpi 100 -rgba rgb -screen 480x640@270" ;;
+ "Simpad")
+ ARGS="$ARGS -dpi 100 -rgba rgb" ;;
+ "Generic OMAP1510/1610/1710")
diff --git a/org.handhelds.familiar/packages/xserver-common/xserver-common-1.8/100dpi.patch b/org.handhelds.familiar/packages/xserver-common/xserver-common-1.8/100dpi.patch
new file mode 100644
index 0000000..f9b481d
--- /dev/null
+++ b/org.handhelds.familiar/packages/xserver-common/xserver-common-1.8/100dpi.patch
@@ -0,0 +1,23 @@
+--- xserver-common-1.7/X11/Xserver.orig 2006-02-16 12:11:22.316078680 -0800
++++ xserver-common-1.7/X11/Xserver 2006-02-16 12:11:53.681310440 -0800
+@@ -49,7 +49,7 @@ case `module_id` in
+ "HP iPAQ H5400" | "HP iPAQ H2200")
+ ARGS="$ARGS -dpi 100 -rgba rgb" ;;
+ "HP iPAQ HX4700")
+- ARGS="$ARGS -dpi 200" ;;
++ ARGS="$ARGS -dpi 100" ;;
+ "Ramses")
+ # What is this "vt2" in aid of?
+ ARGS="$ARGS -dpi 100 -rgba vrgb -screen 320x240@90 vt2" ;;
+@@ -60,9 +60,9 @@ case `module_id` in
+ ARGS="$ARGS -dpi 100 -rgba vrgb -screen 320x240@270"
+ ;;
+ "SHARP Shepherd" | "SHARP Husky" | "SHARP Corgi")
+- ARGS="$ARGS -dpi 200 -rgba rgb" ;;
++ ARGS="$ARGS -dpi 100 -rgba rgb" ;;
+ "SHARP Spitz" | "SHARP Akita" | "SHARP Borzoi")
+- ARGS="$ARGS -dpi 200 -rgba rgb -screen 480x640@270" ;;
++ ARGS="$ARGS -dpi 100 -rgba rgb -screen 480x640@270" ;;
+ "Simpad")
+ ARGS="$ARGS -dpi 100 -rgba rgb" ;;
+ "Generic OMAP1510/1610/1710")
diff --git a/org.handhelds.familiar/packages/xserver-common/xserver-common_1.1.bb b/org.handhelds.familiar/packages/xserver-common/xserver-common_1.1.bb
new file mode 100644
index 0000000..76bd376
--- /dev/null
+++ b/org.handhelds.familiar/packages/xserver-common/xserver-common_1.1.bb
@@ -0,0 +1,12 @@
+MAINTAINER = "Florian Boor <florian@kernelconcepts.de>"
+DESCRIPTION = "Common X11 scripts and support files"
+LICENSE = "GPL"
+SECTION = "x11"
+DEPENDS = "xmodmap xrandr xdpyinfo xtscal"
+RDEPENDS_${PN} = "xmodmap xrandr xdpyinfo xtscal"
+PR = "r3"
+
+# we are using a gpe-style Makefile
+inherit gpe
+
+SRC_URI += "file://cxk-rotation.patch;patch=1" \ No newline at end of file
diff --git a/org.handhelds.familiar/packages/xserver-common/xserver-common_1.2.bb b/org.handhelds.familiar/packages/xserver-common/xserver-common_1.2.bb
new file mode 100644
index 0000000..339da7d
--- /dev/null
+++ b/org.handhelds.familiar/packages/xserver-common/xserver-common_1.2.bb
@@ -0,0 +1,14 @@
+MAINTAINER = "Florian Boor <florian@kernelconcepts.de>"
+DESCRIPTION = "Common X11 scripts and support files"
+LICENSE = "GPL"
+SECTION = "x11"
+DEPENDS = "xmodmap xrandr xdpyinfo xtscal"
+RDEPENDS_${PN} = "xmodmap xrandr xdpyinfo xtscal"
+PR = "r3"
+
+
+# we are using a gpe-style Makefile
+inherit gpe
+
+SRC_URI += "file://100dpi.patch;patch=1"
+SRC_URI += "file://no-colliehack.patch;patch=1"
diff --git a/org.handhelds.familiar/packages/xserver-common/xserver-common_1.7.bb b/org.handhelds.familiar/packages/xserver-common/xserver-common_1.7.bb
new file mode 100644
index 0000000..3a29862
--- /dev/null
+++ b/org.handhelds.familiar/packages/xserver-common/xserver-common_1.7.bb
@@ -0,0 +1,12 @@
+MAINTAINER = "Florian Boor <florian@kernelconcepts.de>"
+DESCRIPTION = "Common X11 scripts and support files"
+LICENSE = "GPL"
+SECTION = "x11"
+DEPENDS = "xmodmap xrandr xdpyinfo xtscal"
+RDEPENDS_${PN} = "xmodmap xrandr xdpyinfo xtscal"
+
+
+# we are using a gpe-style Makefile
+inherit gpe
+
+SRC_URI += "file://100dpi.patch;patch=1"
diff --git a/org.handhelds.familiar/packages/xserver-common/xserver-common_1.8.bb b/org.handhelds.familiar/packages/xserver-common/xserver-common_1.8.bb
new file mode 100644
index 0000000..3a29862
--- /dev/null
+++ b/org.handhelds.familiar/packages/xserver-common/xserver-common_1.8.bb
@@ -0,0 +1,12 @@
+MAINTAINER = "Florian Boor <florian@kernelconcepts.de>"
+DESCRIPTION = "Common X11 scripts and support files"
+LICENSE = "GPL"
+SECTION = "x11"
+DEPENDS = "xmodmap xrandr xdpyinfo xtscal"
+RDEPENDS_${PN} = "xmodmap xrandr xdpyinfo xtscal"
+
+
+# we are using a gpe-style Makefile
+inherit gpe
+
+SRC_URI += "file://100dpi.patch;patch=1"