diff options
author | dougb <dougb@FreeBSD.org> | 2003-04-27 01:18:36 +0000 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2003-04-27 01:18:36 +0000 |
commit | 150c8b2f26aae112e3b16f2cedc4bfa97c1714a1 (patch) | |
tree | b1a51f8a4709f60a8b7aa20fc81ec9b9c90a4ba0 /sbin | |
parent | 59f16028c28d3312adae91fedfc1c6e43c7cf8ee (diff) | |
download | FreeBSD-src-150c8b2f26aae112e3b16f2cedc4bfa97c1714a1.zip FreeBSD-src-150c8b2f26aae112e3b16f2cedc4bfa97c1714a1.tar.gz |
Install a mount_mfs symlink so that you can specify something like this
in /etc/fstab to get a memory disk:
md /tmp mfs rw,-s8m,noatime 2 2
Back when mdmfs was created, there was vague discussion about doing this, but
it never materialized.
Reminded by: Ralf S. Engelschall <rse@engelschall.com>
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/mdmfs/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sbin/mdmfs/Makefile b/sbin/mdmfs/Makefile index 8b3daca..26aab3a 100644 --- a/sbin/mdmfs/Makefile +++ b/sbin/mdmfs/Makefile @@ -1,6 +1,7 @@ # $FreeBSD$ PROG= mdmfs +LINKS= ${BINDIR}/${PROG} ${BINDIR}/mount_mfs MAN= mdmfs.8 .include <bsd.prog.mk> |