⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rd_compat.c

📁 早期freebsd实现
💻 C
字号:
/* * Copyright (c) 1988 University of Utah. * Copyright (c) 1982, 1990, 1993 *	The Regents of the University of California.  All rights reserved. * * This code is derived from software contributed to Berkeley by * the Systems Programming Group of the University of Utah Computer * Science Department. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in the *    documentation and/or other materials provided with the distribution. * 3. All advertising materials mentioning features or use of this software *    must display the following acknowledgement: *	This product includes software developed by the University of *	California, Berkeley and its contributors. * 4. Neither the name of the University nor the names of its contributors *    may be used to endorse or promote products derived from this software *    without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * * from: Utah $Hdr: rd_compat.c 1.1 92/12/21$ * *	@(#)rd_compat.c	8.1 (Berkeley) 6/10/93 *//* * Compatibility for CS80 disks without disklabels. */#include "rd.h"#if NRD > 0#include <sys/param.h>#include <sys/disklabel.h>#include <hp/dev/device.h>#include <hp300/dev/rdreg.h>#include <hp300/dev/rdvar.h>/* * CS/80 partitions.  We reserve the first cylinder for a LIF * style boot directory (the 8k allowed in the BSD filesystem * is just way too small).  This boot area is outside of all but * the C partition.  This implies that you cannot use the C  * partition on a bootable disk since the filesystem would overlay * the boot area.  You must use the A partition. * * These maps support four basic layouts: * *	A/B/G:   This is the "traditional" setup for a bootable disk. *	         A is the root partition, B the swap, and G a user partition. *	A/D/H:   This is a setup for bootable systems requiring more swap *		 (e.g. those who use HPCL).  It has A as the root, D as a *		 larger swap, and H as a smaller user partition. *	A/D/E/F: Similar to A/D/H with E and F breaking H into two partitions. *		 E could be used for /usr and F for users. *	C:       This gives a single, non-bootable, large user filesystem. *	         Good for second drives on a machine (e.g. /usr/src). */struct	size {	daddr_t	nblocks;	int	cyloff;} rd7945A_sizes[8] = {	RDSZ(15904),	1,		/* A=cyl 1 thru 142 */	RDSZ(20160),	143,		/* B=cyl 143 thru 322 */	RDSZ(108416),	0,		/* C=cyl 0 thru 967 */	RDSZ(40320),	143,		/* D=cyl 143 thru 502 */	RDSZ(0),	0,		/* E=<undefined> */	RDSZ(0),	0,		/* F=<undefined> */	RDSZ(72240),	323,		/* G=cyl 323 thru 967 */	RDSZ(52080),	503,		/* H=cyl 503 thru 967 */}, rd9134D_sizes[8] = {	RDSZ(15936),	1,		/* A=cyl 1 thru 166 */	RDSZ(13056),	167,		/* B=cyl 167 thru 302 */	RDSZ(29088),	0,		/* C=cyl 0 thru 302 */	RDSZ(0),	0,		/* D=<undefined> */	RDSZ(0),	0,		/* E=<undefined> */	RDSZ(0),	0,		/* F=<undefined> */	RDSZ(0),	0,		/* G=<undefined> */	RDSZ(0),	0,		/* H=<undefined> */}, rd9122S_sizes[8] = {	RDSZ(0),	0,		/* A=<undefined> */	RDSZ(0),	0,		/* B=<undefined> */	RDSZ(1232),	0,		/* C=cyl 0 thru 76 */	RDSZ(0),	0,		/* D=<undefined> */	RDSZ(0),	0,		/* E=<undefined> */	RDSZ(0),	0,		/* F=<undefined> */	RDSZ(0),	0,		/* G=<undefined> */	RDSZ(0),	0,		/* H=<undefined> */}, rd7912P_sizes[8] = {	RDSZ(15904),	0,		/* A=cyl 1 thru 71 */	RDSZ(22400),	72,		/* B=cyl 72 thru 171 */	RDSZ(128128),	0,		/* C=cyl 0 thru 571 */	RDSZ(42560),	72,		/* D=cyl 72 thru 261 */	RDSZ(0),	292,		/* E=<undefined> */	RDSZ(0),	542,		/* F=<undefined> */	RDSZ(89600),	172,		/* G=cyl 221 thru 571 */	RDSZ(69440),	262,		/* H=cyl 262 thru 571 */}, rd7914P_sizes[8] = {	RDSZ(15904),	1,		/* A=cyl 1 thru 71 */	RDSZ(40320),	72,		/* B=cyl 72 thru 251 */	RDSZ(258048),	0,		/* C=cyl 0 thru 1151 */	RDSZ(64960),	72,		/* D=cyl 72 thru 361 */	RDSZ(98560),	362,		/* E=cyl 362 thru 801 */	RDSZ(78400),	802,		/* F=cyl 802 thru 1151 */	RDSZ(201600),	252,		/* G=cyl 221 thru 1151 */	RDSZ(176960),	362,		/* H=cyl 362 thru 1151 */}, rd7933H_sizes[8] = {	RDSZ(16146),	1,		/* A=cyl 1 thru 27 */	RDSZ(66976),	28,		/* B=cyl 28 thru 139 */	RDSZ(789958),	0,		/* C=cyl 0 thru 1320 */	RDSZ(16146),	140,		/* D=cyl 140 thru 166 */	RDSZ(165646),	167,		/* E=cyl 167 thru 443 */	RDSZ(165646),	444,		/* F=cyl 444 thru 720 */	RDSZ(706238),	140,		/* G=cyl 140 thru 1320 */	RDSZ(358800),	721,		/* H=cyl 721 thru 1320 */}, rd9134L_sizes[8] = {	RDSZ(15920),	1,		/* A=cyl 1 thru 199 */	RDSZ(20000),	200,		/* B=cyl 200 thru 449 */	RDSZ(77840),	0,		/* C=cyl 0 thru 972 */	RDSZ(32000),	200,		/* D=cyl 200 thru 599 */	RDSZ(0),	0,		/* E=<undefined> */	RDSZ(0),	0,		/* F=<undefined> */	RDSZ(41840),	450,		/* G=cyl 450 thru 972 */	RDSZ(29840),	600,		/* H=cyl 600 thru 972 */}, rd7957A_sizes[8] = {	RDSZ(16016),	1,		/* A=cyl 1 thru 104 */	RDSZ(24640),	105,		/* B=cyl 105 thru 264 */	RDSZ(159544),	0,		/* C=cyl 0 thru 1035 */	RDSZ(42350),	105,		/* D=cyl 105 thru 379 */	RDSZ(54824),	380,		/* E=cyl 380 thru 735 */	RDSZ(46200),	736,		/* F=cyl 736 thru 1035 */	RDSZ(118734),	265,		/* G=cyl 265 thru 1035 */	RDSZ(101024),	380,		/* H=cyl 380 thru 1035 */}, rd7958A_sizes[8] = {	RDSZ(16128),	1,		/* A=cyl 1 thru 64 */	RDSZ(32256),	65,		/* B=cyl 65 thru 192 */	RDSZ(255276),	0,		/* C=cyl 0 thru 1012 */	RDSZ(48384),	65,		/* D=cyl 65 thru 256 */	RDSZ(100800),	257,		/* E=cyl 257 thru 656 */	RDSZ(89712),	657,		/* F=cyl 657 thru 1012 */	RDSZ(206640),	193,		/* G=cyl 193 thru 1012 */	RDSZ(190512),	257,		/* H=cyl 257 thru 1012 */}, rd7957B_sizes[8] = {	RDSZ(16002),	1,		/* A=cyl 1 thru 127 */	RDSZ(32760),	128,		/* B=cyl 128 thru 387 */	RDSZ(159894),	0,		/* C=cyl 0 thru 1268 */	RDSZ(49140),	128,		/* D=cyl 128 thru 517 */	RDSZ(50400),	518,		/* E=cyl 518 thru 917 */	RDSZ(44226),	918,		/* F=cyl 918 thru 1268 */	RDSZ(111006),	388,		/* G=cyl 388 thru 1268 */	RDSZ(94626),	518,		/* H=cyl 518 thru 1268 */}, rd7958B_sizes[8] = {	RDSZ(16254),	1,		/* A=cyl 1 thru 43 */	RDSZ(32886),	44,		/* B=cyl 44 thru 130 */	RDSZ(297108),	0,		/* C=cyl 0 thru 785 */	RDSZ(49140),	44,		/* D=cyl 44 thru 173 */	RDSZ(121716),	174,		/* E=cyl 174 thru 495 */	RDSZ(109620),	496,		/* F=cyl 496 thru 785 */	RDSZ(247590),	131,		/* G=cyl 131 thru 785 */	RDSZ(231336),	174,		/* H=cyl 174 thru 785 */}, rd7959B_sizes[8] = {	RDSZ(16254),	1,		/* A=cyl 1 thru 43 */	RDSZ(49140),	44,		/* B=cyl 44 thru 173 */	RDSZ(594216),	0,		/* C=cyl 0 thru 1571 */	RDSZ(65772),	44,		/* D=cyl 44 thru 217 */	RDSZ(303912),	218,		/* E=cyl 218 thru 1021 */	RDSZ(207900),	1022,		/* F=cyl 1022 thru 1571 */	RDSZ(528444),	174,		/* G=cyl 174 thru 1571 */	RDSZ(511812),	218,		/* H=cyl 218 thru 1571 */}, rd2200A_sizes[8] = {	RDSZ(16272),	1,		/* A=cyl 1 thru 36 */	RDSZ(49720),	37,		/* B=cyl 37 thru 146 */	RDSZ(654948),	0,		/* C=cyl 0 thru 1448 */	RDSZ(65992),	37,		/* D=cyl 37 thru 182 */	RDSZ(304648),	183,		/* E=cyl 183 thru 856 */	RDSZ(267584),	857,		/* F=cyl 857 thru 1448 */	RDSZ(588504),	147,		/* G=cyl 147 thru 1448 */	RDSZ(572232),	183,		/* H=cyl 183 thru 1448 */}, rd2203A_sizes[8] = {	/* modelled after the 7937; i.e. bogus */	RDSZ(16272),	1,		/* A=cyl 1 thru 18 */	RDSZ(67800),	19,		/* B=cyl 19 thru 93 */	RDSZ(1309896),	0,		/* C=cyl 0 thru 1448 */	RDSZ(16272),	94,		/* D=cyl 19 thru 111 */	RDSZ(305552),	112,		/* E=cyl 112 thru 449 */	RDSZ(305552),	450,		/* F=cyl 450 thru 787 */	RDSZ(1224920),	94,		/* G=cyl 94 thru 1448 */	RDSZ(597544),	788,		/* H=cyl 788 thru 1448 */}, rd7936H_sizes[8] = {	RDSZ(16359),	1,		/* A=cyl 1 thru 19 */	RDSZ(67158),	20,		/* B=cyl 20 thru 97 */	RDSZ(600978),	0,		/* C=cyl 0 thru 697 */	RDSZ(16359),	98,		/* D=cyl 98 thru 116 */	RDSZ(120540),	117,		/* E=cyl 117 thru 256 */	RDSZ(120540),	256,		/* F=cyl 256 thru 396 */	RDSZ(516600),	98,		/* G=cyl 98 thru 697 */	RDSZ(259161),	397,		/* H=cyl 397 thru 697 */}, rd7937H_sizes[8] = {	RDSZ(15990),	1,		/* A=cyl 1 thru 10 */	RDSZ(67158),	11,		/* B=cyl 11 thru 52 */	RDSZ(1116102),	0,		/* C=cyl 0 thru 697 */	RDSZ(124722),	53,		/* D=cyl 53 thru 130 */	RDSZ(163098),	131,		/* E=cyl 131 thru 232 */	RDSZ(287820),	233,		/* F=cyl 233 thru 412 */	RDSZ(1031355),	53,		/* G=cyl 53 thru 697 */	RDSZ(455715),	413,		/* H=cyl 413 thru 697 */};/* * Indexed the same as rdidentinfo array. */struct rdcompatinfo {	int	nbpt;		/* DEV_BSIZE blocks per track */	int	ntpc;		/* tracks per cylinder */	int	ncyl;		/* cylinders per unit */	struct	size *sizes;	/* partition info */} rdcompatinfo[] = {	NRD7945ABPT,	NRD7945ATRK,	968,	rd7945A_sizes,	NRD9134DBPT,	NRD9134DTRK,	303,	rd9134D_sizes,	NRD9122SBPT,	NRD9122STRK,	77,	rd9122S_sizes,	NRD7912PBPT,	NRD7912PTRK,	572,	rd7912P_sizes,	NRD7914PBPT,	NRD7914PTRK,	1152,	rd7914P_sizes,	NRD7958ABPT,	NRD7958ATRK,	1013,	rd7958A_sizes,	NRD7957ABPT,	NRD7957ATRK,	1036,	rd7957A_sizes,	NRD7933HBPT,	NRD7933HTRK,	1321,	rd7933H_sizes,	NRD9134LBPT,	NRD9134LTRK,	973,	rd9134L_sizes,	NRD7936HBPT,	NRD7936HTRK,	698,	rd7936H_sizes,	NRD7937HBPT,	NRD7937HTRK,	698,	rd7937H_sizes,	NRD7914PBPT,	NRD7914PTRK,	1152,	rd7914P_sizes,	NRD7945ABPT,	NRD7945ATRK,	968,	rd7945A_sizes,	NRD9122SBPT,	NRD9122STRK,	77,	rd9122S_sizes,	NRD7957BBPT,	NRD7957BTRK,	1269,	rd7957B_sizes,	NRD7958BBPT,	NRD7958BTRK,	786,	rd7958B_sizes,	NRD7959BBPT,	NRD7959BTRK,	1572,	rd7959B_sizes,	NRD2200ABPT,	NRD2200ATRK,	1449,	rd2200A_sizes,	NRD2203ABPT,	NRD2203ATRK,	1449,	rd2203A_sizes,};int nrdcompatinfo = sizeof(rdcompatinfo) / sizeof(rdcompatinfo[0]);extern struct rd_softc rd_softc[];rdmakedisklabel(unit, lp)	int unit;	struct disklabel *lp;{	register struct rd_softc *rs = &rd_softc[unit];	register struct rdcompatinfo *ci = &rdcompatinfo[rs->sc_type];	register struct partition *pi;	register int dcount;		lp->d_nsectors = ci->nbpt;	lp->d_ntracks = ci->ntpc;	lp->d_ncylinders = ci->ncyl;	lp->d_secpercyl = ci->nbpt * ci->ntpc;	lp->d_secperunit = lp->d_secpercyl * ci->ncyl;	lp->d_rpm = 3600;	lp->d_interleave = 1;	lp->d_npartitions = 8;	pi = lp->d_partitions;	for (dcount = 0; dcount < lp->d_npartitions; dcount++) {		pi->p_size = ci->sizes[dcount].nblocks;		pi->p_offset = ci->sizes[dcount].cyloff * lp->d_secpercyl;		pi->p_fsize = 1024;		if (dcount == 1 || dcount == 3)			pi->p_fstype = FS_SWAP;		else if (dcount == 2)			pi->p_fstype = FS_BOOT;		else			pi->p_fstype = FS_BSDFFS;		pi->p_frag = 8;		pi++;	}}#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -