Re: Remote GDB *still* buggy...

2000-06-18 Thread Bernd Walter
On Wed, Jun 14, 2000 at 12:27:27PM -0600, Justin T. Gibbs wrote: On Wednesday, 14 June 2000 at 11:05:41 -0600, Justin T. Gibbs wrote: I still can't get remote GDB to work correctly in a 5.0-current environment at speeds greater than 9600bps. Is anyone else experiencing similar results? I

Re: smbfs second mount

2000-06-18 Thread Boris Popov
On Sun, 18 Jun 2000, kit wrote: The problem I am having is that the second mount kills the first. then on ls BP I get ls: BP: Broken pipe Thats strange, I have four smbfs mounts on my machine. I thought that that might be because I had only 1 device entry in /dev/net so I

Re: HEADS UP!: config changes...

2000-06-18 Thread Andrzej Bialecki
On Fri, 16 Jun 2000, Peter Wemm wrote: Chia-liang Kao wrote: Hi, Is there anyway to put the device.hint stuff into kernel nevertheless? My diskless box fetches the kernel would know nothing about things reside in device.hint. That is what the hints directive is for. you could

Re: GENERIC from today does not detect system console on my box

2000-06-18 Thread Bruce Evans
On Sat, 17 Jun 2000, Matthew Dillon wrote: ... It looks like sccnattach() is calling scvidprobe() and scvidprobe() is then: 0xc023484b scvidprobe+7: cmpl $0x0,0x10(%ebp) 0xc023484f scvidprobe+11: setne %al 0xc0234852 scvidprobe+14: movzbl %al,%eax 0xc0234855

pcm problems in vaio 600re

2000-06-18 Thread Mark Huizer
hi! did anyone have success getting the sound card in the VAIO 600RE laptop to work? dmesg | grep pcm says: pcm0: Yamaha DS-1E (YMF744) mem 0xfecf-0xfecf7fff irq 9 at device 9.0 on pci0 doing a cat /kernel /dev/audio0 does make a sound, indeed... but trying with mpg123 on a file doesn't

Re: Remote GDB *still* buggy...

2000-06-18 Thread Matthew Dillon
: On the machine I'm trying to debug, a Dell Precision 410, I have: : sio1 at port 0x2f8-0x2ff irq 3 on isa0 : sio1: type 16550A : : Isn't it needed anymore to set flags 0x80 on the debug port? : :Yes. That was the output from a generic kernel. My debug kernel :was crashing the machine.

** HEADS UP ** Binutils upgrade in 1 hour

2000-06-18 Thread David O'Brien
In about an hour, I will be upgrading Binutils to 2.10 release. This will take several hours to do. During this time, you may not want to CVSup. -- -- David([EMAIL PROTECTED]) To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: ** HEADS UP ** Binutils upgrade in 1 hour

2000-06-18 Thread Matthew Dillon
: :In about an hour, I will be upgrading Binutils to 2.10 release. This :will take several hours to do. During this time, you may not want to :CVSup. : :-- :-- David([EMAIL PROTECTED]) Any chance this will make -Os kernel compiles work again?

Re: ** HEADS UP ** Binutils upgrade in 1 hour

2000-06-18 Thread David O'Brien
On Sun, Jun 18, 2000 at 11:57:04AM -0700, Matthew Dillon wrote: Any chance this will make -Os kernel compiles work again? No clue. The Binutils that -CURRENT currently has is a snapshot of the 2.10 release branch (from Sourceware's anoncvs server). There is only 1.5 mo's. difference

Re: Panic with userquota(softupdates?)

2000-06-18 Thread Kirk McKusick
From: Kevin Day [EMAIL PROTECTED] Subject: Panic with userquota(softupdates?) To: [EMAIL PROTECTED] Date: Fri, 16 Jun 2000 18:55:01 -0500 (CDT) Cc: [EMAIL PROTECTED] I keep getting panics in dqget(ufs_quota.c), with a -current from a couple

Re: mktemp() patch

2000-06-18 Thread Peter Jeremy
As one of the proponents of the change, my apologies for not taking part in this thread earlier - I am way behind in my reading of most of the lists. On Thu, Jun 08, 2000 at 11:11:42AM +1000, Kris Kennaway wrote: Instead of using only alphabetic characters, the patch uses the following character

-e option to umount?

2000-06-18 Thread Greg Lehey
What do people think about adding a -e option to umount(8) to eject a removable medium where possible? Greg -- Finger [EMAIL PROTECTED] for PGP public key See complete headers for address and phone numbers To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in

Re: GENERIC from today does not detect system console on my box

2000-06-18 Thread Mike Smith
(In general, I don't think I like putting the hints in a separate place or even a separate file... now I have two or three files I have to deal with rather then one config file. It makes managing bunches of config files annoying. I wish that the earlier format hadn't been

compiling kernel with -Os or -O2

2000-06-18 Thread Donn Miller
Anyone try to compile the kernel with an optimization higher than -O, such as -Os or -O2? For example, when I compile my kernel with -Os, I get a "fatal trap 12: page fault in supervisor mode" right after I see this on my screen while the kernel is booting: Copyright (c) 1992-2000 The FreeBSD

Re: -e option to umount?

2000-06-18 Thread Marc van Woerkom
What do people think about adding a -e option to umount(8) to eject a removable medium where possible? SGIs and SUNs use an 'eject' command for CDs and DAT tapes. Here are the manpages for comparison: Irix 6.5:

Re: -e option to umount?

2000-06-18 Thread Marc van Woerkom
SGIs and SUNs use an 'eject' command for CDs and DAT tapes. OpenBSD 2.6 uses 'mt' and 'eject' NetBSD 1.4 uses 'eject' as well. http://www.FreeBSD.org/cgi/man.cgi?query=ejectapropos=0sektion=0manpath=OpenBSD+2.6format=html

Re: -e option to umount?

2000-06-18 Thread Charles Anderson
/usr/ports/sysutils/eject On Mon, Jun 19, 2000 at 02:09:44AM +0200, Marc van Woerkom wrote: SGIs and SUNs use an 'eject' command for CDs and DAT tapes. OpenBSD 2.6 uses 'mt' and 'eject' NetBSD 1.4 uses 'eject' as well.

Re: mktemp() patch

2000-06-18 Thread Kris Kennaway
On Sun, 18 Jun 2000, Warner Losh wrote: In message [EMAIL PROTECTED] "Jeroen C. van Gelderen" writes: : Pseudo random numbers are so cheap (or they should be) that you : just don't want to try and 'optimize' here. It is much better to : be conservative and use a good PRNG until it *proves*

FOLLOWING config changes? : Kernel profiling support

2000-06-18 Thread Bosko Milekic
I've recently cleaned up and updated my sources, saving some changes I made elsewhere. I performed a buildworld, installworld, etc. yesterday night with no problems. When I rebuilt my kernel, after having collected the appropriate hints for the system and modified my kernel

Re: HEADSUP: bioops patch.

2000-06-18 Thread Luoqi Chen
Background: Ideally struct buf should have had a real OO like operations vector like vnodes have it, and struct bioops is the first step towards that. struct buf will eventually become merely an iocmd structure, so why do we want to complicate things here? No, struct buf will

Re: VMware detection code in boot loader

2000-06-18 Thread Luoqi Chen
In [EMAIL PROTECTED], Luoqi Chen wrote: It is not the loader's job to detect the underlying hardware configuration. I disagree. I would like to tell which machine I am booting on to choose an appropriate kernel. Eventually (it may take a while) we should be able to boot any i386/AT

Re: FOLLOWING config changes? : Kernel profiling support

2000-06-18 Thread The Hermit Hacker
Ya know, I never thought about checkign /var/log/messages on mine to see if it was, in fact, booting (I thought it was, it sounded like it was, but I couldn't think of a way to check) ... Using kernel sources up-to-date as of a few hours ago, I've tried to pare my optimzatins down to a simple

Re: -e option to umount?

2000-06-18 Thread Francisco Reyes
On Sun, 18 Jun 2000 21:06:52 +, Charles Anderson wrote: /usr/ports/sysutils/eject On Mon, Jun 19, 2000 at 02:09:44AM +0200, Marc van Woerkom wrote: SGIs and SUNs use an 'eject' command for CDs and DAT tapes. Whether as a separate command or as part of umount this is certainly something

Re: FOLLOWING config changes? : Kernel profiling support

2000-06-18 Thread Bosko Milekic
Yes, this is what I initially got. Although I'm not quite interested in this particular problem. What I need is profiling to work. Still, what you should look at is adding the `hints' directive to your kernel configuration file, if you haven't done so already. See if that fixes your

Re: -e option to umount?

2000-06-18 Thread Donn Miller
Francisco Reyes wrote: Whether as a separate command or as part of umount this is certainly something worth having by default. In particular new users may be a while before they find ports/packages or will just end up in the questions list. Well, you could have both. For example, you could

** HEADS UP ** upgrade to Binutils 2.10 postponed

2000-06-18 Thread David O'Brien
Due to an issue of being able to tell just what the official Binutils 2.10 source is, I've put off the upgrade. Hopefully I can do it tomorrow. -- -- David ([EMAIL PROTECTED]) To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: FOLLOWING config changes? : Kernel profiling support

2000-06-18 Thread The Hermit Hacker
that did her, thanks ... should this maybe be mentioned in /usr/src/UPDATING? I've gotten into the habit of pretty much checking there first, and saw no mention of this (could be blind too, its happened before) ... On Mon, 19 Jun 2000, Bosko Milekic wrote: Yes, this is what I initially

Re: ACPI project progress report

2000-06-18 Thread Warner Losh
In message [EMAIL PROTECTED] Mitsuru IWASAKI writes: : Hi, here is the latest report on our ACPI project's progress. As I told you on the Train in Tokyo: Cool! Way Cool! ACPI should enable us to properly put the chipsets in laptops to sleep and then wake them up again. Right now pccard