From owner-freebsd-hardware@FreeBSD.ORG Sun Aug 15 12:09:20 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E4BE16A4CE for ; Sun, 15 Aug 2004 12:09:20 +0000 (GMT) Received: from mail1.ecc.u-tokyo.ac.jp (mail1.ecc.u-tokyo.ac.jp [133.11.171.216]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12B4A43D41 for ; Sun, 15 Aug 2004 12:09:17 +0000 (GMT) (envelope-from tamaru@myn.rcast.u-tokyo.ac.jp) Received: from spam005.ecc.u-tokyo.ac.jp (spam005.ecc.u-tokyo.ac.jp [133.11.50.198]) by mail1.ecc.u-tokyo.ac.jp (Postfix) with ESMTP id 42AE97030F for ; Sun, 15 Aug 2004 21:09:15 +0900 (JST) Received: from gin.myn.rcast.u-tokyo.ac.jp ( [157.82.72.158]) by spam005.ecc.u-tokyo.ac.jp (SpamBlock.pst 3.4.25) with ESMTP id for ; Sun, 15 Aug 2004 21:09:12 +0900 Date: Sun, 15 Aug 2004 21:09:12 +0900 Message-ID: From: Hiroharu Tamaru To: freebsd-hardware@freebsd.org In-Reply-To: References: <20040814073928.DEBD367F83@gunfright.epcdirect.co.uk> User-Agent: User-Agent: Wanderlust/2.10.0 (Venus) Emacs/21.3 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII X-IP: 157.82.72.158 X-FROM-DOMAIN: myn.rcast.u-tokyo.ac.jp X-FROM-EMAIL: tamaru@myn.rcast.u-tokyo.ac.jp Subject: Re: How to receive BIOS console redirection? X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 12:09:20 -0000 At Sat, 14 Aug 2004 02:08:18 +0900, Hiroharu Tamaru wrote: > I have a Supermicrio P4SC8 motherboard and I want to receive > its BIOS console redirect output on another FreeBSD box. > The motherboard is checking for *something* to see if a > serial terminal is attached, and rejects the link. > > I tried 'tip com1' with an /etc/remote setup of > > com1:dv=/dev/cuaa0:br#115200:pa=none: > > and ports/comms/kermit with > > set line /dev/cuaa0 > set speed 115200 > set carrier-watch off > connect > > and in both cases, the motherboard times out and abandons > the redirection. Thank you for those who replied to me off-list. Encouraged by some working examples, I retried the investigation, and now I figured out what was wrong with my setup. The motherboard seems to be checking for some terminal escape sequences. At first I was working on FreeBSD console (TERM=cons25), and that was the cause of failure. Then I tried it from xterm, and it successfully started to redirect. But that was not the end of the story ;-p With xterm I could get console messages redirected, but I couldn't enter the BIOS setup menus. It was not reading the "DEL" key that I typed. So then I changed to screen (ports/misc/screen), and finally I can enter the BIOS menues and all. So to summarize, when I work inside screen, both tip and kermit worked well with the config shown above. cu -s 115200 -l /dev/cuaa0 also worked well. I was also sugested with minicom, but that I could not configure well to get everything working (it has many features and I didn't look into it that much). I still cannot enter the Intel NIC's setup menu, which is initiated with Ctrl-S. And for 3ware RAID BIOS (entered with Alt-3), the menu is entered (as verified on video console), but the output is not redirected to the serial port, though, the keys I type on the serial side are sent and recoganized by the RAID BIOS. But I'd say those are another story, and I'm happy that I can fiddle with the main BIOS setup for now. Thank you very much for your help. -- Hiroharu Tamaru From owner-freebsd-hardware@FreeBSD.ORG Sun Aug 15 12:29:56 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44EFE16A4CE for ; Sun, 15 Aug 2004 12:29:56 +0000 (GMT) Received: from dd2626.kasserver.com (dd2626.kasserver.com [81.209.184.189]) by mx1.FreeBSD.org (Postfix) with ESMTP id A51D143D1D for ; Sun, 15 Aug 2004 12:29:55 +0000 (GMT) (envelope-from outi@bytephobia.de) Received: from duality.bytephobia.de (pD95F08EE.dip.t-dialin.net [217.95.8.238]) by dd2626.kasserver.com (Postfix) with SMTP id 2376A6F655; Sun, 15 Aug 2004 14:29:53 +0200 (CEST) Date: Sun, 15 Aug 2004 13:21:01 +0200 From: Patrick Hurrelmann To: Hiroharu Tamaru Message-Id: <20040815132101.61348f09@duality.bytephobia.de> In-Reply-To: References: <20040814073928.DEBD367F83@gunfright.epcdirect.co.uk> Organization: private X-Mailer: Sylpheed-Claws 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-hardware@freebsd.org Subject: Re: How to receive BIOS console redirection? X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: outi@bytephobia.de List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 12:29:56 -0000 On Sun, 15 Aug 2004 21:09:12 +0900 Hiroharu Tamaru wrote: > At Sat, 14 Aug 2004 02:08:18 +0900, Hiroharu Tamaru wrote: > > > I have a Supermicrio P4SC8 motherboard and I want to receive > > its BIOS console redirect output on another FreeBSD box. > > The motherboard is checking for *something* to see if a > > serial terminal is attached, and rejects the link. > > > > I tried 'tip com1' with an /etc/remote setup of > > > > com1:dv=/dev/cuaa0:br#115200:pa=none: > > > > and ports/comms/kermit with > > > > set line /dev/cuaa0 > > set speed 115200 > > set carrier-watch off > > connect > > > > and in both cases, the motherboard times out and abandons > > the redirection. > > Thank you for those who replied to me off-list. > > Encouraged by some working examples, I retried the > investigation, and now I figured out what was wrong with my > setup. > > The motherboard seems to be checking for some terminal > escape sequences. At first I was working on FreeBSD console > (TERM=cons25), and that was the cause of failure. Then I > tried it from xterm, and it successfully started to > redirect. But that was not the end of the story ;-p > > With xterm I could get console messages redirected, but I > couldn't enter the BIOS setup menus. It was not reading the > "DEL" key that I typed. So then I changed to screen > (ports/misc/screen), and finally I can enter the BIOS menues > and all. > > So to summarize, when I work inside screen, both tip and > kermit worked well with the config shown above. > cu -s 115200 -l /dev/cuaa0 > also worked well. I was also sugested with minicom, but > that I could not configure well to get everything working > (it has many features and I didn't look into it that much). > > I still cannot enter the Intel NIC's setup menu, which is > initiated with Ctrl-S. And for 3ware RAID BIOS (entered > with Alt-3), the menu is entered (as verified on video > console), but the output is not redirected to the serial > port, though, the keys I type on the serial side are sent > and recoganized by the RAID BIOS. But I'd say those are > another story, and I'm happy that I can fiddle with the main > BIOS setup for now. > > Thank you very much for your help. > -- > Hiroharu Tamaru Thanks for this tip! I'll try that, as is have the same problems with my Siemens Primergy 470 and console redirection. I see all messages, but i cannot get into system bios (DEL-Key), but i get into Symbios scsi-bios, but console is not redirected. It stays on the video-terminal. Would be great to access system bios ;) -- =========================================================================== Patrick Hurrelmann | "Programming today is a race between software Mannheim, Germany | engineers striving to build bigger and better | idiot-proof programs, and the Universe trying outi at bytephobia.de | to produce bigger and better idiots. So far, www.bytephobia.de | the Universe is winning." - Rich Cook From owner-freebsd-hardware@FreeBSD.ORG Fri Aug 13 17:39:24 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B9A816A4CE for ; Fri, 13 Aug 2004 17:39:24 +0000 (GMT) Received: from marvin.muc.de (marvin.muc.de [193.149.48.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 6465643D1D for ; Fri, 13 Aug 2004 17:39:23 +0000 (GMT) (envelope-from v.velox@vvelox.net) Received: (qmail 20032 invoked by alias); 13 Aug 2004 17:39:22 -0000 Delivered-To: mods-muc-lists-freebsd-hardware@moderators.muc.de Received: (qmail 20025 invoked from network); 13 Aug 2004 17:39:21 -0000 Received: from scanmail1.cableone.net (HELO mail.cableone.net) (24.116.0.121) by marvin.muc.de with SMTP; 13 Aug 2004 17:39:21 -0000 Received: from vixen42.24-119-122-191.cpe.cableone.net (unverified [24.119.122.85]) by smail1.cableone.net (SurgeMail 1.9b) with ESMTP id 13905343 for multiple; Fri, 13 Aug 2004 10:28:19 -0700 Date: Fri, 13 Aug 2004 12:38:43 -0500 From: Vulpes Velox To: Andreas Just Message-Id: <20040813123843.01122c4a@vixen42.24-119-122-191.cpe.cableone.net> In-Reply-To: References: X-Mailer: Sylpheed-Claws 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Server: High Performance Mail Server - http://surgemail.com X-Mailman-Approved-At: Sun, 15 Aug 2004 13:17:41 +0000 cc: muc-lists-freebsd-hardware@moderators.muc.de Subject: Re: unsupported mainboard? X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:39:24 -0000 On Fri, 13 Aug 2004 09:15:40 +0200 Andreas Just wrote: > Hi, > > when I try to boot FreeBSD 5.2.1 from the install CD, I get the > following error: > > panic: pmap_mapdev: Couldn't alloc kernel virtual memory > > I assume, FreeBSD doesn't yet support my nForce2 chipset. > If anyone has another idea or a hint, I'd appreciate it. Possible CD problem. It should actually boot on nearly all i386 hardware afaik. Where you will run into probs is support for specific devices. Try with out ACPI, that some times helps, but I sorta doubt it will here. From owner-freebsd-hardware@FreeBSD.ORG Sun Aug 15 13:31:51 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B1CA016A4CE for ; Sun, 15 Aug 2004 13:31:51 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71D5C43D1D for ; Sun, 15 Aug 2004 13:31:51 +0000 (GMT) (envelope-from phil.brennan@gmail.com) Received: by mproxy.gmail.com with SMTP id 80so74881rnk for ; Sun, 15 Aug 2004 06:31:47 -0700 (PDT) Received: by 10.38.206.39 with SMTP id d39mr535945rng; Sun, 15 Aug 2004 06:31:47 -0700 (PDT) Message-ID: Date: Sun, 15 Aug 2004 14:31:47 +0100 From: Phil Brennan To: Spam This In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: cc: freebsd-hardware@freebsd.org Subject: Re: IDE Raid controllers X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Phil Brennan List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 13:31:51 -0000 Using the 3Ware 8506-4LP here, 4 sata ports, on freebsd 5.2.1-p9, on a dual athlon 2400+ system. Works perfectly, not a single error message in the logs either. On Wed, 28 Jul 2004 14:46:29 -0500, Spam This wrote: > > > Anyone know a good IDE Raid controller that works under a SMP FreeBSD > system? > > I'm looking for something that can do RAID 5, something stable and is > hardware based (I heard some controllers just use the main CPU to do raid > instead of having a built on chip). > > Anyone use 3ware cards under FreeBSD? > > -Jack > > _______________________________________________ > freebsd-hardware@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-hardware > To unsubscribe, send any mail to "freebsd-hardware-unsubscribe@freebsd.org" > From owner-freebsd-hardware@FreeBSD.ORG Sun Aug 15 22:03:33 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C88DD16A4CE for ; Sun, 15 Aug 2004 22:03:33 +0000 (GMT) Received: from smtp3b.sentex.ca (smtp3b.sentex.ca [205.211.164.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FF2643D1D for ; Sun, 15 Aug 2004 22:03:33 +0000 (GMT) (envelope-from mike@sentex.net) Received: from BLUELAPIS.sentex.ca (cage.simianscience.com [64.7.134.1]) by smtp3b.sentex.ca (8.12.11/8.12.11) with SMTP id i7FM3T4L063825 for ; Sun, 15 Aug 2004 18:03:29 -0400 (EDT) (envelope-from mike@sentex.net) From: Mike Tancsa To: freebsd-hardware@freebsd.org Date: Sun, 15 Aug 2004 18:03:38 -0400 Message-ID: <1pmvh0ps4oo9al6uhrdjm3j6lnnka1vc26@4ax.com> References: <41074A0E.8010706@nikiforov.ru> In-Reply-To: X-Mailer: Forte Agent 1.93/32.576 English (American) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Subject: Re: IDE Raid controllers X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Aug 2004 22:03:33 -0000 I have been using 3ware controllers on FreeBSD, Linux and Windows for a few years now. They are really great cards, especially under =46reeBSD. I have many 6xxx, 7xxx and about half a dozen 8xxx cards deployed with great results. For SMP, I have a 7xxx and one 8xxx on a dual Xeon and one on a Dual Athlon. Our one RAID 5 box works great in the following config Monitor version: ME7X 1.01.00.038=20 =46irmware version: FE7X 1.05.00.056=20 BIOS version: BE7X 1.08.00.046=20 PCB version: Rev3=20 Achip version: 3.20=20 Pchip version: 1.30-33=20 Model: 7810=20 Unit count: 2=20 ID 0 3ware 3W-7810 disk controller Array Unit 0 Mirror (RAID 1) 37.27 GB OK Port 0 ST340014A 37.27 GB OK=20 Port 1 ST340014A 37.27 GB OK=20 Array Unit 2 Striped with Parity 64K (RAID 5) 745.24 GB OK Port 2 ST3160021A 149.5 GB OK=20 Port 3 ST3160021A 149.5 GB OK=20 Port 4 ST3160021A 149.5 GB OK=20 Port 5 ST3160021A 149.5 GB OK=20 Port 6 ST3160021A 149.5 GB OK=20 Port 7 ST3160023A 149.5 GB OK=20 We use it for an offsite backup server. I had one drive go bad last November. Powered down the box, swapped the dead drive, hit rebuild, and let it go on its merry way rebuilding. =20 ---Mike On Wed, 28 Jul 2004 14:46:29 -0500, in sentex.lists.freebsd.hardware you wrote: > > >Anyone know a good IDE Raid controller that works under a SMP FreeBSD >system? > >I'm looking for something that can do RAID 5, something stable and is >hardware based (I heard some controllers just use the main CPU to do = raid >instead of having a built on chip). > >Anyone use 3ware cards under FreeBSD? > > >-Jack > >_______________________________________________ >freebsd-hardware@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-hardware >To unsubscribe, send any mail to = "freebsd-hardware-unsubscribe@freebsd.org" From owner-freebsd-hardware@FreeBSD.ORG Tue Aug 17 15:48:09 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8CBD16A4D0 for ; Tue, 17 Aug 2004 15:48:09 +0000 (GMT) Received: from mproxy.gmail.com (rproxy.gmail.com [64.233.170.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9003043D45 for ; Tue, 17 Aug 2004 15:48:09 +0000 (GMT) (envelope-from william.mansfield@gmail.com) Received: by mproxy.gmail.com with SMTP id 75so100924rnl for ; Tue, 17 Aug 2004 08:48:02 -0700 (PDT) Received: by 10.38.102.15 with SMTP id z15mr141964rnb; Tue, 17 Aug 2004 08:47:59 -0700 (PDT) Message-ID: <95fd7dc704081708476827bd5d@mail.gmail.com> Date: Tue, 17 Aug 2004 11:47:59 -0400 From: William Mansfield To: freebsd-hardware@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Rainbow Technologies Cryptoswift X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: William Mansfield List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 15:48:10 -0000 Has anyone gotten Cryptoswifts to work under FreeBSD5.2? I see references too them under FBSD all over the web, but can't find anything that actually gives detail.. Here's the `pciconf -l -v` output. none5@pci4:3:0: class=0x100000 card=0x00000000 chip=0x020012de rev=0x00 hdr=0x00 vendor = 'Rainbow Technologies' device = 'Cryptoswift 200' I have not gotten any repsonse from Rainbow tech support to see what the official party line is from them. Sorry if this is something I should have been able to come up with via google. From owner-freebsd-hardware@FreeBSD.ORG Tue Aug 17 16:45:30 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 253B016A4E0 for ; Tue, 17 Aug 2004 16:45:30 +0000 (GMT) Received: from newman.meridian-enviro.com (newman.meridian-enviro.com [207.109.235.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91FF543D49 for ; Tue, 17 Aug 2004 16:45:22 +0000 (GMT) (envelope-from rand@meridian-enviro.com) X-Envelope-To: freebsd-hardware@freebsd.org Received: from delta.meridian-enviro.com (delta.meridian-enviro.com [10.10.10.43])i7HGjHpI098511; Tue, 17 Aug 2004 11:45:17 -0500 (CDT) (envelope-from rand@meridian-enviro.com) Received: (from rand@localhost)i7HGjG4S091904; Tue, 17 Aug 2004 11:45:16 -0500 (CDT) (envelope-from rand@meridian-enviro.com) X-Authentication-Warning: delta.meridian-enviro.com: rand set sender to rand@meridian-enviro.com using -f To: Hiroharu Tamaru References: <20040814073928.DEBD367F83@gunfright.epcdirect.co.uk> From: rand@meridian-enviro.com (Douglas K. Rand) Date: Tue, 17 Aug 2004 11:45:15 -0500 In-Reply-To: (Hiroharu Tamaru's message of "Sun, 15 Aug 2004 21:09:12 +0900") Message-ID: <87pt5p90is.fsf@delta.meridian-enviro.com> User-Agent: Gnus/5.1002 (Gnus v5.10.2) XEmacs/21.4 (Reasonable Discussion, berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Scanned: clamd / ClamAV version 0.71, clamav-milter version 0.71 X-Virus-Status: Clean cc: freebsd-hardware@freebsd.org Subject: Re: How to receive BIOS console redirection? X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 16:45:30 -0000 ** Hiroharu Tamaru on Sun, 15 Aug 2004 21:09:12 +0900 ** in [Re: How to receive BIOS console redirection?] writes: Hiroharu> And for 3ware RAID BIOS (entered with Alt-3), the menu is Hiroharu> entered (as verified on video console), but the output is Hiroharu> not redirected to the serial port, though, the keys I type Hiroharu> on the serial side are sent and recoganized by the RAID Hiroharu> BIOS. We ran into a similar problem with the 3ware BIOS on a few systems of ours that have a PC Weasel card. The 3ware card swithces to graphics mode, and the serial forwarding can't handle the graphics. (I know, it still looks like text, but it's really graphics mode.) 3ware did this because of their 12 port controllers, they needed graphics mode to be able to get all the drives listed on the screen. From owner-freebsd-hardware@FreeBSD.ORG Tue Aug 17 18:03:31 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 259F916A4CE for ; Tue, 17 Aug 2004 18:03:31 +0000 (GMT) Received: from error404.nls.net (error404.nls.net [216.144.36.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id B475B43D49 for ; Tue, 17 Aug 2004 18:03:30 +0000 (GMT) (envelope-from ketrien@error404.nls.net) Received: from eiterra.error404.nls.net (eiterra.achedra.org [192.168.0.100]) by error404.nls.net (8.12.10/8.12.10) with ESMTP id i7HI3TF9080697 for ; Tue, 17 Aug 2004 14:03:29 -0400 (EDT) (envelope-from ketrien@error404.nls.net) Message-Id: <6.1.1.1.2.20040817140256.02cdad00@mail.nls.net> X-Sender: ketrien@error404.nls.net (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 6.1.1.1 Date: Tue, 17 Aug 2004 14:04:07 -0400 To: hardware@freebsd.org From: "Ketrien I. Saihr-Kesenchedra" Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Subject: ADM8211-based wireless card PCI IDs needed. X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 18:03:31 -0000 I'm looking for the PCI ID and Vendor ID information for several wireless cards for a driver I'm currently working on. Please send replies off-list, since I'm probably the only person interested in them right now anyways. :) You can get the PCI ID and Vendor ID information from verbose boot, or via pciconf -l -v (card=0xHHHHHHHH section.) Here's the list: D-Link DWL-520 Revision C. D-Link DWL-650 Revisions H, L1, and L2. SMC EZConnect 2602W SMC EZConnect 2635W Trendnet TEW-301PC Also, if you've come across any other ADM8211 wireless cards, I could certainly use their details as well, except for: 0x12008201, 0x13178201, 0x13178211 (ADMTek Generics,) 3Com OfficeConnect 3CRSHPW796, and D-Link DWL-500 (0x01560002.) Thanks! -Ketrien I. Saihr-Kesenchedra # Maybe this world is another planet's hell. --Aldous Huxley Feanor smiles, "We, of course, are enlightened and s/Maybe t/T" From owner-freebsd-hardware@FreeBSD.ORG Tue Aug 17 18:35:01 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16D6C16A4CE for ; Tue, 17 Aug 2004 18:35:01 +0000 (GMT) Received: from techno.sub.ru (webmail.sub.ru [213.247.139.22]) by mx1.FreeBSD.org (Postfix) with SMTP id D3F3643D3F for ; Tue, 17 Aug 2004 18:34:59 +0000 (GMT) (envelope-from tarkhil@webmail.sub.ru) Received: (qmail 80253 invoked by uid 0); 17 Aug 2004 18:33:53 -0000 Received: from webmail.sub.ru (HELO tarkhil.over.ru) (213.247.139.22) by techno.sub.ru with SMTP; 17 Aug 2004 18:33:53 -0000 Date: Tue, 17 Aug 2004 22:35:25 +0400 From: Alex Povolotsky To: freebsd-hardware@freebsd.org Message-Id: <20040817223525.12c6438d@tarkhil.over.ru> Organization: sub.ru X-Mailer: Sylpheed version 0.9.9claws (GTK+ 1.2.10; i386-portbld-freebsd4.8) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Prolific Technology PL2303 Serial adapter X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 18:35:01 -0000 Hello! I've tried to attach to my 4.8 box an USB adapter for Siemens ME45 mobile phone. It was detected as Aug 17 22:30:31 tarkhil /kernel: ugen0: Prolific Technology PL2303 Serial adapter (ATEN/IOGEAR UC232A), rev 1.10/2.02, addr 3 Do I require specs to make it work as serial port adapter, or just some patching of device ID tables can be sufficient? If yes, what should I patch? -- Alex. From owner-freebsd-hardware@FreeBSD.ORG Tue Aug 17 18:46:39 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A32316A4CE for ; Tue, 17 Aug 2004 18:46:39 +0000 (GMT) Received: from zaphod.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80DBB43D2D for ; Tue, 17 Aug 2004 18:46:38 +0000 (GMT) (envelope-from simon@zaphod.nitro.dk) Received: by zaphod.nitro.dk (Postfix, from userid 3000) id A3E2411AD1; Tue, 17 Aug 2004 20:46:36 +0200 (CEST) Date: Tue, 17 Aug 2004 20:46:36 +0200 From: "Simon L. Nielsen" To: Alex Povolotsky Message-ID: <20040817184635.GA755@zaphod.nitro.dk> References: <20040817223525.12c6438d@tarkhil.over.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="YiEDa0DAkWCtVeE4" Content-Disposition: inline In-Reply-To: <20040817223525.12c6438d@tarkhil.over.ru> User-Agent: Mutt/1.5.6i cc: freebsd-hardware@freebsd.org Subject: Re: Prolific Technology PL2303 Serial adapter X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 18:46:39 -0000 --YiEDa0DAkWCtVeE4 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2004.08.17 22:35:25 +0400, Alex Povolotsky wrote: > I've tried to attach to my 4.8 box an USB adapter for Siemens ME45 mobile= phone. > > It was detected as > > Aug 17 22:30:31 tarkhil /kernel: ugen0: Prolific Technology PL2303 Serial= adapter (ATEN/IOGEAR UC232A), rev 1.10/2.02, addr 3 > > Do I require specs to make it work as serial port adapter, or just > some patching of device ID tables can be sufficient? If yes, what > should I patch? You need to uplcom driver in your kernel, either in your kernel configuration or by loading it as a module (i.e. "kldload uplcom"). BTW. I'm not sure if the uplcom driver was in 4.8, since that's a rather old release now... --=20 Simon L. Nielsen FreeBSD Documentation Team --YiEDa0DAkWCtVeE4 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBIlKLh9pcDSc1mlERAqb2AJ464Wqvycef/FrA/78fnDc2A48AdgCgoC5Z 2J0JdwYxKztE2Xd096VNUBs= =Jkn/ -----END PGP SIGNATURE----- --YiEDa0DAkWCtVeE4-- From owner-freebsd-hardware@FreeBSD.ORG Tue Aug 17 20:57:52 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AD5016A4CF for ; Tue, 17 Aug 2004 20:57:52 +0000 (GMT) Received: from snootles.jimz.net (snootles.jimz.net [69.55.224.55]) by mx1.FreeBSD.org (Postfix) with SMTP id 2CB1743D4C for ; Tue, 17 Aug 2004 20:57:52 +0000 (GMT) (envelope-from jim@jimz.net) Received: (qmail 52181 invoked from network); 17 Aug 2004 20:57:50 -0000 Received: from unknown (HELO ?141.211.183.121?) (jamesez@141.211.183.121) by snootles.jimz.net with (RC4-SHA encrypted) SMTP; 17 Aug 2004 20:57:50 -0000 In-Reply-To: <95fd7dc704081708476827bd5d@mail.gmail.com> References: <95fd7dc704081708476827bd5d@mail.gmail.com> Mime-Version: 1.0 (Apple Message framework v667) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <1725541D-F090-11D8-BF22-000A95DA58FE@jimz.net> Content-Transfer-Encoding: 7bit From: Jim Zajkowski Date: Tue, 17 Aug 2004 16:57:46 -0400 To: William Mansfield X-Mailer: Apple Mail (2.667) X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.61 (1.212.2.1-2003-12-09-exp) on snootles.jimz.net X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.61 cc: freebsd-hardware@freebsd.org Subject: Re: Rainbow Technologies Cryptoswift X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Aug 2004 20:57:52 -0000 On Aug 17, 2004, at 11:47 AM, William Mansfield wrote: > Has anyone gotten Cryptoswifts to work under FreeBSD5.2? > I have not gotten any repsonse from Rainbow tech support to see what > the official party line is from them. Yeah good luck. I had them telling me "we don't support FreeBSD" four or five times around and when I pointed out (loudly) that page xx of the manual lists FreeBSD, as does the box, they sent me a kernel driver for 4.2 or so, which didn't work. I will never buy a product from Rainbow again: I literally had to scream at them on the phone before they would cough up anything. I would return the card if I were you, considering you spent $1.5K on a card and getting tech support that operates on a "need-to-know" basis. (heh, post from me on this topic: http://archives.neohapsis.com/archives/freebsd/2004-04/0038.html) --Jim -- Jim Zajkowski OpenPGP 0x21135C3 http://www.jimz.net/pgp.asc System Administrator 8A9E 1DDF 944D 83C3 AEAB 8F74 8697 A823 2113 5C53 UM Life Sciences Institute From owner-freebsd-hardware@FreeBSD.ORG Wed Aug 18 08:47:21 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C79E316A4CE for ; Wed, 18 Aug 2004 08:47:21 +0000 (GMT) Received: from mail1.ecc.u-tokyo.ac.jp (mail1.ecc.u-tokyo.ac.jp [133.11.171.216]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9ABF443D1D for ; Wed, 18 Aug 2004 08:47:20 +0000 (GMT) (envelope-from tamaru@myn.rcast.u-tokyo.ac.jp) Received: from spam003.ecc.u-tokyo.ac.jp (spam003.ecc.u-tokyo.ac.jp [133.11.50.196]) by mail1.ecc.u-tokyo.ac.jp (Postfix) with ESMTP id 1138B7060C for ; Wed, 18 Aug 2004 17:47:19 +0900 (JST) Received: from gin.myn.rcast.u-tokyo.ac.jp ( [157.82.72.158]) by spam003.ecc.u-tokyo.ac.jp (SpamBlock.pst 3.4.25) with ESMTP id for ; Wed, 18 Aug 2004 17:47:15 +0900 Date: Wed, 18 Aug 2004 17:47:15 +0900 Message-ID: From: Hiroharu Tamaru To: freebsd-hardware@freebsd.org In-Reply-To: <87pt5p90is.fsf@delta.meridian-enviro.com> References: <20040814073928.DEBD367F83@gunfright.epcdirect.co.uk> <87pt5p90is.fsf@delta.meridian-enviro.com> User-Agent: User-Agent: Wanderlust/2.10.0 (Venus) Emacs/21.3 Mule/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII X-IP: 157.82.72.158 X-FROM-DOMAIN: myn.rcast.u-tokyo.ac.jp X-FROM-EMAIL: tamaru@myn.rcast.u-tokyo.ac.jp Subject: Re: How to receive BIOS console redirection? X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Aug 2004 08:47:21 -0000 At Tue, 17 Aug 2004 11:45:15 -0500, Douglas K. Rand wrote: > > ** Hiroharu Tamaru on Sun, 15 Aug 2004 21:09:12 +0900 > ** in [Re: How to receive BIOS console redirection?] writes: > > Hiroharu> And for 3ware RAID BIOS (entered with Alt-3), the menu is > Hiroharu> entered (as verified on video console), but the output is > Hiroharu> not redirected to the serial port, though, the keys I type > Hiroharu> on the serial side are sent and recoganized by the RAID > Hiroharu> BIOS. > > We ran into a similar problem with the 3ware BIOS on a few systems of > ours that have a PC Weasel card. The 3ware card swithces to graphics > mode, and the serial forwarding can't handle the graphics. (I know, it > still looks like text, but it's really graphics mode.) 3ware did this > because of their 12 port controllers, they needed graphics mode to be > able to get all the drives listed on the screen. Ah, I see. Well, if even PC Weasel can't handle it, surely, there isn't much hope in getting that screen redirected.. 'Goodness they provided most, if not all, functionalities in 3dmd. -- Hiroharu Tamaru From owner-freebsd-hardware@FreeBSD.ORG Fri Aug 20 05:55:28 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FBD316A4CE for ; Fri, 20 Aug 2004 05:55:28 +0000 (GMT) Received: from web50806.mail.yahoo.com (web50806.mail.yahoo.com [206.190.38.115]) by mx1.FreeBSD.org (Postfix) with SMTP id C93A043D3F for ; Fri, 20 Aug 2004 05:55:27 +0000 (GMT) (envelope-from plaur_27@yahoo.de) Message-ID: <20040820055527.78857.qmail@web50806.mail.yahoo.com> Received: from [217.230.16.211] by web50806.mail.yahoo.com via HTTP; Fri, 20 Aug 2004 07:55:27 CEST Date: Fri, 20 Aug 2004 07:55:27 +0200 (CEST) From: =?iso-8859-1?q?Laurentiu=20Pancescu?= To: freebsd-hardware@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: nForce2 compatibility with FreeBSD 5? X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Aug 2004 05:55:28 -0000 I'm tempted by a nForce2-based motherboard (either with on-board graphics or RAID controller). Browsing the freebsd-hardware archives, I found reports about various problems, such as networking or video not working, as recent as Dec 2003. Are these problems solved now? Is anybody succesfully running FreeBSD 5.2.1 (or current) on such a motherboard? Are sound, networking, graphics, working? Laurentiu ___________________________________________________________ Gesendet von Yahoo! Mail - Jetzt mit 100MB Speicher kostenlos - Hier anmelden: http://mail.yahoo.de From owner-freebsd-hardware@FreeBSD.ORG Fri Aug 20 11:57:45 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3ECC916A4CE for ; Fri, 20 Aug 2004 11:57:45 +0000 (GMT) Received: from york.smtp.ru (york.smtp.ru [62.118.249.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9364B43D1F for ; Fri, 20 Aug 2004 11:57:42 +0000 (GMT) (envelope-from adler@smtp.ru) Received: from [195.138.125.67] (account adler@smtp.ru HELO [195.138.125.67]) by york.smtp.ru (CommuniGate Pro SMTP 3.5.9) with ESMTP id 65156459; Fri, 20 Aug 2004 15:57:40 +0400 Date: Fri, 20 Aug 2004 14:54:24 +0400 From: Sopov Alexey X-Mailer: The Bat! (v2.04.7) CD5BF9353B3B7091 X-Priority: 3 (Normal) Message-ID: <1106754873.20040820145424@smtp.ru> To: plaur_27@yahoo.de, freebsd-hardware@freebsd.org In-Reply-To: <20040820055527.78857.qmail@web50806.mail.yahoo.com> References: <20040820055527.78857.qmail@web50806.mail.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Subject: Re: nForce2 compatibility with FreeBSD 5? X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: adler List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Aug 2004 11:57:45 -0000 On my Epox 8RDA3 (nForce 2 Ultra) everything is fine. But my motherboard doesn't have integrated RAID or graphics controllers. LP> I'm tempted by a nForce2-based motherboard (either LP> with on-board graphics or RAID controller). Browsing LP> the freebsd-hardware archives, I found reports about LP> various problems, such as networking or video not LP> working, as recent as Dec 2003. Are these problems LP> solved now? Is anybody succesfully running FreeBSD LP> 5.2.1 (or current) on such a motherboard? Are sound, LP> networking, graphics, working? LP> Laurentiu LP> ___________________________________________________________ LP> Gesendet von Yahoo! Mail - Jetzt mit 100MB Speicher kostenlos LP> - Hier anmelden: http://mail.yahoo.de LP> _______________________________________________ LP> freebsd-hardware@freebsd.org mailing list LP> http://lists.freebsd.org/mailman/listinfo/freebsd-hardware LP> To unsubscribe, send any mail to LP> "freebsd-hardware-unsubscribe@freebsd.org" -- [ /Iexa ] mailto:adler@smtp.ru From owner-freebsd-hardware@FreeBSD.ORG Fri Aug 20 12:49:09 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1BD3216A4CE for ; Fri, 20 Aug 2004 12:49:09 +0000 (GMT) Received: from postfix3-1.free.fr (postfix3-1.free.fr [213.228.0.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4E6743D46 for ; Fri, 20 Aug 2004 12:49:08 +0000 (GMT) (envelope-from valery@no-log.org) Received: from [192.168.0.22] (gambetta-2-82-67-185-6.fbx.proxad.net [82.67.185.6]) by postfix3-1.free.fr (Postfix) with ESMTP id B0DB81735B7 for ; Fri, 20 Aug 2004 14:49:07 +0200 (CEST) Message-ID: <4125F337.10704@no-log.org> Date: Fri, 20 Aug 2004 14:48:55 +0200 From: =?ISO-8859-1?Q?Val=E9ry?= User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040616 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-hardware@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: 4 Questions and 1 info about Ethernet 3C920B-EM -x X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Aug 2004 12:49:09 -0000 Hi, here's my configuration : OS : FreeBSD 5.2.1 MotherBoard : ASUS P4S8R (Pundit) Chipset SiS651/962 Net1 : 3Com 3C920B-EM-WNM Integrated ethernet Net2 : Xircom EtherII (over PCMCIA) and now my trouble : ----------------------------------------------------- 1 - Integrated Ethernet 3Com 3C920B-EM-WNM not attached. I've tried to setup my integrated ethernet (Net1 above) but fails because i think that the module if_xl doesn't have the good PCI_Id for this one (0x9202). If you edit source /usr/src/sys/pci/if_xlreg.h (header for if_xl) you've got the PCI-Id : TC_DEVICEID_TORNADO_10_100BT_920B = 0x9201 corresponding to the 3C920B-EM but no one for the PCI-Id 0x9202 corresponding to the 3C920B-EM-WNM. I think it's the reason i have the message : pci2: at device 8.0 (no driver attached) * QUESTIONS : Q1 : Are my conclusions correct ? Q2 : How to change that ? ----------------------------------------------------- 2 - PCMCIA Ethernet Xircom activated but ... So, because i need internet, i have plugged my Xircom PCMCIA card (Net2 above) on the PCMCIA slot. And..., it work (telnet session Ok with other workstation) But, Kernel return these values : dc0: port 0x1000-0x107f ... although i have set these parms in device.hints : hint.sn.0.port="0Xfe80" (false) hint.sn.0.irq="16" (good) * QUESTIONS : Q3 : why the kernel return a different port ? Q4 : is the if_sn driver the good one (PCMCIA purpose) ----------------------------------------------------- and the last question (simple i think) : Q5 : why when i setup a load="YES" for a module (in loader.conf) Kernel say that it is already loaded ? Thank for you help, i'm a newbies on unix like system, working on it since one week (nights too !), Every comment will be nice, but i'm not expert (i don't know usage of gcc, but i'm C/C++ programmer). B.R. to all and thanks for your help, my server must run at 1st sept. with Apache 1.3 (already conf. !) v/ From owner-freebsd-hardware@FreeBSD.ORG Fri Aug 20 13:02:49 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF46116A4CF for ; Fri, 20 Aug 2004 13:02:49 +0000 (GMT) Received: from york.smtp.ru (york.smtp.ru [62.118.249.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EC5943D2F for ; Fri, 20 Aug 2004 13:02:49 +0000 (GMT) (envelope-from adler@smtp.ru) Received: from [195.138.125.67] (account adler@smtp.ru HELO [195.138.125.67]) by york.smtp.ru (CommuniGate Pro SMTP 3.5.9) with ESMTP id 65169517; Fri, 20 Aug 2004 17:02:47 +0400 Date: Fri, 20 Aug 2004 15:59:31 +0400 From: Sopov Alexey X-Mailer: The Bat! (v2.04.7) CD5BF9353B3B7091 X-Priority: 3 (Normal) Message-ID: <1738798349.20040820155931@smtp.ru> To: Valéry , freebsd-hardware@freebsd.org In-Reply-To: <4125F337.10704@no-log.org> References: <4125F337.10704@no-log.org> MIME-Version: 1.0 Content-Type: text/plain; charset=Windows-1251 Content-Transfer-Encoding: 8bit Subject: Re: 4 Questions and 1 info about Ethernet 3C920B-EM -x X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: adler List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Aug 2004 13:02:50 -0000 V> Hi, V> here's my configuration : V> OS : FreeBSD 5.2.1 V> MotherBoard : ASUS P4S8R (Pundit) Chipset SiS651/962 V> Net1 : 3Com 3C920B-EM-WNM Integrated ethernet V> Net2 : Xircom EtherII (over PCMCIA) V> and now my trouble : V> and the last question (simple i think) : V> Q5 : why when i setup a load="YES" for a module V> (in loader.conf) Kernel say that it is already loaded ? It means, that your module is compiled in kernel. (The file kernel.ko already have it) So you do not need to load another one module. -- [ /Iexa ] mailto:adler@smtp.ru From owner-freebsd-hardware@FreeBSD.ORG Fri Aug 20 20:31:29 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B419216A4CE for ; Fri, 20 Aug 2004 20:31:29 +0000 (GMT) Received: from asacomputers.com (mail.asacomputers.com [209.10.224.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83BED43D5F for ; Fri, 20 Aug 2004 20:31:27 +0000 (GMT) (envelope-from raj@asacomputers.com) Received: from raj.asacomputers.com ([192.168.1.79]) by asacomputers.com (8.12.8/8.12.8) with ESMTP id i7KKVPXS002376 for ; Fri, 20 Aug 2004 13:31:25 -0700 Message-Id: <6.0.3.0.2.20040820131253.01d38ec0@pop.asacomputers.com> X-Sender: raj@pop.asacomputers.com X-Mailer: QUALCOMM Windows Eudora Version 6.0.3.0 Date: Fri, 20 Aug 2004 13:31:33 -0700 To: From: Raj Chahal In-Reply-To: <004401c3c323$8fcc2be0$1e01a8c0@bullfrog> References: <004401c3c323$8fcc2be0$1e01a8c0@bullfrog> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Subject: drivers for SiL3114 (Tyan 2881 motherboard) for FreeBSD 4.x X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Aug 2004 20:31:29 -0000 We are attempting install FreeBSD 4.8. Problem: SATA drive WD 40GB is not detected. The motherboard Tyan 2881 has Sil3114 SATA controller. Any suggestions ... Thanks, Raj From owner-freebsd-hardware@FreeBSD.ORG Fri Aug 20 20:53:26 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAA1216A4CE for ; Fri, 20 Aug 2004 20:53:26 +0000 (GMT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96E8D43D3F for ; Fri, 20 Aug 2004 20:53:26 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.13.0/8.13.0) with ESMTP id i7KKs97o023231; Fri, 20 Aug 2004 13:54:09 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.13.0/8.13.0/Submit) id i7KKs89F023230; Fri, 20 Aug 2004 13:54:08 -0700 Date: Fri, 20 Aug 2004 13:54:08 -0700 From: Brooks Davis To: Raj Chahal Message-ID: <20040820205408.GA21005@odin.ac.hmc.edu> References: <004401c3c323$8fcc2be0$1e01a8c0@bullfrog> <6.0.3.0.2.20040820131253.01d38ec0@pop.asacomputers.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LZvS9be/3tNcYl/X" Content-Disposition: inline In-Reply-To: <6.0.3.0.2.20040820131253.01d38ec0@pop.asacomputers.com> User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on odin.ac.hmc.edu cc: hardware@freebsd.org Subject: Re: drivers for SiL3114 (Tyan 2881 motherboard) for FreeBSD 4.x X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Aug 2004 20:53:27 -0000 --LZvS9be/3tNcYl/X Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Aug 20, 2004 at 01:31:33PM -0700, Raj Chahal wrote: > We are attempting install FreeBSD 4.8. Problem: SATA drive WD 40GB i= s=20 > not > detected. >=20 > The motherboard Tyan 2881 has Sil3114 SATA controller. > Any suggestions ... Using a modern version like 4.10 would seem to be the obvious place to start. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --LZvS9be/3tNcYl/X Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFBJmTvXY6L6fI4GtQRAsOBAKCbQTAl63Xp428gxAV0Fw08kxxAQwCeKuR7 a8xrMU8iAiT0qDnK7BVuRMg= =/Kqa -----END PGP SIGNATURE----- --LZvS9be/3tNcYl/X-- From owner-freebsd-hardware@FreeBSD.ORG Fri Aug 20 21:11:16 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CD6316A4CE for ; Fri, 20 Aug 2004 21:11:16 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03C1743D1D; Fri, 20 Aug 2004 21:11:16 +0000 (GMT) (envelope-from jmz@FreeBSD.org) Received: from freefall.freebsd.org (jmz@localhost [127.0.0.1]) i7KLBFwF071718; Fri, 20 Aug 2004 21:11:15 GMT (envelope-from jmz@freefall.freebsd.org) Received: (from jmz@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7KLBFQj071715; Fri, 20 Aug 2004 21:11:15 GMT (envelope-from jmz) Date: Fri, 20 Aug 2004 21:11:15 GMT Message-Id: <200408202111.i7KLBFQj071715@freefall.freebsd.org> From: Jean-Marc Zucconi To: Brooks Davis In-Reply-To: <20040820205408.GA21005@odin.ac.hmc.edu> References: <004401c3c323$8fcc2be0$1e01a8c0@bullfrog> <6.0.3.0.2.20040820131253.01d38ec0@pop.asacomputers.com> <20040820205408.GA21005@odin.ac.hmc.edu> X-Mailer: Emacs 21.3.1 cc: Raj Chahal cc: hardware@freebsd.org Subject: Re: drivers for SiL3114 (Tyan 2881 motherboard) for FreeBSD 4.x X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Aug 2004 21:11:16 -0000 >>>>> Brooks Davis writes: > On Fri, Aug 20, 2004 at 01:31:33PM -0700, Raj Chahal wrote: >> We are attempting install FreeBSD 4.8. Problem: SATA drive WD 40GB is >> not >> detected. >> >> The motherboard Tyan 2881 has Sil3114 SATA controller. >> Any suggestions ... > Using a modern version like 4.10 would seem to be the obvious place to > start. You mean 5.3. AFAIK the Sil3114 SATA controller is not supported in 4.10. Jean-Marc -- Jean-Marc Zucconi -- PGP Key: finger jmz@FreeBSD.org [KeyID: 400B38E9] From owner-freebsd-hardware@FreeBSD.ORG Fri Aug 20 21:49:14 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F2E2716A4CE; Fri, 20 Aug 2004 21:49:13 +0000 (GMT) Received: from asacomputers.com (mail.asacomputers.com [209.10.224.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDD6D43D1D; Fri, 20 Aug 2004 21:49:13 +0000 (GMT) (envelope-from raj@asacomputers.com) Received: from raj.asacomputers.com ([192.168.1.79]) by asacomputers.com (8.12.8/8.12.8) with ESMTP id i7KLnBXS005399; Fri, 20 Aug 2004 14:49:11 -0700 Message-Id: <6.0.3.0.2.20040820144512.01e39618@pop.asacomputers.com> X-Sender: raj@pop.asacomputers.com X-Mailer: QUALCOMM Windows Eudora Version 6.0.3.0 Date: Fri, 20 Aug 2004 14:49:19 -0700 To: Jean-Marc Zucconi , Brooks Davis From: Raj Chahal In-Reply-To: <200408202111.i7KLBFQj071715@freefall.freebsd.org> References: <004401c3c323$8fcc2be0$1e01a8c0@bullfrog> <6.0.3.0.2.20040820131253.01d38ec0@pop.asacomputers.com> <20040820205408.GA21005@odin.ac.hmc.edu> <200408202111.i7KLBFQj071715@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed cc: hardware@freebsd.org Subject: Re: drivers for SiL3114 (Tyan 2881 motherboard) for FreeBSD 4.x X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Aug 2004 21:49:14 -0000 At 02:11 PM 8/20/2004, Jean-Marc Zucconi wrote: > >>>>> Brooks Davis writes: > > > On Fri, Aug 20, 2004 at 01:31:33PM -0700, Raj Chahal wrote: > >> We are attempting install FreeBSD 4.8. Problem: SATA drive WD > 40GB is > >> not > >> detected. > >> > >> The motherboard Tyan 2881 has Sil3114 SATA controller. > >> Any suggestions ... > > > Using a modern version like 4.10 would seem to be the obvious place to > > start. > >You mean 5.3. AFAIK the Sil3114 SATA controller is not supported in >4.10. We also tried 4.10 and still the same problem. Raj From owner-freebsd-hardware@FreeBSD.ORG Sat Aug 21 00:40:12 2004 Return-Path: Delivered-To: freebsd-hardware@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DCDE16A4CE for ; Sat, 21 Aug 2004 00:40:12 +0000 (GMT) Received: from mail.cableone.net (scanmail2.cableone.net [24.116.0.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDCCB43D1D for ; Sat, 21 Aug 2004 00:40:09 +0000 (GMT) (envelope-from v.velox@vvelox.net) Received: from vixen42.24-119-122-191.cpe.cableone.net (unverified [24.119.122.85]) by smail2.cableone.net (SurgeMail 1.9b) with ESMTP id 13942031 for multiple; Fri, 20 Aug 2004 17:25:03 -0700 Date: Fri, 20 Aug 2004 19:39:27 -0500 From: Vulpes Velox To: Laurentiu Pancescu Message-Id: <20040820193927.1792e73e@vixen42.24-119-122-191.cpe.cableone.net> In-Reply-To: <20040820055527.78857.qmail@web50806.mail.yahoo.com> References: <20040820055527.78857.qmail@web50806.mail.yahoo.com> X-Mailer: Sylpheed-Claws 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Server: High Performance Mail Server - http://surgemail.com cc: freebsd-hardware@freebsd.org Subject: Re: nForce2 compatibility with FreeBSD 5? X-BeenThere: freebsd-hardware@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: General discussion of FreeBSD hardware List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Aug 2004 00:40:12 -0000 On Fri, 20 Aug 2004 07:55:27 +0200 (CEST) Laurentiu Pancescu wrote: > I'm tempted by a nForce2-based motherboard (either > with on-board graphics or RAID controller). Browsing > the freebsd-hardware archives, I found reports about > various problems, such as networking or video not > working, as recent as Dec 2003. Are these problems > solved now? Is anybody succesfully running FreeBSD > 5.2.1 (or current) on such a motherboard? Are sound, > networking, graphics, working? I am running a Abit NF7-S2. Except for the ata device being detected as generic and the specific sound chip used on that board, it works fine. Ethernet works well on it.