<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Symbol pcmcia wireless card error]]></title><description><![CDATA[<p dir="auto">I am using Pfsense 1.3 Alpha and i love it but i am getting this error message with my Symbol 4131 pcmcia wireless card</p>
<p dir="auto">Wi0:&lt;symbol spectrum24="" la4100="" series="" wlan="" pc="" card=""&gt;at port0xd000-0xd047 irq 21 function 0 config 1 on pccard 0<br />
Wi0: Symbol LA4100 needs 'option WI_SYMBOL_FIRMWARE'</p>
<p dir="auto">Can you please help me .&lt;/symbol&gt;</p>
]]></description><link>https://forum.netgate.com/topic/11293/symbol-pcmcia-wireless-card-error</link><generator>RSS for Node</generator><lastBuildDate>Sun, 14 Jun 2026 10:06:08 GMT</lastBuildDate><atom:link href="https://forum.netgate.com/topic/11293.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 08 Oct 2008 19:47:51 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Symbol pcmcia wireless card error on Tue, 14 Oct 2008 09:29:24 GMT]]></title><description><![CDATA[<p dir="auto">Looking at the CVS commit logs and the associated diffs gives more information. The firmware is shipped with FreeBSD - it's in src/sys/dev/wi/spectrum24t_cf.h in all but HEAD (it has been moved in HEAD as part of the wireless improvements). The kernel option is required - but I see no need to have it turned off unless an extra few KBytes in the kernel (or wi module if wi(4) is a module) is a problem.</p>
<p dir="auto">The only thing to be careful of is that the firmware has an advertising clause in its licence; see the header file I just mentioned for details.</p>
]]></description><link>https://forum.netgate.com/post/183230</link><guid isPermaLink="true">https://forum.netgate.com/post/183230</guid><dc:creator><![CDATA[David_W]]></dc:creator><pubDate>Tue, 14 Oct 2008 09:29:24 GMT</pubDate></item><item><title><![CDATA[Reply to Symbol pcmcia wireless card error on Fri, 10 Oct 2008 09:56:10 GMT]]></title><description><![CDATA[<p dir="auto">A quick glance at the source code (sys/dev/wi/if_wi_pccard.c) for FreeBSD 7.0 suggests the driver for your particular card needs to be compiled with kernel option WI_SYMBOL_FIRMWARE enabled. This probably applies to the 1.2.1-RC builds as well.</p>
<pre><code>	/*
	 * The cute little Symbol LA4100-series CF cards need to have
	 * code downloaded to them.
	 */
	pccard_get_vendor(dev, &amp;vendor);
	pccard_get_product(dev, &amp;product);
	if (vendor == PCMCIA_VENDOR_SYMBOL &amp;&amp;
	    product == PCMCIA_PRODUCT_SYMBOL_LA4100) {
#ifdef WI_SYMBOL_FIRMWARE
		if (wi_symbol_load_firm(device_get_softc(dev),
		    spectrum24t_primsym, sizeof(spectrum24t_primsym),
		    spectrum24t_secsym, sizeof(spectrum24t_secsym))) {
			device_printf(dev, "couldn't load firmware\n");
			return (ENXIO);
		}
#else
		device_printf(dev, 
		    "Symbol LA4100 needs 'option WI_SYMBOL_FIRMWARE'\n");
		wi_free(dev);
		return (ENXIO);
#endif
	}

</code></pre>
<p dir="auto">Do you have the firmware file? (Guess that could be another problem.) And I don't have any idea how the firmware would be loaded, though the man page for wi would probably be a good place to start looking: go to <a href="http://www.freebsd.org/cgi/man.cgi" target="_blank" rel="noopener noreferrer nofollow ugc">http://www.freebsd.org/cgi/man.cgi</a> and type <em>wi</em> in the appropriate box then click the <em>submit</em> button.</p>
<p dir="auto">A lot of FreeBSD drivers are shared with OpenBSD and NetBSD. I've sometimes found the OpenBSD man pages a bit more informative than the FreeBSD man pages: <a href="http://www.openbsd.org" target="_blank" rel="noopener noreferrer nofollow ugc">http://www.openbsd.org</a> and click on the <em>Manuals</em> link on the left.</p>
]]></description><link>https://forum.netgate.com/post/183022</link><guid isPermaLink="true">https://forum.netgate.com/post/183022</guid><dc:creator><![CDATA[wallabybob]]></dc:creator><pubDate>Fri, 10 Oct 2008 09:56:10 GMT</pubDate></item><item><title><![CDATA[Reply to Symbol pcmcia wireless card error on Fri, 10 Oct 2008 02:35:48 GMT]]></title><description><![CDATA[<p dir="auto">In FreeBSD Man Pages they mentioned that the wi driver is supported :<br />
http://www.freebsd.org/cgi/man.cgi?query=wi&amp;sektion=4&amp;manpath=FreeBSD+6.2-RELEASE</p>
<p dir="auto">Can anyone who has more experience in BSD help me on this please ?</p>
<p dir="auto">Thanks</p>
]]></description><link>https://forum.netgate.com/post/182979</link><guid isPermaLink="true">https://forum.netgate.com/post/182979</guid><dc:creator><![CDATA[isso]]></dc:creator><pubDate>Fri, 10 Oct 2008 02:35:48 GMT</pubDate></item></channel></rss>