Discussion:
WL11000-2 Wireless Card
Matt
2003-11-25 18:28:29 UTC
Permalink
I have an SMC2652W wireless access point that has bit the dust a long
time ago. Imagine how happy I was to find that inside the dead AP was a
good PCMCIA NIC. after a few months of using the NIC as a standalone NIC
with a custom bracket for the antenna, the little gold connector that
snaps into the NIC fell off and has long sinde disappeared. Does anyone
here know what kind of a connector that is and where I could get a new
one?


Thank you for your time

FIRESTORM_v1
Andrew Goodney
2003-11-26 17:43:32 UTC
Permalink
I know this list doesn't have much traffic right now dealing with the
LinuxAP sources from linuxAP.ksmith.com

However, I found a bug in the Mk/hostap.mk makefile. The hostap-install
target was missing a line in the make call that caused the make to fail
when building for the wl11000 target. Patch file is below. Not sure if
this applies to Soekris as well, maybe I'll get around to testing that
when we get our new Soekris boards in.

-Andrew Goodney

***@host:/usr/src/linuxAP/Mk$ diff -c hostap.mk.orig hostap.mk
*** hostap.mk.orig Wed Nov 26 09:37:55 2003
--- hostap.mk Wed Nov 26 09:37:12 2003
***************
*** 32,37 ****
--- 32,38 ----
@$(MAKE) -C hostap IMAGE_DIR=$(IMAGE_DIR) \
CROSS_COMPILE=$(CROSS_COMPILE) \
DESTDIR=$(IMAGE_DIR) \
+ KERNEL_PATH=$(KERNEL_DIR) \
install_pccard \
install_hostap \
install_crypt \
Andrew Goodney
2003-11-26 21:58:39 UTC
Permalink
Here is another patch that fixes the html output on the CGI page of the
web interface. The "SAVE" button was outside the form. Course I just
noticed the output from the CGI is pretty messy when you click
save...expect another patch.

***@host:/usr/src/linuxAP/cgi# diff -c setup.c.orig setup.c
*** setup.c.orig Wed Nov 26 13:39:11 2003
--- setup.c Wed Nov 26 13:40:12 2003
***************
*** 131,139 ****
(*func)("option");
}
otf(tabl("/"));
- otf(form("/",NULL));
printf("<br>Click SAVE to save configuration changes<br>\n");
otf(isub("f_click","SAVE"));
printf("</body></html>\n");
}

--- 131,139 ----
(*func)("option");
}
otf(tabl("/"));
printf("<br>Click SAVE to save configuration changes<br>\n");
otf(isub("f_click","SAVE"));
+ otf(form("/",NULL));
printf("</body></html>\n");
}
Keith Smith
2003-11-28 04:40:50 UTC
Permalink
Hmm,

I've made a number of changes to this stuff. Pretty sure I got the Mk/ problem
and I *know* I found this.

Guess I need to put it up. I was doing some serious testing here when other
projects intervened.
Post by Andrew Goodney
Here is another patch that fixes the html output on the CGI page of the
web interface. The "SAVE" button was outside the form. Course I just
noticed the output from the CGI is pretty messy when you click
save...expect another patch.
*** setup.c.orig Wed Nov 26 13:39:11 2003
--- setup.c Wed Nov 26 13:40:12 2003
***************
*** 131,139 ****
(*func)("option");
}
otf(tabl("/"));
- otf(form("/",NULL));
printf("<br>Click SAVE to save configuration changes<br>\n");
otf(isub("f_click","SAVE"));
printf("</body></html>\n");
}
--- 131,139 ----
(*func)("option");
}
otf(tabl("/"));
printf("<br>Click SAVE to save configuration changes<br>\n");
otf(isub("f_click","SAVE"));
+ otf(form("/",NULL));
printf("</body></html>\n");
}
_______________________________________________
LinuxAP-dev mailing list
http://linuxAP.ksmith.com/mailman/listinfo/linuxap-dev
Andrew Goodney
2003-12-01 17:55:07 UTC
Permalink
After playing around with the 9-13-2003 release this weekend I have a
question for the list:

Has anyone else gotten this release to work on a wl11000?

The problem I'm seeing is with the wlan interface. After booting and
configuring the interface in Station/Router mode iwconfig shows a
connection to the proper access point however when the interface is
ifconfig'd no packets are actually sent (or recieved? hard to tell).

I'm going to keep testing/poking at this later today as the 06-10-2003
release works fine.

thanks-
Andrew Goodney
***@blueskylabs.com

Loading...