freebsd-src/usr.sbin/bsdinstall/runconsoles/Makefile
Jessica Clarke a2464ee127 bsdinstall: Add a new runconsoles helper binary
This helper binary will run a given command on every on console, as
defined by /etc/ttys (except for ttyv*, where only ttyv0 will be used).
If one of the command processes exits, the rest will be killed. This
will be used by a future change to start the installer on multiple
consoles.

Reviewed by:	brooks, imp, gjb
Differential Revision:	https://reviews.freebsd.org/D36804
2022-10-03 17:09:16 +01:00

10 lines
124 B
Makefile

BINDIR= ${LIBEXECDIR}/bsdinstall
PROG= runconsoles
MAN=
SRCS= child.c \
common.c \
runconsoles.c
.include <bsd.prog.mk>