From nobody Mon Nov 22 00:46:15 2021 X-Original-To: dev-commits-src-branches@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 82A171888242; Mon, 22 Nov 2021 00:46:15 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4Hy7qq2qMdz4bVX; Mon, 22 Nov 2021 00:46:15 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 32574196CB; Mon, 22 Nov 2021 00:46:15 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 1AM0kFM8098864; Mon, 22 Nov 2021 00:46:15 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 1AM0kF17098863; Mon, 22 Nov 2021 00:46:15 GMT (envelope-from git) Date: Mon, 22 Nov 2021 00:46:15 GMT Message-Id: <202111220046.1AM0kF17098863@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org From: Warner Losh Subject: git: 8d5fd8e04f3c - stable/13 - Add warning that MIPS is being removed in FreeBSD 14.0 List-Id: Commits to the stable branches of the FreeBSD src repository List-Archive: https://lists.freebsd.org/archives/dev-commits-src-branches List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-dev-commits-src-branches@freebsd.org X-BeenThere: dev-commits-src-branches@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: imp X-Git-Repository: src X-Git-Refname: refs/heads/stable/13 X-Git-Reftype: branch X-Git-Commit: 8d5fd8e04f3ce014b8f83bdebdb27dddccea3dda Auto-Submitted: auto-generated X-ThisMailContainsUnwantedMimeParts: N The branch stable/13 has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=8d5fd8e04f3ce014b8f83bdebdb27dddccea3dda commit 8d5fd8e04f3ce014b8f83bdebdb27dddccea3dda Author: Warner Losh AuthorDate: 2021-11-19 04:21:55 +0000 Commit: Warner Losh CommitDate: 2021-11-22 00:45:28 +0000 Add warning that MIPS is being removed in FreeBSD 14.0 MFC After: 3 days Sponsored by: Netflix Reviewed by: brooks, jhb Differential Revision: https://reviews.freebsd.org/D32853 (cherry picked from commit 27a04f59646bea70e8461095eb835e92066702ef) --- Makefile.inc1 | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile.inc1 b/Makefile.inc1 index 4fa955779c1f..4439b9ef67d4 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -1182,6 +1182,10 @@ _ncpu_cmd=sysctl -n hw.ncpu 2>/dev/null || nproc 2>/dev/null || echo unknown buildworld_prologue: .PHONY @echo "--------------------------------------------------------------" @echo ">>> World build started on `LC_ALL=C date`" +.if ${TARGET:Mmips} + @echo "--------------------------------------------------------------" + @echo "WARNING: MIPS architecture is gone in FreeBSD 14.0" +.endif @echo "--------------------------------------------------------------" buildworld_epilogue: .PHONY @@ -1191,6 +1195,10 @@ buildworld_epilogue: .PHONY @seconds=$$(($$(date '+%s') - ${_BUILDWORLD_START})); \ echo -n ">>> World built in $$seconds seconds, "; \ echo "ncpu: $$(${_ncpu_cmd})${.MAKE.JOBS:S/^/, make -j/}" +.if ${TARGET:Mmips} + @echo "--------------------------------------------------------------" + @echo "WARNING: MIPS architecture is gone in FreeBSD 14.0" +.endif @echo "--------------------------------------------------------------" #