0d6422dd87
the root file system on bootup: |------------------------------------------------------------------------ |r214006 | marcel | 2010-10-17 22:01:53 -0700 (Sun, 17 Oct 2010) | 20 lines | | Re-implement the root mount logic using a recursive approach, whereby each |root file system (starting with devfs and a synthesized configuration) can |contain directives for mounting another file system as root. |------------------------------------------------------------------------ This commit adds a mount.conf(8) man page which documents the root mount logic. mount.conf(8) also provides some examples for the /.mount.conf file, which can be used to change the root mount behavior. Reviewed by: marcel bjk
13 lines
240 B
Makefile
13 lines
240 B
Makefile
# @(#)Makefile 8.6 (Berkeley) 5/8/95
|
|
# $FreeBSD$
|
|
|
|
PROG= mount
|
|
SRCS= mount.c mount_fs.c getmntopts.c vfslist.c
|
|
MAN= mount.8 mount.conf.8
|
|
# We do NOT install the getmntopts.3 man page.
|
|
|
|
DPADD= ${LIBUTIL}
|
|
LDADD= -lutil
|
|
|
|
.include <bsd.prog.mk>
|