Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
|
Feb
(12) |
Mar
(43) |
Apr
(51) |
May
(9) |
Jun
(54) |
Jul
(89) |
Aug
(148) |
Sep
(84) |
Oct
(139) |
Nov
(88) |
Dec
(68) |
2003 |
Jan
(64) |
Feb
(55) |
Mar
(59) |
Apr
(66) |
May
(93) |
Jun
(103) |
Jul
(73) |
Aug
(174) |
Sep
(167) |
Oct
(96) |
Nov
(128) |
Dec
(61) |
2004 |
Jan
(162) |
Feb
(138) |
Mar
(112) |
Apr
(52) |
May
(83) |
Jun
(105) |
Jul
(112) |
Aug
(51) |
Sep
(75) |
Oct
(63) |
Nov
(31) |
Dec
(25) |
2005 |
Jan
(71) |
Feb
(42) |
Mar
(23) |
Apr
(32) |
May
(36) |
Jun
(22) |
Jul
(12) |
Aug
(14) |
Sep
(37) |
Oct
(8) |
Nov
(6) |
Dec
(7) |
2006 |
Jan
(22) |
Feb
(78) |
Mar
(17) |
Apr
(66) |
May
(56) |
Jun
(24) |
Jul
(18) |
Aug
(12) |
Sep
(118) |
Oct
(13) |
Nov
(21) |
Dec
(11) |
2007 |
Jan
(21) |
Feb
(30) |
Mar
(74) |
Apr
(38) |
May
(30) |
Jun
(11) |
Jul
(59) |
Aug
(26) |
Sep
(6) |
Oct
(18) |
Nov
(14) |
Dec
(19) |
2008 |
Jan
(17) |
Feb
|
Mar
(7) |
Apr
(8) |
May
(6) |
Jun
(7) |
Jul
(5) |
Aug
|
Sep
(1) |
Oct
(18) |
Nov
(13) |
Dec
(24) |
2009 |
Jan
(5) |
Feb
|
Mar
(21) |
Apr
(2) |
May
(2) |
Jun
(3) |
Jul
(2) |
Aug
(2) |
Sep
(16) |
Oct
(3) |
Nov
(1) |
Dec
(2) |
2010 |
Jan
(5) |
Feb
(1) |
Mar
(1) |
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
(1) |
Dec
|
2011 |
Jan
|
Feb
(1) |
Mar
(2) |
Apr
|
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
(9) |
Jun
|
Jul
|
Aug
(6) |
Sep
|
Oct
(6) |
Nov
|
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
(1) |
2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2016 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
(8) |
Jun
|
Jul
(1) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
1
|
2
|
3
|
4
|
5
|
6
|
7
|
8
|
9
|
10
|
11
(1) |
12
(2) |
13
|
14
|
15
|
16
|
17
|
18
(1) |
19
|
20
|
21
|
22
(2) |
23
(1) |
24
|
25
|
26
|
27
|
28
|
29
|
30
|
31
|
From: Rudolf Marek <r.marek@sh...> - 2005-12-23 22:07:39
|
Hello all, I have never been able to get the nsc-ircc driver working after resume. As the result I developed a patch that convert driver to platform_driver stuff plus it adds a working resume for me. The patch is not yet to be included. What I want is some test/comment from nsc-ircc users/irda developers. I know it works for SIR transfers up to 115K. I dont have any faster device so I cant test it... Please can someone do some tests with the patch? I would like to know if I need to call .._change_speed even when the device was down to provide some defined state of those registers, I'm setting speed to 9600. Good would be if someone can comment the progranm logic. The patch was a bit inspired by smsc irda driver. If all will go well I will prepare more cleaner patch for inclusion. The patch is against 2.6.15-rc6 Thank you, Regards Rudolf |
From: d binderman <dcb314@ho...> - 2005-12-22 18:36:21
|
Hello there, I recently tried out a non standard version of the GNU C compiler on the 2.6.14.4 Linux kernel. The compiler said net/irda/irnet/irnet_irda.c:699: warning: array subscript out of range The source code is self->rname[NICKNAME_MAX_LEN + 1] = '\0'; but >find net -name \*.h -print | xargs fgrep rname | more net/irda/irnet/irnet.h: char rname[NICKNAME_MAX_LEN + 1]; Here is an untested patch to shut up the compiler. --- net/irda/irnet/irnet_irda.c.sav 2005-12-22 15:15:55.000000000 +0000 +++ net/irda/irnet/irnet_irda.c 2005-12-22 15:16:15.000000000 +0000 @@ -696,7 +696,7 @@ { /* Yes !!! Get it.. */ strlcpy(self->rname, discoveries[i].info, sizeof(self->rname)); - self->rname[NICKNAME_MAX_LEN + 1] = '\0'; + self->rname[ sizeof( self->rname) - 1 ] = '\0'; DEBUG(IRDA_SERV_INFO, "Device 0x%08x is in fact ``%s''.\n", self->daddr, self->rname); kfree(discoveries); Regards David Binderman _________________________________________________________________ The new MSN Search Toolbar now includes Desktop search! http://toolbar.msn.co.uk/ |
From: Louis-Benoit JOURDAIN <thelbj@gm...> - 2005-12-22 11:57:46
|
Hi, I'm using: >uname -a Linux louve 2.6.9-gentoo-r1 #7 Fri Nov 18 15:02:07 CET 2005 i686 Intel(R) Pentium(R) M processor 1400MHz GenuineIntel GNU/Linux in modules.conf, I have: alias irda0 smsc_ircc2 I run the following commands in this order: - smcinit -v -f 0x0130 -s 0x2f8 -d1 -i3 - modprobe smsc_ircc2 That loads the driver correctly: Dec 21 11:37:00 louve kernel: NET: Registered protocol family 23 Dec 21 11:37:00 louve kernel: found SMC SuperIO Chip (devid=3D0x5a rev=3D00 base=3D0x002e): LPC47N227 Dec 21 11:37:00 louve kernel: smsc_superio_flat(): fir: 0x130, sir: 0x2f8, dma: 01, irq: 3, mode: 0x8a Dec 21 11:37:00 louve kernel: SMsC IrDA Controller found Dec 21 11:37:00 louve kernel: IrCC version 2.0, firport 0x130, sirport 0x2f8 dma=3D1, irq=3D3 Dec 21 11:37:00 louve kernel: No transceiver found. Defaulting to Fast pin select Dec 21 11:37:00 louve kernel: IrDA: Registered device irda0 And I can see the interface is configured: >/sbin/ifconfig irda0 irda0 Link encap:IrLAP HWaddr 65:64:08:04 NOARP MTU:2048 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:8 RX bytes:0 (0.0 b) TX bytes:0 (0.0 b) Interrupt:3 Base address:0x130 Now, I irattach irda0: Dec 21 11:38:56 louve irattach: executing: '/sbin/modprobe irda0' Dec 21 11:38:56 louve irattach: executing: 'echo louve > /proc/sys/net/irda/devname' Dec 21 11:38:56 louve irattach: executing: 'echo 1 > /proc/sys/net/irda/discovery' Dec 21 11:38:56 louve irattach: Starting device irda0 I can see the interface is up: >/sbin/ifconfig irda0 irda0 Link encap:IrLAP HWaddr 65:64:08:04 UP RUNNING NOARP MTU:2048 Metric:1 RX packets:0 errors:0 dropped:0 overruns:0 frame:0 TX packets:0 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:8 RX bytes:0 (0.0 b) TX bytes:30 (30.0 b) Interrupt:3 Base address:0x130 setserial says: >setserial /dev/ttyS0 /dev/ttyS0, UART: 16550A, Port: 0x03f8, IRQ: 4 >setserial /dev/ttyS1 /dev/ttyS1, UART: unknown, Port: 0x02f8, IRQ: 3 But, irdadump reports nothing. It looks like it's not configured properly. I put my phone in front of the irda receiver, nothing is being filtered. Should irdadump report something? Then, I load the drivers for ircomm_tty (in modules.conf, I have: alias tty-ldisc-11 irtty alias char-major-161 ircomm_tty) and I try to sync my pilot by irda on /dev/ircomm0, it doesn't work. The smcinit page says the sir port is supposed to be on 0x3f8. Whenever I configure the port with smcinit to 0x3f8 and then I try to load the module smsc_ircc2, it fails with: Dec 21 11:23:09 louve kernel: NET: Registered protocol family 23 Dec 21 11:23:09 louve kernel: found SMC SuperIO Chip (devid=3D0x5a rev=3D00 base=3D0x002e): LPC47N227 Dec 21 11:23:09 louve kernel: smsc_superio_flat(): fir: 0x130, sir: 0x3f8, dma: 01, irq: 3, mode: 0x8a Dec 21 11:23:09 louve kernel: smsc_ircc_present: can't get sir_base of 0x3f= 8 So I think my ports are good. Any idea what is going wrong with my settings? Thanks a lot in advance, LB -- LB, lb@... -- http://www.jourdain.org |
From: Andrew \ruskie\ Levstik <ruskie@ma...> - 2005-12-18 15:29:32
|
Andrew "ruskie" Levstik wrote : > I'm having problem getting this to work on my latitude cpi a366st lapto= p. > I'm running: >=20 > Linux 2.6.13 hand built vanilla >=20 > The chip reported by the smsc-ircc2 driver is: > found SMC SuperIO Chip (devid=3D0x09 rev=3D01 base=3D0x03f0): FDC37N958= FR > Revision higher than expected >=20 > The BIOS is configured to set the irda to com4 so ttyS3. > dmesg | grep "ttyS3" returns the following: > ttyS3 at I/O 0x2e8 (irq =3D 3) is a 16550A >=20 > Someone please help... >=20 After a weeks worth of googling I have found the following... setserial /dev/ttyS3 uart none modprobe smsc_ircc2 irattach irda0 -s ifconfig irda0 up And irdadump is showing output from my cell phone... --=20 Andrew "ruskie" Levstik Source Mage GNU/Linux Games grimoire guru Hacker FAQ: http://www.plethora.net/%7eseebs/faqs/hacker.html Key id =3D 9A5117F8 Key fingerprint =3D 6731 FEF2 99A8 4672 5962 69AB 3DAF DA67 9A51 17F8 |
From: Nick Fedchik <nfedchik@at...> - 2005-12-12 14:12:07
|
> juliaroberts:~# modprobe irda > FATAL: Error inserting irda (/lib/modules/2.6.13/kernel/net/irda/irda.ko): > Unknown symbol in module, or unknown parameter (see dmesg) > > and dmesg gives: > ... > irda: Unknown symbol crc_ccitt_table Looks like You use vanilla kernel, so check Your .config at # # Library routines # CONFIG_CRC_CCITT=m CONFIG_CRC32=y CONFIG_LIBCRC32C=m ... Pre-load crc-ccitt module or recompile kernel with build-in CRC routines -- Best Regards, Nick Fedchik |
From: <didier.donze@gm...> - 2005-12-12 13:25:52
|
Hi! I want to use irda on my notebook! I activated all the stuff in the kernel and when i want to load the module irda, i get this: juliaroberts:~# modprobe irda FATAL: Error inserting irda (/lib/modules/2.6.13/kernel/net/irda/irda.ko): Unknown symbol in module, or unknown parameter (see dmesg) and dmesg gives: ... irda: Unknown symbol crc_ccitt_table I googled a lot, but found nothing... juliaroberts:~# uname -a Linux juliaroberts 2.6.13 #1 SMP Wed Nov 2 00:22:03 CET 2005 i686 GNU/Linux juliaroberts:~# setserial -g -a /dev/ttyS* /dev/ttyS0, Line 0, UART: 16550A, Port: 0x03f8, IRQ: 4 Baud_base: 115200, close_delay: 50, divisor: 0 closing_wait: 3000 Flags: spd_normal skip_test /dev/ttyS1, Line 1, UART: undefined, Port: 0x02f8, IRQ: 3 Baud_base: 921600, close_delay: 50, divisor: 0 closing_wait: 3000 Flags: spd_normal skip_test /dev/ttyS2, Line 2, UART: unknown, Port: 0x03e8, IRQ: 4 Baud_base: 115200, close_delay: 50, divisor: 0 closing_wait: 3000 Flags: spd_normal skip_test /dev/ttyS3, Line 3, UART: unknown, Port: 0x02e8, IRQ: 3 Baud_base: 115200, close_delay: 50, divisor: 0 closing_wait: 3000 Flags: spd_normal Has anybody any idea? Thank you! Didier |
From: Andrew \ruskie\ Levstik <ruskie@ma...> - 2005-12-11 17:07:24
|
I'm having problem getting this to work on my latitude cpi a366st laptop. I'm running: Linux 2.6.13 hand built vanilla The chip reported by the smsc-ircc2 driver is: found SMC SuperIO Chip (devid=3D0x09 rev=3D01 base=3D0x03f0): FDC37N958FR Revision higher than expected The BIOS is configured to set the irda to com4 so ttyS3. dmesg | grep "ttyS3" returns the following: ttyS3 at I/O 0x2e8 (irq =3D 3) is a 16550A Someone please help... --=20 Andrew "ruskie" Levstik Source Mage GNU/Linux Games grimoire guru Key id =3D 9A5117F8 Key fingerprint =3D 6731 FEF2 99A8 4672 5962 69AB 3DAF DA67 9A51 17F8 |