From: Pavel Machek <hidden> Date: 2004-07-14 11:41:51
Hi!
What is the status of ipw2100? Is there chance that it would be pushed
into mainline?
I have few problems with that:
* it will not compile with gcc-2.95. Attached patch fixes one problem
but more remain.
* it requires CONFIG_CRYPTO, but fails to force it in Kconfig.
Pavel
--
People were complaining that M$ turns users into beta-testers...
...jr ghea gurz vagb qrirybcref, naq gurl frrz gb yvxr vg gung jnl!
From: Jeff Chua <hidden> Date: 2004-07-14 11:51:18
On Wed, 14 Jul 2004, Pavel Machek wrote:
Hi!
What is the status of ipw2100? Is there chance that it would be pushed
into mainline?
I have few problems with that:
* it will not compile with gcc-2.95. Attached patch fixes one problem
but more remain.
I've given up hope on that. Don't think it'll ever compile on 2.95. I'm
using ndiswrapper and it works nicely.
Jeff.
From: Pavel Machek <hidden> Date: 2004-07-14 12:27:17
Hi!
quoted
What is the status of ipw2100? Is there chance that it would be pushed
into mainline?
I have few problems with that:
* it will not compile with gcc-2.95. Attached patch fixes one problem
but more remain.
I've given up hope on that. Don't think it'll ever compile on 2.95. I'm
using ndiswrapper and it works nicely.
No, I think that can be fixed... I'll rather fix ipw2100 than use
ndiswrapper.
Pavel
--
People were complaining that M$ turns users into beta-testers...
...jr ghea gurz vagb qrirybcref, naq gurl frrz gb yvxr vg gung jnl!
From: Pavel Machek <hidden> Date: 2004-07-14 12:30:25
Hi!
What is the status of ipw2100? Is there chance that it would be pushed
into mainline?
Hmm, it has very "nice" interface in proc, where it tells you (in
english *sentences*) if radio kill switch is enabled or not. Ouch.
iwconfig eth1 mode ad-hoc
followed by
iwconfig eth1
makes it crash in ipw2100_wx_get_power called from
wireless_process_ioctl.
Pavel
--
People were complaining that M$ turns users into beta-testers...
...jr ghea gurz vagb qrirybcref, naq gurl frrz gb yvxr vg gung jnl!
On Wed, Jul 14, 2004 at 01:41:35PM +0200, Pavel Machek wrote:
Hi!
What is the status of ipw2100? Is there chance that it would be pushed
into mainline?
I have few problems with that:
* it will not compile with gcc-2.95. Attached patch fixes one problem
but more remain.
Wouldn't "struct sk_buff **fragments" be a more correct fix?
* it requires CONFIG_CRYPTO, but fails to force it in Kconfig.
Pavel
--
People were complaining that M$ turns users into beta-testers...
...jr ghea gurz vagb qrirybcref, naq gurl frrz gb yvxr vg gung jnl!
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
From: Pavel Machek <hidden> Date: 2004-07-14 13:42:49
Hi!
quoted
What is the status of ipw2100? Is there chance that it would be pushed
into mainline?
I have few problems with that:
* it will not compile with gcc-2.95. Attached patch fixes one problem
but more remain.
Wouldn't "struct sk_buff **fragments" be a more correct fix?
Yep, that would certainly be better. I'll wait if I get some reply
from ipw2100 people. If so I'll update the patch.
Pavel
--
People were complaining that M$ turns users into beta-testers...
...jr ghea gurz vagb qrirybcref, naq gurl frrz gb yvxr vg gung jnl!
From: Tomas Szepe <hidden> Date: 2004-08-09 20:34:23
On Jul-14 2004, Wed, 13:55 +0200
Pavel Machek [off-list ref] wrote:
quoted
quoted
What is the status of ipw2100? Is there chance that it would be pushed
into mainline?
I have few problems with that:
* it will not compile with gcc-2.95. Attached patch fixes one problem
but more remain.
I've given up hope on that. Don't think it'll ever compile on 2.95. I'm
using ndiswrapper and it works nicely.
No, I think that can be fixed... I'll rather fix ipw2100 than use
ndiswrapper.
ipw2100 0.51 from ipw2100.sf.net builds using gcc-2.95.3 "out of the box."
Also make sure to use the attached patch for 2.6.8pre.
--
Tomas Szepe [off-list ref]
diff -urN linux-2.6.7/drivers/net/wireless/ipw2100/ipw2100_fw.c linux-2.6.7.x/drivers/net/wireless/ipw2100/ipw2100_fw.c
@@ -200,7 +200,7 @@gotofail;}-if(read(fd,c->buf,c->len)!=c->len){+if(sys_read(fd,c->buf,c->len)!=c->len){printk(KERN_INFO"Failed to read chunk firmware ""chunk %d.\n",i);gotofail;
@@ -231,17 +231,17 @@INIT_LIST_HEAD(&fw->fw.chunk_list);INIT_LIST_HEAD(&fw->uc.chunk_list);-fd=open(fn,0,0);+fd=sys_open(fn,0,0);if(fd==-1){printk(KERN_INFO"Unable to load '%s'.\n",fn);return1;}-l=lseek(fd,0L,2);-lseek(fd,0L,0);+l=sys_lseek(fd,0L,2);+sys_lseek(fd,0L,0);IPW2100_DEBUG_FW("Loading %ld bytes for firmware '%s'\n",l,fn);-if(read(fd,(char*)&h,sizeof(h))!=sizeof(h)){+if(sys_read(fd,(char*)&h,sizeof(h))!=sizeof(h)){printk(KERN_INFO"Failed to read '%s'.\n",fn);gotofail;}
From: Jeff Chua <hidden> Date: 2004-08-10 05:05:01
On Mon, 9 Aug 2004, Tomas Szepe wrote:
ipw2100 0.51 from ipw2100.sf.net builds using gcc-2.95.3 "out of the box."
Well, this is really good news!
I just downloaded 0.51 compiled with gcc-2.95.3 and got it working on my
IBM X31 with WEP. Even better, 0.51 doesn't need hostap-driver.
Looks good.
Thanks,
Jeff