Re: pnp, sound and LINT in -current

1999-12-18 Thread Seigo Tanimura
On Thu, 16 Dec 1999 22:30:45 -0800 (PST), Steve Kargl [EMAIL PROTECTED] said: Steve pcm(4) describes Luigi's old pcm driver. Tne newpcm driver is Steve different and the info pcm(4) does not necessarily apply. Ouch! Cameron, could you write pcm(4) while I do sbc(4), gusc(4) and csa(4)? --

Re: ata: Mount root failure: 6

1999-12-18 Thread Alexander Langer
On Fri, Dec 17, 1999 at 11:31:01AM -0700, Warner Losh wrote: BTW, what does your /etc/fstab look like? # DeviceMountpoint FStype Options DumpPass# /dev/ad0s1b noneswapsw 0 0 /dev/ad0s1a / ufs

Re: ata: Mount root failure: 6

1999-12-18 Thread Alexander Langer
On Fri, Dec 17, 1999 at 12:14:44PM -0800, Dave Truesdell wrote: Try this: running an old/working kernel, run disklabel on all your disks/slices and make sure the "badsect" flag is NOT set. I ran into this a couple of nights ago, updating a machine (my laptop) to a current "-current". Hmm.

Re: ata: Mount root failure: 6

1999-12-18 Thread Alexander Langer
Thus spake Dave Truesdell ([EMAIL PROTECTED]): Try this: running an old/working kernel, run disklabel on all your disks/slices and make sure the "badsect" flag is NOT set. I ran into this a couple of nights ago, updating a machine (my laptop) to a current "-current". I now just build a

Re: Success with ATA drivers and UDMA66

1999-12-18 Thread Dave J. Boers
On Sat, Dec 18, 1999 at 07:27:16AM +0100, Thierry Herbelot wrote: Do you boot from the UDMA66 drive ? Yes. Bios boot sequence is EXT,C,A; where EXT is set to UDMA66, not SCSI. The SCSI disk is a 4.3 Gb WD Enterprise on an Adaptec 2940AU board. What is your BIOS revision ? Award Bios v.

Re: Proposed end-all fix for (Re: Make world broken in libc_r)

1999-12-18 Thread Marcel Moolenaar
Jason Evans wrote: I've got a change in the pipeline that will cause world breakage again, unless we do something about this. Is there anything wrong with simply adding: CFLAGS+=-I${.CURDIR}/../../include to lib/libc_r/Makefile? It fixes such build problems. Yes, anything is wrong.

Re: make world is failed on pc98

1999-12-18 Thread Bruce Evans
On Sun, 12 Dec 1999, Takahashi Yoshihiro wrote: The 'loader' program is only transplanted for pc98. The boot2 (sys/boot/pc98/boot2) is the mostly same as the old biosboot (sys/pc98/boot/biosboot) . boot2 is already capable of loading ELF, right? No. I use a modified version of

No disks found msg in /stand/sysinstall, how come?

1999-12-18 Thread Ron Klinkien
Is is not possible to configure and add a second disk via the /stand/sysinstall Label and Fdisk menu's? I want to configure a second scsi disk to my system, but I get this message while choosing post-install/fdisk or label: | |[- Message

bootparamd_enable support in rc.conf, anyone?

1999-12-18 Thread Ron Klinkien
Maybe an idea to implement: bootparamd_enable="NO" # Run bootparamd (or NO). bootparamd_flags="" # Flags to bootparamd. in /etc/rc.conf For the diskless client users among us... Regards, Ron. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe

Re: ATA driver problem?? (lost disk contact)

1999-12-18 Thread Martin Blapp
hi, I've bought two new 16GB ATA disks and am not able to boot anymore since wd0 has been retired: Fresh current from today: [...] ad0: ad_timeout: lost disk contact ata0: resetting devices and after it hangs forever. I tried IDE_DELAY=1 and 15000 but it did not change anything. Break

general multiarchitectural build question....

1999-12-18 Thread Matthew Jacob
my i386 build fell over this morning because it found a .depend that depended on stdio.h for alpha, or: -DKEYCAP_PATH="/usr/share/misc/keycap.pcvt" -I/usr/obj/usr/src/alpha/usr/include keycap.c keycap.o keycap.po keycap.So: keycap.c /usr/obj/usr/src/alpha/usr/include/stdio.h \

Re: ata: Mount root failure: 6

1999-12-18 Thread Soren Schmidt
It seems Alexander Langer wrote: Thus spake Dave Truesdell ([EMAIL PROTECTED]): Try this: running an old/working kernel, run disklabel on all your disks/slices and make sure the "badsect" flag is NOT set. I ran into this a couple of nights ago, updating a machine (my laptop) to a

Re: general multiarchitectural build question....

1999-12-18 Thread Marcel Moolenaar
Matthew Jacob wrote: my i386 build fell over this morning because it found a .depend that depended on stdio.h for alpha, or: -DKEYCAP_PATH="/usr/share/misc/keycap.pcvt" -I/usr/obj/usr/src/alpha/usr/include keycap.c keycap.o keycap.po keycap.So: keycap.c

Current kernel compile fails

1999-12-18 Thread Manfred Antar
I think this happened when mbuf.h was changed : linking kernel.debug uipc_mbuf.o: In function `m_mballoc_wait': /sys/compile/pro2/../../kern/uipc_mbuf.c(.text+0x2cb): undefined reference to `m_mballoc_wakeup' uipc_mbuf.o: In function `m_clalloc_wait':

Re: ATA driver problem?? (lost disk contact)

1999-12-18 Thread Dave J. Boers
On Sat, Dec 18, 1999 at 08:44:42PM +0100, Soren Schmidt wrote: There is no way to see if the disk was in suspend mode, you can give it a command and se how long it takes before it comes back :) The problem here is that it takes the command and OK's it, but it takes the spinuptime + overhead

Re: bootparamd_enable support in rc.conf, anyone?

1999-12-18 Thread David O'Brien
Maybe an idea to implement: bootparamd_enable="NO" # Run bootparamd (or NO). bootparamd_flags="" # Flags to bootparamd. I'm more of the opinion to move bootparamd to a port and remove it from the base system. It is evil. Using an ISC-DHCP server to cover DHCP,

Re: ATA driver problem?? (lost disk contact)

1999-12-18 Thread Martin Blapp
Sorry, I found a rather easy workaround. Disable DMA for the disks in the BIOS ... But I still wonder why enable/disable ATA DMA in kernel has no effect for this crash. Why does only the BIOS disable help ? ata-pci0: Unknown PCI ATA controller (generic mode) at device 7.1 on pci0 ata-pci0:

Re: ATA driver problem?? (lost disk contact)

1999-12-18 Thread Soren Schmidt
It seems Martin Blapp wrote: Sorry, I found a rather easy workaround. Disable DMA for the disks in the BIOS ... But I still wonder why enable/disable ATA DMA in kernel has no effect for this crash. Why does only the BIOS disable help ? No idea, I have to study AMD's southbridge first..

Re: make world broken

1999-12-18 Thread Jos Backus
More precisely, three things seem to be wrong: - hconfig.h is missing/not being generated. - /usr/include/stdio.h says: extern __const char *__const sys_errlist[]; but /usr/src/gnu/usr.bin/cc/f771/../../../../contrib/gcc/system.h says: extern char *sys_errlist[];

Re: ATA driver problem?? (lost disk contact)

1999-12-18 Thread Richard Seaman, Jr.
On Sat, Dec 18, 1999 at 11:20:51PM +0100, Martin Blapp wrote: Sorry, I found a rather easy workaround. Disable DMA for the disks in the BIOS ... But I still wonder why enable/disable ATA DMA in kernel has no effect for this crash. Why does only the BIOS disable help ? Purely a wild

RE: ATA driver problem?? (lost disk contact)

1999-12-18 Thread Allen Pulsifer
According to the DPTA-3x spec from IBM, if the drive has fully entered Standby mode, it can take up to 31 seconds for it to spin back up. (See sections 3.3.6.1 and 13.0). Other drive models may take even longer, and even after the drive is back up, it may take a few seconds to respond to the

Re: make world broken

1999-12-18 Thread Steve Kargl
Jos Backus wrote: More precisely, three things seem to be wrong: - hconfig.h is missing/not being generated. - /usr/include/stdio.h says: extern __const char *__const sys_errlist[]; but /usr/src/gnu/usr.bin/cc/f771/../../../../contrib/gcc/system.h says: extern char

pcm and Vibra16X

1999-12-18 Thread Kenneth Culver
Alright!! Sound works!! hat's off to the people responsible. One thing though, I noticed that the spectrum analyzer in xmms gets lagged, and I've tried rebuilding libc_r, and xmms to fix it, and neither works, so I'm kinda thinking it may have something to do with the pcm driver. I tried finding

Correction to /usr/src/sys/i386/conf/LINT for D-Link DFE-530TX+

1999-12-18 Thread Matthew Dillon
The D-Link DFE-530TX+ uses the 'rl' driver, not the 'vr' driver. I don't know if there's a DFE-530TX (without the '+') so I'm leaving the entry for that in the 'vr' driver notes intact. I'll be committing this fixup on sunday. If anyone knows definitively whether the

Re: Question about device ed0 in GENERIC

1999-12-18 Thread Donn Miller
On Sat, 18 Dec 1999, Donn Miller wrote: Maybe this should be commented out and entered under the category of # PCI Ethernet NICs Because, I think there are PCI versions of ethernet cards using the ed0 driver. I can confirm this with dmesg | grep ed0: ed0: NE2000 PCI Ethernet (RealTek

Re: New sound driver and Linux games

1999-12-18 Thread Chris Piazza
On Sat, Dec 18, 1999 at 05:59:14PM -0800, Brian W. Buchanan wrote: The new sound driver (I'm using pcm0 and sbc0) seems to break a lot of Linux-centric games. Quake2, Q3Test, and snes9x (built from ports) all

Re: Correction to /usr/src/sys/i386/conf/LINT for D-Link DFE-530TX+

1999-12-18 Thread Bill Paul
Of all the gin joints in all the towns in all the world, Matthew Dillon had to walk into mine and say: The D-Link DFE-530TX+ uses the 'rl' driver, not the 'vr' driver. I don't know if there's a DFE-530TX (without the '+') so I'm leaving the entry for that in the 'vr' driver

ESS 1868, newpcm, and Linux RealPlayer 5.0

1999-12-18 Thread Donn Miller
I just rebuilt my kernel from a recent cvsup. Of course, I have device pcm0 device sbc0 in my kernel config file. When I try to play a realaudio clip with Linux rvplayer (RealPlayer 5.0), rvplayer downloads the clip, and instead of playing the clip, rvplayer just hangs

Re: Recent current hangs frequently for 1 to 2 seconds.

1999-12-18 Thread Matthew Dillon
:I've just upgraded to -CURRENT as of yesterday, and I'm noticing a :number of occasions where all activity ceases for a second or two at a :time; it seems to be related to IDE disk activity with the new ATA :driver, but I don't have much evidence. I'm running a SiS 5591 :chipset. Has anybody

Re: Recent current hangs frequently for 1 to 2 seconds.

1999-12-18 Thread Greg Lehey
On Saturday, 18 December 1999 at 20:16:53 -0800, Matthew Dillon wrote: :I've just upgraded to -CURRENT as of yesterday, and I'm noticing a :number of occasions where all activity ceases for a second or two at a :time; it seems to be related to IDE disk activity with the new ATA :driver, but I

Re: ata: Mount root failure: 6

1999-12-18 Thread Warner Losh
The fstab looks good : Is the kernel-config ok? I didn't see anything wrong with it, but maybe soren should take a close look. This stuff definitely works for me on my laptop. Warner To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the

Re: ata: Mount root failure: 6

1999-12-18 Thread Warner Losh
Warner Losh writes: : : The fstab looks good : : : Is the kernel-config ok? : : I didn't see anything wrong with it, but maybe soren should take a : close look. This stuff definitely works for me on my laptop. Hate to follow up myself, but what boot blocks are you using? Really old

Re: New sound driver and Linux games

1999-12-18 Thread Brian W. Buchanan
On Sat, 18 Dec 1999, Chris Piazza wrote: On Sat, Dec 18, 1999 at 05:59:14PM -0800, Brian W. Buchanan wrote: The new sound driver (I'm using pcm0 and sbc0) seems to break a lot of Linux-centric games. Quake2, Q3Test, and snes9x (built from ports) all

Re: New sound driver and Linux games

1999-12-18 Thread Jacob A. Hart
On Sat, 18 Dec 1999, Chris Piazza wrote: On Sat, Dec 18, 1999 at 05:59:14PM -0800, Brian W. Buchanan wrote: The new sound driver (I'm using pcm0 and sbc0) seems to break a lot of Linux-centric games. Quake2, Q3Test, and snes9x (built from ports) all

Re: New sound driver and Linux games

1999-12-18 Thread Amancio Hasty
It could be that the OSS Voxware driver does something "unintentional" that some programmers are relying on. Unreal Tournament and XMAME audio works fine under newpcm, for instance. Strange. Not really . Just go to http://www.opensound.com and look at their api in addition you have the

Re: minor gcc-issue ?

1999-12-18 Thread David O'Brien
On Sat, Dec 18, 1999 at 02:43:03AM +1100, Bruce Evans wrote: 0301 is an old (bad) way of spelling MASK_80387 | MASK_IEEE_FP | MASK_FLOAT_RETURNS. Cygnus finally fixed it in in gcc/config/i386/freebsd.h on 1999/03/23 (see the ChangeLog), but FreeBSD hasn't merged the change. Actually Cygnus