release: move installworld before installkernel
To support -DNO_ROOT work. The top-level installworld target creates a
new METALOG starting with `#mtree 2.0` so it needs to be first, to avoid
overwriting installkernel METALOG entries.
Reviewed by: gjb
MFC after: 1 month
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D29582
(cherry picked from commit 4bbfa3d3ba
)
This commit is contained in:
parent
42f1df6099
commit
0c7a209f5d
@ -152,7 +152,7 @@ ports.txz:
|
||||
disc1: packagesystem
|
||||
# Install system
|
||||
mkdir -p ${.TARGET}
|
||||
cd ${WORLDDIR} && ${IMAKE} installkernel installworld distribution \
|
||||
cd ${WORLDDIR} && ${IMAKE} installworld installkernel distribution \
|
||||
DESTDIR=${.OBJDIR}/${.TARGET} MK_AT=no \
|
||||
MK_INSTALLLIB=no MK_LIB32=no MK_MAIL=no \
|
||||
MK_TOOLCHAIN=no MK_PROFILE=no \
|
||||
@ -176,7 +176,7 @@ disc1: packagesystem
|
||||
bootonly: packagesystem
|
||||
# Install system
|
||||
mkdir -p ${.TARGET}
|
||||
cd ${WORLDDIR} && ${IMAKE} installkernel installworld distribution \
|
||||
cd ${WORLDDIR} && ${IMAKE} installworld installkernel distribution \
|
||||
DESTDIR=${.OBJDIR}/${.TARGET} MK_AT=no \
|
||||
MK_GAMES=no \
|
||||
MK_INSTALLLIB=no MK_LIB32=no MK_MAIL=no \
|
||||
@ -198,7 +198,7 @@ bootonly: packagesystem
|
||||
dvd: packagesystem
|
||||
# Install system
|
||||
mkdir -p ${.TARGET}
|
||||
cd ${WORLDDIR} && ${IMAKE} installkernel installworld distribution \
|
||||
cd ${WORLDDIR} && ${IMAKE} installworld installkernel distribution \
|
||||
DESTDIR=${.OBJDIR}/${.TARGET} MK_RESCUE=no MK_KERNEL_SYMBOLS=no \
|
||||
MK_TESTS=no MK_DEBUG_FILES=no \
|
||||
-DDB_FROM_SRC
|
||||
|
Loading…
Reference in New Issue
Block a user