Add general configuration files used by release/release.sh for

big-iron installation images.

MFC after:	3 days
MFC with:	r325948, r325949, r325950, r325951
Sponsored by:	The FreeBSD Foundation
This commit is contained in:
Glen Barber 2017-11-17 18:00:52 +00:00
parent 3b418d1b9a
commit f295b9db79
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=325953
7 changed files with 73 additions and 0 deletions

10
release/amd64/amd64.conf Normal file
View file

@ -0,0 +1,10 @@
#!/bin/sh
#
# $FreeBSD$
#
# Configuration file for release/release.sh to build amd64/amd64.
TARGET="amd64"
TARGET_ARCH="amd64"
KERNEL="GENERIC"

View file

@ -0,0 +1,11 @@
#!/bin/sh
#
# $FreeBSD$
#
# Configuration file for release/release.sh to build arm64/aarch64
# big-iron installation images (not system-on-chip (SoC) images).
TARGET="arm64"
TARGET_ARCH="aarch64"
KERNEL="GENERIC"

12
release/i386/i386.conf Normal file
View file

@ -0,0 +1,12 @@
#!/bin/sh
#
# $FreeBSD$
#
# Configuration file for release/release.sh to build i386/i386.
# Note: CHROOT_MAKEENV assumes the build host is amd64.
TARGET="i386"
TARGET_ARCH="i386"
KERNEL="GENERIC"
CHROOT_MAKEENV="TARGET=${TARGET} TARGET_ARCH=${TARGET_ARCH}"

View file

@ -0,0 +1,10 @@
#!/bin/sh
#
# $FreeBSD$
#
# Configuration file for release/release.sh to build powerpc/powerpc.
TARGET="powerpc"
TARGET_ARCH="powerpc"
KERNEL="GENERIC"

View file

@ -0,0 +1,10 @@
#!/bin/sh
#
# $FreeBSD$
#
# Configuration file for release/release.sh to build powerpc/powerpc64.
TARGET="powerpc"
TARGET_ARCH="powerpc64"
KERNEL="GENERIC64"

View file

@ -0,0 +1,10 @@
#!/bin/sh
#
# $FreeBSD$
#
# Configuration file for release/release.sh to build powerpc/powerpcspe.
TARGET="powerpc"
TARGET_ARCH="powerpcspe"
KERNEL="MPC85XXSPE"

View file

@ -0,0 +1,10 @@
#!/bin/sh
#
# $FreeBSD$
#
# Configuration file for release/release.sh to build sparc64/sparc64.
TARGET="sparc64"
TARGET_ARCH="sparc64"
KERNEL="GENERIC"