summaryrefslogtreecommitdiffstats
path: root/sbin/geom/class/label/glabel.8
Commit message (Collapse)AuthorAgeFilesLines
* MFC r315112, r315196araujo2017-05-171-1/+6
| | | | | | | | | | | | | | | | | | | | | r315112: Add the capability to refresh the gpart(8) label without need a reboot. gpart(8) has functionality to change the label of an GPT partition. This functionality works like it should, however, after a label change the /dev/gpt/ entries remain unchanged. glabel(8) status output remains unchanged. The change only takes effect after a reboot. PR: 162690 Submitted by: sub.mesa@gmail, Ben RUBSON <ben.rubson@gmail.com>, ae Reviewed by: allanjude, bapt, bcr Differential Revision: https://reviews.freebsd.org/D9935 r315196: After r315112 I broke the tests with eli, instead to pass 0, I should pass M_NOWAIT to g_media_changed() that will call g_post_event() with this flag. Reported by: lwhsu, ngie and ae
* mdoc: remove EOL whitespace.joel2014-12-291-2/+2
|
* use .Mt to mark up email addresses consistently (part1)bapt2014-06-201-1/+1
| | | | | PR: 191174 Submitted by: Franco Fichtner <franco@lastsummer.de>
* Minor mdoc improvements.joel2014-06-061-1/+1
|
* Bulk document the kern.geom.label.*.enable sysctls and tunables.ivoras2014-06-041-0/+13
|
* Document the diskid automatic label class.ivoras2014-06-021-2/+20
| | | | | | | While there, also document the glabel "native" labels and explain why there are additional nodes created for nested GEOM classes. Reminded by: jmg
* Minor clarificiation.joel2013-04-221-2/+2
| | | | PR: 177455
* Remove (c) line.ivoras2009-08-231-1/+0
| | | | | | Requested by: pjd Approved by: gnn (mentor) MFC after: 1 month
* Add support for labels derived from GPT metadata.ivoras2009-06-131-2/+14
| | | | | | | Approved by: gnn (mentor) Reviewed by: pjd PR: 128398 Submitted by: Marius Nuennerich < marius at nuenneri.ch >
* Man page accompanying r190423 - introduce UFS ID labels.ivoras2009-03-251-2/+8
| | | | | Actually-by: pjd Approved by: gnn (mentor)
* Update Document.takawata2005-08-261-0/+3
|
* Add code for Ext2FS and ReiserFS labels recognition.pjd2005-08-121-0/+6
| | | | | | Submitted by: Stanislav Sedov <stas@310.ru> PR: kern/84638 MFC after: 1 week
* Instead of documenting every standard subcommand's argument everywhere,pjd2005-03-141-14/+8
| | | | | | just leave reference to geom(8). MFC after: 1 week
* - Document 'status' subcommand.pjd2005-03-131-2/+9
| | | | | | - Update copyrights. MFC after: 1 week
* Sort sections.ru2005-01-181-2/+2
|
* Added the EXIT STATUS section where appropriate.ru2005-01-171-1/+1
|
* Fix arguments syntax.pjd2005-01-151-9/+5
| | | | | Manual pages fixes by: ru MFC after: 3 days
* Grammatical and spelling improvements.ceri2004-11-041-4/+4
| | | | Reviewed by: pjd
* MFp4: Add 'dump' command to gconcat(8), glabel(8) and gstripe(8) which allowpjd2004-07-181-0/+6
| | | | to dump metadata from given components.
* Document sysctl variables.pjd2004-07-131-0/+18
| | | | Based on: simon's patch
* Slight markup and grammar fixes.ru2004-07-071-7/+8
|
* - Add 'stop' command, which works just like 'destroy' command, but soundspjd2004-07-051-4/+18
| | | | | | less dangerous. - Update manual pages and extend examples. - Bump versions.
* Grammar nits.pjd2004-07-031-4/+4
| | | | Submitted by: David Magda <dmagda@ee.ryerson.ca>
* Introduce GEOM_LABEL class.pjd2004-07-021-0/+182
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!
OpenPOWER on IntegriCloud