1#! /usr/bin/awk -f 2# $OpenBSD: devlist2h.awk,v 1.2 2008/06/26 05:42:16 ray Exp $ 3# $NetBSD: devlist2h.awk,v 1.2 1998/09/05 14:42:06 christos Exp $ 4# 5# Copyright (c) 1998 The NetBSD Foundation, Inc. 6# All rights reserved. 7# 8# This code is derived from software contributed to The NetBSD Foundation 9# by Christos Zoulas. 10# 11# Redistribution and use in source and binary forms, with or without 12# modification, are permitted provided that the following conditions 13# are met: 14# 1. Redistributions of source code must retain the above copyright 15# notice, this list of conditions and the following disclaimer. 16# 2. Redistributions in binary form must reproduce the above copyright 17# notice, this list of conditions and the following disclaimer in the 18# documentation and/or other materials provided with the distribution. 19# 20# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 21# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 22# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 23# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 24# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 25# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 26# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 27# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 28# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 29# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 30# POSSIBILITY OF SUCH DAMAGE. 31# 32# Copyright (c) 1995, 1996 Christopher G. Demetriou 33# All rights reserved. 34# 35# Redistribution and use in source and binary forms, with or without 36# modification, are permitted provided that the following conditions 37# are met: 38# 1. Redistributions of source code must retain the above copyright 39# notice, this list of conditions and the following disclaimer. 40# 2. Redistributions in binary form must reproduce the above copyright 41# notice, this list of conditions and the following disclaimer in the 42# documentation and/or other materials provided with the distribution. 43# 3. All advertising materials mentioning features or use of this software 44# must display the following acknowledgement: 45# This model includes software developed by Christopher G. Demetriou. 46# This model includes software developed by Christos Zoulas 47# 4. The name of the author(s) may not be used to endorse or promote models 48# derived from this software without specific prior written permission 49# 50# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 51# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 52# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 53# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 54# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 55# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 56# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 57# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 58# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 59# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 60# 61function collectline(f, line) { 62 oparen = 0 63 line = "" 64 while (f <= NF) { 65 if ($f == "#") { 66 line = line "(" 67 oparen = 1 68 f++ 69 continue 70 } 71 if (oparen) { 72 line = line $f 73 if (f < NF) 74 line = line " " 75 f++ 76 continue 77 } 78 line = line $f 79 if (f < NF) 80 line = line " " 81 f++ 82 } 83 if (oparen) 84 line = line ")" 85 return line 86} 87BEGIN { 88 nmodels = nouis = 0 89 hfile="miidevs.h" 90} 91NR == 1 { 92 VERSION = $0 93 gsub("\\$", "", VERSION) 94 95 printf("/*\t\$OpenBSD\$\t*/\n\n") > hfile 96 printf("/*\n") > hfile 97 printf(" * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT.\n") \ 98 > hfile 99 printf(" *\n") > hfile 100 printf(" * generated from:\n") > hfile 101 printf(" *\t%s\n", VERSION) > hfile 102 printf(" */\n") > hfile 103 104 next 105} 106$1 == "oui" { 107 nuios++ 108 109 ouiindex[$2] = nouis; # record index for this name, for later. 110 111 ouis[nouis, 1] = $2; # name 112 ouis[nouis, 2] = $3; # id 113 printf("#define\tMII_OUI_%s\t%s\t", ouis[nouis, 1], 114 ouis[nouis, 2]) > hfile 115 ouis[nouis, 3] = collectline(4, line) 116 printf("/* %s */\n", ouis[nouis, 3]) > hfile 117 next 118} 119$1 == "model" { 120 nmodels++ 121 122 models[nmodels, 1] = $2; # oui name 123 models[nmodels, 2] = $3; # model id 124 models[nmodels, 3] = $4; # id 125 126 printf("#define\tMII_MODEL_%s_%s\t%s\n", models[nmodels, 1], 127 models[nmodels, 2], models[nmodels, 3]) > hfile 128 129 models[nmodels, 4] = collectline(5, line) 130 131 printf("#define\tMII_STR_%s_%s\t\"%s\"\n", 132 models[nmodels, 1], models[nmodels, 2], 133 models[nmodels, 4]) > hfile 134 135 next 136} 137{ 138 print $0 > hfile 139} 140