Re: SiS 900 Ethernet card

2002-11-26 Thread Alexander
Hello, It is a laptop and the only thing I can open (without voiding the guarantee) is the place where the memory sticks lie. Anyway, I don't think this is the solution. Can't anyone port the linux driver on bsd ? (It works great on linux, but I don't wan't to go on linux) thanks On Mon, 25 Nov 2

Diskless booting with codafs

2002-11-26 Thread Cosmin Stroe
Hello, Is there a codafs diskless booting option available for FreeBSD .. something similar to the NFS_ROOT option available currently in the kernel ? Is there even CODA fs builtin kernel support ? Thank you. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers"

Warcraft3 on FreeBSD

2002-11-26 Thread Kenneth Culver
Just in case anyone here cares, I have implemented the linux ftruncate64, truncate64, and mmap2 syscalls in the linuxulator on my computer, (mostly cut 'n pasted the mmap2 from regular mmap with a couple of changes) and with these changes it is possible to run the linux version of winex (the one yo

Correct way to get hold of a isab

2002-11-26 Thread Alexander Funcke
Hi, I've written a GPIO driver for the National Geode SCx200 processors. While I was developing I added the following line in isab_match() (sys/pci/pcisupport.c) so it wouldn't be identified as a isa-bridge. isab_match(device_t dev) { switch(pci_get_devid(dev)) { . .

strange coredump in malloc_bytes()/libc in 4.7p2

2002-11-26 Thread Daniel Lang
Hi folks, before I send a PR, I though I'll ask about the opinion of the people here. Background: We run an IRCnet ircd on a FreeBSD box here. This combination lived very happy for a very long time. Recently I've updated the box to 4.7-RELEASE-p2. After the update, the "ircd" won't start any lon

Re: When you get a moment.

2002-11-26 Thread Peter Haight
I have a VAIO with an AC97 soundcard. Here's the pciconf output: pcm0@pci0:31:5: class=0x040100 card=0x80fa104d chip=0x24858086 rev=0x02 hdr=0x00 vendor = 'Intel Corporation' device = '82801CA/CAM (ICH3-S/ICH3-M) AC'97 Audio Controller' class= multimedia subclass = audio Here's the /var/

Re: Warcraft3 on FreeBSD

2002-11-26 Thread Anish Mistry
On Tuesday 26 November 2002 04:42 am, Kenneth Culver wrote: > Just in case anyone here cares, I have implemented the linux ftruncate64, > truncate64, and mmap2 syscalls in the linuxulator on my computer, (mostly > cut 'n pasted the mmap2 from regular mmap with a couple of changes) and > with these

RE: Correct way to get hold of a isab

2002-11-26 Thread John Baldwin
On 26-Nov-2002 Alexander Funcke wrote: > Hi, > > > I've written a GPIO driver for the National Geode SCx200 processors. > While I was developing I added the following line in isab_match() > (sys/pci/pcisupport.c) so it wouldn't be identified as a isa-bridge. > > > isab_match(device_t dev) > {

Re: Diskless booting with codafs

2002-11-26 Thread Robert Watson
On Tue, 26 Nov 2002, Cosmin Stroe wrote: > Is there a codafs diskless booting option available for FreeBSD .. > something similar to the NFS_ROOT option available currently in the > kernel ? > > Is there even CODA fs builtin kernel support ? Unlike many network file systems, Coda relies on a

Re: strange coredump in malloc_bytes()/libc in 4.7p2

2002-11-26 Thread Poul-Henning Kamp
In message <[EMAIL PROTECTED]>, Daniel L ang writes: >Hi folks, > >before I send a PR, I though I'll ask about the opinion >of the people here. > >Background: > >We run an IRCnet ircd on a FreeBSD box here. This combination >lived very happy for a very long time. Recently I've updated >the box to 4

double fault w/o playing tennis

2002-11-26 Thread Chuck Tuffli
So I'm doing something "bad" in my driver which is causing a double fault (a fault inside a fault handler I think) panic. I have a remote gdb session setup, but things like backtrace are only telling me what I know (the code is in trap_fatal). Is there a resource out there ("Frame pointers for dumm

Re: Warcraft3 on FreeBSD

2002-11-26 Thread Kenneth Culver
> > I havn't submitted them to anyone b/c I wanted more people to test them. > > The patches work fine with everything I've tried though (using the > > linux_base-7.1 package). I've tested linux-mozilla, quake3, Unreal > > Tournament 2003, Return to castle Wolfenstein, and now winex. (winex won't >

Re: Review by USB wizard wanted

2002-11-26 Thread Nate Lawson
I'm not a usb expert but I think your patch deserves some comments. On Mon, 25 Nov 2002, Yar Tikhiy wrote: > First, sometimes (especially, if twitching a memory stick out of > the reader while the device is being detected) a transfer to the > umass device is initiated *after* the device is already

Re: Warcraft3 on FreeBSD

2002-11-26 Thread Michael Reifenberger
On Tue, 26 Nov 2002, Kenneth Culver wrote: ... > Anyway, I'll submit a PR once I clean up the patches a bit. Yes, please. Please post the number when ready. Bye! Michael Reifenberger ^.*Plaut.*$, IT, R/3 Basis, GPS To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hack

ports conflicts: PR/13650

2002-11-26 Thread Sergey Matveychuk
I'v tried find out a fate of PR/13650 dated by September 1999. I'v wrote to freebsd-ports and to Satoshi. And I'v got no answer. Who can answer me? Who can change bsd.port.mk? Sem. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: Correct way to get hold of a isab

2002-11-26 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> Alexander Funcke <[EMAIL PROTECTED]> writes: : This do work, but I guess this isn't the correct way, how should it : be done? Have isab_probe return a negative number (say -20). Have your probe routine return a larger negative number (say -10). Warner

Re: Correct way to get hold of a isab

2002-11-26 Thread M. Warner Losh
In message: <[EMAIL PROTECTED]> John Baldwin <[EMAIL PROTECTED]> writes: : Does this device have a class of PCIC_BRIDGE and subclass of PCIS_BRIDGE_ISA? : (class of 0x0601zz where zz is any value). If so it is claiming to be a : PCI-ISA bridge. If this device is not a PCI-ISA bridge,

Re: Warcraft3 on FreeBSD

2002-11-26 Thread Kenneth Culver
On Wed, 27 Nov 2002, Michael Reifenberger wrote: > On Tue, 26 Nov 2002, Kenneth Culver wrote: > ... > > Anyway, I'll submit a PR once I clean up the patches a bit. > Yes, please. > Please post the number when ready. > > Bye! > > Michael Reifenberger > ^.*Plaut.*$, IT, R/3 Basis, GPS > Does

Re: Warcraft3 on FreeBSD

2002-11-26 Thread Kenneth Culver
OK, the PR is located at http://www.freebsd.org/cgi/query-pr.cgi?pr=45785 The patch should be there as well. Thanks Ken On Wed, 27 Nov 2002, Michael Reifenberger wrote: > On Tue, 26 Nov 2002, Kenneth Culver wrote: > ... > > Anyway, I'll submit a PR once I clean up the patches a bit. > Yes, pl

Re: fsck -p

2002-11-26 Thread Kirk McKusick
Date: Wed, 20 Nov 2002 13:09:55 +0200 From: Ruslan Ermilov <[EMAIL PROTECTED]> To: Ian Dowse <[EMAIL PROTECTED]>, Kirk McKusick <[EMAIL PROTECTED]> Cc: [EMAIL PROTECTED] Subject: fsck -p Hi! Today I've got a hard lockup with 4.7