Re: Build problem in -current

2001-09-04 Thread Ruslan Ermilov
On Mon, Sep 03, 2001 at 09:36:46PM +1000, Bruce Evans wrote: > On Sun, 2 Sep 2001, Jordan Hubbard wrote: > > > cd /usr/src/usr.bin/xinstall; make _EXTRADEPEND > > echo xinstall: /usr/obj/usr/src/i386/usr/lib/libc.a >> .depend > > cc -O -pipe-I/usr/obj/usr/src/i386/usr/include -c /usr/src/us

Junior Kernel Hacker task: improve vnode->v_tag

2001-09-04 Thread Poul-Henning Kamp
Assignment: The v_tag element in struct vnode is a debugging aid, but unfortunately it is implemented in a way which means that adding a filesystem means modifying the definition in . Convert the v_tag to an "const char *" and have the filesystems put their name in there instead. The v_tag has

Re: Junior Kernel Hacker task: Get rid of NCCD constant.

2001-09-04 Thread Poul-Henning Kamp
In message <[EMAIL PROTECTED]>, Maxim Sobolev writes: >Attached please find regenerated diffs. Committed, well done, thanks! -- Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 [EMAIL PROTECTED] | TCP/IP since RFC 956 FreeBSD committer | BSD since 4.3-tahoe Never attribut

Re: Junior Kernel Hacker task: Get rid of NCCD constant.

2001-09-04 Thread Maxim Sobolev
Poul-Henning Kamp wrote: > In message <[EMAIL PROTECTED]>, Maxim Sobolev writes: > > >Attached please find regenerated diffs. > > Committed, well done, thanks! Nice to hear. It seems that you forgot to commit ccdconfig(8) part of the patch. 8-) -Maxim To Unsubscribe: send mail to [EMAIL PROTE

Re: Junior Kernel Hacker task: Get rid of NCCD constant.

2001-09-04 Thread Poul-Henning Kamp
In message <[EMAIL PROTECTED]>, Maxim Sobolev writes: >Poul-Henning Kamp wrote: > >> In message <[EMAIL PROTECTED]>, Maxim Sobolev writes: >> >> >Attached please find regenerated diffs. >> >> Committed, well done, thanks! > >Nice to hear. It seems that you forgot to commit ccdconfig(8) part of the

Re: 3CXFE575CT-JP with NEWCARD doesn't work

2001-09-04 Thread Mark Santcroos
Hi Warner, On Mon, Sep 03, 2001 at 10:24:31AM -0600, Warner Losh wrote: > Looks like the mass commit broke stuff :-( I have a ToPIC100 chipset in my Toshiba Portege 3110CT. Last 'week' the updates broke my pcmcia support partially. Booting with a card inserted, inserted during boot or inserted

Re: ACPI problems

2001-09-04 Thread Mike Smith
> > unknown: can't assign resources > > unknown: at port 0x378-0x37f on isa0 > > unknown: can't assign resources > > unknown: at port 0x3f8-0x3ff on isa0 > > unknown: can't assign resources > > unknown: at port 0x2f8-0x2ff on isa0 > > unknown: can't assign resources > > unknown: at irq 12

Re: my psm0 doesn't work with new acpi :(

2001-09-04 Thread Kazutaka YOKOTA
>So i can't use X server. The problem appeared right after i've compiled >and installed freshly cvsuped kernel after new acpi first commit (31.08). >I'm sending dmesg and kernel config files in attach, and waiting for >help/comments. Thank you. Please apply the attached patch in /sys/isa and see

Re: my psm0 doesn't work with new acpi :(

2001-09-04 Thread Kazutaka YOKOTA
>So i can't use X server. The problem appeared right after i've compiled >and installed freshly cvsuped kernel after new acpi first commit (31.08). >I'm sending dmesg and kernel config files in attach, and waiting for >help/comments. Thank you. Please apply the attached patch in /sys/isa and see

Re: my psm0 doesn't work with new acpi :(

2001-09-04 Thread Ilmar S. Habibulin
On Tue, 4 Sep 2001, Kazutaka YOKOTA wrote: > Please apply the attached patch in /sys/isa and see what it does. It does panic with a smiling face ;-))) panic message was "bad ivar read request" To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of t

Re: my psm0 doesn't work with new acpi :(

2001-09-04 Thread Harti Brandt
On Tue, 4 Sep 2001, Ilmar S. Habibulin wrote: ISH> ISH> ISH>On Tue, 4 Sep 2001, Kazutaka YOKOTA wrote: ISH> ISH>> Please apply the attached patch in /sys/isa and see what it does. ISH>It does panic with a smiling face ;-))) ISH> ISH>panic message was "bad ivar read request" it fails in acpi_read

Re: my psm0 doesn't work with new acpi :(

2001-09-04 Thread Ilmar S. Habibulin
On Tue, 4 Sep 2001, Harti Brandt wrote: > ISH>panic message was "bad ivar read request" > it fails in acpi_read_ivar with an index (3rd argument) of 12. And that > looks like the IRQ, so probably there is something really wrong. Sorry, wrong with my hands or code is broken? While browsing throu

Re: my psm0 doesn't work with new acpi :(

2001-09-04 Thread Harti Brandt
On Tue, 4 Sep 2001, Ilmar S. Habibulin wrote: ISH> ISH> ISH>On Tue, 4 Sep 2001, Harti Brandt wrote: ISH> ISH>> ISH>panic message was "bad ivar read request" ISH>> it fails in acpi_read_ivar with an index (3rd argument) of 12. And that ISH>> looks like the IRQ, so probably there is something reall

Re: HEADS UP: ACPI CHANGES AFFECTING MOST -CURRENT USERS

2001-09-04 Thread Daniel Capo Sobral
Unheedful of thy elder's warnings, Mike Smith wrote: > > > Then, shouldn't we remove the PnP BIOS driver (pnpbios) from the > > kernel and make it a module, so that the boot loader will load either > > the ACPI module or the PnP BIOS module? > > Yes, we probably should. > > I'd like to see the

current (ACPI) fails on Dell Latitude ...

2001-09-04 Thread Søren Schmidt
It craps out with: ACPI-0170: *** Error: AcpiLoadTables: Could not get RSDP, AE_NO_ACPI_TABLES ACPI-0222: *** Error: AcpiLoadTables: Could not load tables: AE_NO_ACPI_TABLES ACPI: table load failed: AE_NO_ACPI_TABLES Needless to say, -current is now unusable on this latitude CPi since suspend d

Re: Junior Kernel Hacker task: improve vnode->v_tag

2001-09-04 Thread Brent Verner
On 04 Sep 2001 at 10:36 (+0200), Poul-Henning Kamp wrote: | | Assignment: | | The v_tag element in struct vnode is a debugging aid, but unfortunately | it is implemented in a way which means that adding a filesystem means | modifying the definition in . | | Convert the v_tag to an "const char *

Re: ACPI breakage on Libretto 110CT with CURRENT

2001-09-04 Thread Mark Murray
> > ACPI breaks my Libretto with (typed by hand): > > > > Mounting root from ufs/dev/ad0s2a > > I hope that's "ufs:/dev/ad0s2a". > > > setrootbyname failed > > I assume that the real problem is that the ATA controller failed to attach; > can you verify that this is the case? Bingo. Without AC

Re: Junior Kernel Hacker task: improve vnode->v_tag

2001-09-04 Thread Poul-Henning Kamp
In message <[EMAIL PROTECTED]>, Brent Verner writes: >On 04 Sep 2001 at 10:36 (+0200), Poul-Henning Kamp wrote: >| >| Assignment: >| >| The v_tag element in struct vnode is a debugging aid, but unfortunately >| it is implemented in a way which means that adding a filesystem means >| modifying th

Re: Junior Kernel Hacker task: improve vnode->v_tag

2001-09-04 Thread Mark Santcroos
On Tue, Sep 04, 2001 at 02:27:00PM +0200, Poul-Henning Kamp wrote: > >I've done a /cursory/ look over how this v_tag is used. I'm not sure > >this is a simple/clean as you propose, since this is used in the > >IS_LOCKING_VFS macro, as well as in union_subr.c... > > Well, that is just too bad, b

Re: sound doesn't work with acpi?

2001-09-04 Thread Cameron Grant
> pcm0: unable to map register space > pci1: at device 0.1 (no driver attached) my guess is that this is an intel 443mx chipset. that message, "unable to map register space" is not generated by the ich/443mx driver, so i doubt it's actually a sound issue. in other words, prod mike until he fix

Re: my psm0 doesn't work with new acpi :(

2001-09-04 Thread Kazutaka YOKOTA
>> Please apply the attached patch in /sys/isa and see what it does. >It does panic with a smiling face ;-))) > >panic message was "bad ivar read request" Would try the following patch for /sys/isa/psm.c IN ADDITION TO my previous patch? (This is a test patch. It's not a final fix.) Kazu --- p

Re: my psm0 doesn't work with new acpi :( (fwd)

2001-09-04 Thread Harti Brandt
> ISH>On Tue, 4 Sep 2001, Kazutaka YOKOTA wrote: > ISH> > ISH>> Please apply the attached patch in /sys/isa and see what it does. > ISH>It does panic with a smiling face ;-))) > ISH> > ISH>panic message was "bad ivar read request" > > it fails in acpi_read_ivar with an index (3rd argument) of 12.

Re: my psm0 doesn't work with new acpi :(

2001-09-04 Thread Ilmar S. Habibulin
On Tue, 4 Sep 2001, Kazutaka YOKOTA wrote: > Would try the following patch for /sys/isa/psm.c IN ADDITION TO > my previous patch? > > (This is a test patch. It's not a final fix.) panic: nexus_setup_intr: NULL irq resource! To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe f

Re: Junior Kernel Hacker task: improve vnode->v_tag

2001-09-04 Thread Maxim Sobolev
> In message <[EMAIL PROTECTED]>, Maxim Sobolev writes: > >> > >> In message <[EMAIL PROTECTED]>, Brent Verner writes: > >> > > >> >I've done a /cursory/ look over how this v_tag is used. I'm not sure > >> >this is a simple/clean as you propose, since this is used in the > >> >IS_LOCKING_VFS ma

Re: proctitle progress reporting for dump(8)

2001-09-04 Thread Ruslan Ermilov
On Sun, Sep 02, 2001 at 04:15:14PM -0400, Mikhail Teterin wrote: [...] > The SIGINFO handling seemed to be as simple as: > --- main.c2001/07/09 03:06:56 1.26 > +++ main.c2001/09/02 19:58:21 > @@ -274,2 +274,4 @@ > > + if (signal(SIGINFO, SIG_IGN) != SIG_IGN) > + signa

Re: Junior Kernel Hacker task: improve vnode->v_tag

2001-09-04 Thread Konstantin Chuguev
Hi Maxim, Perhaps you meant: diff -d -u -r1.154 vnode.h --- sys/vnode.h 2001/08/27 06:09:55 1.154 +++ sys/vnode.h 2001/09/04 15:21:25 @@ -175,6 +175,7 @@ /* open for business 0x10 */ #defineVONWORKLST 0x20 /* On syncer work-list */ #defineVMOUNT 0x40

Re: Junior Kernel Hacker task: improve vnode->v_tag

2001-09-04 Thread Poul-Henning Kamp
apart from the numerical value, yes, looks good. Poul-Henning In message <[EMAIL PROTECTED]>, Maxim Sobolev writes: > >--%--multipart-mixed-boundary-1.97537.999617732--% >Content-Type: text/plain; charset=us-ascii >Content-Transfer-Encoding: 7bit > >> In message <[EMAIL PROTECTED]>, Maxim Sobol

Re: Junior Kernel Hacker task: improve vnode->v_tag

2001-09-04 Thread Maxim Sobolev
> > Hi Maxim, > > Perhaps you meant: > diff -d -u -r1.154 vnode.h > --- sys/vnode.h 2001/08/27 06:09:55 1.154 > +++ sys/vnode.h 2001/09/04 15:21:25 > @@ -175,6 +175,7 @@ > /* open for business 0x10 */ > #defineVONWORKLST 0x20 /* On syncer work-list */ > #define

Re: trying to play sound in -current

2001-09-04 Thread John Baldwin
On 04-Sep-01 David W. Chapman Jr. wrote: > On Mon, Sep 03, 2001 at 08:44:58PM -0700, John Baldwin wrote: >> >> On 02-Sep-01 Julian Elischer wrote: >> > "David W. Chapman Jr." wrote: >> >> >> >> I get this a lot recently when I try to play anything >> >> >> >> > echo test > /dev/dsp0 >> >> /dev

Re: Junior Kernel Hacker task: improve vnode->v_tag

2001-09-04 Thread Boris Popov
On Tue, 4 Sep 2001, Maxim Sobolev wrote: > > The places which inspect v_tag will have to be changed to use > > strcmp() then... > > I think that we can add a new vnode flag, say VCANLOCK, so that each > particular VFS can set it if it supports locking, which should allow > to remove pre-defined

Re: Firewire driver available

2001-09-04 Thread NAKAMURA Kazushi
In article <[EMAIL PROTECTED]> [EMAIL PROTECTED] writes: >Is there any chance that the OHCI code inthe firewire driver and the OHCI >code in the USB drivers might be rationalised? There is a IEEE1394 patch for 4.4RC1. It works on my N/B IEEE1394 4-port I/F, that uses VIA VT6306 chip. I bought it

Re: Junior Kernel Hacker task: improve vnode->v_tag

2001-09-04 Thread Maxim Sobolev
> > In message <[EMAIL PROTECTED]>, Brent Verner writes: > >On 04 Sep 2001 at 10:36 (+0200), Poul-Henning Kamp wrote: > >| > >| Assignment: > >| > >| The v_tag element in struct vnode is a debugging aid, but unfortunately > >| it is implemented in a way which means that adding a filesystem mean

Re: Junior Kernel Hacker task: improve vnode->v_tag

2001-09-04 Thread Poul-Henning Kamp
In message <[EMAIL PROTECTED]>, Maxim Sobolev writes: >> >> In message <[EMAIL PROTECTED]>, Brent Verner writes: >> >On 04 Sep 2001 at 10:36 (+0200), Poul-Henning Kamp wrote: >> >| >> >| Assignment: >> >| >> >| The v_tag element in struct vnode is a debugging aid, but unfortunately >> >| it is

Re: Firewire driver available

2001-09-04 Thread Katsushi Kobayashi
I have read the specification of OHCI USB only once. I guess the OHCI specification for firewire and USB has no concern, even if both basic concept to reduce driver developing effort for each vender's products are the same. You can obtain an OHCI chipset specification from http://developer.intel

Re: Firewire driver available

2001-09-04 Thread Katsushi Kobayashi
Hello, I have to notice you that the latest version driver I offered at yesterday does not have any compatibolity with the base-code of your patch. Also, I have once offered FreeBSD folks with the former version at monthes ago. But, they did not accept that one. Anyway, I can add the new chipset

Re: proctitle progress reporting for dump(8)

2001-09-04 Thread Ruslan Ermilov
On Sat, Sep 01, 2001 at 10:36:45PM -0400, Garrett Wollman wrote: > < said: > > > Could you please clarify your position on this issue? Is > > setproctitle() the wrong way to do this, and if so, why? > > I don't expect setproctitle() to be useful to me one way or the > other. SIGINFO, on the o

Re: trying to play sound in -current

2001-09-04 Thread David W. Chapman Jr.
On Tue, Sep 04, 2001 at 09:40:44AM -0700, John Baldwin wrote: > > In fact, am doing so right now inside of KDE (with arts or whatever their sound > daemon is called also running). Granted, it sounds rather weird. :-P > > 915 john -80 5236K 900K pcmwr0:01 1.66% 1.51% mpg123 >

Re: Firewire driver available

2001-09-04 Thread Julian Elischer
For thiose of us that are not firewire experts can you guys tell us: Are we talking about two completely different firewire implementations here? Or ar they based on each other? Are there any major incompatibilities in the designs? It's time to import firewire so I'd like to get one or the othe

Re: Junior Kernel Hacker task: improve vnode->v_tag

2001-09-04 Thread Bruce Evans
On Tue, 4 Sep 2001, Maxim Sobolev wrote: > > [neither Maxim Sobolev nor Brent Verner wrote] > > In message <[EMAIL PROTECTED]>, Brent Verner writes: > > >#include > > > > > >I've done a /cursory/ look over how this v_tag is used. I'm not sure > > >this is a simple/clean as you propose, since th

Re: proctitle progress reporting for dump(8)

2001-09-04 Thread Mikhail Teterin
On 3 Sep, Terry Lambert wrote: >> > >> > I would like it. How often does it update the proctitle? >> >> Whenever it outputs a line to the stderr -- I personally find no >> regularity in that :(. SIGINFO handling is a different thing, though. >> I'll look at that too. Thanks, > It would b

Re: Junior Kernel Hacker task: improve vnode->v_tag

2001-09-04 Thread Maxim Sobolev
> > > apart from the numerical value, yes, looks good. Ok, please find the final patch attached. Dare I say that it looks really ugly? I'm looking forward for your comments. -Maxim > > Poul-Henning > > In message <[EMAIL PROTECTED]>, Maxim Sobolev writes: > > > >--%--multipart-mixed-bounda

Re: syslogd: Too many '/' in "/dev//console"

2001-09-04 Thread Giorgos Keramidas
From: Giorgos Keramidas <[EMAIL PROTECTED]> Subject: Re: syslogd: Too many '/' in "/dev//console" Date: Tue, Sep 04, 2001 at 06:39:36AM +0300 > I'm looking at the diffs from Aug 25, so if I come up with sth by > running syslogd with -d, by tomorrow I'll have spotted this in more > detail - probab

Re: my psm0 doesn't work with new acpi :(

2001-09-04 Thread Kazutaka YOKOTA
>> Would try the following patch for /sys/isa/psm.c IN ADDITION TO >> my previous patch? >> >> (This is a test patch. It's not a final fix.) > >panic: nexus_setup_intr: NULL irq resource! Ok, this is one last test patch. Please remove ALL my previous patches and apply this one in /sys/isa. Than

acpi error

2001-09-04 Thread Beech Rintoul
I'm having a problem with the new acpi. One one of our boxes (amd K7 900 Mhz Compaq) does not probe xl properly. It returns Could not probe memory (returns error6). There is no pnp setting in this bios. I went back to pre-commit and it works fine. Any suggestions? Beech -- Micro$oft: "Where c

Re: acpi error

2001-09-04 Thread Mike Smith
> I'm having a problem with the new acpi. One one of our boxes (amd K7 900 Mhz > Compaq) does not probe xl properly. It returns Could not probe memory > (returns error6). There is no pnp setting in this bios. I went back to > pre-commit and it works fine. Any suggestions? There seems to be a c

Re: acpi error

2001-09-04 Thread Beech Rintoul
On Tuesday 04 September 2001 03:04 pm, Mike Smith wrote: > > I'm having a problem with the new acpi. One one of our boxes (amd K7 900 > > Mhz Compaq) does not probe xl properly. It returns Could not probe memory > > (returns error6). There is no pnp setting in this bios. I went back to > > pre-com

No Subject

2001-09-04 Thread KSrinivasa Raghavan
Hi, For some reasons I was unable to checkout sources from cvs server of FreeBSD sources. I have been using anoncvs.FreeBSD.org to fetch the files. I am getting "Operation timed out" errors. Are there any other cvs servers from which I can check out the sources ? Thanks, Srini. # export CVSR

Re: syslogd: Too many '/' in "/dev//console"

2001-09-04 Thread Mike Heffner
On 04-Sep-2001 Giorgos Keramidas wrote: | | The following patch seems to have fixed the bug for me. | Yea, Kris said he was going to fix it. This must be some undefined behavior because I tested the change in a test program and the two sizeofs were giving me the same result..strange ;) Mike

Re: trying to play sound in -current

2001-09-04 Thread Jim Bryant
John Baldwin wrote: > On 04-Sep-01 David W. Chapman Jr. wrote: > >>On Tue, Sep 04, 2001 at 09:40:44AM -0700, John Baldwin wrote: >> >>>In fact, am doing so right now inside of KDE (with arts or whatever their >>>sound >>>daemon is called also running). Granted, it sounds rather weird. :-P >>> >

Re: trying to play sound in -current

2001-09-04 Thread David W. Chapman Jr.
> I haven't looked at the code, but does a value of 0 for vchans mean > infinite, I know this is a standard use for the value of zero in some > instances... > What what I gather, 0 means none, only use how many channels the sound card has. I'm assuming that John has multiple hardware channel

Re: trying to play sound in -current

2001-09-04 Thread Jim Bryant
David W. Chapman Jr. wrote: >>I haven't looked at the code, but does a value of 0 for vchans mean >>infinite, I know this is a standard use for the value of zero in some >>instances... >> >> > What what I gather, 0 means none, only use how many channels the > sound card has. I'm assuming that

semi-HEADS UP: PnP resouce parser update (was: Re: cvs commit: src/sys/isa pnp.c pnpparse.c pnpvar.h isa_common.c isa_common.h isavar.h src/sys/i386/i386 bios.c)

2001-09-04 Thread Kazutaka YOKOTA
I just committed update to the PnP resource parser for the PnP ISA and PnP BIOS devices. As this is a bug fix, there shouldn't be any nasty surprises. But, if you have PnP ISA cards and encounter any problems or suspicious behavior, please report. Thanks. Kazu >yokota 2001/09/04 20:54:33 PD

Re: getting skipstone/mozilla to compile.

2001-09-04 Thread David Malone
On Mon, Sep 03, 2001 at 03:39:59PM -0500, Alfred Perlstein wrote: > I found that turning off malloc options: > cd /etc ; rm -f malloc.conf ; ln -s aj malloc.conf > > Thanks to David Obrien for giving me the syntax (boy am I lazy), > now it seems to compile fine. The mozilla port should automatic

Re: ACPI breakage on Libretto 110CT with CURRENT

2001-09-04 Thread Mike Smith
> > I assume that the real problem is that the ATA controller failed to attach; > > can you verify that this is the case? > > Bingo. Without ACPI, the machine boots. With ACPI, no ATA. I don't see an ATA probe in here anywhere. I assume you have the ata driver being probed with hints? Can you

Re: Firewire driver available

2001-09-04 Thread Katsushi Kobayashi
Yes, we talk about two implementations. Also both implementations are written by me. The former one is designed for socket basis API for firewire. I have once proposed with the former version. Unfortunately, FreeBSD folks did not accept it. The socket mechanism was pnly one reason, in that time. H

SSH client .shosts auth broken in -CURRENT?

2001-09-04 Thread Thomas Quinot
Did anyone have a chance to look at PR bin/28724? I still cannot get my -current ssh client to connect to an OpenSSH 2.3.0p server using RSAS-Rhosts authentication. I tried with protocol v1 and v2 alike. Other ssh1 clients do connect to the same server with RhostsRSAAuthentication. I have check th

Re: trying to play sound in -current

2001-09-04 Thread John Baldwin
On 04-Sep-01 David W. Chapman Jr. wrote: > On Tue, Sep 04, 2001 at 09:40:44AM -0700, John Baldwin wrote: >> >> In fact, am doing so right now inside of KDE (with arts or whatever their >> sound >> daemon is called also running). Granted, it sounds rather weird. :-P >> >> 915 john -8

Re: my psm0 doesn't work with new acpi :(

2001-09-04 Thread Ilmar S. Habibulin
On Wed, 5 Sep 2001, Kazutaka YOKOTA wrote: > Ok, this is one last test patch. Please remove ALL my previous > patches and apply this one in /sys/isa. Nothing at all, i had to boot with -c option to get any message about psm0. Sendig you dmesg, but i think it wouldn't help much. PS. I just re

Re: my psm0 doesn't work with new acpi :(

2001-09-04 Thread Julian Elischer
"Ilmar S. Habibulin" wrote: > > On Wed, 5 Sep 2001, Kazutaka YOKOTA wrote: > > > Ok, this is one last test patch. Please remove ALL my previous > > patches and apply this one in /sys/isa. > > Nothing at all, i had to boot with -c option to get any message about > psm0. Sendig you dmesg, but i t

Re: my psm0 doesn't work with new acpi :(

2001-09-04 Thread Harti Brandt
On Wed, 5 Sep 2001, Kazutaka YOKOTA wrote: KY>>> Would try the following patch for /sys/isa/psm.c IN ADDITION TO KY>>> my previous patch? KY>>> KY>>> (This is a test patch. It's not a final fix.) KY>> KY>>panic: nexus_setup_intr: NULL irq resource! KY> KY>Ok, this is one last test patch. Please r

Re: syslogd: Too many '/' in "/dev//console"

2001-09-04 Thread Giorgos Keramidas
From: Mike Heffner <[EMAIL PROTECTED]> Subject: Re: syslogd: Too many '/' in "/dev//console" Date: Tue, Sep 04, 2001 at 07:55:33PM -0400 > > On 04-Sep-2001 Giorgos Keramidas wrote: > | > | The following patch seems to have fixed the bug for me. > | > > Yea, Kris said he was going to fix it. T

Anyone else noticed wierdness with netscapes recently?

2001-09-04 Thread Julian Elischer
All the netscapes on all my computers are suddenly acting wierd. It is as if they are finding poison pills on sites all over the net that make them go catatonic. This happens on current machines and on 4.x machines. I don't know it i's paranoia or not but I'm wondering if Microsoft has recently

Re: ACPI problems

2001-09-04 Thread Terry Lambert
Mike Smith wrote: > > > unknown: can't assign resources > > > unknown: at port 0x3f8-0x3ff on isa0 > > > unknown: can't assign resources > > > unknown: at port 0x2f8-0x2ff on isa0 Serial ports... [ ... ] > You're smoking crack, again. Hints don't supply PnP IDs. Still a known problem...