Re: kldxref broken, maybe?

2001-10-10 Thread Crist J. Clark
On Wed, Oct 10, 2001 at 03:52:43PM -0600, Warner Losh wrote: > In message <[EMAIL PROTECTED]> "Crist J. Clark" writes: > : I think just running 'installworld' twice will "fix" it. The error is > : non-fatal, but not without implications. The only one that I am aware > : of is that your system migh

Re: kldxref broken, maybe?

2001-10-10 Thread Mark Peek
At 4:04 PM -0700 10/10/01, Peter Wemm wrote: >Warner Losh wrote: >> In message <[EMAIL PROTECTED]> "Crist J. >>Clark" writes: >> : I think just running 'installworld' twice will "fix" it. The error is >> : non-fatal, but not without implications. The only one that I am aware >> : of is that y

Re: kldxref broken, maybe?

2001-10-10 Thread Peter Wemm
Warner Losh wrote: > In message <[EMAIL PROTECTED]> "Crist J. Clark" writes: > : I think just running 'installworld' twice will "fix" it. The error is > : non-fatal, but not without implications. The only one that I am aware > : of is that your system might have some trouble doing kldload(8) unles

Re: kldxref broken, maybe?

2001-10-10 Thread Warner Losh
In message <[EMAIL PROTECTED]> "Crist J. Clark" writes: : I think just running 'installworld' twice will "fix" it. The error is : non-fatal, but not without implications. The only one that I am aware : of is that your system might have some trouble doing kldload(8) unless : it is given the full pa

Re: kldxref broken, maybe?

2001-10-10 Thread Crist J. Clark
On Wed, Oct 10, 2001 at 11:09:30AM -0700, Mark Peek wrote: > At 9:29 AM -0700 10/10/01, Bruce A. Mah wrote: > >OK, sounds good. Seems to me this is something that might deserve a > >mention in UPDATING. Something like: > > > > During a source upgrade of a 4-STABLE machine to -CURRENT, the >

Re: kldxref broken, maybe?

2001-10-10 Thread Mark Peek
At 9:29 AM -0700 10/10/01, Bruce A. Mah wrote: >OK, sounds good. Seems to me this is something that might deserve a >mention in UPDATING. Something like: > > During a source upgrade of a 4-STABLE machine to -CURRENT, the > installkernel step will attempt to execute a non-existent kld

Re: kldxref broken, maybe?

2001-10-10 Thread Bruce A. Mah
If memory serves me right, Ruslan Ermilov wrote: > On Wed, Oct 10, 2001 at 06:25:48PM +1000, Bruce Evans wrote: > > On Wed, 10 Oct 2001, Ruslan Ermilov wrote: > > > > > I do make -CURRENT worlds every night on a -STABLE box, and the > > > kldxref(8) miss is non-fatal: > > > ... > > > ===> wi > >

Re: kldxref broken, maybe?

2001-10-10 Thread Ruslan Ermilov
On Wed, Oct 10, 2001 at 06:25:48PM +1000, Bruce Evans wrote: > On Wed, 10 Oct 2001, Ruslan Ermilov wrote: > > > I do make -CURRENT worlds every night on a -STABLE box, and the > > kldxref(8) miss is non-fatal: > > ... > > ===> wi > > install -c -o root -g wheel -m 555 if_wi.ko /CURRENT/boot/ker

Re: kldxref broken, maybe?

2001-10-10 Thread Ruslan Ermilov
On Tue, Oct 09, 2001 at 10:49:56AM -0700, Bruce A. Mah wrote: > If memory serves me right, Ruslan Ermilov wrote: > > On Thu, Sep 20, 2001 at 10:19:22PM -0700, Peter Wemm wrote: > > > Warner Losh wrote: > > > > In message Mark Peek writes: > > > > : Install

Re: kldxref broken, maybe?

2001-10-09 Thread Bruce A. Mah
If memory serves me right, Ruslan Ermilov wrote: > On Thu, Sep 20, 2001 at 10:19:22PM -0700, Peter Wemm wrote: > > Warner Losh wrote: > > > In message Mark Peek writes: > > > : Install a -current kernel on a 4.X or pre-kldxref (before 9/10/01) > > > : 5.X

Re: kldxref broken, maybe?

2001-09-21 Thread Garrett Wollman
< said: > foreach $path (`sysctl -n kern.module_path | sed -e 's/;/ /`) > if (-d $path) > kldxref $path > endif > endfor module_path=$(sysctl -n kern.module_path) OIFS="$IFS"; IFS=";" set ${module_path} IFS="$OIFS" for directory; do [ -d ${directory} ] && kldxref ${directory} don

Re: kldxref broken, maybe?

2001-09-20 Thread Ruslan Ermilov
On Thu, Sep 20, 2001 at 10:19:22PM -0700, Peter Wemm wrote: > Warner Losh wrote: > > In message Mark Peek writes: > > : Install a -current kernel on a 4.X or pre-kldxref (before 9/10/01) > > : 5.X system. I sent a note to Warner mentioning he might want to

Re: kldxref broken, maybe?

2001-09-20 Thread Peter Wemm
Warner Losh wrote: > In message Mark Peek writes: > : Install a -current kernel on a 4.X or pre-kldxref (before 9/10/01) > : 5.X system. I sent a note to Warner mentioning he might want to put a > : comment about this in UPDATING. > > I'm just unsure how

Re: kldxref broken, maybe?

2001-09-20 Thread Warner Losh
In message Mark Peek writes: : Install a -current kernel on a 4.X or pre-kldxref (before 9/10/01) : 5.X system. I sent a note to Warner mentioning he might want to put a : comment about this in UPDATING. I'm just unsure how to describe it... Warner To

Re: kldxref broken, maybe?

2001-09-20 Thread Steve Kargl
On Thu, Sep 20, 2001 at 12:05:31PM -0700, David O'Brien wrote: > On Wed, Sep 19, 2001 at 06:22:03PM -0700, Steve Kargl wrote: > > root[265] make installkernel > > cd /usr/obj/usr/src/sys/C456086-A; MAKEOBJDIRPREFIX=/usr/obj > ... > > What steps lead up to this? > ``make buildworld && make kernel

Re: kldxref broken, maybe?

2001-09-20 Thread Mark Peek
At 12:05 PM -0700 9/20/01, David O'Brien wrote: >On Wed, Sep 19, 2001 at 06:22:03PM -0700, Steve Kargl wrote: >> root[265] make installkernel >> cd /usr/obj/usr/src/sys/C456086-A; MAKEOBJDIRPREFIX=/usr/obj >... > >What steps lead up to this? >``make buildworld && make kernel && make kernelinsta

Re: kldxref broken, maybe?

2001-09-20 Thread David O'Brien
On Wed, Sep 19, 2001 at 06:22:03PM -0700, Steve Kargl wrote: > root[265] make installkernel > cd /usr/obj/usr/src/sys/C456086-A; MAKEOBJDIRPREFIX=/usr/obj ... What steps lead up to this? ``make buildworld && make kernel && make kernelinstall'' To Unsubscribe: send mail to [EMAIL PROTECTED] wit

Re: kldxref broken, maybe?

2001-09-20 Thread Ruslan Ermilov
On Thu, Sep 20, 2001 at 09:39:44AM -0700, Steve Kargl wrote: > On Thu, Sep 20, 2001 at 08:01:20AM +0200, Mark Santcroos wrote: > > On Wed, Sep 19, 2001 at 06:22:03PM -0700, Steve Kargl wrote: > > > root[265] make installkernel > > > ===> 3dfx > > > install -C -c -o root -g wheel -m 555 3dfx.ko /

Re: kldxref broken, maybe?

2001-09-20 Thread Steve Kargl
On Thu, Sep 20, 2001 at 08:01:20AM +0200, Mark Santcroos wrote: > On Wed, Sep 19, 2001 at 06:22:03PM -0700, Steve Kargl wrote: > > root[265] make installkernel > > ===> 3dfx > > install -C -c -o root -g wheel -m 555 3dfx.ko /boot/kernel/ > > kldxref /boot/kernel > > kldxref:No such file or direc

Re: kldxref broken, maybe?

2001-09-20 Thread Ruslan Ermilov
On Thu, Sep 20, 2001 at 08:01:20AM +0200, Mark Santcroos wrote: > On Wed, Sep 19, 2001 at 06:22:03PM -0700, Steve Kargl wrote: > > root[265] make installkernel > [...] > > ===> 3dfx > > install -C -c -o root -g wheel -m 555 3dfx.ko /boot/kernel/ > > kldxref /boot/kernel > > kldxref:No such file

Re: kldxref broken, maybe?

2001-09-19 Thread Mark Santcroos
On Wed, Sep 19, 2001 at 06:22:03PM -0700, Steve Kargl wrote: > root[265] make installkernel [...] > ===> 3dfx > install -C -c -o root -g wheel -m 555 3dfx.ko /boot/kernel/ > kldxref /boot/kernel > kldxref:No such file or directory > *** Error code 1 (ignored) kldxref is part of world since 2001

kldxref broken, maybe?

2001-09-19 Thread Steve Kargl
[Note: due to recent events I'm 1500 emails behind in cvs-all and freebsd-current amiling list. If this is a known problem pelase point to the thread.] root[265] make installkernel cd /usr/obj/usr/src/sys/C456086-A; MAKEOBJDIRPREFIX=/usr/obj COMPILER_PATH=/usr/obj/usr/src/i386/usr/libexec:/u