Re: Fast SCSI RAID controller

2007-02-03 Thread Stanislav Sedov
On Fri, 2 Feb 2007 14:22:44 -0800 Josef Grosch [EMAIL PROTECTED] mentioned: Can anyone suggest a fast SCSI RAID controller for FreeBSD 6.2 ? Our vendor is having trouble with the latest Adaptec LSI Logic produce very good SCSI controllers that work just fine with amr (4). -- Stanislav Sedov

Re: Fast SCSI RAID controller

2007-02-03 Thread Derek Ragona
Take a look at LSI controllers. With any SCSI make sure you get one for the correct slot you have, i.e. PCI, PCI-X, etc. -Derek At 04:22 PM 2/2/2007, Josef Grosch wrote: Can anyone suggest a fast SCSI RAID controller for FreeBSD 6.2 ? Our vendor is having trouble with the latest

Geode SC1100 i2c bus

2007-02-03 Thread Cats
Hello all, I've been looking for some technical infos and/or driver for the i2c bus on the Geode SC1100 processor under FreeBSD 6. I found i2c stuff, tried to compile a kernel with it but nothing showed up. I had a look at the sources and apparently it doesn't hook up to isa bus. From the

Re: Geode SC1100 i2c bus

2007-02-03 Thread Milan Obuch
On Saturday 03 February 2007 17:10, Cats wrote: Hello all, Hi, I've been looking for some technical infos and/or driver for the i2c bus on the Geode SC1100 processor under FreeBSD 6. I tried it too, but no success yet, partially due to ENOTIME :( I found i2c stuff, tried to compile a

UFS2 version of ffsrecov.

2007-02-03 Thread Frank Mayhar
No, I'm not looking for one, I'm releasing one. This is a heavily modified version of John-Mark Gurney's ffsrecov, adapted to use libufs and to work (only) with UFS2 file systems. I call it ffs2recov and it is available at http://www.exit.com/Archives/FreeBSD/ffs2recov.tar.bz2 I wrote

Re: Updated Driver for 3945ABG Intel 3945ABG Wireless LAN controller

2007-02-03 Thread Gilbert Cao
(Sorry hackers, I have forgotten you, and here is my previous post below to freebsd-drivers) On Thu, Feb 01, 2007 at 03:48:49AM -0600, Sam Fourman Jr. wrote: I installed 20070131-wpi-freebsd.tar.gz (file date was 2-1-2007 on the website) I am using a fresh install of 6.2 REALESE when I

Re: Geode SC1100 i2c bus

2007-02-03 Thread M. Warner Losh
In message: [EMAIL PROTECTED] Cats [EMAIL PROTECTED] writes: : Does someone already tried to use i2c bus on a wrap board under FreeBSD ? All that should be needed is an i2c bridge controller driver. Much of the rest of the support is there, or nearly there. OpenBSD has a wider

Re: Geode SC1100 i2c bus

2007-02-03 Thread perryh
The ACB is at the same level than Uart, so I had a look at sio source and got a big headache. I'm not really used to drivers nor kernel programming stuff, that's why I need your help. Why do you compare ACB and UART? In FreeBSD, sio is serial i/o controller, not superIO, maybe you are

nullfs and named pipes.

2007-02-03 Thread Josef Karthauser
Hey guys, does anyone know off the top of their heads why named pipes don't appear to work across null_fs mounted partitions? i.e. if I have a named pipe in a file system, # ls -ld /mysql/mysql.sock srwxrwxrwx 1 mysql wheel 0 Feb 3 19:01 /mysql/mysql.sock # mysql

sleep in freebsd kernel

2007-02-03 Thread lu ping
Hey Folks, I have a kernel thread running as a daemon, and I want to make it sleep for a while in an infinite loop. I guess I can use tsleep but it only timeout after intergal system ticks, which only has millisecond granularity, but I want to make it sleep in some microsecond. Is there any way

Re: sleep in freebsd kernel

2007-02-03 Thread M. Warner Losh
In message: [EMAIL PROTECTED] lu ping [EMAIL PROTECTED] writes: : I have a kernel thread running as a daemon, and I want to make it sleep for : a while in an infinite loop. I guess I can use tsleep but it only timeout : after intergal system ticks, which only has millisecond