rpms/kernel/F-12 linux-2.6-input-hid-quirk-egalax.patch, NONE, 1.1 linux-2.6-input-hid-quirk-hp-touchsmart.patch, NONE, 1.1 kernel.spec, 1.1998, 1.1999
by Dave Airlie
Author: airlied
Update of /cvs/pkgs/rpms/kernel/F-12
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14439
Modified Files:
kernel.spec
Added Files:
linux-2.6-input-hid-quirk-egalax.patch
linux-2.6-input-hid-quirk-hp-touchsmart.patch
Log Message:
* Mon Feb 01 2010 Dave Airlie <airlied(a)redhat.com> 2.6.32.7-39
- Add two input quirks for HP and eGalax touchscreens. (from whot)
linux-2.6-input-hid-quirk-egalax.patch:
hid-ids.h | 3 +++
usbhid/hid-quirks.c | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
--- NEW FILE linux-2.6-input-hid-quirk-egalax.patch ---
Date: Mon, 1 Feb 2010 12:53:47 +1300
From: Peter Hutterer <peter.hutterer(a)redhat.com>
To: Dave Airlie <airlied(a)redhat.com>
Subject: [PATCH] HID: add multi-input quirk for eGalax Touchcontroller
Signed-off-by: Peter Hutterer <peter.hutterer(a)who-t.net>
Tested-by: Alfred Broda <guaranga(a)wp.pl>
---
drivers/hid/hid-ids.h | 3 +++
drivers/hid/usbhid/hid-quirks.c | 1 +
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h
index f5144b8..2e698a2 100644
--- a/drivers/hid/hid-ids.h
+++ b/drivers/hid/hid-ids.h
@@ -158,6 +158,9 @@
#define USB_VENDOR_ID_DRAGONRISE 0x0079
+#define USB_VENDOR_ID_EGALAX 0x0EEF
+#define USB_DEVICE_ID_EGALAX_TOUCHCONTROLLER 0x0001
+
#define USB_VENDOR_ID_ELO 0x04E7
#define USB_DEVICE_ID_ELO_TS2700 0x0020
diff --git a/drivers/hid/usbhid/hid-quirks.c b/drivers/hid/usbhid/hid-quirks.c
index e987562..dc27d74 100644
--- a/drivers/hid/usbhid/hid-quirks.c
+++ b/drivers/hid/usbhid/hid-quirks.c
@@ -32,6 +32,7 @@ static const struct hid_blacklist {
{ USB_VENDOR_ID_AASHIMA, USB_DEVICE_ID_AASHIMA_PREDATOR, HID_QUIRK_BADPAD },
{ USB_VENDOR_ID_ALPS, USB_DEVICE_ID_IBM_GAMEPAD, HID_QUIRK_BADPAD },
{ USB_VENDOR_ID_CHIC, USB_DEVICE_ID_CHIC_GAMEPAD, HID_QUIRK_BADPAD },
+ { USB_VENDOR_ID_EGALAX, USB_DEVICE_ID_EGALAX_TOUCHCONTROLLER, HID_QUIRK_MULTI_INPUT },
{ USB_VENDOR_ID_HAPP, USB_DEVICE_ID_UGCI_DRIVING, HID_QUIRK_BADPAD | HID_QUIRK_MULTI_INPUT },
{ USB_VENDOR_ID_HAPP, USB_DEVICE_ID_UGCI_FLYING, HID_QUIRK_BADPAD | HID_QUIRK_MULTI_INPUT },
{ USB_VENDOR_ID_HAPP, USB_DEVICE_ID_UGCI_FIGHTING, HID_QUIRK_BADPAD | HID_QUIRK_MULTI_INPUT },
--
1.6.5.2
linux-2.6-input-hid-quirk-hp-touchsmart.patch:
hid-ids.h | 3 +++
usbhid/hid-quirks.c | 1 +
2 files changed, 4 insertions(+)
--- NEW FILE linux-2.6-input-hid-quirk-hp-touchsmart.patch ---
commit 9db630b48a99adb4156e205b812fba8959644280
Author: Peter Hutterer <peter.hutterer(a)redhat.com>
Date: Thu Dec 3 15:08:10 2009 +1000
HID: add multi-input quirk for NextWindow Touchscreen.
These touchscreens are mounted onto HP TouchSmart and the Dell Studio One
19. Without a quirk they report a wrong button set and the x/y coordinates
through ABS_Z/ABS_RX, confusing the higher levels (most notably X.Org's
evdev driver).
Device id 0x003 covers models 1900, 2150, and 2700 [1] though testing could
only be performed on a model 1900.
[1] http://www.nextwindow.com/nextwindow_support/latest_tech_info.html
Signed-off-by: Peter Hutterer <peter.hutterer(a)redhat.com>
Signed-off-by: Jiri Kosina <jkosina(a)suse.cz>
diff --git a/drivers/hid/hid-ids.h b/drivers/hid/hid-ids.h
index 656c015..0ceabbb 100644
--- a/drivers/hid/hid-ids.h
+++ b/drivers/hid/hid-ids.h
@@ -347,6 +347,9 @@
#define USB_VENDOR_ID_NEC 0x073e
#define USB_DEVICE_ID_NEC_USB_GAME_PAD 0x0301
+#define USB_VENDOR_ID_NEXTWINDOW 0x1926
+#define USB_DEVICE_ID_NEXTWINDOW_TOUCHSCREEN 0x0003
+
#define USB_VENDOR_ID_NTRIG 0x1b96
#define USB_DEVICE_ID_NTRIG_TOUCH_SCREEN 0x0001
diff --git a/drivers/hid/usbhid/hid-quirks.c b/drivers/hid/usbhid/hid-quirks.c
index 0d9045a..e987562 100644
--- a/drivers/hid/usbhid/hid-quirks.c
+++ b/drivers/hid/usbhid/hid-quirks.c
@@ -37,6 +37,7 @@ static const struct hid_blacklist {
{ USB_VENDOR_ID_HAPP, USB_DEVICE_ID_UGCI_FIGHTING, HID_QUIRK_BADPAD | HID_QUIRK_MULTI_INPUT },
{ USB_VENDOR_ID_NATSU, USB_DEVICE_ID_NATSU_GAMEPAD, HID_QUIRK_BADPAD },
{ USB_VENDOR_ID_NEC, USB_DEVICE_ID_NEC_USB_GAME_PAD, HID_QUIRK_BADPAD },
+ { USB_VENDOR_ID_NEXTWINDOW, USB_DEVICE_ID_NEXTWINDOW_TOUCHSCREEN, HID_QUIRK_MULTI_INPUT},
{ USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_RUMBLEPAD, HID_QUIRK_BADPAD },
{ USB_VENDOR_ID_TOPMAX, USB_DEVICE_ID_TOPMAX_COBRAPAD, HID_QUIRK_BADPAD },
Index: kernel.spec
===================================================================
RCS file: /cvs/pkgs/rpms/kernel/F-12/kernel.spec,v
retrieving revision 1.1998
retrieving revision 1.1999
diff -u -p -r1.1998 -r1.1999
--- kernel.spec 30 Jan 2010 21:07:31 -0000 1.1998
+++ kernel.spec 1 Feb 2010 00:05:38 -0000 1.1999
@@ -651,6 +651,8 @@ Patch391: linux-2.6-acpi-video-dos.patch
Patch450: linux-2.6-input-kill-stupid-messages.patch
Patch451: linux-2.6-input-fix-toshiba-hotkeys.patch
Patch452: linux-2.6.30-no-pcspkr-modalias.patch
+Patch453: linux-2.6-input-hid-quirk-hp-touchsmart.patch
+Patch454: linux-2.6-input-hid-quirk-egalax.patch
Patch460: linux-2.6-serial-460800.patch
@@ -1283,6 +1285,9 @@ ApplyPatch die-floppy-die.patch
ApplyPatch linux-2.6.30-no-pcspkr-modalias.patch
+ApplyPatch linux-2.6-input-hid-quirk-hp-touchsmart.patch
+ApplyPatch linux-2.6-input-hid-quirk-egalax.patch
+
# Allow to use 480600 baud on 16C950 UARTs
ApplyPatch linux-2.6-serial-460800.patch
@@ -2035,6 +2040,9 @@ fi
# and build.
%changelog
+* Mon Feb 01 2010 Dave Airlie <airlied(a)redhat.com> 2.6.32.7-39
+- Add two input quirks for HP and eGalax touchscreens.
+
* Sat Jan 30 2010 Chuck Ebbert <cebbert(a)redhat.com> 2.6.32.7-38
- Fix possible oops in bio-integrity code.
13Â years
rpms/eina/devel .cvsignore, 1.3, 1.4 eina.spec, 1.7, 1.8 import.log, 1.5, 1.6 sources, 1.3, 1.4
by Allisson Azevedo
Author: allisson
Update of /cvs/pkgs/rpms/eina/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv14255/devel
Modified Files:
.cvsignore eina.spec import.log sources
Log Message:
Update to 0.9.0.
Index: .cvsignore
===================================================================
RCS file: /cvs/pkgs/rpms/eina/devel/.cvsignore,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- .cvsignore 3 Jul 2009 12:07:31 -0000 1.3
+++ .cvsignore 1 Feb 2010 00:04:49 -0000 1.4
@@ -1 +1 @@
-eina-0.8.0.tar.gz
+eina-0.9.0.tar.gz
Index: eina.spec
===================================================================
RCS file: /cvs/pkgs/rpms/eina/devel/eina.spec,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -p -r1.7 -r1.8
--- eina.spec 4 Aug 2009 00:33:09 -0000 1.7
+++ eina.spec 1 Feb 2010 00:04:49 -0000 1.8
@@ -1,6 +1,6 @@
Name: eina
-Version: 0.8.0
-Release: 4%{?dist}
+Version: 0.9.0
+Release: 1%{?dist}
Summary: A classic player for a modern era
Group: Applications/Multimedia
@@ -44,6 +44,16 @@ Requires: pkgconfig
Header files and libraries for building a extension library for the
Eina.
+
+%package doc
+Summary: Documentation for %{name}
+Group: Documentation
+Requires: %{name} = %{version}-%{release}
+
+%description doc
+This package contains documentation for eina.
+
+
%prep
%setup -q
@@ -88,10 +98,11 @@ update-desktop-database &> /dev/null ||
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING COPYRIGHT TODO
%{_bindir}/eina
+%{_bindir}/vogon
%{_datadir}/applications/eina.desktop
%{_datadir}/eina
-%{_libdir}/eina
%attr(755, root, root) %{_libdir}/eina/lastfm/lastfmsubmitd/lastfmsubmitd
+%{_libdir}/eina
%{_libdir}/*.so.1*
@@ -102,7 +113,16 @@ update-desktop-database &> /dev/null ||
%{_libdir}/pkgconfig/*.pc
+%files doc
+%defattr(-,root,root,-)
+%dir %{_datadir}/gtk-doc/html/lomo
+%{_datadir}/gtk-doc/html/lomo
+
+
%changelog
+* Sun Jan 31 2010 Allisson Azevedo <allisson(a)gmail.com> 0.9.0-1
+- Update to 0.9.0.
+
* Mon Aug 3 2009 Allisson Azevedo <allisson(a)gmail.com> 0.8.0-4
- Added libnotify-devel to BuildRequires.
Index: import.log
===================================================================
RCS file: /cvs/pkgs/rpms/eina/devel/import.log,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -p -r1.5 -r1.6
--- import.log 4 Aug 2009 00:33:09 -0000 1.5
+++ import.log 1 Feb 2010 00:04:49 -0000 1.6
@@ -3,3 +3,4 @@ eina-0_7_3-6_fc10:HEAD:eina-0.7.3-6.fc10
eina-0_8_0-1_fc11:HEAD:eina-0.8.0-1.fc11.src.rpm:1246622800
eina-0_8_0-2_fc11:HEAD:eina-0.8.0-2.fc11.src.rpm:1246623851
eina-0_8_0-4_fc11:HEAD:eina-0.8.0-4.fc11.src.rpm:1249345933
+eina-0_9_0-1_fc12:HEAD:eina-0.9.0-1.fc12.src.rpm:1264982598
Index: sources
===================================================================
RCS file: /cvs/pkgs/rpms/eina/devel/sources,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -p -r1.3 -r1.4
--- sources 3 Jul 2009 12:07:31 -0000 1.3
+++ sources 1 Feb 2010 00:04:49 -0000 1.4
@@ -1 +1 @@
-b8b71a2ef5613b23faa104ea43ae34b5 eina-0.8.0.tar.gz
+a51bff6c2f76a3c4fac2a865639d7377 eina-0.9.0.tar.gz
13Â years