mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-25 10:01:02 +01:00
fd6d47375a
Reboot now emulates the nextboot shell script completely. Retire the nextboot.sh script and install the link. Retain the same manual page, since there's enough differences between nextboot and reboot that talking about nextboot would likely be confusing in nextboot.8 The nextboot.sh script no longer exists, so doesn't need to be fixed up to create rescue. However, now we need a link from nextboot to reboot. Sponsored by: Netflix Reviewed by: kevans Differential Revision: https://reviews.freebsd.org/D43831 Differential Revision: https://reviews.freebsd.org/D43843
22 lines
486 B
Makefile
22 lines
486 B
Makefile
|
|
PACKAGE=runtime
|
|
PROG= reboot
|
|
MAN= reboot.8 nextboot.8
|
|
MLINKS= reboot.8 halt.8 reboot.8 fastboot.8 reboot.8 fasthalt.8
|
|
|
|
.if exists(${.CURDIR}/boot_${MACHINE}.8)
|
|
MAN+= boot_${MACHINE}.8
|
|
MLINKS+= boot_${MACHINE}.8 boot.8
|
|
.endif
|
|
.if ${MACHINE} == "amd64"
|
|
MAN+= boot_i386.8
|
|
MLINKS+= boot_i386.8 boot.8
|
|
.endif
|
|
|
|
LINKS= ${BINDIR}/reboot ${BINDIR}/halt \
|
|
${BINDIR}/reboot ${BINDIR}/fastboot \
|
|
${BINDIR}/reboot ${BINDIR}/fasthalt \
|
|
${BINDIR}/reboot ${BINDIR}/nextboot
|
|
|
|
.include <bsd.prog.mk>
|