2 # $NetBSD: devlist2h.awk,v 1.9.24.4 2005/03/04 16:50:54 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=
"usbdevs_data.h"
39 gsub("\\$", "", VERSION
)
40 gsub(/ $
/, "", VERSION
)
43 printf("/*\t$NetBSD" "$\t*/\n\n") > dfile
44 else if (os ==
"FreeBSD")
45 printf("/*\t$FreeBSD" "$\t*/\n\n") > dfile
46 else if (os ==
"OpenBSD")
47 printf("/*\t$OpenBSD" "$\t*/\n\n") > dfile
49 printf("/* ??? */\n\n") > dfile
50 printf("/*\n") > dfile
51 printf(" * THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \
53 printf(" *\n") > dfile
54 printf(" * generated from:\n") > dfile
55 printf(" *\t%s\n", VERSION
) > dfile
56 printf(" */\n") > dfile
59 printf("/*\t$NetBSD" "$\t*/\n\n") > hfile
60 else if (os ==
"FreeBSD")
61 printf("/*\t$FreeBSD" "$\t*/\n\n") > hfile
62 else if (os ==
"OpenBSD")
63 printf("/*\t$OpenBSD" "$\t*/\n\n") > hfile
65 printf("/* ??? */\n\n") > hfile
66 printf("/*\n") > hfile
67 printf(" * THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \
69 printf(" *\n") > hfile
70 printf(" * generated from:\n") > hfile
71 printf(" *\t%s\n", VERSION
) > hfile
72 printf(" */\n") > hfile
76 NF > 0 && $
1 ==
"vendor" {
79 vendorindex
[$
2] = nvendors
; # record index for this name, for later.
80 vendors
[nvendors
, 1] = $
2; # name
81 vendors
[nvendors
, 2] = $
3; # id
82 printf("#define\tUSB_VENDOR_%s\t%s\t", vendors
[nvendors
, 1],
83 vendors
[nvendors
, 2]) > hfile
90 printf("\t/* ") > hfile
101 printf("%s", $f
) > hfile
107 vendors
[nvendors
, i
] = $f
108 printf("%s", vendors
[nvendors
, i
]) > hfile
116 printf(" */") > hfile
121 NF > 0 && $
1 ==
"product" {
124 products
[nproducts
, 1] = $
2; # vendor name
125 products
[nproducts
, 2] = $
3; # product id
126 products
[nproducts
, 3] = $
4; # id
127 printf("#define\tUSB_PRODUCT_%s_%s\t%s\t", products
[nproducts
, 1],
128 products
[nproducts
, 2], products
[nproducts
, 3]) > hfile
133 ocomment = oparen =
0
135 printf("\t/* ") > hfile
146 printf("%s", $f
) > hfile
152 products
[nproducts
, i
] = $f
153 printf("%s", products
[nproducts
, i
]) > hfile
161 printf(" */") > hfile
174 # print out the match tables
178 printf("const struct usb_vendor usb_vendors[] = {\n") > dfile
179 for (i =
1; i
<= nvendors
; i
++) {
180 printf("\t{\n") > dfile
181 printf("\t USB_VENDOR_%s,\n", vendors
[i
, 1]) \
184 printf("\t \"") > dfile
187 while ((i
, j
) in vendors
) {
190 printf("%s", vendors
[i
, j
]) > dfile
194 printf("\",\n") > dfile
195 printf("\t},\n") > dfile
197 printf("};\n") > dfile
198 printf("const int usb_nvendors = %d;\n", nvendors
) > dfile
202 printf("const struct usb_product usb_products[] = {\n") > dfile
203 for (i =
1; i
<= nproducts
; i
++) {
204 printf("\t{\n") > dfile
205 printf("\t USB_VENDOR_%s, USB_PRODUCT_%s_%s,\n",
206 products
[i
, 1], products
[i
, 1], products
[i
, 2]) \
209 printf("\t \"") > dfile
212 while ((i
, j
) in products
) {
215 printf("%s", products
[i
, j
]) > dfile
219 printf("\",\n") > dfile
220 printf("\t},\n") > dfile
222 printf("};\n") > dfile
223 printf("const int usb_nproducts = %d;\n", nproducts
) > dfile