Re: [CURRENT]: r285995: BROKEN! buildkernel fails in kern_shutdown.c

2015-07-29 Thread O. Hartmann
Am Wed, 29 Jul 2015 15:24:22 +0300
Alexandr Krivulya shur...@shurik.kiev.ua schrieb:

 29.07.2015 08:50, Conrad Meyer пишет:
  On Tue, Jul 28, 2015 at 10:21 PM, O. Hartmann
  ohart...@zedat.fu-berlin.de wrote:
  On Tue, 28 Jul 2015 21:58:26 -0700
  Conrad Meyer cse@gmail.com wrote:
 
  On Tue, Jul 28, 2015 at 9:35 PM, O. Hartmann
  ohart...@zedat.fu-berlin.de wrote:
  Sources as of r285995 fail to build kernel with
 
  [...]
  --- kernel ---
  linking kernel
  kern_shutdown.o: In function `kern_reboot':
  /usr/src/sys/kern/kern_shutdown.c:(.text+0x2e6): undefined reference to
  `bufshutdown' *** [kernel] Error code 1
 
  Hi,
 
  It appears you've got an old version of vfs_bio.o cached. Try deleting
  that and building.
 
  Best,
  Conrad
  I doubt that. When I start building world this morning, I deleted 
  /usr/obj/*.
  So it should be not as you presumed.
 
  I just did a
 
  make -j12 kernel
 
  in /usr/src again and it failed at the very same position. Again, the 
  source
  tree has been recently updated, afterwards I started buidlworld on a
  deleted/fresh /usr/obj.
 
  Well, r285993 is probably the offending commit. It looks ok to me,
  though I also hit:
 
  kern_shutdown.o: In function `kern_reboot':
  /usr/home/cmeyer/src/freebsd/sys/kern/kern_shutdown.c:315: undefined
  reference to `bufshutdown'
 
 
 Fixed in r286002

Thank you.


pgpxaAB9nO3pp.pgp
Description: OpenPGP digital signature


Re: [CURRENT]: r285995: BROKEN! buildkernel fails in kern_shutdown.c

2015-07-29 Thread Alexandr Krivulya
29.07.2015 08:50, Conrad Meyer пишет:
 On Tue, Jul 28, 2015 at 10:21 PM, O. Hartmann
 ohart...@zedat.fu-berlin.de wrote:
 On Tue, 28 Jul 2015 21:58:26 -0700
 Conrad Meyer cse@gmail.com wrote:

 On Tue, Jul 28, 2015 at 9:35 PM, O. Hartmann
 ohart...@zedat.fu-berlin.de wrote:
 Sources as of r285995 fail to build kernel with

 [...]
 --- kernel ---
 linking kernel
 kern_shutdown.o: In function `kern_reboot':
 /usr/src/sys/kern/kern_shutdown.c:(.text+0x2e6): undefined reference to
 `bufshutdown' *** [kernel] Error code 1

 Hi,

 It appears you've got an old version of vfs_bio.o cached. Try deleting
 that and building.

 Best,
 Conrad
 I doubt that. When I start building world this morning, I deleted /usr/obj/*.
 So it should be not as you presumed.

 I just did a

 make -j12 kernel

 in /usr/src again and it failed at the very same position. Again, the source
 tree has been recently updated, afterwards I started buidlworld on a
 deleted/fresh /usr/obj.

 Well, r285993 is probably the offending commit. It looks ok to me,
 though I also hit:

 kern_shutdown.o: In function `kern_reboot':
 /usr/home/cmeyer/src/freebsd/sys/kern/kern_shutdown.c:315: undefined
 reference to `bufshutdown'


Fixed in r286002
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org

[CURRENT]: r285995: BROKEN! buildkernel fails in kern_shutdown.c

2015-07-28 Thread O. Hartmann
Sources as of r285995 fail to build kernel with

[...]
--- kernel ---
linking kernel
kern_shutdown.o: In function `kern_reboot':
/usr/src/sys/kern/kern_shutdown.c:(.text+0x2e6): undefined reference to
`bufshutdown' *** [kernel] Error code 1


Regards,

oh
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: [CURRENT]: r285995: BROKEN! buildkernel fails in kern_shutdown.c

2015-07-28 Thread Conrad Meyer
On Tue, Jul 28, 2015 at 9:35 PM, O. Hartmann
ohart...@zedat.fu-berlin.de wrote:
 Sources as of r285995 fail to build kernel with

 [...]
 --- kernel ---
 linking kernel
 kern_shutdown.o: In function `kern_reboot':
 /usr/src/sys/kern/kern_shutdown.c:(.text+0x2e6): undefined reference to
 `bufshutdown' *** [kernel] Error code 1


Hi,

It appears you've got an old version of vfs_bio.o cached. Try deleting
that and building.

Best,
Conrad
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: [CURRENT]: r285995: BROKEN! buildkernel fails in kern_shutdown.c

2015-07-28 Thread O. Hartmann
On Tue, 28 Jul 2015 21:58:26 -0700
Conrad Meyer cse@gmail.com wrote:

 On Tue, Jul 28, 2015 at 9:35 PM, O. Hartmann
 ohart...@zedat.fu-berlin.de wrote:
  Sources as of r285995 fail to build kernel with
 
  [...]
  --- kernel ---
  linking kernel
  kern_shutdown.o: In function `kern_reboot':
  /usr/src/sys/kern/kern_shutdown.c:(.text+0x2e6): undefined reference to
  `bufshutdown' *** [kernel] Error code 1
 
 
 Hi,
 
 It appears you've got an old version of vfs_bio.o cached. Try deleting
 that and building.
 
 Best,
 Conrad

I doubt that. When I start building world this morning, I deleted /usr/obj/*.
So it should be not as you presumed.

I just did a 

make -j12 kernel 

in /usr/src again and it failed at the very same position. Again, the source
tree has been recently updated, afterwards I started buidlworld on a
deleted/fresh /usr/obj.
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: [CURRENT]: r285995: BROKEN! buildkernel fails in kern_shutdown.c

2015-07-28 Thread Conrad Meyer
On Tue, Jul 28, 2015 at 10:21 PM, O. Hartmann
ohart...@zedat.fu-berlin.de wrote:
 On Tue, 28 Jul 2015 21:58:26 -0700
 Conrad Meyer cse@gmail.com wrote:

 On Tue, Jul 28, 2015 at 9:35 PM, O. Hartmann
 ohart...@zedat.fu-berlin.de wrote:
  Sources as of r285995 fail to build kernel with
 
  [...]
  --- kernel ---
  linking kernel
  kern_shutdown.o: In function `kern_reboot':
  /usr/src/sys/kern/kern_shutdown.c:(.text+0x2e6): undefined reference to
  `bufshutdown' *** [kernel] Error code 1


 Hi,

 It appears you've got an old version of vfs_bio.o cached. Try deleting
 that and building.

 Best,
 Conrad

 I doubt that. When I start building world this morning, I deleted /usr/obj/*.
 So it should be not as you presumed.

 I just did a

 make -j12 kernel

 in /usr/src again and it failed at the very same position. Again, the source
 tree has been recently updated, afterwards I started buidlworld on a
 deleted/fresh /usr/obj.


Well, r285993 is probably the offending commit. It looks ok to me,
though I also hit:

kern_shutdown.o: In function `kern_reboot':
/usr/home/cmeyer/src/freebsd/sys/kern/kern_shutdown.c:315: undefined
reference to `bufshutdown'


Best,
Conrad
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org