diff options
author | peter <peter@FreeBSD.org> | 2001-08-18 03:08:48 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-08-18 03:08:48 +0000 |
commit | 886fd9ad6410a7fe63b78d537a2ecd09545c5d07 (patch) | |
tree | 6d33751a77b7e9b35593190cb081c11dfe8bf89e /sys/conf | |
parent | ef02fc418968450e559e929e87fb00e5d9220ed1 (diff) | |
download | FreeBSD-src-886fd9ad6410a7fe63b78d537a2ecd09545c5d07.zip FreeBSD-src-886fd9ad6410a7fe63b78d537a2ecd09545c5d07.tar.gz |
Sigh. ufs_lookup() calls ffs_snapgone(), meaning that 'options EXT2FS'
without 'options FFS' would fail to link.
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/options | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/conf/options b/sys/conf/options index b58eaf4..9721faa 100644 --- a/sys/conf/options +++ b/sys/conf/options @@ -119,8 +119,6 @@ CD9660 opt_dontuse.h CODA opt_dontuse.h EXT2FS opt_dontuse.h FDESCFS opt_dontuse.h -FFS opt_dontuse.h -IFS opt_dontuse.h LINPROCFS opt_dontuse.h MSDOSFS opt_dontuse.h NULLFS opt_dontuse.h @@ -133,6 +131,10 @@ NTFS opt_dontuse.h HPFS opt_dontuse.h UNIONFS opt_dontuse.h +# Broken - ffs_snapshot() dependency from ufs_lookup() :-( +FFS opt_ffs_broken_fixme.h +IFS opt_ffs_broken_fixme.h + # These static filesystems has one slightly bogus static dependency in # sys/i386/i386/autoconf.c. If any of these filesystems are # statically compiled into the kernel, code for mounting them as root |