diff options
author | phk <phk@FreeBSD.org> | 2003-10-18 19:32:35 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-10-18 19:32:35 +0000 |
commit | 2d32752eb93a64a99f543cb647b7401ea18d5e7b (patch) | |
tree | 5fc5121b49f6262db9dafdb7bdf7c109d3d799f4 /sbin | |
parent | d9e9583e6416a008b1d868a4f8a1db290b472b21 (diff) | |
download | FreeBSD-src-2d32752eb93a64a99f543cb647b7401ea18d5e7b.zip FreeBSD-src-2d32752eb93a64a99f543cb647b7401ea18d5e7b.tar.gz |
Only automatically create an 'a' partition when there is nothing
but a 'c' partition.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/bsdlabel/bsdlabel.c | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/sbin/bsdlabel/bsdlabel.c b/sbin/bsdlabel/bsdlabel.c index 3227d7d..094e84a 100644 --- a/sbin/bsdlabel/bsdlabel.c +++ b/sbin/bsdlabel/bsdlabel.c @@ -84,6 +84,7 @@ static int readlabel(int flag); static void display(FILE *, const struct disklabel *); static int edit(void); static int editit(void); +static void fixlabel(struct disklabel *); static char *skip(char *); static char *word(char *); static int getasciilabel(FILE *, struct disklabel *); @@ -235,6 +236,7 @@ main(int argc, char *argv[]) if (argc != 1) usage(); readlabel(1); + fixlabel(&lab); error = edit(); break; @@ -266,6 +268,7 @@ main(int argc, char *argv[]) usage(); readlabel(0); makelabel(name, &lab); + fixlabel(&lab); if (checklabel(NULL) == 0) error = writelabel(); break; @@ -273,6 +276,7 @@ main(int argc, char *argv[]) case WRITEBOOT: readlabel(1); + fixlabel(&lab); if (argc == 2) makelabel(argv[1], &lab); if (checklabel(NULL) == 0) @@ -282,6 +286,24 @@ main(int argc, char *argv[]) exit(error); } +static void +fixlabel(struct disklabel *lp) +{ + struct partition *dp; + int i; + + for (i = 0; i < MAXPARTITIONS; i++) { + if (i == RAW_PART) + continue; + if (lp->d_partitions[i].p_size) + return; + } + + dp = &lp->d_partitions[0]; + dp->p_offset = BBSIZE / secsize; + dp->p_size = lp->d_secperunit - dp->p_offset; +} + /* * Construct a prototype disklabel from /etc/disktab. */ @@ -1338,10 +1360,6 @@ 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); |