From owner-dev-commits-src-main@freebsd.org Thu Apr 29 13:10:20 2021 Return-Path: Delivered-To: dev-commits-src-main@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4E4F662774B; Thu, 29 Apr 2021 13:10:20 +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 4FWG7w1nBnz4drY; Thu, 29 Apr 2021 13:10:20 +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 3001A1C79C; Thu, 29 Apr 2021 13:10:20 +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 13TDAKIt039920; Thu, 29 Apr 2021 13:10:20 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 13TDAKI2039916; Thu, 29 Apr 2021 13:10:20 GMT (envelope-from git) Date: Thu, 29 Apr 2021 13:10:20 GMT Message-Id: <202104291310.13TDAKI2039916@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Mitchell Horne Subject: git: ac099daf6742 - main - arm: add a release conf for distribution files MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: mhorne X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: ac099daf6742ead81ea7ea86351a8ef4e783041b Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-main@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for the main branch of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 Apr 2021 13:10:20 -0000 The branch main has been updated by mhorne: URL: https://cgit.FreeBSD.org/src/commit/?id=ac099daf6742ead81ea7ea86351a8ef4e783041b commit ac099daf6742ead81ea7ea86351a8ef4e783041b Author: Mitchell Horne AuthorDate: 2021-04-29 13:10:08 +0000 Commit: Mitchell Horne CommitDate: 2021-04-29 13:10:08 +0000 arm: add a release conf for distribution files We do not currently generate armv7 distribution sets, because we don't build any installer images. However, having such sets available can be useful for quickly installing a base system, particularly in the case of creating an armv7 poudriere jail on arm64. Add a configuration file for the generation of these distribution sets. Reviewed by: manu, imp, gjb MFC after: 3 weeks Relnotes: yes Differential Revision: https://reviews.freebsd.org/D29923 --- release/arm/armv7.conf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/release/arm/armv7.conf b/release/arm/armv7.conf new file mode 100644 index 000000000000..174e41615b63 --- /dev/null +++ b/release/arm/armv7.conf @@ -0,0 +1,8 @@ +#!/bin/sh + +# Configuration file for release/release.sh to build arm/armv7 distribution +# images (not system-on-chip (SoC) images). + +TARGET="arm" +TARGET_ARCH="armv7" +KERNEL="GENERIC"