From owner-freebsd-hardware Sun Feb 9 9:33:33 2003 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 A48CE37B401 for ; Sun, 9 Feb 2003 09:33:31 -0800 (PST) Received: from troncalo.cs.poste.it (troncalo.cs.poste.it [62.241.4.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 109C243F3F for ; Sun, 9 Feb 2003 09:33:31 -0800 (PST) (envelope-from andrea.franceschini@postecom.it) Received: from knute.cs.poste.it (192.168.31.30) by troncalo.cs.poste.it (5.5.053.1) id 3E36CD9F0001B948 for freebsd-hardware@FreeBSD.ORG; Sat, 8 Feb 2003 14:04:05 +0100 Received: (from andrea@localhost) by knute.cs.poste.it (8.12.6/8.12.6) id h18D1HPx000664 for freebsd-hardware@FreeBSD.ORG; Sat, 8 Feb 2003 14:01:17 +0100 (CET) (envelope-from andrea.franceschini@postecom.it) X-Authentication-Warning: knute.cs.poste.it: andrea set sender to andrea.franceschini@postecom.it using -f Date: Sat, 8 Feb 2003 14:01:17 +0100 From: Andrea Franceschini To: freebsd-hardware@FreeBSD.ORG Subject: Wireless(if_wi): supported card attachment problems Message-ID: <20030208130117.GA492@postecom.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi All! I bought a card that, according to the man page of wi driver, should have been supported. The card is a Sohoware/NCP 130 and this is the output of 'man wi': The following cards are among those supported by the wi driver: Card Chip Bus ---------------------------------------------------------------- .. .. NANOSPEED ROOT-RZ2000 Prism-II PCMCIA --> NDC/Sohoware NCP130 Prism-II PCI <-- NEC CMZ-RT-WP Prism-II PCMCIA ... But the driver simply doesn't see it... This is the output of pciconf : none2@pci0:8:0: class=0x028000 card=0x013115e8 chip=0x013115e8 rev=0x01 hdr=0x00 vendor = 'National Datacomm Corp.' device = 'Prism II InstantWave HR PCI card' class = network I modified the driver sources and i added my card among those supported: static struct { unsigned int vendor,device; int bus_type; char *desc; } pci_ids[] = { /* Sorted by description */ {0x10b7, 0x7770, WI_BUS_PCI_PLX, "3Com Airconnect"}, {0x16ab, 0x1101, WI_BUS_PCI_PLX, "GLPRISM2 WaveLAN"}, {0x1260, 0x3873, WI_BUS_PCI_NATIVE, "Intersil Prism2.5"}, {0x16ab, 0x1102, WI_BUS_PCI_PLX, "Linksys WDT11"}, {0x1385, 0x4100, WI_BUS_PCI_PLX, "Netgear MA301"}, {0x1638, 0x1100, WI_BUS_PCI_PLX, "PRISM2STA WaveLAN"}, --> {0x15E8, 0x0131, WI_BUS_PCI_PLX, "Prism II InstantWave HR PCI card"} and in this flavour --> {0x15E8, 0x0131, WI_BUS_PCI_NATIVE, "Prism II InstantWave HR PCI card"} Because I didnt know if the card was PLX based or not. Now I get the following messages: wi0: port 0xdc00-0xdc3f,0xd800-0xd80f irq 11 at device 8.0 on pci0 wi0: No Mem space on prism2.5? device_probe_and_attach: wi0 attach returned 6 or wi0: port 0xdc00-0xdc3f,0xd800-0xd80f irq 11 at device 8.0 on pci0 wi0: No I/O space?! device_probe_and_attach: wi0 attach returned 6 Using the WI_BUS_PCI_PLX. I have a FreeBSD 4.7 system with no other cards except for the NCP130. Does anyone have some ideas? Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sun Feb 9 16: 3:45 2003 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 456BB37B401 for ; Sun, 9 Feb 2003 16:03:43 -0800 (PST) Received: from piallalo.cs.poste.it (piallalo.cs.poste.it [62.241.4.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1C8343F3F for ; Sun, 9 Feb 2003 16:03:41 -0800 (PST) (envelope-from andrea.franceschini@postecom.it) Received: from knute.cs.poste.it (192.168.44.146) by piallalo.cs.poste.it (5.5.053.1) id 3E36CBAF0000E738 for freebsd-hardware@FreeBSD.ORG; Thu, 6 Feb 2003 20:30:18 +0100 Received: (from andrea@localhost) by knute.cs.poste.it (8.12.6/8.12.6) id h16JRjZi013501 for freebsd-hardware@FreeBSD.ORG; Thu, 6 Feb 2003 20:27:45 +0100 (CET) (envelope-from andrea.franceschini@postecom.it) X-Authentication-Warning: knute.cs.poste.it: andrea set sender to andrea.franceschini@postecom.it using -f Date: Thu, 6 Feb 2003 20:27:45 +0100 From: Andrea Franceschini To: freebsd-hardware@FreeBSD.ORG Subject: Wireless(if_wi): supported card attachment problems Message-ID: <20030206192745.GB13424@postecom.it> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi All! I bought a card that, according to the man page of wi driver, should have been supported. The card is a Sohoware/NCP 130 and this is the output of 'man wi': The following cards are among those supported by the wi driver: Card Chip Bus ---------------------------------------------------------------- .. .. NANOSPEED ROOT-RZ2000 Prism-II PCMCIA --> NDC/Sohoware NCP130 Prism-II PCI <-- NEC CMZ-RT-WP Prism-II PCMCIA ... But the driver simply doesn't see it... This is the output of pciconf : none2@pci0:8:0: class=0x028000 card=0x013115e8 chip=0x013115e8 rev=0x01 hdr=0x00 vendor = 'National Datacomm Corp.' device = 'Prism II InstantWave HR PCI card' class = network I modified the driver sources and i added my card among those supported: static struct { unsigned int vendor,device; int bus_type; char *desc; } pci_ids[] = { /* Sorted by description */ {0x10b7, 0x7770, WI_BUS_PCI_PLX, "3Com Airconnect"}, {0x16ab, 0x1101, WI_BUS_PCI_PLX, "GLPRISM2 WaveLAN"}, {0x1260, 0x3873, WI_BUS_PCI_NATIVE, "Intersil Prism2.5"}, {0x16ab, 0x1102, WI_BUS_PCI_PLX, "Linksys WDT11"}, {0x1385, 0x4100, WI_BUS_PCI_PLX, "Netgear MA301"}, {0x1638, 0x1100, WI_BUS_PCI_PLX, "PRISM2STA WaveLAN"}, --> {0x15E8, 0x0131, WI_BUS_PCI_PLX, "Prism II InstantWave HR PCI card"} and in this flavour --> {0x15E8, 0x0131, WI_BUS_PCI_NATIVE, "Prism II InstantWave HR PCI card"} Because I didnt know if the card was PLX based or not. Now I get the following messages: wi0: port 0xdc00-0xdc3f,0xd800-0xd80f irq 11 at device 8.0 on pci0 wi0: No Mem space on prism2.5? device_probe_and_attach: wi0 attach returned 6 or wi0: port 0xdc00-0xdc3f,0xd800-0xd80f irq 11 at device 8.0 on pci0 wi0: No I/O space?! device_probe_and_attach: wi0 attach returned 6 Using the WI_BUS_PCI_PLX. I have a FreeBSD 4.7 system with no other cards except for the NCP130. Does anyone have some ideas? Thanks! To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sun Feb 9 18:30:57 2003 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 04AC937B401; Sun, 9 Feb 2003 18:30:57 -0800 (PST) Received: from mail.inka.de (quechua.inka.de [193.197.184.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DDC843F85; Sun, 9 Feb 2003 18:30:55 -0800 (PST) (envelope-from naddy@mips.inka.de) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with gbsmtp id 18i3if-0006Mb-05; Mon, 10 Feb 2003 03:30:53 +0100 Received: from kemoauc.mips.inka.de (localhost [127.0.0.1]) by kemoauc.mips.inka.de (8.12.6/8.12.6) with ESMTP id h1A2G5PD000931; Mon, 10 Feb 2003 03:16:05 +0100 (CET) (envelope-from naddy@localhost.mips.inka.de) Received: (from naddy@localhost) by kemoauc.mips.inka.de (8.12.6/8.12.6/Submit) id h1A2G5p5000930; Mon, 10 Feb 2003 03:16:05 +0100 (CET) Date: Mon, 10 Feb 2003 03:16:05 +0100 From: Christian Weisgerber To: freebsd-questions@freebsd.org, freebsd-hardware@freebsd.org Subject: Re: DWL-650 won't configure under 5.0 Message-ID: <20030210021605.GA96663@kemoauc.mips.inka.de> References: <20030207183445.H19424@babelfish.pursued-with.net> <20030208190315.A24627@babelfish.pursued-with.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030208190315.A24627@babelfish.pursued-with.net> User-Agent: Mutt/1.4i Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Kevin Stevens: > How are you determining the chipset, from that vendor id somehow? Yes. Cardbus shares the PCI vendor list. http://www.yourvote.com/pci/ -- Christian "naddy" Weisgerber naddy@mips.inka.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Tue Feb 11 4: 7:11 2003 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 C6E9237B401 for ; Tue, 11 Feb 2003 04:07:10 -0800 (PST) Received: from newmail.halenet.com.au (newmail.halenet.com.au [203.55.33.235]) by mx1.FreeBSD.org (Postfix) with ESMTP id A815D43FA3 for ; Tue, 11 Feb 2003 04:07:08 -0800 (PST) (envelope-from timbo@halenet.com.au) Received: (from root@localhost) by newmail.halenet.com.au (8.11.6/8.11.6) id h1BCH2R87305 for freebsd-hardware@freebsd.org; Tue, 11 Feb 2003 22:17:02 +1000 (EST) (envelope-from timbo@halenet.com.au) Received: from laptop (customer3-sthe-wireless-mtm.halenet.com.au [61.88.48.23]) by newmail.halenet.com.au (8.11.6/8.11.6) with SMTP id h1BCGxo87253 for ; Tue, 11 Feb 2003 22:17:00 +1000 (EST) (envelope-from timbo@halenet.com.au) Message-ID: <013c01c2d1c5$ff225dc0$6500a8c0@halenet.com.au> From: "Tim McCullagh" To: Subject: Problems changing Compact flash geometry on a Ram Star 64 MB CF card Date: Tue, 11 Feb 2003 22:06:22 +1000 MIME-Version: 1.0 X-scanner: scanned by Inflex 1.0.10 - (http://pldaniels.com/inflex/) Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4522.1200 X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4522.1200 Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi All, Can anyone shed any light on what I have to do to change the disk geometry on a compact flash card I have a Ram Star 64MB CF card which is detected as 960/16/8 when it is in fact 1000/4/32 as per the manufacturers specs. When I change the geometry in the /stand/sysinstall fdisk utility it changes the geometry at the top, but it will not allow the size of the slices to change from what it is detected as. I then write the changes and exit fdisk. But if I go back into the fdisk utility the drive geometry defaults baclk to 960/16/8 I would appreciate any assistance and suggestions on what I am doing wrong Thanks Tim To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Tue Feb 11 7:23:16 2003 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 478F737B405 for ; Tue, 11 Feb 2003 07:23:15 -0800 (PST) Received: from mailbox.univie.ac.at (mailbox.univie.ac.at [131.130.1.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0733E43FBF for ; Tue, 11 Feb 2003 07:23:12 -0800 (PST) (envelope-from l.ertl@univie.ac.at) Received: from pcle2.cc.univie.ac.at (pcle2.cc.univie.ac.at [131.130.2.177]) by mailbox.univie.ac.at (8.12.2/8.12.2) with ESMTP id h1BFN3Ru312402 for ; Tue, 11 Feb 2003 16:23:06 +0100 Date: Tue, 11 Feb 2003 16:23:03 +0100 (CET) From: Lukas Ertl To: freebsd-hardware@freebsd.org Subject: Proliant ML530 G2 Message-ID: <20030211162000.L9919@pcle2.cc.univie.ac.at> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE X-DCC-ZID-Univie-mailbox-Metrics: mailbox 4251; Body=1 Fuz1=1 Fuz2=1 Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi there, does anyone have some experience with FreeBSD on a Compaq Proliant ML530 G2? We already have FreeBSD up and running very well on a DL380 G2, and we're planning to buy one or two ML530 G2's with Dual-Xeons (2.8GHz). So, any pitfalls, hints, tips? best regards, le PS: Please keep me CC'ed. --=20 Lukas Ertl eMail: l.ertl@univie.ac.at UNIX-Systemadministrator Tel.: (+43 1) 4277-14073 Zentraler Informatikdienst (ZID) Fax.: (+43 1) 4277-9140 der Universit=E4t Wien http://mailbox.univie.ac.at/~le/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Tue Feb 11 9: 0:57 2003 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 61D6837B401 for ; Tue, 11 Feb 2003 09:00:56 -0800 (PST) Received: from conure.mail.pas.earthlink.net (conure.mail.pas.earthlink.net [207.217.120.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB59043F93 for ; Tue, 11 Feb 2003 09:00:55 -0800 (PST) (envelope-from mvh@ix.netcom.com) Received: from lsanca1-ar6-4-62-205-105.lsanca1.elnk.dsl.genuity.net ([4.62.205.105] helo=netcom1.netcom.com) by conure.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 18idmA-0001cj-00 for freebsd-hardware@freebsd.org; Tue, 11 Feb 2003 09:00:54 -0800 Received: from localhost (localhost [127.0.0.1]) by netcom1.netcom.com (Postfix) with ESMTP id 36A241310F for ; Tue, 11 Feb 2003 09:00:53 -0800 (PST) Received: by netcom1.netcom.com (Postfix, from userid 1000) id B3D0A1310D; Tue, 11 Feb 2003 09:00:50 -0800 (PST) From: Mike Harding To: freebsd-hardware@freebsd.org Subject: Motherboard recommendation? Message-Id: <20030211170050.B3D0A1310D@netcom1.netcom.com> Date: Tue, 11 Feb 2003 09:00:50 -0800 (PST) X-Virus-Scanned: by AMaViS snapshot-20020531 Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I am retiring my A7V133 because of consistent IDE corruption (I am currently running PIO 4). Can anyone make a quick recommendation of a motherboard that they are happy with? I am looking at Asus A7N8x (Athlon) Epox RDA+ (Athlon) Asus P4PE (P4) I have been an Athlon user but this VIA nonsense has me really annoyed - I will not be buying a VIA product again. I will probably be getting a 2.4 gig processor. I am just looking for a basic functionality report - these MBs are fairly new and I want to be sure they run -STABLE. Thanks! Mike H. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Tue Feb 11 10: 3:41 2003 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 667E337B401 for ; Tue, 11 Feb 2003 10:03:40 -0800 (PST) Received: from empire.explosive.mail.net (empire.explosive.mail.net [205.205.25.120]) by mx1.FreeBSD.org (Postfix) with SMTP id 76A4343F75 for ; Tue, 11 Feb 2003 10:03:37 -0800 (PST) (envelope-from mykroft@explosive.mail.net) Received: (qmail 25070 invoked from network); 11 Feb 2003 18:01:17 -0000 Received: from ticking.explosive.mail.net (HELO ticking) (205.205.25.116) by empire.explosive.mail.net with SMTP; 11 Feb 2003 18:01:17 -0000 Message-ID: <05f301c2d1f8$07cb6520$7419cdcd@ticking> From: "Adam Maas" To: "Mike Harding" , References: <20030211170050.B3D0A1310D@netcom1.netcom.com> Subject: Re: Motherboard recommendation? Date: Tue, 11 Feb 2003 13:04:33 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2720.3000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org ----- Original Message ----- From: "Mike Harding" To: Sent: Tuesday, February 11, 2003 12:00 PM Subject: Motherboard recommendation? > > I am retiring my A7V133 because of consistent IDE corruption (I am > currently running PIO 4). Can anyone make a quick recommendation of a > motherboard that they are happy with? I am looking at > > Asus A7N8x (Athlon) > Epox RDA+ (Athlon) > Asus P4PE (P4) > > Thanks! > > Mike H. There are some issues with support for the NVidia and SiS based motherboards, the Sound and NIC support is iffy. If you don't mind some tweaking t get the NIC to work, and getting a real soundcard, go for the A7N8X, otherwise go for a good i845 based P4 board, with real video (The only issue with intel based boards is the horrific video support.) Adam To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Tue Feb 11 11: 9:29 2003 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 F09A037B401 for ; Tue, 11 Feb 2003 11:09:28 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90F4743F85 for ; Tue, 11 Feb 2003 11:09:28 -0800 (PST) (envelope-from ps@mu.org) Received: by elvis.mu.org (Postfix, from userid 1000) id 2C37EAE272; Tue, 11 Feb 2003 11:09:28 -0800 (PST) Date: Tue, 11 Feb 2003 11:09:28 -0800 From: Paul Saab To: Lukas Ertl Cc: freebsd-hardware@freebsd.org Subject: Re: Proliant ML530 G2 Message-ID: <20030211190928.GA2294@elvis.mu.org> References: <20030211162000.L9919@pcle2.cc.univie.ac.at> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030211162000.L9919@pcle2.cc.univie.ac.at> User-Agent: Mutt/1.4i Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Lukas Ertl (l.ertl@univie.ac.at) wrote: > Hi there, > > does anyone have some experience with FreeBSD on a Compaq Proliant ML530 > G2? We already have FreeBSD up and running very well on a DL380 G2, and > we're planning to buy one or two ML530 G2's with Dual-Xeons (2.8GHz). > > > > So, any pitfalls, hints, tips? If you are running the latest 4.7-STABLE, then SMP will work, but HyperThreading will be enabled all the time. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Tue Feb 11 13:10:18 2003 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 2F53A37B405 for ; Tue, 11 Feb 2003 13:10:17 -0800 (PST) Received: from mailbox.univie.ac.at (mail.univie.ac.at [131.130.1.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCFD243F85 for ; Tue, 11 Feb 2003 13:10:15 -0800 (PST) (envelope-from l.ertl@univie.ac.at) Received: from adslle.cc.univie.ac.at (adslle.cc.univie.ac.at [131.130.102.11]) by mailbox.univie.ac.at (8.12.2/8.12.2) with ESMTP id h1BLA2uW012240; Tue, 11 Feb 2003 22:10:08 +0100 Date: Tue, 11 Feb 2003 22:10:02 +0100 (CET) From: Lukas Ertl To: Paul Saab Cc: freebsd-hardware@freebsd.org Subject: Re: Proliant ML530 G2 In-Reply-To: <20030211190928.GA2294@elvis.mu.org> Message-ID: <20030211220854.R410@leelou.in.tern> References: <20030211162000.L9919@pcle2.cc.univie.ac.at> <20030211190928.GA2294@elvis.mu.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE X-DCC-ZID-Univie-Metrics: mx1 4261; Body=2 Fuz1=2 Fuz2=2 Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, 11 Feb 2003, Paul Saab wrote: > Lukas Ertl (l.ertl@univie.ac.at) wrote: > > > > does anyone have some experience with FreeBSD on a Compaq Proliant ML53= 0 > > G2? We already have FreeBSD up and running very well on a DL380 G2, and > > we're planning to buy one or two ML530 G2's with Dual-Xeons (2.8GHz). > > > > > > > > So, any pitfalls, hints, tips? > > If you are running the latest 4.7-STABLE, then SMP will work, Sounds good. > but HyperThreading will be enabled all the time. Why is there a "but"? :-) regards, le --=20 Lukas Ertl eMail: l.ertl@univie.ac.at UNIX-Systemadministrator Tel.: (+43 1) 4277-14073 Zentraler Informatikdienst (ZID) Fax.: (+43 1) 4277-9140 der Universit=E4t Wien http://mailbox.univie.ac.at/~le/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Tue Feb 11 13:27:22 2003 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 3C05C37B401 for ; Tue, 11 Feb 2003 13:27:21 -0800 (PST) Received: from server.simon1.net (user23.net263.oh.sprint-hsd.net [208.17.71.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21CC243F3F for ; Tue, 11 Feb 2003 13:27:20 -0800 (PST) (envelope-from simon1@server.simon1.net) Received: from server.simon1.net (localhost [127.0.0.1]) by server.simon1.net (8.12.5/8.12.5) with ESMTP id h1BLRKLO051534; Tue, 11 Feb 2003 16:27:20 -0500 (EST) Received: from localhost (simon1@localhost) by server.simon1.net (8.12.5/8.12.5/Submit) with ESMTP id h1BLRKsE051531; Tue, 11 Feb 2003 16:27:20 -0500 (EST) Date: Tue, 11 Feb 2003 16:27:20 -0500 (EST) From: Simon1 To: Mike Harding Cc: Subject: Re: Motherboard recommendation? In-Reply-To: <20030211170050.B3D0A1310D@netcom1.netcom.com> Message-ID: <20030211162432.U51476-100000@server.simon1.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org (Though you haven't listed any ABit boards) I've had excellent luck with ABit, with the exception of a past post(You had to configure RAID a little differently than they showed). In particular, the KR7A series was completely rock solid. The a new KD7-R has also been running like a champ since I installed it a few months back. On Tue, 11 Feb 2003, Mike Harding wrote: > > I am retiring my A7V133 because of consistent IDE corruption (I am > currently running PIO 4). Can anyone make a quick recommendation of a > motherboard that they are happy with? I am looking at > > Asus A7N8x (Athlon) > Epox RDA+ (Athlon) > Asus P4PE (P4) > > I have been an Athlon user but this VIA nonsense has me really annoyed > - I will not be buying a VIA product again. > > I will probably be getting a 2.4 gig processor. > > I am just looking for a basic functionality report - these MBs are > fairly new and I want to be sure they run -STABLE. > > Thanks! > > Mike H. > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-hardware" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Tue Feb 11 13:37:34 2003 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 897B537B401 for ; Tue, 11 Feb 2003 13:37:33 -0800 (PST) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2774B43F93 for ; Tue, 11 Feb 2003 13:37:33 -0800 (PST) (envelope-from ps@mu.org) Received: by elvis.mu.org (Postfix, from userid 1000) id E28D9AE1EE; Tue, 11 Feb 2003 13:37:32 -0800 (PST) Date: Tue, 11 Feb 2003 13:37:32 -0800 From: Paul Saab To: Lukas Ertl Cc: freebsd-hardware@freebsd.org Subject: Re: Proliant ML530 G2 Message-ID: <20030211213732.GA10449@elvis.mu.org> References: <20030211162000.L9919@pcle2.cc.univie.ac.at> <20030211190928.GA2294@elvis.mu.org> <20030211220854.R410@leelou.in.tern> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030211220854.R410@leelou.in.tern> User-Agent: Mutt/1.4i Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Lukas Ertl (l.ertl@univie.ac.at) wrote: > > but HyperThreading will be enabled all the time. > > Why is there a "but"? :-) because you cannot turn it off.. If you compile and SMP kernel, you will always have hyperthreading enabled on processors which support it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Tue Feb 11 14:26:29 2003 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 2FCF037B401 for ; Tue, 11 Feb 2003 14:26:28 -0800 (PST) Received: from mailbox.univie.ac.at (mailbox.univie.ac.at [131.130.1.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01C8C43F3F for ; Tue, 11 Feb 2003 14:26:27 -0800 (PST) (envelope-from l.ertl@univie.ac.at) Received: from adslle.cc.univie.ac.at (adslle.cc.univie.ac.at [131.130.102.11]) by mailbox.univie.ac.at (8.12.2/8.12.2) with ESMTP id h1BMQHuW012110; Tue, 11 Feb 2003 23:26:20 +0100 Date: Tue, 11 Feb 2003 23:26:17 +0100 (CET) From: Lukas Ertl To: Paul Saab Cc: freebsd-hardware@freebsd.org Subject: Re: Proliant ML530 G2 In-Reply-To: <20030211213732.GA10449@elvis.mu.org> Message-ID: <20030211232525.L410@leelou.in.tern> References: <20030211162000.L9919@pcle2.cc.univie.ac.at> <20030211190928.GA2294@elvis.mu.org> <20030211220854.R410@leelou.in.tern> <20030211213732.GA10449@elvis.mu.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=ISO-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE X-DCC-ZID-Univie-Metrics: unet 4261; Body=2 Fuz1=2 Fuz2=2 Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Tue, 11 Feb 2003, Paul Saab wrote: > Lukas Ertl (l.ertl@univie.ac.at) wrote: > > > but HyperThreading will be enabled all the time. > > > > Why is there a "but"? :-) > > because you cannot turn it off.. If you compile and SMP kernel, you will > always have hyperthreading enabled on processors which support it. Erm... is this a problem? (I never had a hyperthreading processor...) regards, le --=20 Lukas Ertl eMail: l.ertl@univie.ac.at UNIX-Systemadministrator Tel.: (+43 1) 4277-14073 Zentraler Informatikdienst (ZID) Fax.: (+43 1) 4277-9140 der Universit=E4t Wien http://mailbox.univie.ac.at/~le/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Tue Feb 11 14:39: 2 2003 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 1C1AA37B401 for ; Tue, 11 Feb 2003 14:39:01 -0800 (PST) Received: from dns1.vizion2000.net (dns1.vizion2000.net [64.58.171.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 485A843FA3 for ; Tue, 11 Feb 2003 14:39:00 -0800 (PST) (envelope-from vizion@ixpres.com) Received: from vizion (vizion.vizion2000.net [64.58.171.92]) by dns1.vizion2000.net (8.11.6/8.11.6) with SMTP id h1BN2HS12564 for ; Tue, 11 Feb 2003 15:02:25 -0800 (PST) (envelope-from vizion@ixpres.com) Message-ID: <004b01c2d21c$12adc310$15b55042@vizion2000.net> From: "vizion communication" To: References: <20030211162000.L9919@pcle2.cc.univie.ac.at> <20030211190928.GA2294@elvis.mu.org> <20030211220854.R410@leelou.in.tern> <20030211213732.GA10449@elvis.mu.org> <20030211232525.L410@leelou.in.tern> Subject: ANA-6944A on Proliant 5500 Quad Date: Tue, 11 Feb 2003 14:22:26 -0800 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi I am attempting to install FreeBSD V4.7 on this system from the install CD. The fourport network card does not seem to be supported by the default drivers. Can anyone please let me know how to install the correct driver for this card. Thanks David PS Just in case the information is useful to anyone I have found you cannot successfully install an nVidia TMT2 M64 graphics card on the secondary PCI bus on this system -- for some reason which I am not capable of understanding it only works on the primary PCI bus. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Wed Feb 12 14: 5: 4 2003 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 A150B37B401; Wed, 12 Feb 2003 14:05:02 -0800 (PST) Received: from sccrmhc03.attbi.com (sccrmhc03.attbi.com [204.127.202.63]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7BF643F93; Wed, 12 Feb 2003 14:05:01 -0800 (PST) (envelope-from mav@wastegate.net) Received: from wastegate.net (12-226-185-104.client.attbi.com[12.226.185.104]) by sccrmhc03.attbi.com (sccrmhc03) with ESMTP id <20030212220501003004jlnqe>; Wed, 12 Feb 2003 22:05:01 +0000 Received: from MOTHER (mother.wg.local [192.168.1.5]) by wastegate.net (Postfix) with ESMTP id B468348463; Wed, 12 Feb 2003 17:07:30 -0500 (EST) From: "Doug Reynolds" To: "northern snowfall" , "William Palfreman" Cc: "hardware@FreeBSD.ORG" , "questions@FreeBSD.ORG" Date: Wed, 12 Feb 2003 17:07:01 -0500 X-Mailer: PMMail 2000 Professional (2.20.2657) For Windows 2000 (5.1.2600) In-Reply-To: <20030207180944.F283@ndhn.yna.cnyserzna.pbz> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Subject: Re: 5.25" Floppy Message-Id: <20030212220730.B468348463@wastegate.net> Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Fri, 7 Feb 2003 18:40:24 +0000 (GMT), William Palfreman wrote: >On Fri, 7 Feb 2003, northern snowfall wrote: > >> Morning, all; >> I'm trying to get a Mitsumi D509V3 1.2MB 5.25" floppy drive >> to work on FreeBSD 4.2.6. > >Cool. My father still has a 5.25" drive in production use - he has >large numbers of 5.25 disks containing old work, and maybe once a >year needs something off one of them. Works fine on his W2k box. > >> The operating system reports the drive >> is available and definitely makes contact with the drive (visual >> confirmation: LED). The issue is during read/write from the >> drive. Error message: >> fd0c: hard error reading fsbn 0 (No status) >> I have the proper drive type set in the BIOS. FreeBSD seems to >> agree according to the dmesg: >> fd0: <1200-KB 5.25" drive> on fdc0 drive 0 >> I've been doing simple read tests using: >> dd if=/dev/fd0 count=1 bs=512 | hexdump ; >> Any suggestions? > >Drive might be broken, disk might be broken, disk might not be >formated, and finally make sure you know what kind of 5.25 both the >drive and the disk are. 8088/86 machines stated off with single sided 8 >sector one @160k, then double sided 8 sector (320k), then single sided 9 >sector (180k), then double sided 9 sector (360k). That was the >standard. AT machines (i.e. 286s and later 386s & 486s) used 1.2Mb >5.25" disks. These AT drives could read 360k PC disks (PC = 8086/88, >BTW) but if you wrote to one there was a very good chance it would never >be readable by a PC again, because the 1.2Mb AT drive had a read/write >head 1/3 of the size of the 360Kb PC drive, and often the mark it left >was too small to be read by larger PC heads. For that reason I always >treated 360k disks as read-only media on 1.2Mb drives. correct; however, you can also format a 360K disk as a 360K High Density, so you could read or write to it from a 1.2M, and still read it from a 360k (but not write). --- doug reynolds | the maverick | mav@wastegate.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Thu Feb 13 1:32:13 2003 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 8713837B401 for ; Thu, 13 Feb 2003 01:32:12 -0800 (PST) Received: from jawa.at (inforum.at [213.229.17.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEA4343F85 for ; Thu, 13 Feb 2003 01:32:10 -0800 (PST) (envelope-from mbretter@jawa.at) Received: from jawa.at (dings.jawa.at [192.168.200.60]) by jawa.at (8.12.6/8.12.6) with ESMTP id h1D9W707035335 for ; Thu, 13 Feb 2003 10:32:07 +0100 (CET) (envelope-from mbretter@jawa.at) Message-ID: <3E4B6618.6060403@jawa.at> Date: Thu, 13 Feb 2003 10:32:08 +0100 From: Michael Bretterklieber Organization: JAWA Management Software GmbH User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de-AT; rv:1.2.1) Gecko/20021130 X-Accept-Language: de, en MIME-Version: 1.0 To: hardware@freebsd.org Subject: Netgear MA311 WLAN PCI Card Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=-0.7 required=5.0 tests=NOSPAM_INC,SPAM_PHRASE_00_01,USER_AGENT, USER_AGENT_MOZILLA_UA,X_ACCEPT_LANG version=2.43 Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi, Is the Netgear MA311 WLAN PCI Card supported by FreeBSD (stable or current)? thanx, bye, -- ------------------------------- ---------------------------------- Michael Bretterklieber - Michael.Bretterklieber@jawa.at JAWA Management Software GmbH - http://www.jawa.at Liebenauer Hauptstr. 200 -------------- privat ------------ A-8041 GRAZ GSM: ++43-(0)676-84 03 15 712 Tel: ++43-(0)316-403274-12 E-mail: michael@bretterklieber.com Fax: ++43-(0)316-403274-10 http://www.bretterklieber.com ------------------------------- ---------------------------------- "...the number of UNIX installations has grown to 10, with more expected..." - Dennis Ritchie and Ken Thompson, June 1972 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Thu Feb 13 1:32:51 2003 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 5507A37B401 for ; Thu, 13 Feb 2003 01:32:50 -0800 (PST) Received: from c3po.barnesos.net (c3po.LPL.Arizona.EDU [128.196.64.189]) by mx1.FreeBSD.org (Postfix) with ESMTP id D050C43F85 for ; Thu, 13 Feb 2003 01:32:49 -0800 (PST) (envelope-from jbarnes@c3po.barnesos.net) Received: by c3po.barnesos.net (Postfix, from userid 1001) id 6FA333360; Thu, 13 Feb 2003 02:32:49 -0700 (MST) Received: from localhost (localhost [127.0.0.1]) by c3po.barnesos.net (Postfix) with ESMTP id 6D1B9335F for ; Thu, 13 Feb 2003 02:32:49 -0700 (MST) Date: Thu, 13 Feb 2003 02:32:49 -0700 (MST) From: Jason Barnes To: freebsd-hardware@freebsd.org Subject: ums and devfs Message-ID: <20030213022955.D6876-100000@c3po.barnesos.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi. I have a USB mouse and am running FreeBSD 5.0. All of the documentation says that, with devfs, there is no need to MAKEDEV. However, although usbd is running fine and ums is in the kernel, there is no /dev/ums0 . How to I make devfs put one there? Thanks, - Jason To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Thu Feb 13 2:39:33 2003 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 B440637B401 for ; Thu, 13 Feb 2003 02:39:32 -0800 (PST) Received: from risc01.ktu.edu.tr (dsplab.ktu.edu.tr [193.140.168.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 439D643F75 for ; Thu, 13 Feb 2003 02:39:29 -0800 (PST) (envelope-from kinay@ktu.edu.tr) Received: from ktu.edu.tr ([10.0.3.168]) by risc01.ktu.edu.tr (8.12.6/8.12.6) with ESMTP id h1DAi1TB006558 for ; Thu, 13 Feb 2003 12:44:01 +0200 (EET) Message-ID: <3E4B75B7.8459C8AF@ktu.edu.tr> Date: Thu, 13 Feb 2003 12:38:47 +0200 From: Bilal KINAY X-Mailer: Mozilla 4.79 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: freebsd-hardware@freebsd.org Subject: Does work FreeBSD on IBM Netfinity 5500 M20 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-RAVMilter-Version: 8.4.2(snapshot 20021217) (risc01) Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi Does work FreeBSD on IBM Netfinity 5500 M20? IBM Radi Card and 4 proccessor, 1GB RAM thanks ============================================================= Size gelen bu e-posta risc01.ktu.edu.tr sunucusuna kurulu olan RAV Antivirus tarafindan kontrol edilmistir. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Fri Feb 14 4:28: 3 2003 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 D9C5A37B401 for ; Fri, 14 Feb 2003 04:28:02 -0800 (PST) Received: from mail.eecs.harvard.edu (bowser.eecs.harvard.edu [140.247.60.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3556E43F93 for ; Fri, 14 Feb 2003 04:28:00 -0800 (PST) (envelope-from ellard@eecs.harvard.edu) Received: by mail.eecs.harvard.edu (Postfix, from userid 465) id C398154C42E; Fri, 14 Feb 2003 07:27:57 -0500 (EST) Received: from localhost (localhost [127.0.0.1]) by mail.eecs.harvard.edu (Postfix) with ESMTP id C169E54C428 for ; Fri, 14 Feb 2003 07:27:57 -0500 (EST) Date: Fri, 14 Feb 2003 07:27:57 -0500 (EST) From: Daniel Ellard To: freebsd-hardware@freebsd.org Subject: support for Tyan Thunder i7500 mobo? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Does FreeBSD work with the Tyan i7500 (S2720UGN) motherboard? I'm particularly interested in whether the on-board gigabit NIC works with the em driver, and whether the on-board SCSI controller is properly recognized. Thanks, -Dan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message From owner-freebsd-hardware Sat Feb 15 10:10: 6 2003 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 23D6437B401 for ; Sat, 15 Feb 2003 10:10:05 -0800 (PST) Received: from mx1.lphp.org (APastourelles-107-1-15-222.abo.wanadoo.fr [80.13.169.222]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BF6643FD7 for ; Sat, 15 Feb 2003 10:10:02 -0800 (PST) (envelope-from ajacoutot@lphp.org) Received: from srv01.lphp.org.local (localhost [127.0.0.1]) by mx1.lphp.org (8.12.6/8.12.6) with ESMTP id h1FIA0Q2074184 for ; Sat, 15 Feb 2003 19:10:00 +0100 (CET) (envelope-from ajacoutot@lphp.org) Received: (from www@localhost) by srv01.lphp.org.local (8.12.6/8.12.6/Submit) id h1FI9xKX074183 for freebsd-hardware@freebsd.org; Sat, 15 Feb 2003 19:09:59 +0100 (CET) X-Authentication-Warning: srv01.lphp.org.local: www set sender to ajacoutot@lphp.org using -f Received: from 192.168.0.4 ( [192.168.0.4]) as user ajacoutot@localhost by webmail.lphp.org with HTTP; Sat, 15 Feb 2003 19:09:59 +0100 Message-ID: <1045332599.3e4e8277356ab@webmail.lphp.org> Date: Sat, 15 Feb 2003 19:09:59 +0100 From: Antoine Jacoutot To: "freebsd-hardware@freebsd.org" Subject: ISD200 USB Storage Adapter MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.1 / FreeBSD-4.7 Sender: owner-freebsd-hardware@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi ! I'm really sorry if I bother, but I've been looking all around for help and couldn't find any answer. Basically, I wanted to know if the umass.ko would recognize "ISD200" based external USB hard drive under FreeBSD-4.7-STABLE (and if not, under 5.0). I can't get it to work. Here is what's in dmesg: ugen0: In-System Design USB Storage Adapter, rev 1.10/1.10, addr 2 and in usbdevs -v: port 2 addr 2: self powered, config 1, USB Storage Adapter(0x0031), In-System Design(0x05ab), rev 1.10 However, no mention of umass0 or so anywhere (yes everything needed is compiled into the kernel), so I would guess the ISD200 chip isn't supported ? In Linux, this chipset is supported (in the source tree of the Linux kernel: /drivers/usb/storage/isd200.c). If you have any answer, please let me know... Once again, sorry if I bother. Best regards. -- Antoine Jacoutot ajacoutot@lphp.org http://www.lphp.org "Unix is user friendly. He's just very picky about who his friends are..." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hardware" in the body of the message