From owner-freebsd-arm@freebsd.org Tue Dec 19 05:04:41 2017 Return-Path: Delivered-To: freebsd-arm@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 58931E86D87 for ; Tue, 19 Dec 2017 05:04:41 +0000 (UTC) (envelope-from 4250.10.freebsd-arm=FreeBSD.org@email-od.com) Received: from bca5.email-od.com (bca5.email-od.com [207.246.239.5]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 2667965027 for ; Tue, 19 Dec 2017 05:04:41 +0000 (UTC) (envelope-from 4250.10.freebsd-arm=FreeBSD.org@email-od.com) DKIM-Signature: v=1; a=rsa-sha256; d=email-od.com;i=@email-od.com;s=dkim; c=relaxed/relaxed; q=dns/txt; t=1513659885; x=1516251885; h=x-thread-info:date:from:to:cc:subject:message-id:in-reply-to:references:mime-version:content-type:content-transfer-encoding; bh=dD1BkkBvJQ0ekFxH3tPMr+NTetJN8vDHWGyPVjACDYA=; b=t3KueFLOMJ80QZdBKL8wpga+SK6Lm8yxNXJAte9NeYwbfDKKdLIgZv/5vcILrbE7LLLDFl/eA2lUHK7aU81XxXTleZRhePrcxOMaCWR5DqT9a3/w3i+916h9i+1Te6WPe/efDivmWHKp2WrGRMVc2hGl2eeBq0u9girHicJOc+k= X-Thread-Info: NDI1MC4xMi44MTAwMDAwMGI3YTg0NS5mcmVlYnNkLWFybT1GcmVlQlNELm9yZw== Received: from r2.us-east.aws.in.socketlabs.com (r2.us-east.aws.in.socketlabs.com [54.85.171.149]) by bca2.email-od.com with ESMTP(version=Tls12 cipher=Aes256 bits=256); Tue, 19 Dec 2017 00:04:36 -0500 Received: from smtp.lan.sohara.org (EMTPY [89.127.62.20]) by r2.us-east.aws.in.socketlabs.com with ESMTP(version=Tls12 cipher=Aes256 bits=256); Tue, 19 Dec 2017 00:04:30 -0500 Received: from [192.168.63.1] (helo=steve.lan.sohara.org) by smtp.lan.sohara.org with smtp (Exim 4.89 (FreeBSD)) (envelope-from ) id 1eRA4q-000GK6-QS; Tue, 19 Dec 2017 05:04:28 +0000 Date: Tue, 19 Dec 2017 05:04:28 +0000 From: Steve O'Hara-Smith 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: References: X-Mailer: Sylpheed 3.6.0 (GTK+ 2.24.31; amd64-portbld-freebsd11.0) X-Clacks-Overhead: "GNU Terry Pratchett" Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Dec 2017 05:04:41 -0000 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 buildworld make kernel KERNCONF=YOUR_KERNEL_HERE [1] [3] mergemaster -Fp [5] make installworld mergemaster -Fi [4] make delete-old [6] ------------------ -- Steve O'Hara-Smith