2 # $NetBSD: devlist2h.awk,v 1.6.24.4 2005/03/04 16:41:14 skrll Exp $
4 # Copyright (c) 1995, 1996 Christopher G. Demetriou
7 # Redistribution and use in source and binary forms, with or without
8 # modification, are permitted provided that the following conditions
10 # 1. Redistributions of source code must retain the above copyright
11 # notice, this list of conditions and the following disclaimer.
12 # 2. Redistributions in binary form must reproduce the above copyright
13 # notice, this list of conditions and the following disclaimer in the
14 # documentation and/or other materials provided with the distribution.
15 # 3. All advertising materials mentioning features or use of this software
16 # must display the following acknowledgement:
17 # This product includes software developed by Christopher G. Demetriou.
18 # 4. The name of the author may not be used to endorse or promote products
19 # derived from this software without specific prior written permission
21 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23 # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24 # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 nproducts = nvendors = blanklines =
0
34 dfile=
"eisadevs_data.h"
39 gsub("\\$", "", VERSION
)
40 gsub(/ $
/, "", VERSION
)
42 printf("/*\t$NetBSD" "$\t*/\n\n") > dfile
43 printf("/*\n") > dfile
44 printf(" * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \
46 printf(" *\n") > dfile
47 printf(" * generated from:\n") > dfile
48 printf(" *\t%s\n", VERSION
) > dfile
49 printf(" */\n") > dfile
51 printf("/*\t$NetBSD" "$\t*/\n\n") > hfile
52 printf("/*\n") > hfile
53 printf(" * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \
55 printf(" *\n") > hfile
56 printf(" * generated from:\n") > hfile
57 printf(" *\t%s\n", VERSION
) > hfile
58 printf(" */\n") > hfile
62 NF > 0 && $
1 ==
"vendor" {
65 vendorindex
[$
2] = nvendors
; # record index for this name, for later.
66 vendors
[nvendors
, 1] = $
2; # name/ID
84 vendors
[nvendors
, i
] = $f
90 NF > 0 && $
1 ==
"product" {
93 products
[nproducts
, 1] = $
2; # vendor name
94 products
[nproducts
, 2] = $
3; # product id
95 printf("#define\tEISA_PRODUCT_%s%s\t\"", products
[nproducts
, 1],
96 products
[nproducts
, 2]) > hfile
98 i = vendorindex
[products
[nproducts
, 1]]; j =
2;
100 while ((i
,j
) in vendors
) {
103 printf("%s", vendors
[i
, j
]) > hfile
114 ocomment = oparen =
0
126 printf("%s", $f
) > hfile
132 products
[nproducts
, i
] = $f
133 printf("%s", products
[nproducts
, i
]) > hfile
149 if (blanklines
!= 2 && blanklines
!= 3)
155 # print out the match tables
159 printf("const struct eisa_knowndev eisa_knowndevs[] = {\n") > dfile
160 for (i =
1; i
<= nproducts
; i
++) {
161 printf("\t{\n") > dfile
162 printf("\t 0,\n") > dfile
163 printf("\t \"%s%s\",\n", products
[i
, 1], products
[i
, 2]) \
165 printf("\t EISA_PRODUCT_%s%s,\n", \
166 products
[i
, 1], products
[i
, 2]) \
169 printf("\t},\n") > dfile
171 for (i =
1; i
<= nvendors
; i
++) {
172 printf("\t{\n") > dfile
173 printf("\t EISA_KNOWNDEV_NOPROD,\n") \
175 printf("\t \"%s\",\n", vendors
[i
, 1]) \
177 printf("\t \"") > dfile
180 while ((i
, j
) in vendors
) {
183 printf("%s", vendors
[i
, j
]) > dfile
187 printf("\",\n") > dfile
188 printf("\t},\n") > dfile
190 printf("\t{ 0, NULL, NULL, }\n") > dfile
191 printf("};\n") > dfile