xref: /freebsd/usr.sbin/config/mkheaders.c (revision fbbd9655e5107c68e4e0146ff22b73d7350475bc)
1dea673e9SRodney W. Grimes /*
2dea673e9SRodney W. Grimes  * Copyright (c) 1980, 1993
3dea673e9SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
4dea673e9SRodney W. Grimes  *
5dea673e9SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
6dea673e9SRodney W. Grimes  * modification, are permitted provided that the following conditions
7dea673e9SRodney W. Grimes  * are met:
8dea673e9SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
9dea673e9SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
10dea673e9SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
11dea673e9SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
12dea673e9SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
13*fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
14dea673e9SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
15dea673e9SRodney W. Grimes  *    without specific prior written permission.
16dea673e9SRodney W. Grimes  *
17dea673e9SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18dea673e9SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19dea673e9SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20dea673e9SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21dea673e9SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22dea673e9SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23dea673e9SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24dea673e9SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25dea673e9SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26dea673e9SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27dea673e9SRodney W. Grimes  * SUCH DAMAGE.
28dea673e9SRodney W. Grimes  */
29dea673e9SRodney W. Grimes 
30dea673e9SRodney W. Grimes #ifndef lint
31d5831691SPhilippe Charnier #if 0
32dea673e9SRodney W. Grimes static char sccsid[] = "@(#)mkheaders.c	8.1 (Berkeley) 6/6/93";
33d5831691SPhilippe Charnier #endif
34d5831691SPhilippe Charnier static const char rcsid[] =
3597d92980SPeter Wemm   "$FreeBSD$";
36dea673e9SRodney W. Grimes #endif /* not lint */
37dea673e9SRodney W. Grimes 
38dea673e9SRodney W. Grimes /*
39dea673e9SRodney W. Grimes  * Make all the .h files for the optional entries
40dea673e9SRodney W. Grimes  */
41dea673e9SRodney W. Grimes 
42d5831691SPhilippe Charnier #include <ctype.h>
43d5831691SPhilippe Charnier #include <err.h>
44dea673e9SRodney W. Grimes #include <stdio.h>
455bd7b809SJoerg Wunsch #include <string.h>
46faa913d7SWarner Losh #include <sys/param.h>
47dea673e9SRodney W. Grimes #include "config.h"
481d95dc91SPoul-Henning Kamp #include "y.tab.h"
49dea673e9SRodney W. Grimes 
50d5831691SPhilippe Charnier void
51f71c01ccSPeter Wemm headers(void)
52dea673e9SRodney W. Grimes {
53cea24a2bSJoerg Wunsch 	struct device *dp;
54775d6c0eSPeter Wemm 	int errors;
55dea673e9SRodney W. Grimes 
56775d6c0eSPeter Wemm 	errors = 0;
57292dd8a8SRuslan Ermilov 	STAILQ_FOREACH(dp, &dtab, d_next) {
58775d6c0eSPeter Wemm 		if (!(dp->d_done & DEVDONE)) {
59775d6c0eSPeter Wemm 			warnx("Error: device \"%s\" is unknown",
60ed7e72e6SPeter Wemm 			       dp->d_name);
61775d6c0eSPeter Wemm 			       errors++;
62952017beSPeter Wemm 			}
63775d6c0eSPeter Wemm 	}
64775d6c0eSPeter Wemm 	if (errors)
65775d6c0eSPeter Wemm 		errx(1, "%d errors", errors);
66ed7e72e6SPeter Wemm }
67