Date: Tue, 19 Dec 2017 05:04:28 +0000 From: Steve O'Hara-Smith <steve@sohara.org> To: bugzilla-noreply@freebsd.org Cc: freebsd-arm@FreeBSD.org Subject: Re: [Bug 224440] Upgrade 11.0-STABLE to 11.1-STABLE Message-ID: <20171219050428.21d9c1e0d732a080e8976d47@sohara.org> In-Reply-To: <bug-224440-7@https.bugs.freebsd.org/bugzilla/> References: <bug-224440-7@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
On Mon, 18 Dec 2017 23:57:19 +0000 bugzilla-noreply@freebsd.org wrote: > I performed the following steps: > mv /usr/src to /usr/src.old and executed > svnlite checkout https://svn.FreeBSD.org/base/stable/11 /usr/src > svnlite update /usr/src > make buildworld > make buildkernel > make installkernel > shutdown -r now > To my surprise, only the kernel has upgraded to 11.1-STABLE. That should not be a surprise, you haven't done an installworld (best done in single user mode after installing the kernel) so your newly built world is still sitting in /usr/obj. You have also missed a number of other necessary steps from /usr/src/UPDATING - here's the relevant section: ---------------- To rebuild everything and install it on the current system. ----------------------------------------------------------- # Note: sometimes if you are running current you gotta do more than # is listed here if you are upgrading from a really old current. <make sure you have good level 0 dumps> make buildworld make kernel KERNCONF=YOUR_KERNEL_HERE [1] <reboot in single user> [3] mergemaster -Fp [5] make installworld mergemaster -Fi [4] make delete-old [6] <reboot> ------------------ -- Steve O'Hara-Smith <steve@sohara.org>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20171219050428.21d9c1e0d732a080e8976d47>