summaryrefslogtreecommitdiff
path: root/sys/arch/pmax
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1998-10-04 20:40:09 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1998-10-04 20:40:09 +0000
commit3b57e853adeb72df36ea94b3f166c5da572c3a72 (patch)
treeb87c81c6185b08361cf418e85034c92c2694b68b /sys/arch/pmax
parentcdf925be0bb10b33768753db05cf46829dac88e9 (diff)
remove default partition table code, disklabel can do a far better job than the kernel in this
Diffstat (limited to 'sys/arch/pmax')
-rw-r--r--sys/arch/pmax/dev/rz.c59
1 files changed, 8 insertions, 51 deletions
diff --git a/sys/arch/pmax/dev/rz.c b/sys/arch/pmax/dev/rz.c
index d1b0388c302..7f5be603627 100644
--- a/sys/arch/pmax/dev/rz.c
+++ b/sys/arch/pmax/dev/rz.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rz.c,v 1.16 1998/10/04 20:05:51 millert Exp $ */
+/* $OpenBSD: rz.c,v 1.17 1998/10/04 20:40:08 millert Exp $ */
/* $NetBSD: rz.c,v 1.38 1998/05/08 00:05:19 simonb Exp $ */
/*
@@ -121,35 +121,6 @@ struct size {
/*
- * Since the SCSI standard tends to hide the disk structure, we define
- * partitions in terms of DEV_BSIZE blocks. The default partition table
- * (for an unlabeled disk) reserves 8K for a boot area, has an 8 meg
- * root and 32 meg of swap. The rest of the space on the drive goes in
- * the G partition. As usual, the C partition covers the entire disk
- * (including the boot area).
- */
-static struct size rzdefaultpart[MAXPARTITIONS] = {
- /* Start Size Partition */
- { 0, 65536 }, /* A -- 32Mbyte root */
- { 63356, 131072 }, /* B -- 64Mbyte swap */
- { 0, RZ_END }, /* C -- entire disk */
- { 196608, 16384 }, /* D -- 8meg for var or miniroots */
- { 212992, 409600 }, /* E -- /usr */
- { 622592, 409600 }, /* F -- /home, alternate /usr */
- { 1032912, RZ_END }, /* G -- F to end of disk */
- { 196608, RZ_END }, /* H -- B to end of disk */
- { 0, 0 }, /* I */
- { 0, 0 }, /* J */
- { 0, 0 }, /* K */
- { 0, 0 }, /* L */
- { 0, 0 }, /* M */
- { 0, 0 }, /* N */
- { 0, 0 }, /* O */
- { 0, 0 } /* P */
-};
-
-
-/*
* Ultrix disklabel declarations
*/
#ifdef COMPAT_ULTRIX
@@ -1511,33 +1482,19 @@ rzgetdefaultlabel(sc, lp)
lp->d_rpm = 3600;
lp->d_interleave = 1;
lp->d_flags = 0;
- lp->d_npartitions = MAXPARTITIONS;
/* XXX - these values for BBSIZE and SBSIZE assume ffs */
lp->d_bbsize = BBSIZE;
lp->d_sbsize = SBSIZE;
- /* Set default partitions based on table in rzdefaultpart */
- for (i = 0; i < MAXPARTITIONS; i++) {
- register struct partition *pp = & lp->d_partitions[i];
-
- pp->p_size = rzdefaultpart[i].nblocks;
- pp->p_offset = rzdefaultpart[i].strtblk;
+ lp->d_partitions[RAW_PART].p_offset = 0;
+ lp->d_partitions[RAW_PART].p_size = lp->d_secperunit *
+ (lp->d_secsize / DEV_BSIZE);
+ lp->d_partitions[RAW_PART].p_fstype = FS_UNUSED;
+ lp->d_npartitions = RAW_PART + 1;
- /* Change RZ_END to be end-of-disk */
- if (pp->p_size == RZ_END)
- pp->p_size = sc->params.disksize - pp->p_offset;
-
- /*
- * Clip end of partition against end of disk.
- * If both start and end beyond end of disk, set to zero.
- */
- if (pp->p_offset > sc->params.disksize) {
- pp->p_size = 0;
- pp->p_offset = 0;
- } else if ((pp->p_size + pp->p_offset) > sc->params.disksize)
- pp->p_size = sc->params.disksize - pp->p_offset;
- }
+ lp->d_magic = DISKMAGIC;
+ lp->d_magic2 = DISKMAGIC;
lp->d_checksum = dkcksum(lp);
}