diff options
author | pjd <pjd@FreeBSD.org> | 2004-07-02 19:40:36 +0000 |
---|---|---|
committer | pjd <pjd@FreeBSD.org> | 2004-07-02 19:40:36 +0000 |
commit | 7f4ea6942f7133d30de3ff25c4a9601d2ab4200c (patch) | |
tree | 8e73f4b25ccaa53d48b0ffc0919724a8f6d36e90 /MAINTAINERS | |
parent | cfd40890fc173c1f61ef0107cafdd32320d8b63b (diff) | |
download | FreeBSD-src-7f4ea6942f7133d30de3ff25c4a9601d2ab4200c.zip FreeBSD-src-7f4ea6942f7133d30de3ff25c4a9601d2ab4200c.tar.gz |
Introduce GEOM_LABEL class.
This class is used for detecting volume labels on file systems:
UFS, MSDOSFS (FAT12, FAT16, FAT32) and ISO9660.
It also provide native labelization (there is no need for file system).
g_label_ufs.c is based on geom_vol_ffs from Gordon Tetlow.
g_label_msdos.c and g_label_iso9660.c are probably hacks, I just found
where volume labels are stored and I use those offsets here,
but with this class it should be easy to do it as it should be done by
someone who know how.
Implementing volume labels detection for other file systems also should
be trivial.
New providers are created in those directories:
/dev/ufs/ (UFS1, UFS2)
/dev/msdosfs/ (FAT12, FAT16, FAT32)
/dev/iso9660/ (ISO9660)
/dev/label/ (native labels, configured with glabel(8))
Manual page cleanups and some comments inside were submitted by
Simon L. Nielsen, who was, as always, very helpful. Thanks!
Diffstat (limited to 'MAINTAINERS')
-rw-r--r-- | MAINTAINERS | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index 553a8e6..41a7882 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -93,6 +93,7 @@ contrib/pf mlaier Pre-commit review requested. binutils obrien Insists on BU blocked from unapproved commits geom_concat pjd Pre-commit review requested. geom_gate pjd Pre-commit review requested. +geom_label pjd Pre-commit review requested. geom_nop pjd Pre-commit review requested. geom_stripe pjd Pre-commit review requested. sbin/geom pjd Pre-commit review requested. |