From eeef7952c3836dd1eb5e994695d5c745b6b51784 Mon Sep 17 00:00:00 2001 From: wollman Date: Thu, 22 Sep 1994 22:17:02 +0000 Subject: Automatically load NFS and a bevy of other filesystems. --- sbin/mount_lfs/mount_lfs.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'sbin/mount_lfs') diff --git a/sbin/mount_lfs/mount_lfs.c b/sbin/mount_lfs/mount_lfs.c index 374c930..b4e4d2e 100644 --- a/sbin/mount_lfs/mount_lfs.c +++ b/sbin/mount_lfs/mount_lfs.c @@ -72,6 +72,7 @@ main(argc, argv) struct ufs_args args; int ch, mntflags, noclean; char *fs_name, *options; + struct vfsconf *vfc; options = NULL; mntflags = noclean = 0; @@ -109,7 +110,15 @@ main(argc, argv) else args.export.ex_flags = 0; - if (mount(MOUNT_LFS, fs_name, mntflags, &args)) + vfc = getvfsbyname("lfs"); + if(!vfc && vfsisloadable("lfs")) { + if(vfsload("lfs")) + err(1, "vfsload(lfs)"); + endvfsent(); /* flush cache */ + vfc = getvfsbyname("lfs"); + } + + if (mount(vfc ? vfc->vfc_index : MOUNT_LFS, fs_name, mntflags, &args)) err(1, NULL); if (!noclean) -- cgit v1.1