diff options
| author | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-08-27 22:34:57 +0000 |
|---|---|---|
| committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-08-27 22:34:57 +0000 |
| commit | d44088794334409e8357bc9a1cb6cf5edc80e72d (patch) | |
| tree | f97ecb3b9d30fb2b6e87d41c6bc78bcb49a77972 /sbin | |
| parent | 3a47a99d78722cf543c0e90caf157f8b22d9db12 (diff) | |
Notes
Diffstat (limited to 'sbin')
| -rw-r--r-- | sbin/bsdlabel/bsdlabel.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sbin/bsdlabel/bsdlabel.c b/sbin/bsdlabel/bsdlabel.c index e2c84fe97e642..d1670635007d5 100644 --- a/sbin/bsdlabel/bsdlabel.c +++ b/sbin/bsdlabel/bsdlabel.c @@ -1377,6 +1377,10 @@ getvirginlabel(void) strncpy(loclab.d_typename, "amnesiac", sizeof(loclab.d_typename)); + dp = &loclab.d_partitions[0]; + dp->p_offset = BBSIZE / secsize; + dp->p_size = loclab.d_secperunit - dp->p_offset; + dp = &loclab.d_partitions[RAW_PART]; dp->p_size = loclab.d_secperunit; loclab.d_checksum = dkcksum(&loclab); |
