Home | History | Annotate | Line # | Download | only in alpha
autoconf.c revision 1.15
      1  1.15       cgd /*	$NetBSD: autoconf.c,v 1.15 1996/11/12 05:14:27 cgd Exp $	*/
      2   1.1       cgd 
      3   1.1       cgd /*
      4   1.4       cgd  * Copyright (c) 1992, 1993
      5   1.4       cgd  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.4       cgd  * This software was developed by the Computer Systems Engineering group
      8   1.4       cgd  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
      9   1.4       cgd  * contributed to Berkeley.
     10   1.1       cgd  *
     11   1.4       cgd  * All advertising materials mentioning features or use of this software
     12   1.4       cgd  * must display the following acknowledgement:
     13   1.4       cgd  *	This product includes software developed by the University of
     14   1.4       cgd  *	California, Lawrence Berkeley Laboratory.
     15   1.4       cgd  *
     16   1.4       cgd  * Redistribution and use in source and binary forms, with or without
     17   1.4       cgd  * modification, are permitted provided that the following conditions
     18   1.4       cgd  * are met:
     19   1.4       cgd  * 1. Redistributions of source code must retain the above copyright
     20   1.4       cgd  *    notice, this list of conditions and the following disclaimer.
     21   1.4       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     22   1.4       cgd  *    notice, this list of conditions and the following disclaimer in the
     23   1.4       cgd  *    documentation and/or other materials provided with the distribution.
     24   1.4       cgd  * 3. All advertising materials mentioning features or use of this software
     25   1.4       cgd  *    must display the following acknowledgement:
     26   1.4       cgd  *	This product includes software developed by the University of
     27   1.4       cgd  *	California, Berkeley and its contributors.
     28   1.4       cgd  * 4. Neither the name of the University nor the names of its contributors
     29   1.4       cgd  *    may be used to endorse or promote products derived from this software
     30   1.4       cgd  *    without specific prior written permission.
     31   1.4       cgd  *
     32   1.4       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     33   1.4       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     34   1.4       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     35   1.4       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     36   1.4       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     37   1.4       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     38   1.4       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     39   1.4       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     40   1.4       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     41   1.4       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     42   1.4       cgd  * SUCH DAMAGE.
     43   1.4       cgd  *
     44   1.4       cgd  *	@(#)autoconf.c	8.4 (Berkeley) 10/1/93
     45   1.1       cgd  */
     46   1.1       cgd 
     47   1.1       cgd #include <sys/param.h>
     48   1.1       cgd #include <sys/systm.h>
     49   1.1       cgd #include <sys/buf.h>
     50   1.1       cgd #include <sys/disklabel.h>
     51   1.1       cgd #include <sys/conf.h>
     52   1.1       cgd #include <sys/reboot.h>
     53   1.1       cgd #include <sys/device.h>
     54   1.1       cgd 
     55   1.1       cgd #include <machine/autoconf.h>
     56   1.5       cgd #include <machine/prom.h>
     57  1.15       cgd #include <machine/cpuconf.h>
     58   1.5       cgd 
     59   1.7       cgd extern char		root_device[17];		/* XXX */
     60   1.7       cgd 
     61   1.5       cgd struct device		*booted_device;
     62   1.5       cgd int			booted_partition;
     63   1.5       cgd struct bootdev_data	*bootdev_data;
     64   1.5       cgd char			boot_dev[128];
     65   1.5       cgd 
     66   1.5       cgd void	parse_prom_bootdev __P((void));
     67   1.5       cgd int	atoi __P((char *));
     68   1.1       cgd 
     69  1.11       cgd static struct device *parsedisk __P((char *str, int len, int defpart,
     70  1.11       cgd 				     dev_t *devp));
     71   1.4       cgd static struct device *getdisk __P((char *str, int len, int defpart,
     72   1.4       cgd 				   dev_t *devp));
     73   1.4       cgd static int findblkmajor __P((struct device *dv));
     74   1.7       cgd static char *findblkname __P((int));
     75   1.4       cgd static int getstr __P((char *cp, int size));
     76   1.4       cgd 
     77   1.1       cgd /*
     78   1.1       cgd  * configure:
     79   1.1       cgd  * called at boot time, configure all devices on system
     80   1.1       cgd  */
     81   1.1       cgd void
     82   1.1       cgd configure()
     83   1.1       cgd {
     84   1.1       cgd 	extern int cold;
     85   1.1       cgd 
     86   1.5       cgd 	parse_prom_bootdev();
     87   1.5       cgd 
     88   1.1       cgd 	(void)splhigh();
     89   1.2       cgd 	if (config_rootfound("mainbus", "mainbus") == NULL)
     90   1.1       cgd 		panic("no mainbus found");
     91   1.1       cgd 	(void)spl0();
     92   1.1       cgd 
     93   1.5       cgd 	if (booted_device == NULL)
     94  1.14  christos 		printf("WARNING: can't figure what device matches \"%s\"\n",
     95   1.5       cgd 		    boot_dev);
     96   1.1       cgd 	setroot();
     97   1.1       cgd 	swapconf();
     98   1.1       cgd 	cold = 0;
     99   1.1       cgd }
    100   1.1       cgd 
    101   1.1       cgd /*
    102   1.1       cgd  * Configure swap space and related parameters.
    103   1.1       cgd  */
    104   1.1       cgd swapconf()
    105   1.1       cgd {
    106   1.4       cgd 	struct swdevt *swp;
    107   1.4       cgd 	int nblks, maj;
    108   1.1       cgd 
    109   1.1       cgd 	for (swp = swdevt; swp->sw_dev != NODEV; swp++) {
    110   1.4       cgd 		maj = major(swp->sw_dev);
    111   1.1       cgd 		if (maj > nblkdev)
    112   1.1       cgd 			break;
    113   1.1       cgd 		if (bdevsw[maj].d_psize) {
    114   1.1       cgd 			nblks = (*bdevsw[maj].d_psize)(swp->sw_dev);
    115   1.1       cgd 			if (nblks != -1 &&
    116   1.1       cgd 			    (swp->sw_nblks == 0 || swp->sw_nblks > nblks))
    117   1.1       cgd 				swp->sw_nblks = nblks;
    118   1.1       cgd 			swp->sw_nblks = ctod(dtoc(swp->sw_nblks));
    119   1.1       cgd 		}
    120   1.1       cgd 	}
    121   1.4       cgd 	dumpconf();
    122   1.1       cgd }
    123   1.1       cgd 
    124   1.4       cgd struct nam2blk {
    125   1.4       cgd 	char *name;
    126   1.4       cgd 	int maj;
    127   1.4       cgd } nam2blk[] = {
    128   1.4       cgd 	{ "st",		2 },
    129   1.4       cgd 	{ "cd",		3 },
    130  1.11       cgd 	{ "rd",		6 },
    131   1.4       cgd 	{ "sd",		8 },
    132   1.4       cgd #if 0
    133   1.4       cgd 	{ "fd",		XXX },
    134   1.4       cgd #endif
    135   1.4       cgd };
    136   1.4       cgd 
    137  1.12       cgd #ifdef RAMDISK_HOOKS
    138  1.12       cgd static struct device fakerdrootdev = { DV_DISK, {}, NULL, 0, "rd0", NULL };
    139  1.12       cgd #endif
    140  1.12       cgd 
    141   1.4       cgd static int
    142   1.4       cgd findblkmajor(dv)
    143   1.4       cgd 	struct device *dv;
    144   1.4       cgd {
    145   1.4       cgd 	char *name = dv->dv_xname;
    146   1.4       cgd 	register int i;
    147   1.4       cgd 
    148   1.4       cgd 	for (i = 0; i < sizeof(nam2blk)/sizeof(nam2blk[0]); ++i)
    149   1.4       cgd 		if (strncmp(name, nam2blk[i].name, strlen(nam2blk[0].name))
    150   1.4       cgd 		    == 0)
    151   1.4       cgd 			return (nam2blk[i].maj);
    152   1.4       cgd 	return (-1);
    153   1.4       cgd }
    154   1.4       cgd 
    155   1.7       cgd static char *
    156   1.7       cgd findblkname(maj)
    157   1.7       cgd 	int maj;
    158   1.7       cgd {
    159   1.7       cgd 	register int i;
    160   1.7       cgd 
    161   1.7       cgd 	for (i = 0; i < sizeof(nam2blk)/sizeof(nam2blk[0]); ++i)
    162   1.7       cgd 		if (maj == nam2blk[i].maj)
    163   1.7       cgd 			return (nam2blk[i].name);
    164   1.7       cgd 	return (NULL);
    165   1.7       cgd }
    166   1.7       cgd 
    167   1.4       cgd static struct device *
    168   1.4       cgd getdisk(str, len, defpart, devp)
    169   1.4       cgd 	char *str;
    170   1.4       cgd 	int len, defpart;
    171   1.4       cgd 	dev_t *devp;
    172   1.4       cgd {
    173   1.4       cgd 	register struct device *dv;
    174   1.1       cgd 
    175   1.4       cgd 	if ((dv = parsedisk(str, len, defpart, devp)) == NULL) {
    176  1.14  christos 		printf("use one of:");
    177  1.12       cgd #ifdef RAMDISK_HOOKS
    178  1.14  christos 		printf(" %s[a-h]", fakerdrootdev.dv_xname);
    179  1.12       cgd #endif
    180   1.4       cgd 		for (dv = alldevs.tqh_first; dv != NULL;
    181   1.4       cgd 		    dv = dv->dv_list.tqe_next) {
    182   1.4       cgd 			if (dv->dv_class == DV_DISK)
    183  1.14  christos 				printf(" %s[a-h]", dv->dv_xname);
    184   1.4       cgd #ifdef NFSCLIENT
    185   1.4       cgd 			if (dv->dv_class == DV_IFNET)
    186  1.14  christos 				printf(" %s", dv->dv_xname);
    187   1.4       cgd #endif
    188   1.4       cgd 		}
    189  1.14  christos 		printf(" halt\n");
    190   1.4       cgd 	}
    191   1.4       cgd 	return (dv);
    192   1.4       cgd }
    193   1.4       cgd 
    194  1.11       cgd static struct device *
    195   1.4       cgd parsedisk(str, len, defpart, devp)
    196   1.4       cgd 	char *str;
    197   1.4       cgd 	int len, defpart;
    198   1.4       cgd 	dev_t *devp;
    199   1.4       cgd {
    200   1.4       cgd 	register struct device *dv;
    201   1.4       cgd 	register char *cp, c;
    202   1.4       cgd 	int majdev, part;
    203   1.4       cgd 
    204   1.4       cgd 	if (len == 0)
    205   1.4       cgd 		return (NULL);
    206  1.11       cgd 
    207  1.11       cgd 	if (len == 4 && !strcmp(str, "halt"))
    208  1.11       cgd 		boot(RB_HALT, NULL);
    209  1.11       cgd 
    210   1.4       cgd 	cp = str + len - 1;
    211   1.4       cgd 	c = *cp;
    212   1.4       cgd 	if (c >= 'a' && c <= ('a' + MAXPARTITIONS - 1)) {
    213   1.4       cgd 		part = c - 'a';
    214   1.4       cgd 		*cp = '\0';
    215   1.4       cgd 	} else
    216   1.4       cgd 		part = defpart;
    217   1.4       cgd 
    218  1.12       cgd #ifdef RAMDISK_HOOKS
    219  1.12       cgd 	if (strcmp(str, fakerdrootdev.dv_xname) == 0) {
    220  1.12       cgd 		dv = &fakerdrootdev;
    221  1.12       cgd 		goto gotdisk;
    222  1.12       cgd 	}
    223  1.12       cgd #endif
    224   1.4       cgd 	for (dv = alldevs.tqh_first; dv != NULL; dv = dv->dv_list.tqe_next) {
    225   1.4       cgd 		if (dv->dv_class == DV_DISK &&
    226   1.4       cgd 		    strcmp(str, dv->dv_xname) == 0) {
    227  1.12       cgd #ifdef RAMDISK_HOOKS
    228  1.12       cgd gotdisk:
    229  1.12       cgd #endif
    230   1.4       cgd 			majdev = findblkmajor(dv);
    231   1.4       cgd 			if (majdev < 0)
    232   1.4       cgd 				panic("parsedisk");
    233   1.4       cgd 			*devp = MAKEDISKDEV(majdev, dv->dv_unit, part);
    234   1.4       cgd 			break;
    235   1.4       cgd 		}
    236   1.4       cgd #ifdef NFSCLIENT
    237   1.4       cgd 		if (dv->dv_class == DV_IFNET &&
    238   1.4       cgd 		    strcmp(str, dv->dv_xname) == 0) {
    239   1.4       cgd 			*devp = NODEV;
    240   1.4       cgd 			break;
    241   1.4       cgd 		}
    242   1.4       cgd #endif
    243   1.4       cgd 	}
    244   1.4       cgd 
    245   1.4       cgd 	*cp = c;
    246   1.4       cgd 	return (dv);
    247   1.4       cgd }
    248   1.1       cgd 
    249   1.1       cgd /*
    250   1.1       cgd  * Attempt to find the device from which we were booted.
    251   1.1       cgd  * If we can do so, and not instructed not to do so,
    252   1.1       cgd  * change rootdev to correspond to the load device.
    253   1.4       cgd  *
    254   1.4       cgd  * XXX Actually, swap and root must be on the same type of device,
    255   1.4       cgd  * (ie. DV_DISK or DV_IFNET) because of how (*mountroot) is written.
    256   1.4       cgd  * That should be fixed.
    257   1.1       cgd  */
    258   1.1       cgd setroot()
    259   1.1       cgd {
    260   1.1       cgd 	struct swdevt *swp;
    261   1.4       cgd 	struct device *dv;
    262   1.4       cgd         register int len;
    263   1.4       cgd 	dev_t nrootdev, nswapdev = NODEV;
    264   1.7       cgd 	char buf[128], *rootdevname;
    265   1.4       cgd 	extern int (*mountroot) __P((void *));
    266   1.4       cgd 	dev_t temp;
    267   1.4       cgd 	struct device *bootdv, *rootdv, *swapdv;
    268   1.5       cgd 	int bootpartition;
    269   1.4       cgd #if defined(NFSCLIENT)
    270   1.4       cgd 	extern char *nfsbootdevname;
    271   1.4       cgd 	extern int nfs_mountroot __P((void *));
    272   1.4       cgd #endif
    273   1.4       cgd #if defined(FFS)
    274   1.4       cgd 	extern int ffs_mountroot __P((void *));
    275   1.4       cgd #endif
    276   1.4       cgd 
    277  1.12       cgd #ifdef RAMDISK_HOOKS
    278  1.12       cgd 	bootdv = &fakerdrootdev;
    279  1.12       cgd 	bootpartition = 0;
    280  1.12       cgd #else
    281   1.5       cgd 	bootdv = booted_device;
    282   1.5       cgd 	bootpartition = booted_partition;
    283  1.12       cgd #endif
    284   1.4       cgd 
    285   1.4       cgd 	/*
    286   1.4       cgd 	 * If 'swap generic' and we couldn't determine root device,
    287   1.4       cgd 	 * ask the user.
    288   1.4       cgd 	 */
    289   1.4       cgd 	if (mountroot == NULL && bootdv == NULL)
    290   1.4       cgd 		boothowto |= RB_ASKNAME;
    291   1.4       cgd 
    292   1.4       cgd 	if (boothowto & RB_ASKNAME) {
    293   1.4       cgd 		for (;;) {
    294  1.14  christos 			printf("root device");
    295   1.9       cgd 			if (bootdv != NULL) {
    296  1.14  christos 				printf(" (default %s", bootdv->dv_xname);
    297   1.9       cgd 				if (bootdv->dv_class == DV_DISK)
    298  1.14  christos 					printf("%c", bootpartition + 'a');
    299  1.14  christos 				printf(")");
    300   1.9       cgd 			}
    301  1.14  christos 			printf(": ");
    302   1.4       cgd 			len = getstr(buf, sizeof(buf));
    303   1.4       cgd 			if (len == 0 && bootdv != NULL) {
    304   1.4       cgd 				strcpy(buf, bootdv->dv_xname);
    305   1.4       cgd 				len = strlen(buf);
    306   1.4       cgd 			}
    307   1.4       cgd 			if (len > 0 && buf[len - 1] == '*') {
    308   1.4       cgd 				buf[--len] = '\0';
    309   1.4       cgd 				dv = getdisk(buf, len, 1, &nrootdev);
    310   1.4       cgd 				if (dv != NULL) {
    311   1.4       cgd 					rootdv = dv;
    312   1.4       cgd 					nswapdev = nrootdev;
    313   1.4       cgd 					goto gotswap;
    314   1.4       cgd 				}
    315   1.4       cgd 			}
    316   1.4       cgd 			dv = getdisk(buf, len, bootpartition, &nrootdev);
    317   1.4       cgd 			if (dv != NULL) {
    318   1.4       cgd 				rootdv = dv;
    319   1.4       cgd 				break;
    320   1.4       cgd 			}
    321   1.4       cgd 		}
    322   1.4       cgd 
    323   1.4       cgd 		/*
    324   1.4       cgd 		 * because swap must be on same device type as root, for
    325   1.4       cgd 		 * network devices this is easy.
    326   1.4       cgd 		 */
    327   1.4       cgd 		if (rootdv->dv_class == DV_IFNET) {
    328   1.4       cgd 			swapdv = NULL;
    329   1.4       cgd 			goto gotswap;
    330   1.4       cgd 		}
    331   1.4       cgd 		for (;;) {
    332  1.14  christos 			printf("swap device");
    333  1.14  christos 			printf(" (default %s", rootdv->dv_xname);
    334  1.11       cgd 			if (rootdv->dv_class == DV_DISK)
    335  1.14  christos 				printf("b");
    336  1.14  christos 			printf(")");
    337  1.14  christos 			printf(": ");
    338   1.4       cgd 			len = getstr(buf, sizeof(buf));
    339   1.4       cgd 			if (len == 0) {
    340   1.4       cgd 				switch (rootdv->dv_class) {
    341   1.4       cgd 				case DV_IFNET:
    342   1.4       cgd 					nswapdev = NODEV;
    343   1.4       cgd 					break;
    344   1.4       cgd 				case DV_DISK:
    345   1.4       cgd 					nswapdev = MAKEDISKDEV(major(nrootdev),
    346   1.4       cgd 					    DISKUNIT(nrootdev), 1);
    347   1.4       cgd 					break;
    348   1.4       cgd 				case DV_TAPE:
    349   1.4       cgd 				case DV_TTY:
    350   1.4       cgd 				case DV_DULL:
    351   1.4       cgd 				case DV_CPU:
    352   1.4       cgd 					break;
    353   1.4       cgd 				}
    354   1.4       cgd 				swapdv = rootdv;
    355   1.4       cgd 				break;
    356   1.4       cgd 			}
    357   1.4       cgd 			dv = getdisk(buf, len, 1, &nswapdev);
    358   1.4       cgd 			if (dv) {
    359   1.4       cgd 				if (dv->dv_class == DV_IFNET)
    360   1.4       cgd 					nswapdev = NODEV;
    361   1.4       cgd 				swapdv = dv;
    362   1.4       cgd 				break;
    363   1.4       cgd 			}
    364   1.4       cgd 		}
    365   1.4       cgd gotswap:
    366   1.4       cgd 		rootdev = nrootdev;
    367   1.4       cgd 		dumpdev = nswapdev;
    368   1.4       cgd 		swdevt[0].sw_dev = nswapdev;
    369   1.4       cgd 		swdevt[1].sw_dev = NODEV;
    370   1.4       cgd 	} else if (mountroot == NULL) {
    371   1.4       cgd 		int majdev;
    372   1.4       cgd 
    373   1.4       cgd 		/*
    374   1.4       cgd 		 * "swap generic"
    375   1.4       cgd 		 */
    376   1.4       cgd 		majdev = findblkmajor(bootdv);
    377   1.4       cgd 		if (majdev >= 0) {
    378   1.4       cgd 			/*
    379   1.4       cgd 			 * Root and swap are on a disk.
    380   1.4       cgd 			 */
    381   1.4       cgd 			rootdv = swapdv = bootdv;
    382   1.4       cgd 			rootdev = MAKEDISKDEV(majdev, bootdv->dv_unit,
    383   1.4       cgd 			    bootpartition);
    384   1.4       cgd 			nswapdev = dumpdev =
    385   1.4       cgd 			    MAKEDISKDEV(majdev, bootdv->dv_unit, 1);
    386   1.4       cgd 		} else {
    387   1.4       cgd 			/*
    388   1.4       cgd 			 * Root and swap are on a net.
    389   1.4       cgd 			 */
    390   1.6       cgd 			rootdv = swapdv = bootdv;
    391   1.4       cgd 			nswapdev = dumpdev = NODEV;
    392   1.4       cgd 		}
    393   1.4       cgd 		swdevt[0].sw_dev = nswapdev;
    394   1.4       cgd 		swdevt[1].sw_dev = NODEV;
    395   1.4       cgd         } else {
    396   1.4       cgd 		/*
    397  1.12       cgd 		 * `root DEV swap DEV': honor rootdev/swdevt.
    398   1.4       cgd 		 * rootdev/swdevt/mountroot already properly set.
    399   1.4       cgd 		 */
    400   1.7       cgd 
    401   1.7       cgd 		rootdevname = findblkname(major(rootdev));
    402   1.7       cgd 		if (rootdevname == NULL) {
    403   1.7       cgd 			/* Root on NFS or unknown device. */
    404   1.7       cgd 			strcpy(root_device, "??");
    405   1.7       cgd 		} else {
    406   1.7       cgd 			/* Root on known block device. */
    407  1.14  christos 			sprintf(root_device, "%s%d%c", rootdevname,
    408   1.7       cgd 			    DISKUNIT(rootdev), DISKPART(rootdev) + 'a');
    409   1.7       cgd 		}
    410   1.7       cgd 
    411   1.4       cgd 		return;
    412   1.4       cgd 	}
    413   1.1       cgd 
    414   1.4       cgd 	switch (rootdv->dv_class) {
    415   1.4       cgd #if defined(NFSCLIENT)
    416   1.4       cgd 	case DV_IFNET:
    417   1.7       cgd 		strcpy(root_device, "??");
    418   1.4       cgd 		mountroot = nfs_mountroot;
    419   1.4       cgd 		nfsbootdevname = rootdv->dv_xname;
    420   1.1       cgd 		return;
    421   1.4       cgd #endif
    422   1.4       cgd #if defined(FFS)
    423   1.4       cgd 	case DV_DISK:
    424   1.4       cgd 		mountroot = ffs_mountroot;
    425  1.14  christos 		sprintf(root_device, "%s%c", rootdv->dv_xname,
    426   1.4       cgd 		    DISKPART(rootdev) + 'a');
    427  1.14  christos 		printf("root on %s", root_device);
    428   1.4       cgd 		if (nswapdev != NODEV)
    429  1.14  christos 			printf(" swap on %s%c", swapdv->dv_xname,
    430   1.4       cgd 			    DISKPART(nswapdev) + 'a');
    431  1.14  christos 		printf("\n");
    432   1.4       cgd 		break;
    433   1.4       cgd #endif
    434   1.4       cgd 	default:
    435  1.14  christos 		printf("can't figure root, hope your kernel is right\n");
    436   1.1       cgd 		return;
    437   1.4       cgd 	}
    438   1.4       cgd 
    439   1.1       cgd 	/*
    440   1.4       cgd 	 * Make the swap partition on the root drive the primary swap.
    441   1.1       cgd 	 */
    442   1.4       cgd 	temp = NODEV;
    443   1.1       cgd 	for (swp = swdevt; swp->sw_dev != NODEV; swp++) {
    444   1.4       cgd 		if (major(rootdev) == major(swp->sw_dev) &&
    445   1.4       cgd 		    DISKUNIT(rootdev) == DISKUNIT(swp->sw_dev)) {
    446   1.1       cgd 			temp = swdevt[0].sw_dev;
    447   1.1       cgd 			swdevt[0].sw_dev = swp->sw_dev;
    448   1.1       cgd 			swp->sw_dev = temp;
    449   1.1       cgd 			break;
    450   1.1       cgd 		}
    451   1.1       cgd 	}
    452   1.1       cgd 	if (swp->sw_dev == NODEV)
    453   1.1       cgd 		return;
    454   1.1       cgd 
    455   1.1       cgd 	/*
    456   1.1       cgd 	 * If dumpdev was the same as the old primary swap device, move
    457   1.1       cgd 	 * it to the new primary swap device.
    458   1.1       cgd 	 */
    459   1.1       cgd 	if (temp == dumpdev)
    460   1.1       cgd 		dumpdev = swdevt[0].sw_dev;
    461   1.4       cgd }
    462   1.4       cgd 
    463   1.4       cgd static int
    464   1.4       cgd getstr(cp, size)
    465   1.4       cgd 	register char *cp;
    466   1.4       cgd 	register int size;
    467   1.4       cgd {
    468   1.4       cgd 	register char *lp;
    469   1.4       cgd 	register int c;
    470   1.4       cgd 	register int len;
    471   1.4       cgd 
    472   1.4       cgd 	lp = cp;
    473   1.4       cgd 	len = 0;
    474   1.4       cgd 	for (;;) {
    475   1.4       cgd 		c = cngetc();
    476   1.4       cgd 		switch (c) {
    477   1.4       cgd 		case '\n':
    478   1.4       cgd 		case '\r':
    479  1.14  christos 			printf("\n");
    480   1.4       cgd 			*lp++ = '\0';
    481   1.4       cgd 			return (len);
    482   1.4       cgd 		case '\b':
    483   1.4       cgd 		case '\177':
    484   1.4       cgd 		case '#':
    485   1.4       cgd 			if (len) {
    486   1.4       cgd 				--len;
    487   1.4       cgd 				--lp;
    488  1.14  christos 				printf("\b \b");
    489   1.4       cgd 			}
    490   1.4       cgd 			continue;
    491   1.4       cgd 		case '@':
    492   1.4       cgd 		case 'u'&037:
    493   1.4       cgd 			len = 0;
    494   1.4       cgd 			lp = cp;
    495  1.14  christos 			printf("\n");
    496   1.4       cgd 			continue;
    497   1.4       cgd 		default:
    498   1.4       cgd 			if (len + 1 >= size || c < ' ') {
    499  1.14  christos 				printf("\007");
    500   1.4       cgd 				continue;
    501   1.4       cgd 			}
    502  1.14  christos 			printf("%c", c);
    503   1.4       cgd 			++len;
    504   1.4       cgd 			*lp++ = c;
    505   1.4       cgd 		}
    506   1.4       cgd 	}
    507   1.5       cgd }
    508   1.5       cgd 
    509   1.5       cgd void
    510   1.5       cgd parse_prom_bootdev()
    511   1.5       cgd {
    512   1.5       cgd 	static char hacked_boot_dev[128];
    513   1.5       cgd 	static struct bootdev_data bd;
    514   1.5       cgd 	char *cp, *scp, *boot_fields[8];
    515   1.5       cgd 	int i, done;
    516   1.5       cgd 
    517   1.5       cgd 	booted_device = NULL;
    518   1.5       cgd 	booted_partition = 0;
    519   1.5       cgd 	bootdev_data = NULL;
    520   1.5       cgd 
    521   1.5       cgd         prom_getenv(PROM_E_BOOTED_DEV, boot_dev, sizeof(boot_dev));
    522   1.5       cgd 	bcopy(boot_dev, hacked_boot_dev, sizeof hacked_boot_dev);
    523   1.5       cgd #if 0
    524  1.14  christos 	printf("parse_prom_bootdev: boot dev = \"%s\"\n", boot_dev);
    525   1.5       cgd #endif
    526   1.5       cgd 
    527   1.5       cgd 	i = 0;
    528   1.5       cgd 	scp = cp = hacked_boot_dev;
    529   1.5       cgd 	for (done = 0; !done; cp++) {
    530   1.5       cgd 		if (*cp != ' ' && *cp != '\0')
    531   1.5       cgd 			continue;
    532   1.5       cgd 		if (*cp == '\0')
    533   1.5       cgd 			done = 1;
    534   1.5       cgd 
    535   1.5       cgd 		*cp = '\0';
    536   1.5       cgd 		boot_fields[i++] = scp;
    537   1.5       cgd 		scp = cp + 1;
    538   1.5       cgd 		if (i == 8)
    539   1.5       cgd 			done = 1;
    540   1.5       cgd 	}
    541   1.5       cgd 	if (i != 8)
    542   1.5       cgd 		return;		/* doesn't look like anything we know! */
    543   1.5       cgd 
    544   1.5       cgd #if 0
    545  1.14  christos 	printf("i = %d, done = %d\n", i, done);
    546   1.5       cgd 	for (i--; i >= 0; i--)
    547  1.14  christos 		printf("%d = %s\n", i, boot_fields[i]);
    548   1.5       cgd #endif
    549   1.5       cgd 
    550   1.5       cgd 	bd.protocol = boot_fields[0];
    551   1.5       cgd 	bd.bus = atoi(boot_fields[1]);
    552   1.5       cgd 	bd.slot = atoi(boot_fields[2]);
    553   1.5       cgd 	bd.channel = atoi(boot_fields[3]);
    554   1.5       cgd 	bd.remote_address = boot_fields[4];
    555   1.5       cgd 	bd.unit = atoi(boot_fields[5]);
    556   1.5       cgd 	bd.boot_dev_type = atoi(boot_fields[6]);
    557   1.5       cgd 	bd.ctrl_dev_type = boot_fields[7];
    558   1.5       cgd 
    559   1.5       cgd #if 0
    560  1.14  christos 	printf("parsed: proto = %s, bus = %d, slot = %d, channel = %d,\n",
    561   1.5       cgd 	    bd.protocol, bd.bus, bd.slot, bd.channel);
    562  1.14  christos 	printf("\tremote = %s, unit = %d, dev_type = %d, ctrl_type = %s\n",
    563   1.5       cgd 	    bd.remote_address, bd.unit, bd.boot_dev_type, bd.ctrl_dev_type);
    564   1.5       cgd #endif
    565   1.5       cgd 
    566   1.5       cgd 	bootdev_data = &bd;
    567   1.5       cgd }
    568   1.5       cgd 
    569   1.5       cgd int
    570   1.5       cgd atoi(s)
    571   1.5       cgd 	char *s;
    572   1.5       cgd {
    573   1.5       cgd 	int n, neg;
    574   1.5       cgd 	char c;
    575   1.5       cgd 
    576   1.5       cgd 	n = 0;
    577   1.5       cgd 	neg = 0;
    578   1.5       cgd 
    579   1.5       cgd 	while (*s == '-') {
    580   1.5       cgd 		s++;
    581   1.5       cgd 		neg = !neg;
    582   1.5       cgd 	}
    583   1.5       cgd 
    584   1.5       cgd 	while (*s != '\0') {
    585   1.5       cgd 		if (*s < '0' && *s > '9')
    586   1.5       cgd 			break;
    587   1.5       cgd 
    588   1.5       cgd 		n = (10 * n) + (*s - '0');
    589   1.5       cgd 		s++;
    590   1.5       cgd 	}
    591   1.5       cgd 
    592   1.5       cgd 	return (neg ? -n : n);
    593   1.5       cgd }
    594   1.5       cgd 
    595   1.5       cgd void
    596   1.5       cgd device_register(dev, aux)
    597   1.5       cgd 	struct device *dev;
    598   1.5       cgd 	void *aux;
    599   1.5       cgd {
    600  1.15       cgd 	extern const struct cpusw *cpu_fn_switch;
    601   1.5       cgd 
    602   1.5       cgd 	if (bootdev_data == NULL) {
    603   1.5       cgd 		/*
    604   1.5       cgd 		 * There is no hope.
    605   1.5       cgd 		 */
    606   1.5       cgd 
    607   1.5       cgd 		return;
    608   1.5       cgd 	}
    609   1.5       cgd 
    610  1.15       cgd 	(*cpu_fn_switch->device_register)(dev, aux);
    611   1.1       cgd }
    612