I am upgrade system to latest -STABLE and now see kernel crash: - loading virtualbox modules build on 11.1-RELEASE-p6 - loading nvidia module build on 11.1-RELEASE-p6 and start xdm Is this expected? I am mean about loading modules builded on 11.1-RELEASE on any 11.1-STABLE.
> On Mar 28, 2018, at 9:09 AM, Slawa Olhovchenkov <slw at zxy.spb.ru> wrote: > > I am upgrade system to latest -STABLE and now see kernel crash: > > - loading virtualbox modules build on 11.1-RELEASE-p6 > - loading nvidia module build on 11.1-RELEASE-p6 and start xdm > > Is this expected? I am mean about loading modules builded on > 11.1-RELEASE on any 11.1-STABLE.I had a similar issue and it caused a kernel coredump I tracked the virtualbox issue to something in the vbox network module . Rebuilding it fixes it but I am not sure what broke . I have a kernel core dump if anyone wants a peak. --- Mark Saad | nonesuch at longcount.org> _______________________________________________ > freebsd-stable at freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe at freebsd.org"
On Wed, Mar 28, 2018 at 04:09:04PM +0300, Slawa Olhovchenkov wrote:> I am upgrade system to latest -STABLE and now see kernel crash: > > - loading virtualbox modules build on 11.1-RELEASE-p6 > - loading nvidia module build on 11.1-RELEASE-p6 and start xdm > > Is this expected? I am mean about loading modules builded on > 11.1-RELEASE on any 11.1-STABLE.Did you rebuild your virtualbox and nvidia modules for your new kernel? If you build a new kernel, then you need to rebuild any modules that were installed from ports for the new version. You can do this manually, or by adding a PORTS_MODULES line to /etc/make.conf. This will rebuild the listed modules from ports when you build a new kernel. I think this will do what you need (double-check that these are the right port names): PORTS_MODULES= emulators/virtualbox-ose-kmod x11/nvidia-driver -gregory -- gregory byshenk - gbyshenk at byshenk.net - Leiden, NL
On 03/28/2018 08:09, Slawa Olhovchenkov wrote:> I am upgrade system to latest -STABLE and now see kernel crash: > > - loading virtualbox modules build on 11.1-RELEASE-p6 > - loading nvidia module build on 11.1-RELEASE-p6 and start xdm > > Is this expected? I am mean about loading modules builded on > 11.1-RELEASE on any 11.1-STABLE.This is not expected. Can you bisect to find the stable/11 commit that broke this? If you can roll back to 11.1-RELEASE, you could probably just buildkernel and installkernel from various points along stable/11. That would save a lot of time by avoiding buildworld. Eric