Home | History | Annotate | Line # | Download | only in mca
      1 #! /usr/bin/awk -f
      2 #	$NetBSD: devlist2h.awk,v 1.4 2005/12/11 12:22:18 christos Exp $
      3 #
      4 # Copyright (c) 1995, 1996 Christopher G. Demetriou
      5 # All rights reserved.
      6 #
      7 # Redistribution and use in source and binary forms, with or without
      8 # modification, are permitted provided that the following conditions
      9 # are met:
     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
     20 #
     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.
     31 #
     32 
     33 # Adapted for MCA needs by Jaromir Dolecek.
     34 
     35 BEGIN {
     36 	nproducts = nvendors = blanklines = 0
     37 	dfile="mcadevs_data.h"
     38 	hfile="mcadevs.h"
     39 	FS=" "
     40 	alias=""
     41 	id=""
     42 }
     43 NR == 1 {
     44 	VERSION = $0
     45 	gsub("\\$", "", VERSION)
     46 	gsub(/ $/, "", VERSION)
     47 
     48 	printf("/*\t$NetBSD" "$\t*/\n\n") > dfile
     49 	printf("/*\n") > dfile
     50 	printf(" * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.\n") \
     51 	    > dfile
     52 	printf(" *\n") > dfile
     53 	printf(" * generated from:\n") > dfile
     54 	printf(" *\t%s\n", VERSION) > dfile
     55 	printf(" */\n") > dfile
     56 
     57 	printf("/*\t$NetBSD" "$\t*/\n\n") > hfile
     58 	printf("/*\n") > hfile
     59 	printf(" * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.\n") \
     60 	    > hfile
     61 	printf(" *\n") > hfile
     62 	printf(" * generated from:\n") > hfile
     63 	printf(" *\t%s\n", VERSION) > hfile
     64 	printf(" */\n") > hfile
     65 
     66 	next
     67 }
     68 
     69 NF > 0 && $1 == "product" {
     70 	nproducts++
     71 
     72 	alias = $3
     73 	id = $2
     74 
     75 	products[nproducts, 1] = $2;		# product id
     76 
     77 	# get name - it's enclosed in parenthesis
     78 	sub("[^\"]*\"", "")
     79 	sub("\".*", "")
     80 	products[nproducts, 2] = $0;		# name
     81 
     82 	# if third parameter is an alias, print appropriate entry to hfile,
     83 	# otherwise just store the entry for later processing
     84 	if (substr(alias, 1, 1) != "\"") {
     85 		printf("#define\tMCA_PRODUCT_%s\t%s\t/* %s */\n", alias, id,\
     86 			$0) > hfile
     87 	}
     88 
     89 }
     90 {
     91 	if ($0 == "")
     92 		blanklines++
     93 	if (blanklines < 2) {
     94 		print $0 > hfile
     95 		print $0 > dfile
     96 	}
     97 	else if (blanklines == 2) {
     98 		printf("\n/*\n * List of known MCA devices\n */\n\n") > dfile
     99 		printf("\n/*\n * Supported MCA devices\n */\n\n") > hfile
    100 	}
    101 
    102 	next
    103 }
    104 END {
    105 	# print out the match tables
    106 
    107 	printf("const struct mca_knowndev mca_knowndevs[] = {\n") > dfile
    108 	for (i = 1; i <= nproducts; i++) {
    109 		printf("    { %s,\t\"%s\" },\n", products[i, 1],
    110 			products[i, 2]) > dfile
    111 	}
    112 	printf("    { 0, NULL, }\n") > dfile
    113 	printf("};\n") > dfile
    114 	close(dfile)
    115 	close(hfile)
    116 }
    117