ec93365612
was developed as part of Google's Summer of Code 2005 program. This change adds the kernel code, the mount_tmpfs utility, a regression test suite and does all other related changes to integrate these. The file-system is still *experimental*. Therefore, it is disabled by default in all kernels. However, as typically done, a commented-out entry is added in them to ease its setup. Note that I haven't commited the required mountd(8) changes to be able to export tmpfs file-systems because NFS support is still very unstable and because, before enabling it, I'd like to do some other changes. OK'ed by my project mentor, William Studenmund (wrstuden@).
15 lines
245 B
Makefile
15 lines
245 B
Makefile
# $NetBSD: Makefile,v 1.1 2005/09/10 19:20:51 jmmv Exp $
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= mount_tmpfs
|
|
SRCS= mount_tmpfs.c
|
|
MAN= mount_tmpfs.8
|
|
|
|
CPPFLAGS+= -I${NETBSDSRCDIR}/sys
|
|
DPADD+= ${LIBUTIL}
|
|
LDADD+= -lutil
|
|
WARNS= 4
|
|
|
|
.include <bsd.prog.mk>
|