2013-06-12 13:15:28 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
|
2014-08-06 19:06:38 +00:00
|
|
|
## Redefine environment variables here to override prototypes
|
|
|
|
## defined in release.sh.
|
|
|
|
#load_chroot_env() { }
|
|
|
|
#load_target_env() { }
|
2015-04-21 00:48:35 +00:00
|
|
|
#buildenv_setup() { }
|
Merge the following from ^/projects/release-noxdev:
r269549, r269551, r269552, r269553, r269554, r269555, r269558, r269559,
r269560, r269561, r269628, r269629, r269630, r269635, r269637:
r269549:
Create a new project branch, release-noxdev, for
a sandbox workspace outside of head/ to update the
release bits for arm builds since the deprecation of
the XDEV and XDEV_ARCH make(1) variables.
r269551:
Define load_chroot_env() and load_target_env()
prototypes.
r269552:
Call load_chroot_env() and load_target_env() where
they can be mutually conflicting with regard to
TARGET, TARGET_ARCH, XDEV, and XDEV_ARCH.
r269553:
Add shebang line to arm/*.conf files since these
should be considered to be executable (albeit not
on their own) shell scripts.
r269554:
Redefine load_chroot_env() and load_target_env() in
the arm/*.conf files, and reindent.
r269555:
Simplify where load_chroot_env() and load_target_env() are
called.
r269558:
Provide example in release.conf.sample for overriding the
load_chroot_env() and load_target_env() prototypes.
r269559:
Remove a gratuitous newline.
r269560:
Unset potentially conflicting variables in load_chroot_env()
and load_target_env().
r269561:
Make global variables global, and accessible outside of
the functions within which they were once defined.
r269628:
Remove XDEV/XDEV_ARCH evaluation if EMBEDDEDBUILD is set.
r269629:
In arm/release.sh, switch TARGET/TARGET_ARCH back to the
original XDEV/XDEV_ARCH make(1) variables.
In theory, this should have been a no-op, but the TARGET and
TARGET_ARCH are now unset in load_target_env() to avoid
collision with the chroot userland.
r269630:
Export variables in the arm/*.conf files because they
need to be passed through release.sh to arm/release.sh.
Set MK_TESTS=no for the xdev target.
r269635:
As part of the XDEV/XDEV_ARCH deprecation, the
'xdev-links' target was intentionally no longer
invoked automatically.
Invoke the xdev-links target after xdev, which
creates, for example, /usr/bin/armv6-freebsd-cc
symlink to /usr/armv6-freebsd/usr/bin/cc.
r269637:
Set TARGET and TARGET_ARCH to the XDEV and XDEV_ARCH
counterparts for the xdev and xdev-links make(1)
targets.
Sponsored by: The FreeBSD Foundation
2014-08-06 19:04:05 +00:00
|
|
|
|
2013-06-12 13:15:28 +00:00
|
|
|
## Set the directory within which the release will be built.
|
|
|
|
CHROOTDIR="/scratch"
|
|
|
|
|
2020-09-11 17:04:09 +00:00
|
|
|
## Do not explicitly require the devel/git port to be installed.
|
|
|
|
#NOGIT=1
|
2020-07-31 19:31:52 +00:00
|
|
|
## Set the version control system host.
|
2020-12-29 14:34:05 +00:00
|
|
|
GITROOT="https://git.freebsd.org/"
|
2020-07-31 19:31:52 +00:00
|
|
|
GITSRC="src.git"
|
|
|
|
GITPORTS="ports.git"
|
2013-06-12 13:15:28 +00:00
|
|
|
|
|
|
|
## Set the src/, ports/, and doc/ branches or tags.
|
2020-07-31 19:31:52 +00:00
|
|
|
SRCBRANCH="main"
|
|
|
|
PORTBRANCH="main"
|
2013-06-12 13:15:28 +00:00
|
|
|
|
2020-07-31 19:31:52 +00:00
|
|
|
## Sample configuration for using git from ports.
|
2020-08-12 16:25:25 +00:00
|
|
|
#GITCMD="/usr/local/bin/git clone -q --branch main"
|
2014-02-25 22:13:48 +00:00
|
|
|
|
2013-06-12 13:15:28 +00:00
|
|
|
## Set to override the default target architecture.
|
|
|
|
#TARGET="amd64"
|
|
|
|
#TARGET_ARCH="amd64"
|
|
|
|
#KERNEL="GENERIC"
|
2013-07-05 22:04:49 +00:00
|
|
|
## Multiple kernels may be set.
|
|
|
|
#KERNEL="GENERIC XENHVM"
|
2013-06-12 13:15:28 +00:00
|
|
|
|
|
|
|
## Set to specify a custom make.conf and/or src.conf
|
|
|
|
#MAKE_CONF="/etc/local/make.conf"
|
|
|
|
#SRC_CONF="/etc/local/src.conf"
|
|
|
|
|
|
|
|
## Set to use make(1) flags.
|
|
|
|
#MAKE_FLAGS="-s"
|
|
|
|
|
|
|
|
## Set to use world- and kernel-specific make(1) flags.
|
|
|
|
#WORLD_FLAGS="-j $(sysctl -n hw.ncpu)"
|
2014-02-26 01:19:52 +00:00
|
|
|
#KERNEL_FLAGS="-j $(( $(( $(sysctl -n hw.ncpu) + 1 )) / 2 ))"
|
2013-06-12 13:15:28 +00:00
|
|
|
|
|
|
|
## Set miscellaneous 'make release' settings.
|
|
|
|
#NOPORTS=
|
2016-06-03 18:37:56 +00:00
|
|
|
#NOSRC=
|
2013-12-07 19:39:38 +00:00
|
|
|
#WITH_DVD=
|
2014-04-01 22:41:26 +00:00
|
|
|
#WITH_COMPRESSED_IMAGES=
|
2014-01-19 22:25:57 +00:00
|
|
|
|
2015-02-20 18:51:52 +00:00
|
|
|
## Set to '1' to disable multi-threaded xz(1) compression.
|
|
|
|
#XZ_THREADS=0
|
|
|
|
|
2014-01-19 22:25:57 +00:00
|
|
|
## Set when building embedded images.
|
|
|
|
#EMBEDDEDBUILD=
|
|
|
|
|
2017-11-28 18:02:58 +00:00
|
|
|
## Set to a list of ports required to build embedded system-on-chip
|
|
|
|
## images, such as sysutils/u-boot-rpi.
|
|
|
|
#EMBEDDEDPORTS=
|
|
|
|
|
|
|
|
## Set to the hardware platform of the target userland. This value
|
|
|
|
## is passed to make(1) to set the TARGET (value of uname -m) to cross
|
|
|
|
## build.
|
|
|
|
#EMBEDDED_TARGET=
|
|
|
|
|
2017-11-28 18:08:14 +00:00
|
|
|
## Set to the machine processor architecture of the target userland.
|
|
|
|
## This value is passed to make(1) to set the TARGET_ARCH (value of uname -p)
|
|
|
|
## to cross build.
|
2017-11-28 18:02:58 +00:00
|
|
|
#EMBEDDED_TARGET_ARCH=
|
|
|
|
|
Merge ^/projects/release-embedded into ^/head.
After several months of testing and fixing (and breaking)
various parts of release/release.sh changes, it is now
possible to build FreeBSD/arm images as part of the release
process.
When EMBEDDEDBUILD is set in the release.conf file, release.sh
will create the build environment, then run a separate script
in release/${XDEV}/release.sh [1]. Currently, only arm is
supported.
The release/${XDEV}/release.sh configures the build environment
specific for the target image, such as installing gcc(1),
installing additional third-party software from the ports tree,
and fetching external sources.
Once the build environment is set up, release/${XDEV}/release.sh
runs Crochet, written by Tim Kientzle, which builds the userland
and kernel, and creates an image that can be written to an SD
card with dd(1). Many thanks to Tim for his work on Crochet.
Sample configurations for FreeBSD/arm boards are in the
release/arm/ directory, and Crochet configuration files for each
board are located in release/tools/arm/. Supported boards at this
time are: BEAGLEBONE, PANDABOARD, RPI-B, and WANDBOARD-QUAD.
Adding support for additional boards will continue in the
projects/release-embedded/ branch, and incrementally merged back
to head/.
Many thanks to the FreeBSD Foundation for the support and
sponsorship of this project.
[1] XDEV is used in order to keep the various configurations
organized by architecture, but since TARGET and TARGET_ARCH
are used to build the chroot, the values of those variables
cannot be used.
MFC after: 1 month
Sponsored by: The FreeBSD Foundation
2014-03-05 23:17:53 +00:00
|
|
|
## Set to skip the chroot environment buildworld/installworld/distribution
|
|
|
|
## step if it is expected the build environment will exist via alternate
|
|
|
|
## means.
|
|
|
|
#CHROOTBUILD_SKIP=
|
|
|
|
|
2014-04-11 13:48:45 +00:00
|
|
|
## Set to a non-empty value skip checkout or update of /usr/src in
|
|
|
|
## the chroot. This is intended for use when /usr/src already exists.
|
|
|
|
#SRC_UPDATE_SKIP=
|
|
|
|
|
|
|
|
## Set to a non-empty value skip checkout or update of /usr/ports in
|
|
|
|
## the chroot. This is intended for use when /usr/ports already exists.
|
|
|
|
#PORTS_UPDATE_SKIP=
|
|
|
|
|
Merge ^/projects/release-embedded into ^/head.
After several months of testing and fixing (and breaking)
various parts of release/release.sh changes, it is now
possible to build FreeBSD/arm images as part of the release
process.
When EMBEDDEDBUILD is set in the release.conf file, release.sh
will create the build environment, then run a separate script
in release/${XDEV}/release.sh [1]. Currently, only arm is
supported.
The release/${XDEV}/release.sh configures the build environment
specific for the target image, such as installing gcc(1),
installing additional third-party software from the ports tree,
and fetching external sources.
Once the build environment is set up, release/${XDEV}/release.sh
runs Crochet, written by Tim Kientzle, which builds the userland
and kernel, and creates an image that can be written to an SD
card with dd(1). Many thanks to Tim for his work on Crochet.
Sample configurations for FreeBSD/arm boards are in the
release/arm/ directory, and Crochet configuration files for each
board are located in release/tools/arm/. Supported boards at this
time are: BEAGLEBONE, PANDABOARD, RPI-B, and WANDBOARD-QUAD.
Adding support for additional boards will continue in the
projects/release-embedded/ branch, and incrementally merged back
to head/.
Many thanks to the FreeBSD Foundation for the support and
sponsorship of this project.
[1] XDEV is used in order to keep the various configurations
organized by architecture, but since TARGET and TARGET_ARCH
are used to build the chroot, the values of those variables
cannot be used.
MFC after: 1 month
Sponsored by: The FreeBSD Foundation
2014-03-05 23:17:53 +00:00
|
|
|
## Set to pass additional flags to make(1) for the build chroot setup, such
|
|
|
|
## as TARGET/TARGET_ARCH.
|
|
|
|
#CHROOT_MAKEENV=
|
2014-01-19 22:25:57 +00:00
|
|
|
|
2014-09-28 17:53:10 +00:00
|
|
|
## Set to a non-empty value to build virtual machine images as part of the
|
|
|
|
## release build.
|
|
|
|
#WITH_VMIMAGES=
|
|
|
|
|
2014-10-02 00:34:03 +00:00
|
|
|
## Set to a non-empty value to compress virtual machine images with xz(1)
|
|
|
|
## as part of the release build.
|
|
|
|
#WITH_COMPRESSED_VMIMAGES=
|
|
|
|
|
2014-09-28 17:53:10 +00:00
|
|
|
## If WITH_VMIMAGES is set to a non-empty value, this is the name of the
|
|
|
|
## file to use for the installed userland/kernel.
|
|
|
|
#VMBASE="vm"
|
|
|
|
|
|
|
|
## If WITH_VMIMAGES is set to a non-empty value, this is the size of the
|
|
|
|
## virtual machine disk filesystem. Valid size values are described in
|
2021-03-04 13:39:43 +00:00
|
|
|
## the makefs(8) manual page.
|
|
|
|
#VMSIZE="20g"
|
2014-09-28 17:53:10 +00:00
|
|
|
|
|
|
|
## If WITH_VMIMAGES is set to a non-empty value, this is a list of disk
|
|
|
|
## image formats to create. Valid values are listed in the mkimg(1)
|
|
|
|
## manual page, as well as 'mkimg --formats' output.
|
|
|
|
#VMFORMATS="vhdf vmdk qcow2 raw"
|
2014-11-04 00:02:23 +00:00
|
|
|
|
|
|
|
## Set to a non-empty value to build virtual machine images for various
|
|
|
|
## cloud providers as part of the release build.
|
|
|
|
#WITH_CLOUDWARE=
|
|
|
|
|
|
|
|
## If WITH_CLOUDWARE is set to a non-empty value, this is a list of providers
|
|
|
|
## to create disk images.
|
2016-05-26 18:50:57 +00:00
|
|
|
#CLOUDWARE="EC2 GCE VAGRANT-VIRTUALBOX VAGRANT-VMWARE"
|