diff options
author | Mitchell Horne <mhorne@FreeBSD.org> | 2021-04-29 13:10:08 +0000 |
---|---|---|
committer | Mitchell Horne <mhorne@FreeBSD.org> | 2021-04-29 13:10:08 +0000 |
commit | ac099daf6742ead81ea7ea86351a8ef4e783041b (patch) | |
tree | e4c7f1e842b26f8925ab006855c053a7e1a22d24 | |
parent | a0358e3d5184950b4316f105eb292cbafdea208b (diff) | |
download | src-ac099daf6742.tar.gz src-ac099daf6742.zip |
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
-rw-r--r-- | release/arm/armv7.conf | 8 |
1 files changed, 8 insertions, 0 deletions
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" |