You can subscribe to this list here.
2002 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(8) |
Jun
(3) |
Jul
(1) |
Aug
(2) |
Sep
(2) |
Oct
(6) |
Nov
(1) |
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2003 |
Jan
(11) |
Feb
(5) |
Mar
|
Apr
(15) |
May
|
Jun
(10) |
Jul
(39) |
Aug
(65) |
Sep
(7) |
Oct
(38) |
Nov
(28) |
Dec
(45) |
2004 |
Jan
(45) |
Feb
(57) |
Mar
(43) |
Apr
(54) |
May
(24) |
Jun
(24) |
Jul
(30) |
Aug
(26) |
Sep
(59) |
Oct
(31) |
Nov
(50) |
Dec
(48) |
2005 |
Jan
(47) |
Feb
(31) |
Mar
(49) |
Apr
(53) |
May
(23) |
Jun
(11) |
Jul
(49) |
Aug
(23) |
Sep
(96) |
Oct
(10) |
Nov
(10) |
Dec
(32) |
2006 |
Jan
(22) |
Feb
(33) |
Mar
(57) |
Apr
(33) |
May
(26) |
Jun
(15) |
Jul
(13) |
Aug
(5) |
Sep
(5) |
Oct
(17) |
Nov
(20) |
Dec
(22) |
2007 |
Jan
(5) |
Feb
(15) |
Mar
(60) |
Apr
(13) |
May
|
Jun
(4) |
Jul
|
Aug
(1) |
Sep
|
Oct
(1) |
Nov
|
Dec
(1) |
2008 |
Jan
|
Feb
(1) |
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Stefan S. <ge...@ge...> - 2006-05-23 23:53:01
|
Cool idea! I can onyl second that from gentoo. Ideal for us would be a tarball like: lineak-defaultplugin-0.9.0_pre1.tar.bz2 does fedora/ubuntu also use underscores for _pre versions? - Stefan |
From: Chris P. <li...@fo...> - 2006-05-23 21:16:24
|
I've run into issues with the underscore used in the lineak plugin names. Most packagers (ubuntu and fedora to be specific) prefer a dash instead, and since the packages will be named with dashes, I'm wondering if it might be possible to change the upstream names, too (assuming there wasn't a specific reason why the underscore was chosen, the dash is generally a more widespread choice). -Chris |
From: Sheldon Lee-W. <to...@ro...> - 2006-05-22 14:30:12
|
Chris, Can you generate a patch against cvs as well please? I've done some big changes to the make files (Only change Makefile.am the rest of the files are autogenerated, including Makefile.in) and I'd like to get some eyeballs on it to make sure it's correct. Cheers, Sheldon. Chris Petersen <li...@fo...> wrote: hmm, that didn't work right... it's not honoring the install path used by rpm. This one fixes the problem: --- utils/Makefile.in.dist 2006-05-21 23:38:01.000000000 -0700 +++ utils/Makefile.in 2006-05-21 23:38:24.000000000 -0700 @@ -654,7 +654,7 @@ @EVTEST_TRUE@ $(mkinstalldirs) $(mandir)/man1/ @EVTEST_TRUE@ $(INSTALL_DATA) $(srcdir)/evtest.1.bz2 $(mandir)/man1/evtest.1.bz2 @EVTEST_FALSE@install-data-local: send_to_keyboard.8.bz2 xsendkeycode.8.bz2 xsendkeys.8.bz2 -@SEND_TO_KEYBOARD_TRUE@ $(mkinstalldirs) $(mandir)/man8/ + $(mkinstalldirs) $(mandir)/man8/ @SEND_TO_KEYBOARD_TRUE@ chmod 755 $(DESTDIR)$(prefix)/sbin/send_to_keyboard @SEND_TO_KEYBOARD_TRUE@ if test "$(HELPER_SUID)" != "no" ; then \ @SEND_TO_KEYBOARD_TRUE@ chown root $(DESTDIR)$(prefix)/sbin/send_to_keyboard ; \ ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ LinEAK-devel mailing list Lin...@li... https://lists.sourceforge.net/lists/listinfo/lineak-devel |
From: Chris P. <li...@fo...> - 2006-05-22 06:40:14
|
hmm, that didn't work right... it's not honoring the install path used by rpm. This one fixes the problem: --- utils/Makefile.in.dist 2006-05-21 23:38:01.000000000 -0700 +++ utils/Makefile.in 2006-05-21 23:38:24.000000000 -0700 @@ -654,7 +654,7 @@ @EVTEST_TRUE@ $(mkinstalldirs) $(mandir)/man1/ @EVTEST_TRUE@ $(INSTALL_DATA) $(srcdir)/evtest.1.bz2 $(mandir)/man1/evtest.1.bz2 @EVTEST_FALSE@install-data-local: send_to_keyboard.8.bz2 xsendkeycode.8.bz2 xsendkeys.8.bz2 -@SEND_TO_KEYBOARD_TRUE@ $(mkinstalldirs) $(mandir)/man8/ + $(mkinstalldirs) $(mandir)/man8/ @SEND_TO_KEYBOARD_TRUE@ chmod 755 $(DESTDIR)$(prefix)/sbin/send_to_keyboard @SEND_TO_KEYBOARD_TRUE@ if test "$(HELPER_SUID)" != "no" ; then \ @SEND_TO_KEYBOARD_TRUE@ chown root $(DESTDIR)$(prefix)/sbin/send_to_keyboard ; \ |
From: Chris P. <li...@fo...> - 2006-05-22 06:27:58
|
> The right thing to do would be to edit the Makefile.am file in the > utils/ subdirectory to create the man8 directory no matter what. You > can do this by modifying the file to look like this: Good enough. Though I think the following patch addresses it a little more clearly (and doesn't try to create the directory twice) --- utils/Makefile.am.dist 2006-05-21 23:23:36.000000000 -0700 +++ utils/Makefile.am 2006-05-21 23:24:23.000000000 -0700 @@ -57,8 +57,8 @@ else install-data-local: send_to_keyboard.8.bz2 xsendkeycode.8.bz2 xsendkeys.8.bz2 endif +$(mkinstalldirs) $(mandir)/man8/ if SEND_TO_KEYBOARD - $(mkinstalldirs) $(mandir)/man8/ chmod 755 $(DESTDIR)$(prefix)/sbin/send_to_keyboard if test "$(HELPER_SUID)" != "no" ; then \ chown root $(DESTDIR)$(prefix)/sbin/send_to_keyboard ; \ -- -Chris |
From: Sheldon Lee-W. <to...@ro...> - 2006-05-21 20:27:08
|
Chris, The right thing to do would be to edit the Makefile.am file in the utils/ subdirectory to create the man8 directory no matter what. You can do this by modifying the file to look like this: -snip- if SEND_TO_KEYBOARD $(mkinstalldirs) ${DESTDIR}$(mandir)/man8/ chmod 755 $(DESTDIR)$(prefix)/sbin/send_to_keyboard if test "$(HELPER_SUID)" != "no" ; then \ chown root $(DESTDIR)$(prefix)/sbin/send_to_keyboard ; \ chmod +s $(DESTDIR)$(prefix)/sbin/send_to_keyboard ; \ fi $(INSTALL_DATA) $(srcdir)/send_to_keyboard.8.bz2 ${DESTDIR}$(mandir)/man8/send_to_keyboard.8.bz2 endif $(mkinstalldirs) ${DESTDIR}$(mandir)/man8/ <-- Add this line $(INSTALL_DATA) $(srcdir)/xsendkeycode.8.bz2 ${DESTDIR}$(mandir)/man8/xsendkeycode.8.bz2 $(INSTALL_DATA) $(srcdir)/xsendkeys.8.bz2 ${DESTDIR}$(mandir)/man8/xsendkeys.8.bz2 uninstall-local: -rm -f ${DESTDIR}$(mandir)/man8/send_to_keyboard.8.bz2 -rm -f ${DESTDIR}$(mandir)/man8/xsendkeycode.8.bz2 -rm -f ${DESTDIR}$(mandir)/man8/xsendkeys.8.bz2 -snip- This way the man8 directory gets created no matter what. Cheers, Sheldon. Chris Petersen <li...@fo...> wrote: Working on getting the lineakd packages built for fedora's extras repository and I'm running into some weird stuff on their ppc build system. You can see the build logs here: http://buildsys.fedoraproject.org/logs/fedora-development-extras/9746-lineakd-0.8.4-3.fc6/ppc/build.log Notice that unlike other archs, this never gets run: /bin/sh ../admin/mkinstalldirs \ /var/tmp/lineakd-0.8.4-3.fc6-root-mockbuild/usr/share/man/man8/ Look at utils/Makefile.in: > @SEND_TO_KEYBOARD_TRUE@ $(mkinstalldirs) $(mandir)/man8/ > @SEND_TO_KEYBOARD_TRUE@ chmod 755 $(DESTDIR)$(prefix)/sbin/send_to_keyboard > @SEND_TO_KEYBOARD_TRUE@ if test "$(HELPER_SUID)" != "no" ; then \ > @SEND_TO_KEYBOARD_TRUE@ chown root $(DESTDIR)$(prefix)/sbin/send_to_keyboard ; \ > @SEND_TO_KEYBOARD_TRUE@ chmod +s $(DESTDIR)$(prefix)/sbin/send_to_keyboard ; \ > @SEND_TO_KEYBOARD_TRUE@ fi > @SEND_TO_KEYBOARD_TRUE@ $(INSTALL_DATA) $(srcdir)/send_to_keyboard.8.bz2 $(mandir)/man8/send_to_keyboard.8.bz2 > $(INSTALL_DATA) $(srcdir)/xsendkeycode.8.bz2 $(mandir)/man8/xsendkeycode.8.bz2 > $(INSTALL_DATA) $(srcdir)/xsendkeys.8.bz2 $(mandir)/man8/xsendkeys.8.bz2 Note that the man8 directory only gets installed if @SEND_TO_KEYBOARD_TRUE@ is, well, true. But that the other man pages get installed regardless of that setting. What's the proper thing to do here? Create the directory no matter what, or add @SEND_TO_KEYBOARD_TRUE@ to the last 2 manpage install calls? -Chris ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ LinEAK-devel mailing list Lin...@li... https://lists.sourceforge.net/lists/listinfo/lineak-devel |
From: Chris P. <li...@fo...> - 2006-05-21 20:06:38
|
Working on getting the lineakd packages built for fedora's extras repository and I'm running into some weird stuff on their ppc build system. You can see the build logs here: http://buildsys.fedoraproject.org/logs/fedora-development-extras/9746-lineakd-0.8.4-3.fc6/ppc/build.log Notice that unlike other archs, this never gets run: /bin/sh ../admin/mkinstalldirs \ /var/tmp/lineakd-0.8.4-3.fc6-root-mockbuild/usr/share/man/man8/ Look at utils/Makefile.in: > @SEND_TO_KEYBOARD_TRUE@ $(mkinstalldirs) $(mandir)/man8/ > @SEND_TO_KEYBOARD_TRUE@ chmod 755 $(DESTDIR)$(prefix)/sbin/send_to_keyboard > @SEND_TO_KEYBOARD_TRUE@ if test "$(HELPER_SUID)" != "no" ; then \ > @SEND_TO_KEYBOARD_TRUE@ chown root $(DESTDIR)$(prefix)/sbin/send_to_keyboard ; \ > @SEND_TO_KEYBOARD_TRUE@ chmod +s $(DESTDIR)$(prefix)/sbin/send_to_keyboard ; \ > @SEND_TO_KEYBOARD_TRUE@ fi > @SEND_TO_KEYBOARD_TRUE@ $(INSTALL_DATA) $(srcdir)/send_to_keyboard.8.bz2 $(mandir)/man8/send_to_keyboard.8.bz2 > $(INSTALL_DATA) $(srcdir)/xsendkeycode.8.bz2 $(mandir)/man8/xsendkeycode.8.bz2 > $(INSTALL_DATA) $(srcdir)/xsendkeys.8.bz2 $(mandir)/man8/xsendkeys.8.bz2 Note that the man8 directory only gets installed if @SEND_TO_KEYBOARD_TRUE@ is, well, true. But that the other man pages get installed regardless of that setting. What's the proper thing to do here? Create the directory no matter what, or add @SEND_TO_KEYBOARD_TRUE@ to the last 2 manpage install calls? -Chris |
From: Rho <r.s...@gm...> - 2006-05-19 09:48:28
|
hello attached a keyboard definition patch for the Logitech Cordless Keyboard S510. I hope this is useful to someone ... And thanks for the lineakd project, I greatly appreciate this piece of software! Regards Rho |
From: Chris P. <li...@fo...> - 2006-05-13 19:47:08
|
In an effort to get lineak included in the fedora extras repository, I've upgraded my specs and built some src.rpm packages. Figured I'd pass them along here. Sheldon -- if you want to include these specs in the tarballs, they just go in the root directory of the tarball to make for easy package building straight from the tarball. For those of you not familiar with building rpm's from source: rpmbuild --rebuild lineakd-0.8.4-1.src.rpm Install this, and then do the same for the plugin packages. They'll tell you if you're missing any necessary build dependencies (please let me know if I've missed something). -Chris |
From: Robert D H. <ro...@ro...> - 2006-05-12 16:58:31
|
Sheldon, =20 Thanks for the follow up. Yes, I'm still having problems. I opened a bug = for this and it's been labeled a regression. As a reminder, the root = cause is that the extended keys are coming through the mouse event = interface. This prevents lineakd from seeing them. ________________________________ From: lin...@li... on behalf of Sheldon = Lee-Wen Sent: Fri 5/12/2006 11:15 AM To: lin...@li... Subject: [LinEAK-devel] problems with lineakd Rob, How is this going? Do you still have problems? Also,the person who was having issues with lineakd on 64 bit version of linux. Can you update from cvs and try it again and let me know if it is fixed? Thx. btw:sourceforge has moved it's cvs servers. You can no longer go to cvs.sourceforge.net you will have to go to lineak.cvs.sourceforge.net so please update your CVS/Root file entry if you already have it checked out or CVSROOT env variable when you checkout. Cheers, Sheldon. --- Sheldon Lee-Wen <to...@ro...> wrote: > np. Let me know how it goes. > > --- Robert D Hughes <ro...@ro...> wrote: > > > Bah... I should have found this sooner. Some of > the > > dapper lineak packages were installed. I did a > > --purge on them and reinstalled lineakd from cvs, > > and I'm not getting that error any more. I didn't > > have a chance to see if it actually works or not > > yet. But apparently, it got installed when I did > the > > dist-upgrade, since I'd never installed lineak on > > ubuntu. I'll have to see if I can find the > > dependency and report a bug to dapper. > >=20 > > Sorry for the hassle. > >=20 > > Rob > > > > ________________________________ > > > > From: lin...@li... on > > behalf of Sheldon Lee-Wen > > Sent: Tue 4/11/2006 11:28 AM > > To: lin...@li... > > Subject: Re: [LinEAK-devel] Dapper ETA? > > > > > > > > Hmm. > > > > Maybe if you can run it for me w/o strace (lineakd > > -vv > > and copy paste the output into an email) > > > > As a last resort maybe a shell account on your > > machine > > so that I can see first hand? > > > > thx. > > sheldon. > > > > --- Rob Hughes <ro...@ro...> wrote: > > > > > On Tuesday 11 April 2006 06:53, Sheldon Lee-Wen > > > wrote: > > > > Hi Rob, > > > > > > > > I'm going to go through the strace, but I have > a > > > fully > > > > up-to-date dapper install on my laptop here > and > > I > > > > cannot reproduce your error. Can you do: > > > > > > > > strace -o strace.out lineakd -v &> verbose.out > > > > > > > > and attach both of those files please? > > > > > > > > thx. > > > > > > > > > > Something I forgot to put in the previous email; > > > this is printed to the > > > console, but doesn't seem to show up in the > > strace: > > > > > > $ strace -o strace.out lineakd -v &> verbose.out > > > *** glibc detected *** free(): invalid pointer: > > > 0x08075664 *** > > > *** glibc detected *** double free or corruption > > > (!prev): 0x08075ba8 *** > > > > > > -- > > > Ignorance is a condition. Stupidity is a way of > > > life. > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.Net email is sponsored by xPML, a > > > groundbreaking scripting language > > > that extends applications into web and mobile > > media. > > > Attend the live webcast > > > and join the prime developer group breaking into > > > this new coding territory! > > > > > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D110944&bid=3D241720&dat=3D= 121642 > > > _______________________________________________ > > > LinEAK-devel mailing list > > > Lin...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/lineak-devel > > > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by xPML, a > > groundbreaking scripting language > > that extends applications into web and mobile > media. > > Attend the live webcast > > and join the prime developer group breaking into > > this new coding territory! > > > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D110944&bid=3D241720&dat=3D= 121642 > > _______________________________________________ > > LinEAK-devel mailing list > > Lin...@li... > > > https://lists.sourceforge.net/lists/listinfo/lineak-devel > > > > > > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a > groundbreaking scripting language > that extends applications into web and mobile media. > Attend the live webcast > and join the prime developer group breaking into > this new coding territory! > http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D110944&bid=3D241720&dat=3D= 121642 > _______________________________________________ > LinEAK-devel mailing list > Lin...@li... > https://lists.sourceforge.net/lists/listinfo/lineak-devel > ------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, = security? Get stuff done quickly with pre-integrated technology to make your job = easier Download IBM WebSphere Application Server v.1.0.1 based on Apache = Geronimo http://sel.as-us.falkag.net/sel?cmd=3Dlnk&kid=3D120709&bid=3D263057&dat=3D= 121642 _______________________________________________ LinEAK-devel mailing list Lin...@li... https://lists.sourceforge.net/lists/listinfo/lineak-devel |
From: Sheldon Lee-W. <to...@ro...> - 2006-05-12 16:15:22
|
Rob, How is this going? Do you still have problems? Also,the person who was having issues with lineakd on 64 bit version of linux. Can you update from cvs and try it again and let me know if it is fixed? Thx. btw:sourceforge has moved it's cvs servers. You can no longer go to cvs.sourceforge.net you will have to go to lineak.cvs.sourceforge.net so please update your CVS/Root file entry if you already have it checked out or CVSROOT env variable when you checkout. Cheers, Sheldon. --- Sheldon Lee-Wen <to...@ro...> wrote: > np. Let me know how it goes. > > --- Robert D Hughes <ro...@ro...> wrote: > > > Bah... I should have found this sooner. Some of > the > > dapper lineak packages were installed. I did a > > --purge on them and reinstalled lineakd from cvs, > > and I'm not getting that error any more. I didn't > > have a chance to see if it actually works or not > > yet. But apparently, it got installed when I did > the > > dist-upgrade, since I'd never installed lineak on > > ubuntu. I'll have to see if I can find the > > dependency and report a bug to dapper. > > > > Sorry for the hassle. > > > > Rob > > > > ________________________________ > > > > From: lin...@li... on > > behalf of Sheldon Lee-Wen > > Sent: Tue 4/11/2006 11:28 AM > > To: lin...@li... > > Subject: Re: [LinEAK-devel] Dapper ETA? > > > > > > > > Hmm. > > > > Maybe if you can run it for me w/o strace (lineakd > > -vv > > and copy paste the output into an email) > > > > As a last resort maybe a shell account on your > > machine > > so that I can see first hand? > > > > thx. > > sheldon. > > > > --- Rob Hughes <ro...@ro...> wrote: > > > > > On Tuesday 11 April 2006 06:53, Sheldon Lee-Wen > > > wrote: > > > > Hi Rob, > > > > > > > > I'm going to go through the strace, but I have > a > > > fully > > > > up-to-date dapper install on my laptop here > and > > I > > > > cannot reproduce your error. Can you do: > > > > > > > > strace -o strace.out lineakd -v &> verbose.out > > > > > > > > and attach both of those files please? > > > > > > > > thx. > > > > > > > > > > Something I forgot to put in the previous email; > > > this is printed to the > > > console, but doesn't seem to show up in the > > strace: > > > > > > $ strace -o strace.out lineakd -v &> verbose.out > > > *** glibc detected *** free(): invalid pointer: > > > 0x08075664 *** > > > *** glibc detected *** double free or corruption > > > (!prev): 0x08075ba8 *** > > > > > > -- > > > Ignorance is a condition. Stupidity is a way of > > > life. > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.Net email is sponsored by xPML, a > > > groundbreaking scripting language > > > that extends applications into web and mobile > > media. > > > Attend the live webcast > > > and join the prime developer group breaking into > > > this new coding territory! > > > > > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > > > _______________________________________________ > > > LinEAK-devel mailing list > > > Lin...@li... > > > > > > https://lists.sourceforge.net/lists/listinfo/lineak-devel > > > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by xPML, a > > groundbreaking scripting language > > that extends applications into web and mobile > media. > > Attend the live webcast > > and join the prime developer group breaking into > > this new coding territory! > > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > > _______________________________________________ > > LinEAK-devel mailing list > > Lin...@li... > > > https://lists.sourceforge.net/lists/listinfo/lineak-devel > > > > > > > > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a > groundbreaking scripting language > that extends applications into web and mobile media. > Attend the live webcast > and join the prime developer group breaking into > this new coding territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > LinEAK-devel mailing list > Lin...@li... > https://lists.sourceforge.net/lists/listinfo/lineak-devel > |
From: Sheldon Lee-W. <to...@ro...> - 2006-05-11 21:01:16
|
Please look on the website for documentation on how to get your keyboard=20 supported. On Wednesday 10 May 2006 05:25, Matt Schmalzigan wrote: > My keyboard isn't the typical lineak keyboard with many special buttons, > but I wanted to use a few that were not working. I believe it is a Cante= ch > TC3J-1046 keyboard. It came in a combo pack with a mouse. The link whe= re > I bought it is below. They say the manufacturer is Premium, but I don't > see any markings on the box that would indicate that. > >=20 > http://www.tigerdirect.com/applications/SearchTools/item-details.asp?EdpN= o=3D >1648063&CatId=3D0 > > Major device #: 13 > Minor device#: 65 > Range: 1 > Type: c > Vendor Identifier: 262673 > Device Identifier: 262145 > PS/2 > AT Translated Set 2 Keyboard > > Thanks, > Matt > > > __________________________________________________ > Do You Yahoo!? > Tired of spam? Yahoo! Mail has the best spam protection around > http://mail.yahoo.com |
From: Matt S. <msc...@ya...> - 2006-05-10 09:25:59
|
[CAN-TC3J] brandname = "Cantech" modelname = "TC3J-1046" [KEYS] Refresh = 115 #Windows_Logo Print = 111 #Print_Screen_Sys_Rq ScrollUp = 78 #Scroll_Lock Play|Pause = 110 #Pause_Break Home = 97 UserDefined2 = 103 #End UserDefined1 = 106 #Insert [END KEYS] [END CAN-TC3J] |
From: Tomassino F. <t_f...@ya...> - 2006-05-02 18:23:20
|
My keyboard isn't in the list of keyboards lineakd supports, so I've added it. I think the model is Chicony KB-0402, http://www.chicony.com.tw/products/input device/ku0402.htm (yes, there is a space in the URL...). I'm not sure about this as mine is an Olidata keyboard, but the picture on Chicony website is very similar to my keyboard (only the color is slightly different) and the model number is exactly the same. Here's what I've added to my lineakkb.def: [CY0402] brandname = "Chicony" modelname = "Chicony KB-0402" [KEYS] Mute = 160 VolumeDown = 174 VolumeUp = 176 Mail = 236 Home = 178 Search = 229 [END KEYS] [END CY0402] Hope I've been of any help :-) Bye! P.S.: when I try to stop lineakd by sending him sigint it sometimes segfaults and some other times prints the following: terminate called after throwing an instance of 'std::length_error' what(): basic_string::_S_create Is this a known behaviour (i.e. a bug to be fixed :-) ) or not? If you need more informations or want me to do some checks just ask. My lineakd version is 0.8.4 on Debian Unstable. |
From: V. <jv...@ju...> - 2006-04-30 22:10:52
|
Hi, This is the keyboard definition for my laptop's keyboard (Acer Aspire 1604LC). As we're talking about a laptop, I'm not sure if a picture of it is very useful... But if you do need it, let me know and I'll take a photograph and send it to you. :P Cheers, Jo=C3=A3o Vale [ACER-AS1604] brandname =3D "Acer" modelname =3D "Aspire 1604LC Laptop Keyboard" [KEYS] Wireless =3D 246 Mail =3D 236 WWW =3D 178 Custom1 =3D 159 Custom2 =3D 151 Custom3 =3D 171 FnF1 =3D 245 FnF2 =3D 129 FnF3 =3D 222 AudioLowerVolume =3D 174 AudioRaiseVolume =3D 176 AudioMut =3D 160 [END KEYS] [END ACE-TM243LC] |
From: Michael P. <mic...@gm...> - 2006-04-28 23:13:15
|
Hi, here are the settings for "*Logitech diNovo Cordless Desktop for Notebooks" *http://images-eu.amazon.com/images/P/B00031RJDW.03.LZZZZZZZ.jpg They can be found at the bottom of the file. Identifier: LTDINOVO_NB Nice project! Cya |
From: Michael L. <br...@so...> - 2006-04-23 12:40:14
|
I've written a config for the Logitech UltraX Media Desktop. http://www.logitech.com/index.cfm/partners/details/US/EN,CRID=1970,parentCRID=925,SCRID=925,CONTENTID=10450 Image: http://www.logitech.com/lang/images/0/6919.jpg [LTUM] brandname = "Logitech" modelname = "UltraX Media Desktop" [KEYS] Play|Pause =162 Mute =160 NextSong =153 PreviousSong =144 VolumeDown =174 VolumeUp =176 [END KEYS] [END LTUM] /Micke |
From: Dr. S. <sp...@de...> - 2006-04-15 06:07:33
|
Keyboard details from Microsoft site: http://www.microsoft.com/hardware/mouseandkeyboard/ProductDetails.aspx?pid= =3D040 Keyboard image: http://www.microsoft.com/brasil/hardware/shared/img/teclados/ps_KB-comfortC= urve.jpg lineakkb.def file fragment: [MICCK] # Contributed by Dr. Spock <sp...@de...> brandname =3D "Microsoft" modelname =3D "Comfort Curve Keyboard 2000 v1.0" [KEYS] Previous =3D 234 Next =3D 233 Play|Pause =3D 162 VolumeUp =3D 176 VolumeDown =3D 174 Mute =3D 160 Web|Home =3D 130 Search =3D 122 Mail =3D 236 Calculator =3D 161 [END KEYS] [END MICCK] Then, enjoy ...! |
From: Rob H. <ro...@ro...> - 2006-04-14 04:55:44
|
On Thursday 13 April 2006 23:19, Sheldon Lee-Wen wrote: > If your keyboard is a logitech you can: > > Try to change your keyboard model in > /etc/X11/xorg.conf: > > Section "InputDevice" > ... > Option "XkbModel" "logicdp" > ... > EndSection > Well, I found the events. They come through the mouse event interface, so the keyboard driver never sees them. If I set up the same udev rules I used in hoary, then lineak starts working, but my mouse stops. When I dug into that, I found out that xorg is trying to be more clever than the user, so if it sees keys on a mouse device, it automatically sets it up as a keyboard device. X then fails to start since there's no core pointer. Bloody stupid POS. I"m trying to find out if there's a way to override this behavior. -- Ignorance is a condition. Stupidity is a way of life. |
From: Sheldon Lee-W. <to...@ro...> - 2006-04-14 04:19:29
|
If your keyboard is a logitech you can: Try to change your keyboard model in /etc/X11/xorg.conf: Section "InputDevice" ... Option "XkbModel" "logicdp" ... EndSection --- Rob Hughes <ro...@ro...> wrote: > On Thursday 13 April 2006 06:43, Sheldon Lee-Wen > wrote: > > Here is my config. > > > > Section "InputDevice" > > Identifier "Generic Keyboard" > > Driver "kbd" > > Option "CoreKeyboard" > > Option "XkbRules" "xorg" > > Option "XkbModel" "pc104" > > Option "XkbLayout" "us" > > EndSection > > > > It is very strange that your keys are no producing > any > > keycodes at all. > > > > Cheers, > > Sheldon. > > > > I found one indication that this could be a kernel > issue when using usb > keyboards on dapper. I've posted a message on the > ubuntu dapper forums > looking for help in getting the keys to produce > codes, at least through > evdev. I'll let you know if I find out anything. > But not much lineak can do > if the keyboard doesn't produce any codes ;) > > Rob > > -- > Ignorance is a condition. Stupidity is a way of > life. > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a > groundbreaking scripting language > that extends applications into web and mobile media. > Attend the live webcast > and join the prime developer group breaking into > this new coding territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > LinEAK-devel mailing list > Lin...@li... > https://lists.sourceforge.net/lists/listinfo/lineak-devel > |
From: Sheldon Lee-W. <to...@ro...> - 2006-04-13 23:40:58
|
I'll have to update the admin directory from the latest KDE build tree and see if that helps. Cheers, Sheldon. --- Chris Petersen <li...@fo...> wrote: > I notice that the makefile has a whole bunch of > hard-coded checks for > "lib" (referring to things like /usr/lib, etc.). > This seriously breaks > on 64 bit systems where you want to be checking in > lib64. I've fixed > this in my specs (which I need to post again soon), > but figured I should > mention this so a more universal solution can be > devised. > > -Chris > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a > groundbreaking scripting language > that extends applications into web and mobile media. > Attend the live webcast > and join the prime developer group breaking into > this new coding territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > LinEAK-devel mailing list > Lin...@li... > https://lists.sourceforge.net/lists/listinfo/lineak-devel > |
From: Chris P. <li...@fo...> - 2006-04-13 23:28:57
|
I notice that the makefile has a whole bunch of hard-coded checks for "lib" (referring to things like /usr/lib, etc.). This seriously breaks on 64 bit systems where you want to be checking in lib64. I've fixed this in my specs (which I need to post again soon), but figured I should mention this so a more universal solution can be devised. -Chris |
From: Rob H. <ro...@ro...> - 2006-04-13 14:51:04
|
On Thursday 13 April 2006 06:43, Sheldon Lee-Wen wrote: > Here is my config. > > Section "InputDevice" > Identifier "Generic Keyboard" > Driver "kbd" > Option "CoreKeyboard" > Option "XkbRules" "xorg" > Option "XkbModel" "pc104" > Option "XkbLayout" "us" > EndSection > > It is very strange that your keys are no producing any > keycodes at all. > > Cheers, > Sheldon. > I found one indication that this could be a kernel issue when using usb keyboards on dapper. I've posted a message on the ubuntu dapper forums looking for help in getting the keys to produce codes, at least through evdev. I'll let you know if I find out anything. But not much lineak can do if the keyboard doesn't produce any codes ;) Rob -- Ignorance is a condition. Stupidity is a way of life. |
From: Sheldon Lee-W. <to...@ro...> - 2006-04-13 11:43:40
|
Here is my config. Section "InputDevice" Identifier "Generic Keyboard" Driver "kbd" Option "CoreKeyboard" Option "XkbRules" "xorg" Option "XkbModel" "pc104" Option "XkbLayout" "us" EndSection It is very strange that your keys are no producing any keycodes at all. Cheers, Sheldon. --- Rob Hughes <ro...@ro...> wrote: > On Wednesday 12 April 2006 18:41, Sheldon Lee-Wen > wrote: > > Wierd. What is your X setup? Is it normal X or xgl > or > > something else? Does xev show keycodes when you > press > > your keys? > > > > It's regular X, but I hadn't thought about testing > with xev. And no, xev isn't > showing keycodes. This is bloody strange. I'm using > pretty generic setup on > my keyboard in my xorg.conf. > > Section "InputDevice" > Identifier "Generic Keyboard" > Driver "kbd" > Option "CoreKeyboard" > Option "XkbRules" "xorg" > Option "XkbModel" "pc105" > Option "XkbLayout" "us" > EndSection > > What's yours look like? I'm also using evdev for my > mouse. And going through > all the entries in /dev/input with evtest, nothing > is showing keycodes for > the extended keys, even though event5 does show > events for regular key > presses. > > Thanks, > Rob > > -- > Ignorance is a condition. Stupidity is a way of > life. > > > ------------------------------------------------------- > This SF.Net email is sponsored by xPML, a > groundbreaking scripting language > that extends applications into web and mobile media. > Attend the live webcast > and join the prime developer group breaking into > this new coding territory! > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642 > _______________________________________________ > LinEAK-devel mailing list > Lin...@li... > https://lists.sourceforge.net/lists/listinfo/lineak-devel > |
From: Rob H. <ro...@ro...> - 2006-04-13 11:25:43
|
On Wednesday 12 April 2006 18:41, Sheldon Lee-Wen wrote: > Wierd. What is your X setup? Is it normal X or xgl or > something else? Does xev show keycodes when you press > your keys? > It's regular X, but I hadn't thought about testing with xev. And no, xev isn't showing keycodes. This is bloody strange. I'm using pretty generic setup on my keyboard in my xorg.conf. Section "InputDevice" Identifier "Generic Keyboard" Driver "kbd" Option "CoreKeyboard" Option "XkbRules" "xorg" Option "XkbModel" "pc105" Option "XkbLayout" "us" EndSection What's yours look like? I'm also using evdev for my mouse. And going through all the entries in /dev/input with evtest, nothing is showing keycodes for the extended keys, even though event5 does show events for regular key presses. Thanks, Rob -- Ignorance is a condition. Stupidity is a way of life. |