From 09fe58a9a558ef0756100e195d68aed12ed78b03 Mon Sep 17 00:00:00 2001
From: Doug Barton <dougb@FreeBSD.org>
Date: Sun, 27 Apr 2003 01:18:36 +0000
Subject: [PATCH] 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>
---
 sbin/mdmfs/Makefile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sbin/mdmfs/Makefile b/sbin/mdmfs/Makefile
index 8b3dacacd842..26aab3afe400 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>