<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/sbin/sunlabel, branch release/8.3.0</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F8.3.0</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F8.3.0'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2005-03-30T18:54:41Z</updated>
<entry>
<title>Fix grammar error caused by my previous edit.</title>
<updated>2005-03-30T18:54:41Z</updated>
<author>
<name>Joerg Wunsch</name>
<email>joerg@FreeBSD.org</email>
</author>
<published>2005-03-30T18:54:41Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=6fb1610fa37b370cae78eae5508c1894f4aff18f'/>
<id>urn:sha1:6fb1610fa37b370cae78eae5508c1894f4aff18f</id>
<content type='text'>
While being here, also update the copyright year.

Submitted by:	ru
</content>
</entry>
<entry>
<title>Support VTOC volume names.  This can be useful to distinguish multiple</title>
<updated>2005-03-30T09:33:10Z</updated>
<author>
<name>Joerg Wunsch</name>
<email>joerg@FreeBSD.org</email>
</author>
<published>2005-03-30T09:33:10Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=3328bbeef244ca648f2c7d7bf1756c8ca40a75e1'/>
<id>urn:sha1:3328bbeef244ca648f2c7d7bf1756c8ca40a75e1</id>
<content type='text'>
disks in a system.  Solaris' format(1m) displays the volume names in
the disk overview.

MFC after:	1 month
</content>
</entry>
<entry>
<title>Fix grammar error.</title>
<updated>2005-02-15T22:31:05Z</updated>
<author>
<name>David E. O'Brien</name>
<email>obrien@FreeBSD.org</email>
</author>
<published>2005-02-15T22:31:05Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=d288fef8230724f76fab3aeb4d983bf31f62e908'/>
<id>urn:sha1:d288fef8230724f76fab3aeb4d983bf31f62e908</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix indentation of continuation lines to (hopefully) comply with</title>
<updated>2004-06-18T15:08:08Z</updated>
<author>
<name>Joerg Wunsch</name>
<email>joerg@FreeBSD.org</email>
</author>
<published>2004-06-18T15:08:08Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=60e277829b8230238d0e9c9e5f3d300340bc513f'/>
<id>urn:sha1:60e277829b8230238d0e9c9e5f3d300340bc513f</id>
<content type='text'>
style(9).

Reminded by:	bde
</content>
</entry>
<entry>
<title>Cast the arguments to make_h_number() to uintmax_t before multiplying</title>
<updated>2004-06-11T11:41:33Z</updated>
<author>
<name>Joerg Wunsch</name>
<email>joerg@FreeBSD.org</email>
</author>
<published>2004-06-11T11:41:33Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=1c9fe2e4b28d0d6824ddce4f15bb9f957fd0d37c'/>
<id>urn:sha1:1c9fe2e4b28d0d6824ddce4f15bb9f957fd0d37c</id>
<content type='text'>
them...  Otherwise the result will be truncated anyway.
</content>
</entry>
<entry>
<title>ru's mdoc(7) style police was here.</title>
<updated>2004-06-02T20:21:28Z</updated>
<author>
<name>Joerg Wunsch</name>
<email>joerg@FreeBSD.org</email>
</author>
<published>2004-06-02T20:21:28Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=493db0bf1270e585d65093989c550f98a1e06e1e'/>
<id>urn:sha1:493db0bf1270e585d65093989c550f98a1e06e1e</id>
<content type='text'>
Submitted by:	ru
</content>
</entry>
<entry>
<title>Major overhaul of sunlabel(8).</title>
<updated>2004-06-01T20:32:36Z</updated>
<author>
<name>Joerg Wunsch</name>
<email>joerg@FreeBSD.org</email>
</author>
<published>2004-06-01T20:32:36Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=3328072346b2a411ea651704e741ca3dac8cbdcd'/>
<id>urn:sha1:3328072346b2a411ea651704e741ca3dac8cbdcd</id>
<content type='text'>
. Implement option -c, all partition sizes will be calculated
  in cylinders as opposed to sectors.  Since the Sun label is
  inherently cylinder-based, this makes the job a little easier.

. Implement option -h, print the label in `human readable'
  size/offset format.

. Implement SVR4-compatible VTOC-style elements.  They are
  fully optional, defaulting to the current behaviour where no
  VTOC-style table will be written to disk.  However, if
  desired, the full functionality of the partitioning menu of
  Solaris' format(1m) is now offered (and even more).

. When editing the label, do not loop around edit_label() where
  a new template file is generated for each turn, this used to
  be annoying in that any possible syntax error caused a
  complaint, but then the template was created anew, so the
  user had to perform all their editing again.  Rather loop
  inside edit_label(), similar to bsdlabel(8), so in case of
  errors, the user will be presented their previous template
  file again.

. If VTOC-style elements are present, the overlap checks are
  made less stringent.  Overlaps will still be warned about,
  but overlaps of `unmountable' partitions against other ones
  are no longer fatal.  That way, e. g. VxVM encapsulated
  disk labels can be fully edited in FreeBSD (but not in
  Solaris ;-).

. In print_label(), generate the editing hints only if the -e
  flag is in effect.  Additionally, print a hint about the
  total number of sectors in the (hardware) medium.

. When editing a label, allow for changing the geometry
  emulation (and textual name) by modifying the "text:" line
  on top.  That way, a more effective emulation can be
  chosen.

. When editing/reading a label, additionally allow for the
  suffixes `s' (512-byte sectors), and `c' (cylinders) in the
  partition size field.

. Finally, turn the stub man page into something that really
  explains the entire thing.
</content>
</entry>
<entry>
<title>Correct existing usage lines, add two more.</title>
<updated>2004-05-17T21:11:35Z</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2004-05-17T21:11:35Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=6106f451519c43a39a52a3293ef36083e5a52596'/>
<id>urn:sha1:6106f451519c43a39a52a3293ef36083e5a52596</id>
<content type='text'>
</content>
</entry>
<entry>
<title>When editing a Sun label, make the search for a valid partition line</title>
<updated>2004-05-04T09:50:41Z</updated>
<author>
<name>Joerg Wunsch</name>
<email>joerg@FreeBSD.org</email>
</author>
<published>2004-05-04T09:50:41Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=53d4cdeb821d78172aaab965cd321a8c7f5019a3'/>
<id>urn:sha1:53d4cdeb821d78172aaab965cd321a8c7f5019a3</id>
<content type='text'>
violate POLA a little less by not requiring exactly two spaces in front
of the entry (and silently discarding any non-matching entry).  We now
recognize anything starting with a letter followed by a colon as the
first non-space chars as a partition entry.
</content>
</entry>
<entry>
<title>Spell "disklabel" correctly.</title>
<updated>2004-02-01T13:09:26Z</updated>
<author>
<name>Ceri Davies</name>
<email>ceri@FreeBSD.org</email>
</author>
<published>2004-02-01T13:09:26Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=5f0f366bacbf0ecde981e1b0a2a3f5818afd5f34'/>
<id>urn:sha1:5f0f366bacbf0ecde981e1b0a2a3f5818afd5f34</id>
<content type='text'>
Approved by:	ru
</content>
</entry>
</feed>
