2 # $NetBSD: devlist2h.awk,v 1.1 2006/05/11 01:49:53 gdamore 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=
"ediddevs_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
63 NF > 0 && $
1 ==
"vendor" {
66 vendorindex
[$
2] = nvendors
; # record index for this name, for later.
67 vendors
[nvendors
, 1] = $
2; # name/ID
70 printf("#define\tEDID_VENDOR_%s\t\"", vendors
[nvendors
, 1]) > hfile
82 printf("%s", $f
) > hfile
86 vendors
[nvendors
, i
] = $f
87 printf("%s", vendors
[nvendors
, i
]) > hfile
100 NF > 0 && $
1 ==
"product" {
103 products
[nproducts
, 1] = $
2; # vendor name
104 products
[nproducts
, 2] = $
3; # product id
105 products
[nproducts
, 3] = $
4; # id
106 printf("#define\tEDID_PRODUCT_%s_%s\t%s", products
[nproducts
, 1],
107 products
[nproducts
, 2], products
[nproducts
, 3]) > hfile
111 ocomment = oparen =
0
113 printf("\t\t/* ") > hfile
124 printf("%s", $f
) > hfile
130 products
[nproducts
, i
] = $f
131 printf("%s", products
[nproducts
, i
]) > hfile
139 printf(" */") > hfile
147 if (blanklines
!= 2 && blanklines
!= 3)
153 # print out the match tables
156 printf("const struct edid_vendor edid_vendors[] = {\n") > dfile
158 for (i =
1; i
<= nvendors
; i
++) {
159 printf("\t{") > dfile
160 printf(" \"%s\", EDID_VENDOR_%s", vendors
[i
, 1], \
161 vendors
[i
, 1]) > dfile
162 printf(" },\n") > dfile
164 printf("};\n") > dfile
165 printf("const int edid_nvendors = %d;\n", nvendors
) > dfile
169 printf("const struct edid_product edid_products[] = {\n") > dfile
170 for (i =
1; i
<= nproducts
; i
++) {
171 printf("\t{\n") > dfile
172 printf("\t \"%s\", EDID_PRODUCT_%s_%s,\n", \
173 products
[i
, 1], products
[i
, 1], products
[i
, 2]) > dfile
174 printf("\t \"") > dfile
177 while ((i
, j
) in products
) {
180 printf("%s", products
[i
, j
]) > dfile
184 printf("\",\n") > dfile
185 printf("\t},\n") > dfile
187 printf("};\n") > dfile
188 printf("const int edid_nproducts = %d;\n", nproducts
) >dfile