Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 2 Mar 2019 10:46:25 +0100
From:      Miroslav Lachman <000.fbsd@quip.cz>
To:        Lee Damon <nomad@castle.org>, freebsd-stable@freebsd.org
Subject:   Re: more fun, upgrading from 10.3-STABLE 10.4-RELENG to 11.2-RELENG - kernel panic
Message-ID:  <f64001f7-23cc-dd9d-1372-631dd397b6be@quip.cz>
In-Reply-To: <cf4a083a-f42c-38d4-0e7e-85cf534608a9@castle.org>
References:  <987591af-c860-2427-0f44-7e4cb491ff68@castle.org> <1e7a5b3a-16a0-fc4d-9a65-631bb177f68d@quip.cz> <487c50a4-216b-efc6-044f-80114749bf86@castle.org> <824b0eaf-c99e-84b1-ef50-c5b1c6ae5ed4@quip.cz> <cf4a083a-f42c-38d4-0e7e-85cf534608a9@castle.org>

next in thread | previous in thread | raw e-mail | index | archive | help
Lee Damon wrote on 2019/03/02 01:36:
> On 3/1/19 15:38 , Miroslav Lachman wrote:
>> Did you tried to boot "safe mode"? (selectable in boot menu).
> 
> I completely forgot about safe mode.
> 
> Yep. It boots. I'm going to finish the freebsd-update process then 
> reboot into safe mode again. I'm out of time to work on this today and 
> am only in this lab on Fridays so I'll have to pick up working on this 
> problem next Friday.

Glad to know something finally works :)

You can look in to /boot/menu-commands.4th there is definition what Safe 
Mode disable


: safemode_enabled? ( -- flag )
         s" kern.smp.disabled" getenv -1 <> dup if
                 swap drop ( c-addr flag -- flag )
         then
;

: safemode_enable ( -- )
         s" set kern.smp.disabled=1" evaluate
         s" set hw.ata.ata_dma=0" evaluate
         s" set hw.ata.atapi_dma=0" evaluate
         s" set hw.ata.wc=0" evaluate
         s" set hw.eisa_slots=0" evaluate
         s" set kern.eventtimer.periodic=1" evaluate
         s" set kern.geom.part.check_integrity=0" evaluate
;

You can play with these items one by one to find what is the root cause 
in your case.

Miroslav Lachman



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?f64001f7-23cc-dd9d-1372-631dd397b6be>