diff options
author | adrian <adrian@FreeBSD.org> | 2000-10-14 02:44:56 +0000 |
---|---|---|
committer | adrian <adrian@FreeBSD.org> | 2000-10-14 02:44:56 +0000 |
commit | ee143d47ad6c41a3590bdb5ed28c7bd5bf6ffff8 (patch) | |
tree | 590596b4f266eeab393a09a10ebc6e3d2dca44d9 /sbin/Makefile | |
parent | 3de1cbc0796b0350b63069fc4bf7972a8e05d2ff (diff) | |
download | FreeBSD-src-ee143d47ad6c41a3590bdb5ed28c7bd5bf6ffff8.zip FreeBSD-src-ee143d47ad6c41a3590bdb5ed28c7bd5bf6ffff8.tar.gz |
Pre-IFS commit. Commit IFS-aware fsck and mount utilities.
mount_ifs: repocopy of sbin/mount, with most of the intelligence ripped out
and "ufs" replaced with "ifs" in the right places. It will only
mount a single filesystem, rather than the -t <type> magic that
our real mount does.
fsck_ifs: repocopy of sbin/fsck_ffs, but the directory structure stuff
(pass2 and some refcount checks) has been #ifdef'ed out.
src/sbin/Makefile: Build these two utilities
There is probably cruft code left in both which can be removed at a later
date, especially in mount_ifs, but I trust that people will not try
mount_ifs -a ..
Note: there are no man pages installed for these two commands as I haven't
actually written them yet.
Diffstat (limited to 'sbin/Makefile')
-rw-r--r-- | sbin/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sbin/Makefile b/sbin/Makefile index 56e6c6a..6cb4d8f 100644 --- a/sbin/Makefile +++ b/sbin/Makefile @@ -17,6 +17,7 @@ SUBDIR= adjkerntz \ dumpfs \ dumpon \ fsck \ + fsck_ifs \ fsck_ffs \ fsdb \ fsirand \ @@ -37,6 +38,7 @@ SUBDIR= adjkerntz \ mount \ mount_cd9660 \ mount_ext2fs \ + mount_ifs \ mount_msdos \ mount_nfs \ mount_ntfs \ |