/* * Copyright (c) 1992 The Regents of the University of California. * All rights reserved. * * This software was developed by the Computer Systems Engineering group * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and * contributed to Berkeley. * * 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, Lawrence Berkeley Laboratories. * * %sccs.include.redist.c% * * @(#)mkswap.c 5.2 (Berkeley) 04/18/93 */ #include #include #include #include #include #include "config.h" static int mkoneswap __P((struct config *)); /* * Make the various swap*.c files. Nothing to do for generic swap. */ int mkswap() { register struct config *cf; for (cf = allcf; cf != NULL; cf = cf->cf_next) if (cf->cf_root != NULL && mkoneswap(cf)) return (1); return (0); } static int mkoneswap(cf) register struct config *cf; { register struct nvlist *nv; register FILE *fp; register char *fname; char buf[200]; (void)sprintf(buf, "swap%s.c", cf->cf_name); fname = path(buf); if ((fp = fopen(fname, "w")) == NULL) { (void)fprintf(stderr, "config: cannot write %s: %s\n", fname, strerror(errno)); return (1); } if (fputs("\ #include \n\ #include \n\n", fp) < 0) goto wrerror; nv = cf->cf_root; if (fprintf(fp, "dev_t\trootdev = makedev(%d, %d);\t/* %s */\n", major(nv->nv_int), minor(nv->nv_int), nv->nv_str) < 0) goto wrerror; nv = cf->cf_dump; if (fprintf(fp, "dev_t\tdumpdev = makedev(%d, %d);\t/* %s */\n", major(nv->nv_int), minor(nv->nv_int), nv->nv_str) < 0) goto wrerror; if (fputs("\nstruct\tswdevt swdevt[] = {\n", fp) < 0) goto wrerror; for (nv = cf->cf_swap; nv != NULL; nv = nv->nv_next) if (fprintf(fp, "\t{ makedev(%d, %d),\t0,\t0 },\t/* %s */\n", major(nv->nv_int), minor(nv->nv_int), nv->nv_str) < 0) goto wrerror; if (fputs("\t{ NODEV, 0, 0 }\n};\n", fp) < 0) goto wrerror; if (fclose(fp)) { fp = NULL; goto wrerror; } free(fname); return (0); wrerror: (void)fprintf(stderr, "config: error writing %s: %s\n", fname, strerror(errno)); if (fp != NULL) (void)fclose(fp); /* (void)unlink(fname); */ free(fname); return (1); }