From owner-freebsd-questions@FreeBSD.ORG Thu Nov 18 19:21:42 2004 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBD0616A4D1 for ; Thu, 18 Nov 2004 19:21:42 +0000 (GMT) Received: from smtpauth08.mail.atl.earthlink.net (smtpauth08.mail.atl.earthlink.net [209.86.89.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85FC343D31 for ; Thu, 18 Nov 2004 19:21:42 +0000 (GMT) (envelope-from algould@datawok.com) Received: from [206.255.31.21] (helo=[192.168.63.10]) by smtpauth08.mail.atl.earthlink.net with asmtp (TLSv1:RC4-MD5:128) (Exim 4.34) id 1CUrqf-000736-GB; Thu, 18 Nov 2004 14:21:41 -0500 From: "Andrew L. Gould" To: "Tom Connolly" Date: Thu, 18 Nov 2004 13:21:58 -0600 User-Agent: KMail/1.6.2 References: <03a901c4cd9e$4db215e0$9a11a8c0@d3stomc> In-Reply-To: <03a901c4cd9e$4db215e0$9a11a8c0@d3stomc> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200411181321.58329.algould@datawok.com> X-ELNK-Trace: ee791d459e3d6817d780f4a490ca69563f9fea00a6dd62bc564bc8189dde314d4829ef1208fc6294350badd9bab72f9c350badd9bab72f9c350badd9bab72f9c X-Originating-IP: 206.255.31.21 cc: freebsd-questions@freebsd.org Subject: Re: PCMCIA Wireless Card Question X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Nov 2004 19:21:43 -0000 On Thursday 18 November 2004 12:42 pm, Tom Connolly wrote: > Andrew L. Gould wrote: > > On Tuesday 16 November 2004 12:30 pm, Tom Connolly wrote: > >> Hello List, > >> I have just put FreeBSD 5.3 Release on my Dell Latitude C600 > >> laptop. I wish to go wireless but I'm new to this technology. I > >> have looked through the hardware compatibility notes and have > >> found several supported wireless cards. My question is, what do I > >> have to do (ports to install, configuration, etc.) to get the > >> wireless connection up and running. > >> > >> Any help would be appreciated. > >> > >> Thanks, > >> > >> Tom > > > > Based on your email, I will assume that you purchased a compatible > > wireless adapter. > > > > 1. Make sure your pccard slots work in FreeBSD 5.3. There's no use > > in struggling with the pccard if the slots don't work. > > > > http://www.freebsd.org/doc/en_US.ISO8859-1/articles/laptop/x58.html > > > > > > 2. Make sure your kernel is configured for your hardware. You may > > have to add devices to your kernel: > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/kernelconfi >g.h tml > > > 3. Configure your wireless connection: > > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/network-wir >ele ss.html > > > Have fun, > > > > Andrew Gould > > Oops, I guess I missed the top line in the Handbook that I can skip > making device nodes since I am using FreeBSD 5.3. I assume I still > have to add the entry for the kernel though. Is that correct? Then > I assume I have to recompile the kernel which I have never done > before. Is this also correct? Sorry for the remedial questions. I > as still a newbie. > > Tom For the atheros chipset, you'll need to add the following to your kernel config file: device ath device ath_hal Since this is your first time recompiling a kernel, you might consider the following advice: 1. Start with a copy of GENERIC. Since you're currently running it, you know it works. 2. Put additions at the bottom of the file so that you can find them easily. 3. When you comment out unused options or devices, comment them out with a combination of characters so that you can find/reverse your changes easily. For example, rather than simply add a '#' to the front of a line, you could add 2 #'s and your initials (in my case, that would be '##ag'). Good luck, Andrew Gould