cedeabb357
. detect both formats in /etc/rc . generate new format in setup . obsoletes /etc/fstab.local: everything can go in /etc/fstab . put shutdown/reboot/halt and a copy of /usr/adm/wtmp (/etc/wtmp) on root FS so that we can do shutdown checks before mounting /usr . new fstab format makes getfsent() and friends work
15 lines
378 B
Makefile
15 lines
378 B
Makefile
# Makefile for shutdown / halt / reboot.
|
|
|
|
PROGS= shutdown halt
|
|
SRCS.shutdown= shutdown.c sh_wall.c log.c
|
|
SRCS.halt= halt.c log.c
|
|
BINDIR=/bin
|
|
BINMODE= 4754
|
|
SYMLINKS+= ${BINDIR}/halt ${BINDIR}/reboot
|
|
SYMLINKS+= ${BINDIR}/halt /usr/bin/halt
|
|
SYMLINKS+= ${BINDIR}/shutdown /usr/bin/shutdown
|
|
SYMLINKS+= ${BINDIR}/reboot /usr/bin/reboot
|
|
MAN.shutdown=
|
|
MAN.halt=
|
|
|
|
.include <bsd.prog.mk>
|