diff options
author | Kirk McKusick <mckusick@FreeBSD.org> | 2018-01-26 00:58:32 +0000 |
---|---|---|
committer | Kirk McKusick <mckusick@FreeBSD.org> | 2018-01-26 00:58:32 +0000 |
commit | dffce2150eeac1c7f424324a5cade7a97b308979 (patch) | |
tree | 3de8c223a1cb007078f3bb3e3c062127eb1b80a8 /sbin/fsirand/Makefile | |
parent | a99028fc70be602db425c092b70dd0221e253bb3 (diff) | |
download | src-dffce2150eeac1c7f424324a5cade7a97b308979.tar.gz src-dffce2150eeac1c7f424324a5cade7a97b308979.zip |
Refactoring of reading and writing of the UFS/FFS superblock.
Specifically reading is done if ffs_sbget() and writing is done
in ffs_sbput(). These functions are exported to libufs via the
sbget() and sbput() functions which then used in the various
filesystem utilities. This work is in preparation for adding
subperblock check hashes.
No functional change intended.
Reviewed by: kib
Notes
Notes:
svn path=/head/; revision=328426
Diffstat (limited to 'sbin/fsirand/Makefile')
-rw-r--r-- | sbin/fsirand/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sbin/fsirand/Makefile b/sbin/fsirand/Makefile index c415b11983f1..1fc54ff44687 100644 --- a/sbin/fsirand/Makefile +++ b/sbin/fsirand/Makefile @@ -4,6 +4,7 @@ PACKAGE=runtime PROG= fsirand MAN= fsirand.8 +LIBADD= ufs WARNS?= 3 .include <bsd.prog.mk> |