mirror of
https://github.com/opnsense/src.git
synced 2026-02-19 02:30:08 -05:00
vmimage.subr: Pass $INSTALLOPTS to install*
This makes it possible for a VM build configuration file to pass options to make installworld/installkernel/distribution, e.g. WITHOUT_DEBUG_FILES=YES in order to produce smaller images. Note that these options are only applied at install time, not at build time (since the same build is installed into many different VM images), so not all src.conf options are usable here. Sponsored by: Amazon Differential Revision: https://reviews.freebsd.org/D46506 (cherry picked from commit 81d3df02bcf5ed6e41a91fd9fbc3b81cfe809ff3)
This commit is contained in:
parent
d263bfda82
commit
c8d5eda2d4
1 changed files with 1 additions and 1 deletions
|
|
@ -52,7 +52,7 @@ vm_install_base() {
|
|||
# Installs the FreeBSD userland/kernel to the virtual machine disk.
|
||||
|
||||
cd ${WORLDDIR} && \
|
||||
make DESTDIR=${DESTDIR} \
|
||||
make DESTDIR=${DESTDIR} ${INSTALLOPTS} \
|
||||
installworld installkernel distribution || \
|
||||
err "\n\nCannot install the base system to ${DESTDIR}."
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue