Home | History | Annotate | Line # | Download | only in config
mkioconf.c revision 1.23
      1  1.23  uebayasi /*	$NetBSD: mkioconf.c,v 1.23 2014/10/31 17:43:55 uebayasi Exp $	*/
      2   1.1   thorpej 
      3   1.1   thorpej /*
      4   1.1   thorpej  * Copyright (c) 1992, 1993
      5   1.1   thorpej  *	The Regents of the University of California.  All rights reserved.
      6   1.1   thorpej  *
      7   1.1   thorpej  * This software was developed by the Computer Systems Engineering group
      8   1.1   thorpej  * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
      9   1.1   thorpej  * contributed to Berkeley.
     10   1.1   thorpej  *
     11   1.1   thorpej  * All advertising materials mentioning features or use of this software
     12   1.1   thorpej  * must display the following acknowledgement:
     13   1.1   thorpej  *	This product includes software developed by the University of
     14   1.1   thorpej  *	California, Lawrence Berkeley Laboratories.
     15   1.1   thorpej  *
     16   1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     17   1.1   thorpej  * modification, are permitted provided that the following conditions
     18   1.1   thorpej  * are met:
     19   1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     20   1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     21   1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     22   1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     23   1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     24   1.1   thorpej  * 3. Neither the name of the University nor the names of its contributors
     25   1.1   thorpej  *    may be used to endorse or promote products derived from this software
     26   1.1   thorpej  *    without specific prior written permission.
     27   1.1   thorpej  *
     28   1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     29   1.1   thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     30   1.1   thorpej  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     31   1.1   thorpej  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     32   1.1   thorpej  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     33   1.1   thorpej  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     34   1.1   thorpej  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     35   1.1   thorpej  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     36   1.1   thorpej  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     37   1.1   thorpej  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     38   1.1   thorpej  * SUCH DAMAGE.
     39   1.1   thorpej  *
     40   1.1   thorpej  *	from: @(#)mkioconf.c	8.1 (Berkeley) 6/6/93
     41   1.1   thorpej  */
     42   1.1   thorpej 
     43   1.1   thorpej #if HAVE_NBTOOL_CONFIG_H
     44   1.1   thorpej #include "nbtool_config.h"
     45   1.1   thorpej #endif
     46   1.1   thorpej 
     47  1.22  christos #include <sys/cdefs.h>
     48  1.22  christos __RCSID("$NetBSD: mkioconf.c,v 1.23 2014/10/31 17:43:55 uebayasi Exp $");
     49  1.22  christos 
     50   1.1   thorpej #include <sys/param.h>
     51   1.8       dsl #include <err.h>
     52   1.1   thorpej #include <errno.h>
     53   1.1   thorpej #include <stdio.h>
     54   1.1   thorpej #include <stdlib.h>
     55   1.1   thorpej #include <string.h>
     56   1.1   thorpej #include "defs.h"
     57   1.1   thorpej 
     58   1.1   thorpej /*
     59   1.1   thorpej  * Make ioconf.c.
     60   1.1   thorpej  */
     61   1.3  drochner static int cf_locators_print(const char *, void *, void *);
     62   1.1   thorpej static int cforder(const void *, const void *);
     63   1.8       dsl static void emitcfdata(FILE *);
     64   1.8       dsl static void emitcfdrivers(FILE *);
     65   1.8       dsl static void emitexterns(FILE *);
     66   1.8       dsl static void emitcfattachinit(FILE *);
     67   1.8       dsl static void emithdr(FILE *);
     68   1.8       dsl static void emitloc(FILE *);
     69   1.8       dsl static void emitpseudo(FILE *);
     70   1.8       dsl static void emitparents(FILE *);
     71   1.8       dsl static void emitroots(FILE *);
     72   1.8       dsl static void emitname2blk(FILE *);
     73   1.1   thorpej 
     74   1.1   thorpej #define	SEP(pos, max)	(((u_int)(pos) % (max)) == 0 ? "\n\t" : " ")
     75   1.1   thorpej 
     76   1.1   thorpej #define ARRNAME(n, l) (strchr((n), ARRCHR) && strncmp((n), (l), strlen((l))) == 0)
     77   1.1   thorpej 
     78   1.1   thorpej /*
     79   1.1   thorpej  * NEWLINE can only be used in the emitXXX functions.
     80   1.1   thorpej  * In most cases it can be subsumed into an fprintf.
     81   1.1   thorpej  */
     82   1.8       dsl #define	NEWLINE		putc('\n', fp)
     83   1.1   thorpej 
     84   1.1   thorpej int
     85   1.1   thorpej mkioconf(void)
     86   1.1   thorpej {
     87   1.1   thorpej 	FILE *fp;
     88   1.1   thorpej 
     89   1.1   thorpej 	qsort(packed, npacked, sizeof *packed, cforder);
     90   1.1   thorpej 	if ((fp = fopen("ioconf.c.tmp", "w")) == NULL) {
     91   1.9  christos 		warn("cannot write ioconf.c");
     92   1.1   thorpej 		return (1);
     93   1.1   thorpej 	}
     94   1.8       dsl 
     95  1.16     pooka 	emithdr(fp);
     96  1.16     pooka 	emitcfdrivers(fp);
     97  1.16     pooka 	emitexterns(fp);
     98  1.16     pooka 	emitloc(fp);
     99  1.16     pooka 	emitparents(fp);
    100  1.16     pooka 	emitcfdata(fp);
    101  1.17     pooka 	emitcfattachinit(fp);
    102  1.16     pooka 
    103  1.15     pooka 	if (ioconfname == NULL) {
    104  1.15     pooka 		emitroots(fp);
    105  1.15     pooka 		emitpseudo(fp);
    106  1.15     pooka 		if (!do_devsw)
    107  1.15     pooka 			emitname2blk(fp);
    108  1.15     pooka 	}
    109   1.8       dsl 
    110   1.8       dsl 	fflush(fp);
    111   1.8       dsl 	if (ferror(fp)) {
    112   1.9  christos 		warn("error writing ioconf.c");
    113   1.1   thorpej 		(void)fclose(fp);
    114   1.9  christos #if 0
    115   1.9  christos 		(void)unlink("ioconf.c.tmp");
    116   1.9  christos #endif
    117   1.1   thorpej 		return (1);
    118   1.1   thorpej 	}
    119   1.8       dsl 
    120   1.1   thorpej 	(void)fclose(fp);
    121   1.1   thorpej 	if (moveifchanged("ioconf.c.tmp", "ioconf.c") != 0) {
    122   1.9  christos 		warn("error renaming ioconf.c");
    123   1.1   thorpej 		return (1);
    124   1.1   thorpej 	}
    125   1.1   thorpej 	return (0);
    126   1.1   thorpej }
    127   1.1   thorpej 
    128   1.1   thorpej static int
    129   1.1   thorpej cforder(const void *a, const void *b)
    130   1.1   thorpej {
    131   1.1   thorpej 	int n1, n2;
    132   1.1   thorpej 
    133  1.14     lukem 	n1 = (*(const struct devi * const *)a)->i_cfindex;
    134  1.14     lukem 	n2 = (*(const struct devi * const *)b)->i_cfindex;
    135   1.1   thorpej 	return (n1 - n2);
    136   1.1   thorpej }
    137   1.1   thorpej 
    138   1.8       dsl static void
    139   1.1   thorpej emithdr(FILE *ofp)
    140   1.1   thorpej {
    141   1.1   thorpej 	FILE *ifp;
    142  1.22  christos 	size_t n;
    143   1.1   thorpej 	char ifnbuf[200], buf[BUFSIZ];
    144   1.1   thorpej 	char *ifn;
    145   1.1   thorpej 
    146  1.10     lukem 	autogen_comment(ofp, "ioconf.c");
    147   1.1   thorpej 
    148   1.1   thorpej 	(void)snprintf(ifnbuf, sizeof(ifnbuf), "arch/%s/conf/ioconf.incl.%s",
    149  1.19  nakayama 	    machine ? machine : "(null)", machine ? machine : "(null)");
    150   1.1   thorpej 	ifn = sourcepath(ifnbuf);
    151   1.1   thorpej 	if ((ifp = fopen(ifn, "r")) != NULL) {
    152   1.1   thorpej 		while ((n = fread(buf, 1, sizeof(buf), ifp)) > 0)
    153   1.9  christos 			(void)fwrite(buf, 1, n, ofp);
    154   1.8       dsl 		if (ferror(ifp))
    155   1.8       dsl 			err(EXIT_FAILURE, "error reading %s", ifn);
    156   1.1   thorpej 		(void)fclose(ifp);
    157   1.1   thorpej 	} else {
    158   1.8       dsl 		fputs("#include <sys/param.h>\n"
    159   1.8       dsl 			"#include <sys/conf.h>\n"
    160   1.8       dsl 			"#include <sys/device.h>\n"
    161   1.8       dsl 			"#include <sys/mount.h>\n", ofp);
    162   1.1   thorpej 	}
    163   1.1   thorpej 	free(ifn);
    164   1.1   thorpej }
    165   1.1   thorpej 
    166   1.3  drochner /*
    167   1.3  drochner  * Emit an initialized array of character strings describing this
    168   1.3  drochner  * attribute's locators.
    169   1.3  drochner  */
    170   1.3  drochner static int
    171   1.3  drochner cf_locators_print(const char *name, void *value, void *arg)
    172   1.3  drochner {
    173   1.3  drochner 	struct attr *a;
    174  1.21  dholland 	struct loclist *ll;
    175   1.3  drochner 	FILE *fp = arg;
    176   1.3  drochner 
    177   1.3  drochner 	a = value;
    178   1.6  drochner 	if (!a->a_iattr)
    179   1.6  drochner 		return (0);
    180  1.23  uebayasi 	if (ht_lookup(selecttab, name) == NULL)
    181  1.23  uebayasi 		return (0);
    182   1.6  drochner 
    183   1.3  drochner 	if (a->a_locs) {
    184   1.8       dsl 		fprintf(fp,
    185   1.3  drochner 		    "static const struct cfiattrdata %scf_iattrdata = {\n",
    186   1.8       dsl 			    name);
    187   1.8       dsl 		fprintf(fp, "\t\"%s\", %d,\n\t{\n", name, a->a_loclen);
    188  1.21  dholland 		for (ll = a->a_locs; ll; ll = ll->ll_next)
    189  1.12  uebayasi 			fprintf(fp, "\t\t{ \"%s\", \"%s\", %s },\n",
    190  1.21  dholland 				ll->ll_name,
    191  1.21  dholland 				(ll->ll_string ? ll->ll_string : "NULL"),
    192  1.21  dholland 				(ll->ll_string ? ll->ll_string : "0"));
    193   1.8       dsl 		fprintf(fp, "\t}\n};\n");
    194   1.8       dsl 	} else {
    195   1.8       dsl 		fprintf(fp,
    196   1.8       dsl 		    "static const struct cfiattrdata %scf_iattrdata = {\n"
    197   1.8       dsl 		    "\t\"%s\", 0, {\n\t\t{ NULL, NULL, 0 },\n\t}\n};\n",
    198   1.8       dsl 		    name, name);
    199   1.8       dsl 	}
    200   1.8       dsl 
    201   1.3  drochner 	return 0;
    202   1.3  drochner }
    203   1.3  drochner 
    204   1.8       dsl static void
    205   1.1   thorpej emitcfdrivers(FILE *fp)
    206   1.1   thorpej {
    207   1.1   thorpej 	struct devbase *d;
    208  1.20  dholland 	struct attrlist *al;
    209   1.1   thorpej 	struct attr *a;
    210   1.1   thorpej 	int has_iattrs;
    211   1.1   thorpej 
    212   1.1   thorpej 	NEWLINE;
    213   1.8       dsl 	ht_enumerate(attrtab, cf_locators_print, fp);
    214   1.3  drochner 
    215   1.3  drochner 	NEWLINE;
    216   1.1   thorpej 	TAILQ_FOREACH(d, &allbases, d_next) {
    217   1.1   thorpej 		if (!devbase_has_instances(d, WILD))
    218   1.1   thorpej 			continue;
    219   1.1   thorpej 		has_iattrs = 0;
    220  1.20  dholland 		for (al = d->d_attrs; al != NULL; al = al->al_next) {
    221  1.20  dholland 			a = al->al_this;
    222   1.1   thorpej 			if (a->a_iattr == 0)
    223   1.1   thorpej 				continue;
    224   1.8       dsl 			if (has_iattrs == 0)
    225   1.8       dsl 				fprintf(fp,
    226   1.3  drochner 			    	    "static const struct cfiattrdata * const %s_attrs[] = { ",
    227   1.8       dsl 			    	    d->d_name);
    228   1.1   thorpej 			has_iattrs = 1;
    229   1.8       dsl 			fprintf(fp, "&%scf_iattrdata, ", a->a_name);
    230   1.1   thorpej 		}
    231   1.8       dsl 		if (has_iattrs)
    232   1.8       dsl 			fprintf(fp, "NULL };\n");
    233   1.8       dsl 		fprintf(fp, "CFDRIVER_DECL(%s, %s, ", d->d_name, /* ) */
    234   1.1   thorpej 		    d->d_classattr != NULL ? d->d_classattr->a_devclass
    235   1.8       dsl 					   : "DV_DULL");
    236   1.8       dsl 		if (has_iattrs)
    237   1.8       dsl 			fprintf(fp, "%s_attrs", d->d_name);
    238   1.8       dsl 		else
    239   1.8       dsl 			fprintf(fp, "NULL");
    240   1.8       dsl 		fprintf(fp, /* ( */ ");\n\n");
    241   1.1   thorpej 	}
    242   1.1   thorpej 
    243   1.1   thorpej 	NEWLINE;
    244  1.15     pooka 
    245  1.17     pooka 	fprintf(fp,
    246  1.17     pooka 	    "%sstruct cfdriver * const cfdriver_%s_%s[] = {\n",
    247  1.17     pooka 	    ioconfname ? "static " : "",
    248  1.18     pooka 	    ioconfname ? "ioconf" : "list",
    249  1.17     pooka 	    ioconfname ? ioconfname : "initial");
    250  1.15     pooka 
    251   1.1   thorpej 	TAILQ_FOREACH(d, &allbases, d_next) {
    252   1.1   thorpej 		if (!devbase_has_instances(d, WILD))
    253   1.1   thorpej 			continue;
    254   1.8       dsl 		fprintf(fp, "\t&%s_cd,\n", d->d_name);
    255   1.1   thorpej 	}
    256   1.8       dsl 	fprintf(fp, "\tNULL\n};\n");
    257   1.1   thorpej }
    258   1.1   thorpej 
    259   1.8       dsl static void
    260   1.1   thorpej emitexterns(FILE *fp)
    261   1.1   thorpej {
    262   1.1   thorpej 	struct deva *da;
    263   1.1   thorpej 
    264   1.1   thorpej 	NEWLINE;
    265   1.1   thorpej 	TAILQ_FOREACH(da, &alldevas, d_next) {
    266   1.1   thorpej 		if (!deva_has_instances(da, WILD))
    267   1.1   thorpej 			continue;
    268   1.8       dsl 		fprintf(fp, "extern struct cfattach %s_ca;\n",
    269   1.8       dsl 			    da->d_name);
    270   1.1   thorpej 	}
    271   1.1   thorpej }
    272   1.1   thorpej 
    273   1.8       dsl static void
    274   1.1   thorpej emitcfattachinit(FILE *fp)
    275   1.1   thorpej {
    276   1.1   thorpej 	struct devbase *d;
    277   1.1   thorpej 	struct deva *da;
    278   1.1   thorpej 
    279   1.1   thorpej 	NEWLINE;
    280   1.1   thorpej 	TAILQ_FOREACH(d, &allbases, d_next) {
    281   1.1   thorpej 		if (!devbase_has_instances(d, WILD))
    282   1.1   thorpej 			continue;
    283   1.1   thorpej 		if (d->d_ahead == NULL)
    284   1.1   thorpej 			continue;
    285   1.1   thorpej 
    286   1.8       dsl 		fprintf(fp,
    287   1.8       dsl 		    "static struct cfattach * const %s_cfattachinit[] = {\n\t",
    288   1.8       dsl 			    d->d_name);
    289   1.1   thorpej 		for (da = d->d_ahead; da != NULL; da = da->d_bsame) {
    290   1.1   thorpej 			if (!deva_has_instances(da, WILD))
    291   1.1   thorpej 				continue;
    292   1.8       dsl 			fprintf(fp, "&%s_ca, ", da->d_name);
    293   1.1   thorpej 		}
    294   1.8       dsl 		fprintf(fp, "NULL\n};\n");
    295   1.1   thorpej 	}
    296   1.1   thorpej 
    297   1.1   thorpej 	NEWLINE;
    298  1.17     pooka 	fprintf(fp, "%sconst struct cfattachinit cfattach%s%s[] = {\n",
    299  1.17     pooka 	    ioconfname ? "static " : "",
    300  1.18     pooka 	    ioconfname ? "_ioconf_" : "init",
    301  1.17     pooka 	    ioconfname ? ioconfname : "");
    302   1.1   thorpej 
    303   1.1   thorpej 	TAILQ_FOREACH(d, &allbases, d_next) {
    304   1.1   thorpej 		if (!devbase_has_instances(d, WILD))
    305   1.1   thorpej 			continue;
    306   1.1   thorpej 		if (d->d_ahead == NULL)
    307   1.1   thorpej 			continue;
    308   1.1   thorpej 
    309   1.8       dsl 		fprintf(fp, "\t{ \"%s\", %s_cfattachinit },\n",
    310   1.8       dsl 			    d->d_name, d->d_name);
    311   1.1   thorpej 	}
    312   1.1   thorpej 
    313   1.8       dsl 	fprintf(fp, "\t{ NULL, NULL }\n};\n");
    314   1.1   thorpej }
    315   1.1   thorpej 
    316   1.8       dsl static void
    317   1.1   thorpej emitloc(FILE *fp)
    318   1.1   thorpej {
    319   1.1   thorpej 	int i;
    320   1.1   thorpej 
    321   1.1   thorpej 	if (locators.used != 0) {
    322   1.8       dsl 		fprintf(fp, "\n/* locators */\n"
    323   1.8       dsl 			"static int loc[%d] = {", locators.used);
    324   1.1   thorpej 		for (i = 0; i < locators.used; i++)
    325   1.8       dsl 			fprintf(fp, "%s%s,", SEP(i, 8), locators.vec[i]);
    326   1.8       dsl 		fprintf(fp, "\n};\n");
    327   1.1   thorpej 	} else if (*packed != NULL) {
    328   1.1   thorpej 		/* We need to have *something*. */
    329   1.8       dsl 		fprintf(fp, "\n/* locators */\n"
    330   1.8       dsl 			"static int loc[1] = { -1 };\n");
    331   1.1   thorpej 	}
    332   1.1   thorpej }
    333   1.1   thorpej 
    334   1.1   thorpej /*
    335   1.1   thorpej  * Emit static parent data.
    336   1.1   thorpej  */
    337   1.8       dsl static void
    338   1.1   thorpej emitparents(FILE *fp)
    339   1.1   thorpej {
    340   1.1   thorpej 	struct pspec *p;
    341   1.1   thorpej 
    342   1.1   thorpej 	NEWLINE;
    343   1.1   thorpej 	TAILQ_FOREACH(p, &allpspecs, p_list) {
    344   1.5      cube 		if (p->p_devs == NULL || p->p_active != DEVI_ACTIVE)
    345   1.1   thorpej 			continue;
    346   1.8       dsl 		fprintf(fp,
    347   1.8       dsl 		    "static const struct cfparent pspec%d = {\n", p->p_inst);
    348   1.8       dsl 		fprintf(fp, "\t\"%s\", ", p->p_iattr->a_name);
    349   1.1   thorpej 		if (p->p_atdev != NULL) {
    350   1.8       dsl 			fprintf(fp, "\"%s\", ", p->p_atdev->d_name);
    351   1.8       dsl 			if (p->p_atunit == WILD)
    352   1.8       dsl 				fprintf(fp, "DVUNIT_ANY");
    353   1.8       dsl 			else
    354   1.8       dsl 				fprintf(fp, "%d", p->p_atunit);
    355   1.8       dsl 		} else
    356   1.8       dsl 			fprintf(fp, "NULL, 0");
    357   1.8       dsl 		fprintf(fp, "\n};\n");
    358   1.1   thorpej 	}
    359   1.1   thorpej }
    360   1.1   thorpej 
    361   1.1   thorpej /*
    362   1.1   thorpej  * Emit the cfdata array.
    363   1.1   thorpej  */
    364   1.8       dsl static void
    365   1.1   thorpej emitcfdata(FILE *fp)
    366   1.1   thorpej {
    367   1.1   thorpej 	struct devi **p, *i;
    368   1.1   thorpej 	struct pspec *ps;
    369   1.1   thorpej 	int unit, v;
    370   1.1   thorpej 	const char *state, *basename, *attachment;
    371  1.21  dholland 	struct loclist *ll;
    372   1.1   thorpej 	struct attr *a;
    373  1.14     lukem 	const char *loc;
    374   1.1   thorpej 	char locbuf[20];
    375   1.1   thorpej 	const char *lastname = "";
    376   1.1   thorpej 
    377   1.8       dsl 	fprintf(fp, "\n"
    378   1.8       dsl 		"#define NORM FSTATE_NOTFOUND\n"
    379   1.8       dsl 		"#define STAR FSTATE_STAR\n"
    380   1.8       dsl 		"\n"
    381  1.17     pooka 		"%sstruct cfdata cfdata%s%s[] = {\n"
    382   1.8       dsl 		"    /* driver           attachment    unit state "
    383  1.15     pooka 		"loc   flags pspec */\n",
    384  1.17     pooka 		    ioconfname ? "static " : "",
    385  1.18     pooka 		    ioconfname ? "_ioconf_" : "",
    386  1.15     pooka 		    ioconfname ? ioconfname : "");
    387   1.1   thorpej 	for (p = packed; (i = *p) != NULL; p++) {
    388   1.1   thorpej 		/* the description */
    389   1.8       dsl 		fprintf(fp, "/*%3d: %s at ", i->i_cfindex, i->i_name);
    390   1.1   thorpej 		if ((ps = i->i_pspec) != NULL) {
    391   1.1   thorpej 			if (ps->p_atdev != NULL &&
    392   1.1   thorpej 			    ps->p_atunit != WILD) {
    393   1.8       dsl 				fprintf(fp, "%s%d", ps->p_atdev->d_name,
    394   1.8       dsl 					    ps->p_atunit);
    395   1.1   thorpej 			} else if (ps->p_atdev != NULL) {
    396   1.8       dsl 				fprintf(fp, "%s?", ps->p_atdev->d_name);
    397   1.1   thorpej 			} else {
    398   1.8       dsl 				fprintf(fp, "%s?", ps->p_iattr->a_name);
    399   1.1   thorpej 			}
    400   1.1   thorpej 
    401   1.1   thorpej 			a = ps->p_iattr;
    402  1.21  dholland 			for (ll = a->a_locs, v = 0; ll != NULL;
    403  1.21  dholland 			     ll = ll->ll_next, v++) {
    404  1.21  dholland 				if (ARRNAME(ll->ll_name, lastname)) {
    405   1.8       dsl 					fprintf(fp, " %s %s",
    406  1.21  dholland 					    ll->ll_name, i->i_locs[v]);
    407   1.1   thorpej 				} else {
    408   1.8       dsl 					fprintf(fp, " %s %s",
    409  1.21  dholland 						    ll->ll_name,
    410   1.8       dsl 						    i->i_locs[v]);
    411  1.21  dholland 					lastname = ll->ll_name;
    412   1.1   thorpej 				}
    413   1.1   thorpej 			}
    414   1.1   thorpej 		} else {
    415   1.1   thorpej 			a = NULL;
    416   1.8       dsl 			fputs("root", fp);
    417   1.1   thorpej 		}
    418   1.1   thorpej 
    419   1.8       dsl 		fputs(" */\n", fp);
    420   1.1   thorpej 
    421   1.1   thorpej 		/* then the actual defining line */
    422   1.1   thorpej 		basename = i->i_base->d_name;
    423   1.1   thorpej 		attachment = i->i_atdeva->d_name;
    424   1.1   thorpej 		if (i->i_unit == STAR) {
    425   1.1   thorpej 			unit = i->i_base->d_umax;
    426   1.1   thorpej 			state = "STAR";
    427   1.1   thorpej 		} else {
    428   1.1   thorpej 			unit = i->i_unit;
    429   1.1   thorpej 			state = "NORM";
    430   1.1   thorpej 		}
    431   1.1   thorpej 		if (i->i_locoff >= 0) {
    432   1.1   thorpej 			(void)snprintf(locbuf, sizeof(locbuf), "loc+%3d",
    433   1.1   thorpej 			    i->i_locoff);
    434   1.1   thorpej 			loc = locbuf;
    435   1.1   thorpej 		} else
    436   1.1   thorpej 			loc = "loc";
    437  1.12  uebayasi 		fprintf(fp, "    { \"%s\",%s\"%s\",%s%2d, %s, %7s, %#6x, ",
    438   1.1   thorpej 			    basename, strlen(basename) < 8 ? "\t\t"
    439   1.1   thorpej 			    				   : "\t",
    440   1.1   thorpej 			    attachment, strlen(attachment) < 5 ? "\t\t"
    441   1.1   thorpej 			    				       : "\t",
    442   1.8       dsl 			    unit, state, loc, i->i_cfflags);
    443   1.8       dsl 		if (ps != NULL)
    444  1.12  uebayasi 			fprintf(fp, "&pspec%d },\n", ps->p_inst);
    445   1.8       dsl 		else
    446  1.12  uebayasi 			fputs("NULL },\n", fp);
    447   1.8       dsl 	}
    448  1.12  uebayasi 	fprintf(fp, "    { %s,%s%s,%s%2d, %s, %7s, %#6x, %s }\n};\n",
    449   1.8       dsl 	    "NULL", "\t\t", "NULL", "\t\t", 0, "0", "NULL", 0, "NULL");
    450   1.1   thorpej }
    451   1.1   thorpej 
    452   1.1   thorpej /*
    453   1.1   thorpej  * Emit the table of potential roots.
    454   1.1   thorpej  */
    455   1.8       dsl static void
    456   1.1   thorpej emitroots(FILE *fp)
    457   1.1   thorpej {
    458   1.1   thorpej 	struct devi **p, *i;
    459   1.1   thorpej 
    460   1.8       dsl 	fputs("\nconst short cfroots[] = {\n", fp);
    461   1.1   thorpej 	for (p = packed; (i = *p) != NULL; p++) {
    462   1.1   thorpej 		if (i->i_at != NULL)
    463   1.1   thorpej 			continue;
    464   1.1   thorpej 		if (i->i_unit != 0 &&
    465   1.1   thorpej 		    (i->i_unit != STAR || i->i_base->d_umax != 0))
    466   1.9  christos 			warnx("warning: `%s at root' is not unit 0", i->i_name);
    467   1.8       dsl 		fprintf(fp, "\t%2d /* %s */,\n",
    468   1.8       dsl 		    i->i_cfindex, i->i_name);
    469   1.1   thorpej 	}
    470   1.8       dsl 	fputs("\t-1\n};\n", fp);
    471   1.1   thorpej }
    472   1.1   thorpej 
    473   1.1   thorpej /*
    474   1.1   thorpej  * Emit pseudo-device initialization.
    475   1.1   thorpej  */
    476   1.8       dsl static void
    477   1.1   thorpej emitpseudo(FILE *fp)
    478   1.1   thorpej {
    479   1.1   thorpej 	struct devi *i;
    480   1.1   thorpej 	struct devbase *d;
    481   1.1   thorpej 
    482   1.8       dsl 	fputs("\n/* pseudo-devices */\n", fp);
    483   1.1   thorpej 	TAILQ_FOREACH(i, &allpseudo, i_next) {
    484   1.8       dsl 		fprintf(fp, "void %sattach(int);\n",
    485   1.8       dsl 		    i->i_base->d_name);
    486   1.1   thorpej 	}
    487   1.8       dsl 	fputs("\nstruct pdevinit pdevinit[] = {\n", fp);
    488   1.1   thorpej 	TAILQ_FOREACH(i, &allpseudo, i_next) {
    489   1.1   thorpej 		d = i->i_base;
    490   1.8       dsl 		fprintf(fp, "\t{ %sattach, %d },\n",
    491   1.8       dsl 		    d->d_name, d->d_umax);
    492   1.1   thorpej 	}
    493   1.8       dsl 	fputs("\t{ 0, 0 }\n};\n", fp);
    494   1.1   thorpej }
    495   1.1   thorpej 
    496   1.1   thorpej /*
    497   1.1   thorpej  * Emit name to major block number table.
    498   1.1   thorpej  */
    499   1.8       dsl void
    500   1.1   thorpej emitname2blk(FILE *fp)
    501   1.1   thorpej {
    502   1.1   thorpej 	struct devbase *dev;
    503   1.1   thorpej 
    504   1.8       dsl 	fputs("\n/* device name to major block number */\n", fp);
    505   1.1   thorpej 
    506   1.8       dsl 	fprintf(fp, "struct devnametobdevmaj dev_name2blk[] = {\n");
    507   1.1   thorpej 
    508   1.1   thorpej 	TAILQ_FOREACH(dev, &allbases, d_next) {
    509  1.13  drochner 		if (dev->d_major == NODEVMAJOR)
    510   1.1   thorpej 			continue;
    511   1.1   thorpej 
    512  1.13  drochner 		fprintf(fp, "\t{ \"%s\", %d },\n",
    513  1.13  drochner 			    dev->d_name, dev->d_major);
    514   1.1   thorpej 	}
    515   1.8       dsl 	fprintf(fp, "\t{ NULL, 0 }\n};\n");
    516   1.1   thorpej }
    517