[BACK]Return to MAKEDEV.mi CVS log [TXT][DIR] Up to [local] / src / etc

Annotation of src/etc/MAKEDEV.mi, Revision 1.51

1.1       todd        1: include(MAKEDEV.sub)dnl
                      2: dnl
1.51    ! todd        3: vers(a, {-$OpenBSD: MAKEDEV.mi,v 1.50 2002/08/12 10:45:04 miod Exp $-})dnl
1.1       todd        4: dnl
                      5: divert(1)dnl
                      6: {-#-}
1.33      deraadt     7: {-#-} Copyright (c) 2001,2002 Todd T. Fries <todd@OpenBSD.org>
1.1       todd        8: {-#-} All rights reserved.
                      9: {-#-}
                     10: {-#-} Redistribution and use in source and binary forms, with or without
                     11: {-#-} modification, are permitted provided that the following conditions
                     12: {-#-} are met:
                     13: {-#-} 1. Redistributions of source code must retain the above copyright
                     14: {-#-}    notice, this list of conditions and the following disclaimer.
                     15: {-#-} 2. The name of the author may not be used to endorse or promote products
                     16: {-#-}    derived from this software without specific prior written permission.
                     17: {-#-}
                     18: {-#-} THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
                     19: {-#-} INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
                     20: {-#-} AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
                     21: {-#-} THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
                     22: {-#-} EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
                     23: {-#-} PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
                     24: {-#-} OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
                     25: {-#-} WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
                     26: {-#-} OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
                     27: {-#-} ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
                     28: {-#-}
                     29: dnl
                     30: dnl Diversions:  (upon termination, concatenated output queues)
                     31: dnl
                     32: dnl 0 - very top
                     33: dnl 1 - descriptions of devices
                     34: dnl 2 - init of script, function definitions, etc
                     35: dnl 3 - beginning of global recursive R() function
                     36: dnl 7 - body of MAKEDEV, device creations, etc
                     37: dnl 9 - end
                     38: dnl
                     39: dnl HOW TO ADD A DEVICE:
                     40: dnl
                     41: dnl In this file, you must use at least two macros:
                     42: dnl
1.29      todd       43: dnl  Use '__devitem(uniqueid, name-pattern, description)' to create an entry
1.1       todd       44: dnl  in the description at the top of the generated MAKEDEV file:
                     45: dnl
1.29      todd       46: dnl    __devitem(sca, sca*, Sugar Generic device)dnl
1.41      todd       47: dnl    __devitem(cry, crypto, hardware crypto access driver)dnl
1.1       todd       48: dnl
                     49: dnl  This is ultimately shown as:
                     50: dnl
                     51: dnl    #  sca*   Sugar Generic device
1.41      todd       52: dnl    #  crypto hardware crypto access driver
1.1       todd       53: dnl
1.29      todd       54: dnl  Use '_mkdev(uniqueid, shell-pattern, {-shell-script-})dnl' to create
1.1       todd       55: dnl  a shell script fragment used to 'create' the device (be sure to match
                     56: dnl  the uniqueid from above):
                     57: dnl
1.29      todd       58: dnl    _mkdev(sca, sca*, {-M sca$U c major_sca_c $U
                     59: dnl           M rsca$U b major_sca_b Add($U, 128)-})dnl
1.41      todd       60: dnl    _mkdev(cry, crypto, {-M crypto c major_cry_c 0-})dnl
1.1       todd       61: dnl
                     62: dnl  This is ultimately expanded into:
                     63: dnl
1.41      todd       64: dnl    sca*)
                     65: dnl           M sca$U c 24 $U
                     66: dnl           M sca$U b 42 $(($U+128))
                     67: dnl           ;;
                     68: dnl
                     69: dnl    crypto)
                     70: dnl           M crypto c 47 0
                     71: dnl           ;;
1.1       todd       72: dnl
1.29      todd       73: dnl In the MAKEDEV.md file, add a '_DEV(uniqueid, charmajor, blockmajor)'
1.1       todd       74: dnl entry:
                     75: dnl
1.29      todd       76: dnl   _DEV(sca, 24, 42)
1.41      todd       77: dnl   _DEV(cry, 47)
1.1       todd       78: dnl
1.41      todd       79: dnl Final step is to use the 'target/twrget' macros to have the 'all)' target
                     80: dnl generate one or more device(s).  Usage of 'target/twrget' is:
                     81: dnl      target(target_name, device_name [, append_string ] .. )
                     82: dnl      twrget(target_name, uniqueid, device_name, [, append_string ] .. )
1.1       todd       83: dnl
1.41      todd       84: dnl        target_name   a unique name that later is used as an argument to
                     85: dnl                      'show_target()' (which expands all devices for a
                     86: dnl                      given 'target_name').
                     87: dnl        uniqueid      same as 'uniqueid' above
                     88: dnl        device_name   string representing the device to be mknod'ed
                     89: dnl        append_string for each append_string, `device_name' is prepended
                     90: dnl
                     91: dnl Note: 'target(a,b,c)' is equivalent to 'twrget(a,b,b,c)'
                     92: dnl
                     93: dnl
                     94: dnl For a short example:
                     95: dnl
                     96: dnl   target(all, std)dnl
                     97: dnl   target(all, sca, 0, 1, 2, 3)dnl
                     98: dnl   twrget(all, cry, crypto)dnl
1.1       todd       99: dnl
                    100: dnl would expand to:
                    101: dnl
                    102: dnl   all)
1.41      todd      103: dnl        R std sca0 sca1 sca2 sca3 crypto
1.1       todd      104: dnl        ;;
                    105: dnl
1.41      todd      106: dnl presuming '_DEV(sca, ?, ?)' and '_DEV(std)' were in the MAKEDEV.md file.
1.1       todd      107: dnl
                    108: dnl
                    109: dnl Everything is 'automatically' added to 'MAKEDEV' based on whether or
                    110: dnl not the '_DEV()' entry has a corresponding _mkdev() and __devitem()
1.41      todd      111: dnl entry in MAKEDEV.mi (this file).
1.1       todd      112: dnl
                    113: dnl Note: be very wary of adding whitespace, carriage returns, or not
                    114: dnl finishing a macro with ')dnl' .. otherwise, extra blank lines show up
                    115: dnl in the output.
                    116: dnl
1.31      todd      117: dnl TODO:
                    118: dnl
                    119: dnl make a 'disktgt' macro that automatically does:
1.34      deraadt   120: dnl disktgt(rd, {-rd-})
1.31      todd      121: dnl
                    122: dnl    target(all,rd,0)
                    123: dnl    target(ramd,rd,0)
                    124: dnl    disk_q(rd)
1.34      deraadt   125: dnl    __devitem(rd, {-rd*-}, {-rd-})dnl
1.31      todd      126: dnl
1.41      todd      127: dnl  Note: not all disks are generated in 'all)'. (e.g. vax has a lot of
                    128: dnl        disks that are not generated by 'all)')
                    129: dnl
1.31      todd      130: dnl
1.29      todd      131: _mkdev(loc, local, {-test -s $T.local && sh $T.local-})dnl
1.1       todd      132: dnl
1.29      todd      133: __devtitle(make, Device "make" file.  Valid arguments)dnl
                    134: __devitem({-all-}, {-all-},
1.4       todd      135: {-makes all known devices{-,-} including local devices.
1.1       todd      136: {-#-}          Tries to make the ``standard'' number of each type.-})dnl
                    137: dnl
                    138: dnl
1.29      todd      139: target(all, mcd, 0)dnl
                    140: twrget(all, fdesc, fd)dnl
                    141: target(all, st, 0, 1)dnl
                    142: target(all, std)dnl
                    143: target(all, raid, 0, 1, 2, 3)dnl
                    144: target(all, rz, 0, 1, 2, 3, 4)dnl
                    145: target(all, hp, 0, 1, 2, 3)dnl
                    146: target(all, ra, 0, 1, 2, 3)dnl
                    147: target(all, rx, 0, 1)dnl
                    148: target(all, wd, 0, 1, 2, 3)dnl
                    149: target(all, xd, 0, 1, 2, 3)dnl
                    150: twrget(all, aflo, fd, 0, 1, 2, 3)dnl
1.46      provos    151: target(all, systrace)dnl
1.29      todd      152: target(all, pctr)dnl
                    153: target(all, pctr0)dnl
                    154: target(all, altq)dnl
                    155: target(all, pf)dnl
                    156: twrget(all, cry, crypto)dnl
                    157: target(all, apm)dnl
                    158: twrget(all, tth, ttyh, 0, 1)dnl
                    159: target(all, ttyA, 0, 1)dnl
                    160: target(all, ttyB, 0, 1, 2, 3, 4, 5)dnl
1.40      deraadt   161: twrget(all, attyB, ttyB, 0, 1, 2, 3, 4)dnl
1.29      todd      162: target(all, tty0, 0, 1, 2, 3)dnl
                    163: twrget(all, mac_tty0, tty0, 0, 1)dnl
                    164: twrget(all, tzs, tty, a, b, c, d)dnl
                    165: twrget(all, czs, cua, a, b, c, d)dnl
                    166: target(all, ttyc, 0, 1, 2, 3, 4, 5, 6, 7)dnl
                    167: twrget(all, com, tty0, 0, 1, 2, 3)dnl
                    168: twrget(all, mac_ttye, ttye, 0)dnl
                    169: target(all, ttye, 0, 1, 2, 3, 4, 5, 6)dnl
                    170: target(all, lkm)dnl
                    171: twrget(all, mmcl, mmclock)dnl
                    172: target(all, lpt, 0, 1, 2)dnl
                    173: twrget(all, lpt, lpa, 0, 1, 2)dnl
                    174: target(all, joy, 0, 1)dnl
1.41      todd      175: twrget(all, rnd, random)dnl
1.29      todd      176: target(all, uk, 0)dnl
                    177: target(all, wt, 0)dnl
                    178: target(all, wdt, 0)dnl
                    179: twrget(all, au, audio, 0)dnl
                    180: twrget(all, speak, speaker)dnl
                    181: target(all, asc, 0)dnl
                    182: target(all, music, 0)dnl
                    183: target(all, radio, 0)dnl
                    184: target(all, tuner, 0)dnl
                    185: target(all, rmidi, 0, 1, 2, 3, 4, 5, 6, 7)dnl
                    186: target(all, usbs)dnl
                    187: target(all, adb)dnl
                    188: target(all, iop, 0, 1)dnl
                    189: target(all, pci)dnl
                    190: twrget(all, wsmouse, wscons)dnl
                    191: twrget(all, btw, bwtwo, 0)dnl
                    192: twrget(all, ctw, cgtwo, 0)dnl
                    193: twrget(all, ctr, cgthree, 0)dnl
                    194: twrget(all, cfr, cgfour, 0)dnl
                    195: twrget(all, csx, cgsix, 0)dnl
                    196: twrget(all, ceg, cgeight, 0)dnl
                    197: twrget(all, cfo, cgfourteen, 0)dnl
                    198: target(all, tcx, 0)dnl
1.40      deraadt   199: twrget(all, grf_mac, grf, 0, 1, 2, 3)dnl
1.29      todd      200: twrget(all, grf_amiga, grf, 0, 1, 2, 3, 4, 5, 6)dnl
                    201: target(all, par, 0)dnl
                    202: twrget(all, amouse, mouse, 0, 1)dnl
                    203: twrget(all, akbd, kbd)dnl
                    204: target(all, apci, 0)dnl
                    205: target(all, ppi, 0)dnl
                    206: target(all, view0, 0, 1, 2, 3, 4, 5)dnl
                    207: target(all, local)dnl
1.49      fgsch     208: target(all, gpr, 0)dnl
1.18      todd      209: dnl
1.29      todd      210: _mkdev(all, {-all-}, {-dnl
1.18      todd      211: show_target(all)dnl
                    212: -})dnl
                    213: dnl
1.34      deraadt   214: __devitem(ramdisk, ramdisk, devices to be put on ramdisk-based media)dnl
1.29      todd      215: __devitem(std, {-std-}, standard devices)dnl
1.1       todd      216: dnl
1.18      todd      217: dnl
                    218: dnl
1.1       todd      219: dnl _std
                    220: dnl
                    221: dnl $1: tty
                    222: dnl $2: memstuff
                    223: dnl $3: ksyms
                    224: dnl $4: drum
                    225: dnl $5: klog
                    226: dnl
1.29      todd      227: define({-_std-}, {-dnl
1.1       todd      228: std)
                    229:        M console       c 0 0 600
                    230:        M tty           c $1 0
                    231:        M mem           c $2 0 640 kmem
                    232:        M kmem          c $2 1 640 kmem
                    233:        M null          c $2 2
                    234:        M zero          c $2 12
                    235:        M stdin         c major_fdesc_c 0
                    236:        M stdout        c major_fdesc_c 1
                    237:        M stderr        c major_fdesc_c 2
                    238:        M ksyms         c $3 0 640 kmem
                    239:        M drum          c $4 0 640 kmem
                    240:        M klog          c $5 0 600-})dnl
                    241: dnl
1.29      todd      242: target(usb, usb, 0, 1)dnl
                    243: target(usb, urio, 0)dnl
                    244: twrget(usb, uscan, uscanner, 0)dnl
                    245: target(usb, uhid, 0, 1, 2, 3)dnl
                    246: target(usb, ulpt, 0, 1)dnl
                    247: target(usb, ugen, 0, 1)dnl
                    248: target(usb, utty, 0, 1)dnl
1.18      todd      249: dnl
1.29      todd      250: __devitem({-usbs-}, usbs, make USB devices)dnl
                    251: _mkdev(usbs, usbs, {-dnl
1.18      todd      252: show_target({-usb-})dnl
                    253: -})dnl
1.29      todd      254: __devtitle(tap, Tapes)dnl
                    255: __devitem(wt, {-wt*    -}, QIC-interface (e.g. not SCSI) 3M cartridge tape)dnl
                    256: _mkdev(wt, wt*,
1.1       todd      257: {-name=wt
1.29      todd      258:        n=Mult($U, 8) m=Add($n, 4)
1.1       todd      259:        M $name$U       b major_wt_b $n 640 operator
                    260:        M r$name$U      c major_wt_c $n 640 operator
                    261:        M n$name$U      b major_wt_b $m 640 operator
                    262:        M nr$name$U     c major_wt_c $m 640 operator-})dnl
1.29      todd      263: __devitem(tz, tz*, {-SCSI tapes{-,-} DEC TK50 cartridge tape-})dnl
                    264: __devitem(st, {-st*-}, SCSI tapes)dnl
                    265: _mkdev(st, st*, {-n=Mult($U, 16)
1.1       todd      266:        for pre in " " n e en
                    267:        do
                    268:                M ${pre}st$U    b major_st_b $n 660 operator
                    269:                M ${pre}rst$U   c major_st_c $n 660 operator
1.29      todd      270:                n=Add($n, 1)
1.1       todd      271:        done-})dnl
1.29      todd      272: __devitem(ct, ct*, HP300 HP-IB cartridge tape)dnl
                    273: __devitem(mt, mt*, (Magnetic) 9-track reel tape)dnl
                    274: __devitem(ht, ht*, massbus tm03 & tu??)dnl
                    275: __devitem(tm, tm*, unibus tm11 & te10 emulations (e.g. Emulex tc-11))dnl
                    276: __devitem(ts, ts*, unibus ts11)dnl
                    277: __devitem(ut, ut*, unibus tu45 emulations (e.g.si 9700))dnl
                    278: __devtitle(dis, Disks)dnl
                    279: __devitem(rz, rz*, SCSI disks)dnl
1.31      todd      280: __devitem(sd, {-sd*-}, {-SCSI disks, includes flopticals-})dnl
1.29      todd      281: __devitem(hd, {-hd*-}, HP300 HP-IB disks)dnl
                    282: __devitem(cd, {-cd*-}, SCSI cdrom drives)dnl
                    283: __devitem(acd, acd*, ATAPI cdrom drives)dnl
                    284: _mkdev(cd, cd*, {-dodisk2 cd $U major_cd_b major_cd_c $U 0{--}ifstep(cd)-})dnl
                    285: __devitem(mcd, mcd*, Mitsumi cdrom drives)dnl
                    286: _mkdev(mcd, mcd*, {-dodisk2 mcd $U major_mcd_b major_mcd_c $U 0{--}ifstep(mcd)dnl
                    287: -})dnl
                    288: __devitem(ch, {-ch*-}, SCSI media changer)dnl
                    289: _mcdev(ch, ch*, ch, {-major_ch_c-}, 660, operator)dnl
                    290: __devitem(uk, uk*, SCSI Unknown device)dnl
                    291: _mcdev(uk, uk*, uk, {-major_uk_c-}, 640, operator)dnl
                    292: __devitem(ss, ss*, SCSI scanners)dnl
1.31      todd      293: _mkdev(ss, ss*, {-M ss$U c major_ss_c Mult($U,16) 640 operator
                    294:        M nss$U c major_ss_c Add(Mult($U,16),1) 640 operator
                    295:        M enss$U c major_ss_c Add(Mult($U,16),3) 640 operator
1.1       todd      296:        RMlist="$RMlist scan$U"
                    297:        MKlist="$MKlist;umask 77;ln -s ss$U scan$U"-})dnl
1.29      todd      298: __devitem(ses, ses*, SES/SAF-TE SCSI devices)dnl
                    299: _mkdev(ses, ses*, {-M ses$U c major_ses_c $U 640 operator-})dnl
                    300: __devitem(ramd, ramdisk, makes all devices for a ramdisk kernel)dnl arc
                    301: _mkdev(ramd, ramdisk, {-dnl
1.20      todd      302: show_target(ramd)dnl
                    303: -})dnl
1.29      todd      304: ifelse(MACHINE, mvmeppc, {-dnl
1.32      todd      305: target(all, ses, 0)dnl
                    306: target(all, ch, 0)dnl
                    307: target(all, ss, 0, 1)dnl
                    308: target(all, xfs, 0)dnl
                    309: twrget(all, flo, fd, 0, 0B, 0C, 0D, 0E, 0F, 0G, 0H)dnl
                    310: twrget(all, flo, fd, 1, 1B, 1C, 1D, 1E, 1F, 1G, 1H)dnl
                    311: target(all, pty, 0, 1, 2)dnl
                    312: target(all, bpf, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9)dnl
                    313: target(all, tun, 0, 1, 2, 3)dnl
                    314: target(all, xy, 0, 1, 2, 3)dnl
                    315: target(all, rd, 0)dnl
                    316: target(all, cd, 0, 1)dnl
                    317: target(all, sd, 0, 1, 2, 3, 4)dnl
                    318: target(all, vnd, 0, 1, 2, 3)dnl
                    319: target(all, ccd, 0, 1, 2, 3)dnl
1.29      todd      320: target(ramd, tty0, 0, 1, 2, 3)dnl
                    321: twrget(ramd, wsdisp, ttyC, 0)dnl
                    322: target(ramd, rd, 0)dnl
                    323: target(ramd, wd, 0, 1, 2, 3)dnl
                    324: target(ramd, sd, 0, 1, 2, 3, 4)dnl
                    325: target(ramd, cd, 0, 1)dnl
                    326: target(ramd, st, 0, 1)dnl
                    327: target(ramd, bpf, 0)dnl
                    328: target(ramd, rd, 0)dnl
                    329: -})dnl
                    330: ifelse(MACHINE, sparc, {-dnl
1.50      miod      331: twrget(wscons, wscons, ttyD, cfg, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b)dnl
1.51    ! todd      332: twrget(wscons, wscons, ttyE, cfg, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b)dnl
        !           333: twrget(wscons, wscons, ttyF, cfg, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b)dnl
1.32      todd      334: target(all, ses, 0)dnl
                    335: target(all, ch, 0)dnl
                    336: target(all, ss, 0, 1)dnl
                    337: target(all, xfs, 0)dnl
                    338: twrget(all, flo, fd, 0, 0B, 0C, 0D, 0E, 0F, 0G, 0H)dnl
                    339: twrget(all, flo, fd, 1, 1B, 1C, 1D, 1E, 1F, 1G, 1H)dnl
                    340: target(all, pty, 0, 1, 2)dnl
                    341: target(all, bpf, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9)dnl
                    342: target(all, tun, 0, 1, 2, 3)dnl
                    343: target(all, xy, 0, 1, 2, 3)dnl
                    344: target(all, hk, 0, 1, 2, 3)dnl
                    345: target(all, rd, 0)dnl
                    346: target(all, cd, 0, 1)dnl
                    347: target(all, sd, 0, 1, 2, 3, 4)dnl
                    348: target(all, vnd, 0, 1, 2, 3)dnl
                    349: target(all, ccd, 0, 1, 2, 3)dnl
1.29      todd      350: target(ramd, fd, 0)dnl
                    351: target(ramd, sd, 0, 1, 2, 3)dnl
                    352: target(ramd, rd, 0)dnl
                    353: target(ramd, cd, 0)dnl
                    354: -})dnl
                    355: ifelse(MACHINE, sparc64, {-dnl
1.35      todd      356: twrget(wscons, wscons, ttyD, cfg, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b)dnl
1.51    ! todd      357: twrget(wscons, wscons, ttyE, cfg, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b)dnl
        !           358: twrget(wscons, wscons, ttyF, cfg, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b)dnl
1.32      todd      359: target(all, ccd, 0, 1, 2, 3)dnl
                    360: target(all, ses, 0)dnl
                    361: target(all, ch, 0)dnl
                    362: target(all, ss, 0, 1)dnl
                    363: target(all, xfs, 0)dnl
                    364: twrget(all, flo, fd, 0, 0B, 0C, 0D, 0E, 0F, 0G, 0H)dnl
                    365: twrget(all, flo, fd, 1, 1B, 1C, 1D, 1E, 1F, 1G, 1H)dnl
                    366: target(all, pty, 0, 1, 2)dnl
                    367: target(all, bpf, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9)dnl
                    368: target(all, tun, 0, 1, 2, 3)dnl
                    369: target(all, xy, 0, 1, 2, 3)dnl
                    370: target(all, rd, 0)dnl
                    371: target(all, cd, 0, 1)dnl
                    372: target(all, sd, 0, 1, 2, 3, 4)dnl
                    373: target(all, vnd, 0, 1, 2, 3)dnl
1.29      todd      374: target(ramd, fd, 0)dnl
                    375: target(ramd, rd, 0)dnl
                    376: target(ramd, sd, 0, 1, 2, 3)dnl
                    377: target(ramd, wd, 0, 1, 2, 3)dnl
                    378: target(ramd, cd, 0, 1)dnl
                    379: target(ramd, st, 0, 1)dnl
                    380: target(ramd, bpf, 0)dnl
                    381: twrget(all, s64_tzs, tty, a, b, c, d)dnl
                    382: twrget(all, s64_czs, cua, a, b, c, d)dnl
                    383: __devitem(s64_tzs, tty[a-z]*, Zilog 8530 Serial Port)dnl
                    384: __devitem(s64_czs, cua[a-z]*, Zilog 8530 Serial Port)dnl
                    385: _mkdev(s64_tzs, {-tty[a-z]-}, {-u=${i#tty*}
1.23      todd      386:        case $u in
                    387:        a) n=0 ;;
                    388:        b) n=1 ;;
                    389:        c) n=2 ;;
                    390:        d) n=3 ;;
                    391:        *) echo unknown tty device $i ;;
                    392:        esac
                    393:        M tty$u c major_s64_tzs_c $n 660 dialer uucp-})dnl
1.29      todd      394: _mkdev(s64_czs, cua[a-z], {-u=${i#cua*}
1.23      todd      395:        case $u in
                    396:        a) n=0 ;;
                    397:        b) n=1 ;;
                    398:        c) n=2 ;;
                    399:        d) n=3 ;;
1.41      todd      400:        *) echo unknown cua device $i ;;
1.23      todd      401:        esac
1.29      todd      402:        M cua$u c major_s64_czs_c Add($n, 128) 660 dialer uucp-})dnl
1.18      todd      403: -})dnl
1.29      todd      404: ifelse(MACHINE, i386, {-dnl
1.32      todd      405: target(all, ses, 0)dnl
                    406: target(all, ch, 0)dnl
                    407: target(all, ss, 0, 1)dnl
                    408: target(all, xfs, 0)dnl
                    409: twrget(all, flo, fd, 0, 0B, 0C, 0D, 0E, 0F, 0G, 0H)dnl
                    410: twrget(all, flo, fd, 1, 1B, 1C, 1D, 1E, 1F, 1G, 1H)dnl
                    411: target(all, pty, 0, 1, 2)dnl
                    412: target(all, bpf, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9)dnl
                    413: target(all, tun, 0, 1, 2, 3)dnl
                    414: target(all, xy, 0, 1, 2, 3)dnl
                    415: target(all, rd, 0)dnl
                    416: target(all, cd, 0, 1)dnl
                    417: target(all, sd, 0, 1, 2, 3, 4)dnl
                    418: target(all, vnd, 0, 1, 2, 3)dnl
                    419: target(all, ccd, 0, 1, 2, 3)dnl
1.42      fgsch     420: target(all, bktr, 0)dnl
1.29      todd      421: target(ramd, tty0, 0, 1, 2, 3)dnl
                    422: twrget(ramd, wsdisp, ttyC, 0)dnl
                    423: target(ramd, wt, 0)dnl
                    424: target(ramd, fd, 0)dnl
                    425: target(ramd, rd, 0)dnl
1.40      deraadt   426: target(ramd, wd, 0, 1, 2, 3)dnl
                    427: target(ramd, sd, 0, 1, 2, 3)dnl
1.29      todd      428: target(ramd, cd, 0, 1)dnl
                    429: target(ramd, st, 0, 1)dnl
1.40      deraadt   430: target(ramd, mcd, 0)dnl
1.29      todd      431: -})dnl
                    432: ifelse(MACHINE, alpha, {-dnl
1.32      todd      433: target(all, ses, 0)dnl
                    434: target(all, ch, 0)dnl
                    435: target(all, ss, 0, 1)dnl
                    436: target(all, xfs, 0)dnl
                    437: twrget(all, flo, fd, 0, 0B, 0C, 0D, 0E, 0F, 0G, 0H)dnl
                    438: twrget(all, flo, fd, 1, 1B, 1C, 1D, 1E, 1F, 1G, 1H)dnl
                    439: target(all, pty, 0, 1, 2)dnl
                    440: target(all, bpf, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9)dnl
                    441: target(all, tun, 0, 1, 2, 3)dnl
                    442: target(all, xy, 0, 1, 2, 3)dnl
                    443: target(all, rd, 0)dnl
                    444: target(all, cd, 0, 1)dnl
                    445: target(all, sd, 0, 1, 2, 3, 4)dnl
                    446: target(all, vnd, 0, 1, 2, 3)dnl
                    447: target(all, ccd, 0, 1, 2, 3)dnl
1.29      todd      448: target(ramd, sd, 0, 1, 2)dnl
                    449: target(ramd, wd, 0)dnl
                    450: target(ramd, tty0, 0, 1)dnl
                    451: target(ramd, st, 0)dnl
                    452: target(ramd, cd, 0)dnl
                    453: target(ramd, ttyB, 0, 1)dnl
                    454: target(ramd, ttyE, 0, 1)dnl
                    455: -})dnl
                    456: ifelse(MACHINE, amiga, {-dnl
1.32      todd      457: target(all, ses, 0)dnl
                    458: target(all, ch, 0)dnl
                    459: target(all, ss, 0, 1)dnl
                    460: target(all, xfs, 0)dnl
                    461: twrget(all, flo, fd, 0, 0B, 0C, 0D, 0E, 0F, 0G, 0H)dnl
                    462: twrget(all, flo, fd, 1, 1B, 1C, 1D, 1E, 1F, 1G, 1H)dnl
                    463: target(all, pty, 0, 1, 2)dnl
                    464: target(all, bpf, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9)dnl
                    465: target(all, tun, 0, 1, 2, 3)dnl
                    466: target(all, xy, 0, 1, 2, 3)dnl
                    467: target(all, rd, 0)dnl
                    468: target(all, cd, 0, 1)dnl
                    469: target(all, sd, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9)dnl
                    470: target(all, vnd, 0, 1, 2, 3)dnl
                    471: target(all, ccd, 0, 1, 2, 3)dnl
1.29      todd      472: target(ramd, kbd)dnl
                    473: target(ramd, pty, 0)dnl
                    474: target(ramd, tty0, 0)dnl
                    475: target(ramd, ttyA, 0, 1)dnl
                    476: target(ramd, ttyB, 0, 1)dnl
                    477: target(ramd, ttye, 0, 1, 2, 3, 4, 5, 6)dnl
                    478: target(ramd, cd, 0, 1)dnl
                    479: target(ramd, sd, 0, 1, 2, 3)dnl
                    480: target(ramd, st, 0, 1)dnl
                    481: target(ramd, fd, 0, 1)dnl
                    482: target(ramd, wd, 0, 1)dnl
                    483: target(ramd, rd, 0)dnl
1.21      todd      484: -})dnl
1.29      todd      485: ifelse(MACHINE, hp300, {-dnl
1.32      todd      486: target(all, ses, 0)dnl
                    487: target(all, ch, 0)dnl
                    488: target(all, ss, 0, 1)dnl
                    489: target(all, xfs, 0)dnl
                    490: twrget(all, flo, fd, 0, 0B, 0C, 0D, 0E, 0F, 0G, 0H)dnl
                    491: twrget(all, flo, fd, 1, 1B, 1C, 1D, 1E, 1F, 1G, 1H)dnl
                    492: target(all, pty, 0, 1, 2)dnl
                    493: target(all, bpf, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9)dnl
                    494: target(all, tun, 0, 1, 2, 3)dnl
                    495: target(all, xy, 0, 1, 2, 3)dnl
                    496: target(all, rd, 0)dnl
                    497: target(all, cd, 0, 1)dnl
                    498: target(all, sd, 0, 1, 2, 3, 4)dnl
                    499: target(all, vnd, 0, 1, 2, 3)dnl
1.29      todd      500: _mkdev(st_hp300, ct*|mt*|st*,
1.27      todd      501: {-case $i in
                    502:        ct*) name=ct blk=major_ct_b chr=major_ct_c;;
                    503:        mt*) name=mt blk=major_mt_b chr=major_mt_c;;
                    504:        st*) name=st blk=major_st_hp300_b chr=major_st_hp300_c;;
                    505:        esac
                    506:        case $U in
                    507:        [0-7])
1.29      todd      508:                four=Add($U, 4) eight=Add($U, 8)
                    509:                twelve=Add($U, 12) twenty=Add($U, 20)
1.27      todd      510:                M r$name$U      c $chr $U 660 operator
                    511:                M r$name$four   c $chr $four 660 operator
                    512:                M r$name$eight  c $chr $eight 660 operator
                    513:                M r$name$twelve c $chr $twelve 660 operator
                    514:                MKlist="$MKlist;ln r$name$four nr$name$U";: sanity w/pdp11 v7
                    515:                MKlist="$MKlist;ln r$name$twelve nr$name$eight";: ditto
                    516:                RMlist="$RMlist nr$name$U nr$name$eight"
                    517:                ;;
                    518:        *)
                    519:                echo bad unit for tape in: $1
                    520:                ;;
                    521:        esac-})dnl
1.29      todd      522: __devitem(st_hp300, st*, Exabyte tape)dnl
                    523: __devitem(grf, grf*, raw interface to HP300 graphics devices)dnl
1.32      todd      524: target(all, ccd, 0, 1, 2, 3)dnl
1.29      todd      525: target( all, grf, 0)dnl
                    526: dnl XXX target( all, hil, 0, 1, 2, 3, 4, 5, 6, 7)dnl
                    527: target( all, hil, )dnl
                    528: twrget( all, st_hp300, st, 0, 1)dnl
                    529: target( all, dca, 0, 1)dnl
                    530: target( all, dcm, 0, 1, 2, 3)dnl
                    531: target( all, hd, 0, 1, 2)dnl
                    532: target( all, ct, 0, 1)dnl
                    533: target( all, ite, 0)dnl
                    534: target(ramd, ct, 0, 1)dnl
                    535: target(ramd, hd, 0, 1, 2)dnl
                    536: target(ramd, sd, 0, 1, 2)dnl
                    537: target(ramd, rd, 0, 1)dnl
                    538: target(ramd, pty, 0)dnl
                    539: target(ramd, hil, )dnl
                    540: target(ramd, grf, 0)dnl
                    541: target(ramd, apci, 0)dnl
                    542: target(ramd, ite, 0)dnl
                    543: target(ramd, dca, 0)dnl
                    544: target(ramd, dcm, 0, 1)dnl
                    545: target(ramd, bpf, 0, 1)dnl
                    546: target(ramd, tun, 0, 1)dnl
                    547: -})dnl
                    548: ifelse(MACHINE, hppa, {-dnl
1.32      todd      549: target(all, ses, 0)dnl
                    550: target(all, ch, 0)dnl
                    551: target(all, ss, 0, 1)dnl
                    552: target(all, xfs, 0)dnl
                    553: twrget(all, flo, fd, 0, 0B, 0C, 0D, 0E, 0F, 0G, 0H)dnl
                    554: twrget(all, flo, fd, 1, 1B, 1C, 1D, 1E, 1F, 1G, 1H)dnl
                    555: target(all, pty, 0, 1, 2)dnl
                    556: target(all, bpf, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9)dnl
                    557: target(all, tun, 0, 1, 2, 3)dnl
                    558: target(all, xy, 0, 1, 2, 3)dnl
                    559: target(all, rd, 0)dnl
                    560: target(all, cd, 0, 1)dnl
                    561: target(all, sd, 0, 1, 2, 3, 4)dnl
                    562: target(all, vnd, 0, 1, 2, 3)dnl
                    563: target(all, ccd, 0, 1, 2, 3)dnl
1.29      todd      564: target(ramd, st, 0, 1)dnl
                    565: target(ramd, sd, 0, 1, 2, 3)dnl
                    566: target(ramd, rd, 0, 1)dnl
                    567: target(ramd, pty, 0)dnl
                    568: target(ramd, hil)dnl
                    569: target(ramd, com, 0, 1)dnl
                    570: target(ramd, bpf, 0, 1)dnl
                    571: target(ramd, tun, 0, 1)dnl
                    572: -})dnl
                    573: ifelse(MACHINE, mac68k, {-dnl
1.32      todd      574: target(all, ses, 0)dnl
                    575: target(all, sd, 0, 1, 2, 3, 4)dnl
                    576: target(all, vnd, 0, 1, 2, 3)dnl
                    577: target(all, ch, 0)dnl
                    578: target(all, ss, 0, 1)dnl
                    579: target(all, xfs, 0)dnl
                    580: twrget(all, flo, fd, 0, 0B, 0C, 0D, 0E, 0F, 0G, 0H)dnl
                    581: twrget(all, flo, fd, 1, 1B, 1C, 1D, 1E, 1F, 1G, 1H)dnl
                    582: target(all, pty, 0, 1, 2)dnl
                    583: target(all, bpf, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9)dnl
                    584: target(all, tun, 0, 1, 2, 3)dnl
                    585: target(all, xy, 0, 1, 2, 3)dnl
                    586: target(all, rd, 0)dnl
                    587: target(all, cd, 0, 1)dnl
                    588: target(all, ccd, 0, 1, 2, 3)dnl
1.29      todd      589: target(ramd, sd, 0, 1, 2, 3)dnl
                    590: target(ramd, st, 0, 1)dnl
1.45      miod      591: target(ramd, rd, 0, 1)dnl
1.29      todd      592: target(ramd, adb)dnl
                    593: target(ramd, asc, 0)dnl
                    594: target(ramd, grf, 0, 1)dnl
1.40      deraadt   595: target(ramd, ttye, 0)dnl
1.29      todd      596: twrget(ramd, mac_tty0, tty0, 0, 1)dnl
                    597: target(ramd, pty, 0)dnl
                    598: -})dnl
                    599: ifelse(MACHINE, macppc, {-dnl
1.32      todd      600: target(all, ses, 0)dnl
                    601: target(all, ch, 0)dnl
                    602: target(all, ss, 0, 1)dnl
                    603: target(all, xfs, 0)dnl
                    604: twrget(all, flo, fd, 0, 0B, 0C, 0D, 0E, 0F, 0G, 0H)dnl
                    605: twrget(all, flo, fd, 1, 1B, 1C, 1D, 1E, 1F, 1G, 1H)dnl
                    606: target(all, pty, 0, 1, 2)dnl
                    607: target(all, bpf, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9)dnl
                    608: target(all, tun, 0, 1, 2, 3)dnl
                    609: target(all, xy, 0, 1, 2, 3)dnl
                    610: target(all, rd, 0)dnl
                    611: target(all, cd, 0, 1)dnl
                    612: target(all, sd, 0, 1, 2, 3, 4)dnl
                    613: target(all, vnd, 0, 1, 2, 3)dnl
                    614: target(all, ccd, 0, 1, 2, 3)dnl
1.29      todd      615: target(ramd, sd, 0, 1, 2, 3, 4)dnl
                    616: target(ramd, wd, 0, 1, 2, 3, 4)dnl
                    617: target(ramd, st, 0, 1)dnl
                    618: target(ramd, cd, 0, 1)dnl)dnl
                    619: target(ramd, rd, 0)dnl
1.40      deraadt   620: target(ramd, ttyE, 0)dnl
1.29      todd      621: target(ramd, tty0, 0, 1)dnl
                    622: target(ramd, pty, 0)dnl
                    623: -})dnl
1.32      todd      624: ifelse(MACHINE, sun3, {-
                    625: target(all, ses, 0)dnl
                    626: target(all, ch, 0)dnl
                    627: target(all, ss, 0, 1)dnl
                    628: target(all, xfs, 0)dnl
                    629: twrget(all, flo, fd, 0, 0B, 0C, 0D, 0E, 0F, 0G, 0H)dnl
                    630: twrget(all, flo, fd, 1, 1B, 1C, 1D, 1E, 1F, 1G, 1H)dnl
                    631: target(all, pty, 0, 1, 2)dnl
                    632: target(all, bpf, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9)dnl
                    633: target(all, tun, 0, 1, 2, 3)dnl
                    634: target(all, xy, 0, 1, 2, 3)dnl
                    635: target(all, hk, 0, 1, 2, 3)dnl
                    636: target(all, rd, 0)dnl
                    637: target(all, cd, 0, 1)dnl
                    638: target(all, sd, 0, 1, 2, 3, 4)dnl
                    639: target(all, vnd, 0, 1, 2, 3)dnl
                    640: target(all, ccd, 0, 1, 2, 3)dnl
                    641: -})dnl
1.29      todd      642: ifelse(MACHINE, vax, {-
1.32      todd      643: dnl target(all, ses, 0)dnl
                    644: dnl target(all, ut, 0)dnl
                    645: dnl target(all, ch, 0)dnl
                    646: target(all, ss, 0)dnl
                    647: dnl target(all, xfs, 0)dnl
                    648: target(all, pty, 0, 1)dnl
                    649: target(all, bpf, 0, 1, 2, 3, 4, 5, 6, 7)dnl
                    650: target(all, tun, 0, 1)dnl
                    651: dnl target(all, xy, 0, 1, 2, 3)dnl
                    652: dnl target(all, hk, 0, 1, 2, 3)dnl
                    653: dnl target(all, up, 0, 1, 2, 3)dnl
                    654: dnl target(all, rd, 0)dnl
                    655: target(all, cd, 0)dnl
                    656: target(all, sd, 0, 1, 2, 3)dnl
                    657: target(all, vnd, 0)dnl
1.30      todd      658: __devitem(dhu, dhu*, unibus dhu11)dnl
                    659: __devitem(dmz, dmz*, unibus dmz32)dnl
                    660: __devitem(dmf, dmf*, unibus dmf32)dnl
                    661: __devitem(dh, dh*, {-unibus dh11 and emulations (e.g. Able dmax, Emulex cs-11)-})
                    662: __devitem(vt, vt*, {-console-})dnl
                    663: __devitem(dz, dz*, unibus dz11 and dz32)dnl
1.31      todd      664: __devitem(dl, dl*, unibus dl11)dnl
1.30      todd      665: _mkdev(dz, dz*,
1.31      todd      666: {-case $U in
1.30      todd      667:        [0-7])
                    668:               i=0
                    669:               while [ $i -lt 8 ]; do
1.31      todd      670:                       no=Add(Mult($U, 8), $i)
1.30      todd      671:                       if [ $no -lt 10 ]; then
                    672:                               no="0${no}"
                    673:                       fi
1.31      todd      674:                       M tty${no} c 1 $no 600
                    675:                       let i=i+1
1.30      todd      676:               done
                    677:               ;;
                    678:        *)
                    679:               echo bad unit for dz in: $i
                    680:               ;;
                    681:        esac-})dnl
                    682: dnl XXX split this up abit?
1.31      todd      683: _mkdev(dhu, dhu*|dmz*|dmf*|dh*|vt*,
1.30      todd      684: {-set -A cnvtbl 0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s t u v
                    685:        case $i in
                    686:        vt*)    name=vt; major=68; count=8;
1.31      todd      687:                case $U in
1.30      todd      688:                0) ch=w ;;
                    689:                *) echo bad unit for $name in: $i ;;
                    690:                esac;;
                    691:        dmz*)   name=dmz; major=37; count=24;
1.31      todd      692:                case $U in
1.30      todd      693:                0) ch=a ;; 1) ch=b ;; 2) ch=c ;; 3) ch=e ;; 4) ch=f ;;
                    694:                *) echo bad unit for $name in: $i ;;
                    695:                esac;;
                    696:        dmf*)   name=dmf; major=22; count=8;
1.31      todd      697:                case $U in
1.30      todd      698:                0) ch=A ;; 1) ch=B ;; 2) ch=C ;; 3) ch=E ;;
                    699:                4) ch=F ;; 5) ch=G ;; 6) ch=H ;; 7) ch=I ;;
                    700:                *) echo bad unit for $name in: $i ;;
                    701:                esac;;
                    702:        dhu*)   name=dhu; major=34; count=16;
1.31      todd      703:                case $U in
1.30      todd      704:                0) ch=S ;; 1) ch=T ;; 2) ch=U ;; 3) ch=V ;;
                    705:                4) ch=W ;; 5) ch=X ;; 6) ch=Y ;; 7) ch=Z ;;
                    706:                *) echo bad unit for $name in: $i ;;
                    707:                esac;;
                    708:        dh*)    name=dh; major=12; count=16;
1.31      todd      709:                case $U in
1.30      todd      710:                0) ch=h ;; 1) ch=i ;; 2) ch=j ;; 3) ch=k ;;
                    711:                4) ch=l ;; 5) ch=m ;; 6) ch=n ;; 7) ch=o ;;
                    712:                *) echo bad unit for $name in: $i ;;
                    713:                esac;;
                    714:        esac
                    715:        i=0
                    716:        while [ $i -lt $count ]; do
                    717:                let=${cnvtbl[$i]}
                    718:                if [ -n "$let" ] ;then
1.31      todd      719:                        M tty${ch}${let} c $major Add(Mult($U, $count), $i) 600
1.30      todd      720:                else
1.31      todd      721:                        echo bad count for ${name}: $U, $count, $i
1.30      todd      722:                fi
1.31      todd      723:                let i=i+1
1.30      todd      724:        done
                    725:        ;;
                    726:
                    727: dl*)
                    728:        major=66
1.31      todd      729:        let=${cnvtbl[$U]}
1.30      todd      730:        if [ -n "$let" ] ;then
1.31      todd      731:                M ttyJ${let} c $major $U 600
1.30      todd      732:        else
1.31      todd      733:                echo bad number for ${name}: $U
1.30      todd      734:        fi-})dnl
                    735: dnl
1.32      todd      736: target( all, ccd, 0)dnl
1.29      todd      737: target( all, hd, 0, 1, 2)dnl
1.31      todd      738: target( all, mt, 0, 1)dnl
                    739: target( all, ts, 0, 1)dnl
1.30      todd      740: target( all, uu, 0)dnl
1.31      todd      741: target( all, st, 0, 1)dnl
1.30      todd      742: target( all, dhu, 0)dnl
1.32      todd      743: dnl target( all, dmz, 0)dnl
                    744: dnl target( all, dmf, 0)dnl
                    745: dnl target( all, dh, 0)dnl
1.30      todd      746: target( all, dz, 0)dnl
1.31      todd      747: target( all, dl, 0)dnl
                    748: target( all, vt, 0)dnl
1.29      todd      749: target(ramd, fd, 0)dnl
                    750: target(ramd, sd, 0, 1, 2, 3)dnl
                    751: target(ramd, rd, 0)dnl
                    752: target(ramd, cd, 0)dnl
                    753: target(ramd, bpf, 0)dnl
                    754: -})dnl
                    755: target(ramd, std)dnl
                    756: target(ramd, random)dnl
                    757: target(ramd, bpf, 0)dnl
1.34      deraadt   758: __devitem(rd, {-rd*-}, "rd" pseudo-disks)dnl
1.29      todd      759: _mkdev(rd, rd*, {-dodisk2 rd $U major_rd_b major_rd_c $U 0{--}ifstep(rd)-})dnl
                    760: __devitem(xd, xd*, Xylogic 753/7053 disks)dnl
                    761: __devitem(xy, xy*, {-  Xylogic 450/451 disks-})dnl
                    762: __devitem(flo, {-fd*-}, {-Floppy disk drives (3 1/2"{-,-} 5 1/4")-})dnl
                    763: _mkdev(flo, fd*,
1.1       todd      764: {-typnam=$U${i#fd[01]*}
                    765:        case $typnam in
                    766:        0|1)    typnum=0;; # no type specified, assume A
1.26      deraadt   767:        *A)     typnum=0; typnam=0;;
                    768:        *B)     typnum=1;;
                    769:        *C)     typnum=2;;
                    770:        *D)     typnum=3;;
                    771:        *E)     typnum=4;;
                    772:        *F)     typnum=5;;
                    773:        *G)     typnum=6;;
                    774:        *H)     typnum=7;;
                    775:        *)      echo bad type $typnam for $i; exit 1;;
1.1       todd      776:        esac
                    777:        case $U in
                    778:        0|1)    blk=major_flo_b; chr=major_flo_c;;
                    779:        *)      echo bad unit $U for $i; exit 1;;
                    780:        esac
                    781:        nam=fd${typnam}
1.29      todd      782:        n=Add(Mult($U, 128), Mult($typnum, 16))
1.1       todd      783:        M ${nam}a       b $blk $n 640 operator
1.29      todd      784:        M ${nam}b       b $blk Add($n, 1) 640 operator
                    785:        M ${nam}c       b $blk Add($n, 2) 640 operator
1.1       todd      786:        M r${nam}a      c $chr $n 640 operator
1.29      todd      787:        M r${nam}b      c $chr Add($n, 1) 640 operator
                    788:        M r${nam}c      c $chr Add($n, 2) 640 operator-}, 664)dnl
                    789: __devitem(aflo, ramdisk, devices needed for install floppies)dnl
                    790: _mkdev(aflo, fd*, {-case $U in 0|1|2|3)
                    791:        M fd${U}a b major_aflo_b Mult($U, 16) 640 operator
                    792:        M fd${U}b b major_aflo_b Add(Mult($U, 16), 1) 640 operator
                    793:        M rfd${U}a c major_aflo_c Mult($U, 16) 640 operator
                    794:        M rfd${U}b c major_aflo_c Add(Mult($U, 16), 1) 640 operator;;
1.1       todd      795:        *) echo bad unit for floppy disk in: $i;;
                    796:        esac-})dnl
1.29      todd      797: __devitem(iop, iop*, I2O controller device)dnl
                    798: _mcdev(iop, iop*, iop, {-major_iop_c-}, 660)dnl
                    799: __devitem(wdt, wdt0, watchdog timer)dnl
                    800: _mcdev(wdt, wdt0, wdt, {-major_wdt_c-}, 440, operator)dnl
                    801: __devitem(local, local, configuration specific devices)dnl
                    802: __devitem(wd, {-wd*-}, {-"winchester" disk drives (ST506, IDE, ESDI, RLL, ...)-})dnl
                    803: __devitem(ccd, ccd*, concatenated disk devices)dnl
                    804: __devitem(raid, raid*, RAIDframe disk devices)dnl
                    805: __devitem(vnd, vnd*, "file" pseudo-disks)dnl
                    806: _mkdev(vnd, vnd*, {-dodisk vnd $U major_vnd_b major_vnd_c $U 0{--}ifstep(vnd)
1.6       todd      807:        dodisk svnd $U major_vnd_b major_vnd_c $U 128{--}ifstep(vnd)-})dnl
1.29      todd      808: __devitem(ra, ra*, {-MSCP disks (ra??, hd??)-})dnl
                    809: __devitem(hp, hp*, {-massbuss rm??-})dnl
                    810: __devitem(hk, hk*, {-unibus rk06 and rk07-})dnl
                    811: __devitem(up, up*, {-other unibus devices (e.g. on Emulex sc-21v controller)-})dnl
                    812: __devitem(rb, rb*, {-730 idc w/ rb80 and/or rb02-})dnl
                    813: __devitem(rx, rx*, {-MSCP floppy disk (rx33/50/...)-})dnl
                    814: __devitem(rl, rl*, {-unibus r102-})dnl
                    815: __devitem(hd, hd*, {-HDC9224 hd disks on VS2000-})dnl
1.1       todd      816: dnl
                    817: dnl For normal disk devices, add a disk_q entry; anything else define like
                    818: dnl the rest (such as vnd above).
                    819: dnl
1.18      todd      820: disk_q({-ccd-})dnl
                    821: disk_q({-hd-})dnl
                    822: disk_q({-hk-})dnl
                    823: disk_q({-hp-})dnl
                    824: disk_q({-ra-})dnl
                    825: disk_q({-raid-})dnl
                    826: disk_q({-rb-})dnl
                    827: disk_q({-rl-})dnl
                    828: disk_q({-rx-})dnl
                    829: disk_q({-sd-})dnl
1.1       todd      830: disk_q({-xy-})dnl
                    831: disk_q({-xd-})dnl
1.18      todd      832: disk_q({-up-})dnl
                    833: disk_q({-wd-})dnl
1.1       todd      834: disk_q({-rz-})dnl
                    835: dnl
1.29      todd      836: __devitem(loc, local, configuration specific devices)dnl
                    837: _mkdev(loc, local, {-test -s $T.local && sh $T.local-})dnl
                    838: _mkdev({-disks-}, {-undefine({-C_ase-})show_disks()undefine({-C_ase-})-},
1.1       todd      839: {-case $i in
                    840: show_disks2()dnl
1.6       todd      841:        esac-})dnl
1.1       todd      842: __mkdev({-disks-}){--}dnl
                    843: dnl
1.29      todd      844: __devtitle(cons, Console ports)dnl
                    845: __devitem(ttyv0, ttyv0, pccons or pcvt screen 0)dnl
                    846: __devitem(ttyv, ttyv*, pcvt)dnl
                    847: __devitem(ttye, ttye*, ite bitmapped consoles)dnl
                    848: __devitem(mac_ttye, ttye*, ite bitmapped consoles)dnl
                    849: __devitem(wscons, ttyC0, wscons screen 0)dnl
1.35      todd      850: twrget(wscons, wscons, ttyC, cfg, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b)dnl
                    851: target(wscons, wsmux)dnl
                    852: target(wscons, wskbd, 0, 1, 2, 3)dnl
                    853: target(wscons, wsmouse, 0, 1, 2, 3)dnl
1.29      todd      854: _mkdev({-wscons-}, {-wscons-}, {-dnl
1.35      todd      855: show_target(wscons)dnl
                    856: -})dnl
1.36      todd      857: __devitem(wsdisp, ttyC-F*, wscons virtual consoles)dnl
1.35      todd      858: _mkdev({-wsdisp-}, tty[C-F]*, {-U=${i##tty[C-F]}
                    859:        case $i in
                    860:        ttyC*) n=C m=expr(0*256);;
                    861:        ttyD*) n=D m=expr(1*256);;
                    862:        ttyE*) n=E m=expr(2*256);;
                    863:        ttyF*) n=F m=expr(3*256);;
                    864:        esac
1.3       todd      865:        case $U in
1.35      todd      866:        [0-9a-f]) M tty$n$U c major_wsdisp_c {-$(( 16#$U + $m ))-} 600;;
                    867:        cfg) M tty${n}cfg c major_wsdisp_c Add(255,$m) 600;;
1.3       todd      868:        *) echo bad unit $U for $i; exit 1;;
1.6       todd      869:        esac-})dnl
1.29      todd      870: __devitem(wskbd, wskbd*, wscons keyboards)dnl
                    871: _mkdev(wskbd, wskbd*, {-M wskbd$U c major_wskbd_c $U 600-})dnl
                    872: __devitem(wsmux, wsmux, wscons keyboard/mouse mux devices)dnl
                    873: _mkdev(wsmux, wsmux|wsmouse|wskbd, {-M wsmouse c major_wsmux_c 0 600
1.1       todd      874:        M wskbd c major_wsmux_c 1 600-})dnl
1.29      todd      875: __devitem(pcons, console, PROM console)dnl
                    876: __devtitle(point, Pointing devices)dnl
                    877: __devitem(wsmouse, wsmouse*, wscons mice)dnl
                    878: _mkdev(wsmouse, wsmouse*, {-M wsmouse$U c major_wsmouse_c $U 600-})dnl
                    879: __devitem(quad, quadmouse, "quadrature mouse")dnl
                    880: __devtitle(pty, Pseudo terminals)dnl
                    881: __devitem(tty, tty*, set of 16 slave psuedo terminals)dnl
                    882: __devitem(pty, pty*, set of 16 master pseudo terminals)dnl
1.31      todd      883: _mkdev(pty, pty*, {-if [ $U -gt 15 ]; then
                    884:                echo bad unit for pty in: $i
                    885:                continue
                    886:        fi
                    887:        set -A tbl p q r s t u v w x y z P Q R S T
                    888:        name=${tbl[$U]}
1.1       todd      889:        n=0
                    890:        while [ $n -lt 16 ]
                    891:        do
                    892:                nam=$name$(hex $n)
1.31      todd      893:                off=Mult($U, 16)
1.29      todd      894:                M tty$nam c major_tty_c Add($off, $n)
                    895:                M pty$nam c major_pty_c Add($off, $n)
                    896:                n=Add($n, 1)
1.1       todd      897:        done-})dnl
1.29      todd      898: __devitem(dc, dc*, {-4 channel serial interface (keyboard{-,-} mouse{-,-}modem{-,-} printer)-})dnl
                    899: __devtitle(prn, Printers)dnl
                    900: __devitem(par, par*, motherboard parallel port)dnl
                    901: __devitem(lpt, lpt*, IEEE 1284 centronics printer)dnl
                    902: _mkdev(lpt, lpt*|lpa*,
1.1       todd      903: {-case $i in
                    904:        lpt*) n=lpt f=0;;
                    905:        lpa*) n=lpa f=128;;
                    906:        esac
1.29      todd      907:        M $n$U c major_lpt_c Add($U, $f) 600-})dnl
                    908: __devitem(lpa, lpa*, interruptless lp)dnl
                    909: __devitem(ppi, ppi*, HP-IB plotters)dnl
                    910: __devtitle({-usb-}, USB devices)dnl
                    911: __devitem({-usb-}, usb*, Bus control devices used by usbd for attach/detach)dnl
                    912: _mkdev({-usb-}, usb*, {-[ "$i" = "usb" ] && u= || u=$U
1.1       todd      913:        M usb$u c major_usb_c $U 660-})dnl
1.29      todd      914: __devitem(uhid, uhid*, Generic HID devices)dnl
                    915: _mcdev({-uhid-}, uhid*, {-uhid-}, {-major_uhid_c-}, 660)dnl
                    916: __devitem(ulpt, ulpt*, Printer devices)dnl
                    917: _mcdev({-ulpt-}, ulpt*, {-ulpt-}, {-major_ulpt_c-}, 660)dnl
                    918: __devitem(utty, utty*, Serial ports)dnl
                    919: _mcdev({-utty-}, utty*, {-utty-}, {-major_utty_c-}, 660)dnl
                    920: __devitem(urio, urio*, Diamond Multimedia Rio 500)dnl
                    921: _mcdev({-urio-}, urio*, {-urio-}, {-major_urio_c-}, 660)dnl
                    922: __devitem(uscan, uscanner*, Scanners)dnl
                    923: _mcdev({-uscan-}, uscanner*, {-uscanner-}, {-major_uscan_c-}, 660)dnl
                    924: __devitem(ugen, ugen*, Generic device)dnl
                    925: _mkdev(ugen, ugen*, {-n=Mult($U, 16)
1.1       todd      926:        for j in 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
                    927:        do
1.29      todd      928:                M ugen$U.$j c major_ugen_c Add($n, $j) 660
1.1       todd      929:        done-})dnl
1.29      todd      930: __devtitle(cpu, Cpus)dnl
                    931: __devitem(cpu, cpu*, cpus)dnl
                    932: __devtitle(call, Call units)dnl
                    933: __devtitle(term, Terminal ports)dnl
                    934: __devtitle(termp, Terminal multiplexers)dnl
                    935: __devitem(dca, dca*, HP200/300 single port serial interface)dnl
                    936: __devitem(dcm, dcm*, HP200/300 4 port serial mux interface)dnl
                    937: __devitem(apci, apci*, HP400 4 port serial mux interface)dnl
                    938: __devitem({-com-}, {-tty0*-}, NS16x50 serial ports)dnl
                    939: _mkdev(com, {-tty0*-}, {-M tty$U c major_com_c $U 660 dialer uucp
                    940:        M cua$U c major_com_c Add($U, 128) 660 dialer uucp-})dnl
                    941: __devitem(ttyc, ttyc*, Cyclades serial ports)dnl
                    942: __devitem(tzs, tty[a-z]*, Zilog 8530 Serial Port)dnl
                    943: _mkdev(tzs, {-tty[a-z]-}, {-u=${i#tty*}
1.1       todd      944:        case $u in
                    945:        a) n=0 ;;
                    946:        b) n=1 ;;
                    947:        c) n=4 ;;
                    948:        d) n=5 ;;
                    949:        *) echo unknown tty device $i ;;
                    950:        esac
                    951:        M tty$u c major_tzs_c $n 660 dialer uucp-})dnl
1.29      todd      952: __devitem(tth, ttyh*, Sab82532 serial devices)dnl
                    953: _mkdev(tth, ttyh*, {-M ttyh$U c major_tth_c $U 660 dialer uucp-})dnl
                    954: __devitem(czs, cua[a-z]*, Zilog 8530 Serial Port)dnl
                    955: _mkdev(czs, cua[a-z], {-u=${i#cua*}
1.1       todd      956:        case $u in
                    957:        a) n=0 ;;
                    958:        b) n=1 ;;
                    959:        c) n=4 ;;
                    960:        d) n=5 ;;
1.41      todd      961:        *) echo unknown cua device $i ;;
1.1       todd      962:        esac
1.29      todd      963:        M cua$u c major_czs_c Add($n, 128) 660 dialer uucp-})dnl
                    964: __devitem(arm_tty, tty*, {-alias for PC COM ports{-,-} this is what the system really wants-})dnl
                    965: __devitem(tty0, tty00, standard serial port)dnl
                    966: __devitem(mac_tty0, tty00, standard serial port)dnl
                    967: __devitem(ttyA, ttyA*, mfc serial ports)dnl
                    968: __devitem(attyB, ttyB*, ISA COM ports)dnl  amiga
                    969: __devitem(ttyz, tty[a-d], onboard zs serial ports)dnl
                    970: __devitem(cuaz, cua[a-d], onboard zs serial ports)dnl
                    971: __devitem(ttyB, ttyB?, DEC 3000 ZS8530 ("scc") serial ports)dnl
                    972: __devitem(scc, scc*, 82530 serial interface)dnl
                    973: __devitem(arc_ttyC, ttyC0, pccons)dnl
                    974: __devitem(i386_ttyC, ttyC*, pcvt)dnl
                    975: __devitem(ttyC, ttyC?, {-AlphaStation NS16550 ("com serial ports")-})dnl
                    976: __devitem(ttyE, ttyE?, Workstation console (framebuffer & keyboard) tty emulators)dnl
                    977: __devitem(ser02, ser02, {-serial2 port (channel A on 8530)-})dnl
                    978: __devitem(mdm02, mdm02, {-modem2 port (channel B on 8530)-})dnl
                    979: __devtitle(spec, Special purpose devices)dnl
                    980: __devitem(apm, apm     , power management device)dnl
                    981: _mkdev(apm, apm*, {-M apm      c major_apm_c 0 644
1.1       todd      982:        M apmctl        c major_apm_c 8 644-})dnl
1.29      todd      983: __devitem(pcmcia, pcmcia*, PCMCIA card drivers)dnl
                    984: __devitem(pctr, pctr*, PC Performance Tuning Register access device)dnl
                    985: _mkdev(pctr, pctr, {-M pctr c major_pctr_c 0 644-})dnl
1.46      provos    986: __devitem(systrace, systrace*, system call tracing device)dnl
                    987: _mkdev(systrace, systrace, {-M systrace c major_systrace_c 0 644-})dnl
1.29      todd      988: __devitem(au, audio*, audio device)dnl
                    989: _mkdev(au, audio*, {-M sound$U c major_au_c $U
                    990:        M mixer$U       c major_au_c Add($U, 16)
                    991:        M audio$U       c major_au_c Add($U, 128)
                    992:        M audioctl$U    c major_au_c Add($U, 192)
1.1       todd      993:        MKlist="$MKlist;[ -e audio ] || ln -s audio$U audio"
                    994:        MKlist="$MKlist;[ -e mixer ] || ln -s mixer$U mixer"
                    995:        MKlist="$MKlist;[ -e sound ] || ln -s sound$U sound"
                    996:        MKlist="$MKlist;[ -e audioctl ] || ln -s audioctl$U audioctl"-})dnl
1.29      todd      997: __devitem(asc, asc*, ASC Audio device)dnl
                    998: _mkdev(asc, asc*, {-M asc$U major_asc_c 0-})dnl
                    999: __devitem(music, music*, midi devices)dnl
                   1000: _mkdev(music, music*, {-M music$U     c major_music_c $U
                   1001:        M sequencer$U c major_music_c Add($U, 128)
1.1       todd     1002:        MKlist="$MKlist;[ -e music ] || ln -s music$U music"
                   1003:        MKlist="$MKlist;[ -e sequencer ] || ln -s sequencer$U sequencer"-})dnl
1.29      todd     1004: __devitem(radio, radio*, FM tuner device)dnl
                   1005: _mkdev(radio, radio*, {-M radio$U     c major_radio_c $U
1.8       todd     1006:        MKlist="$MKlist;[ -e radio ] || ln -s radio$U radio"-})dnl
1.29      todd     1007: __devitem(fdesc, fd, makes fd/* for the fdescfs)dnl
                   1008: _mkdev(fdesc, fd, {-RMlist="mkdir -p fd;$RMlist" n=0
                   1009:        while [ $n -lt 64 ];do M fd/$n c major_fdesc_c $n;n=Add($n, 1);done
1.1       todd     1010:        MKlist="$MKlist;chmod 555 fd"-})dnl
1.29      todd     1011: __devtitle(graph, Graphics devices)dnl
                   1012: __devitem(grf_mac, grf*, {-custom chip (grf0){-,-} Retina Z2/Z3 (grf1/grf2){-,-}
1.1       todd     1013: {-#-}          Cirrus boards (grf3){-,-} A2410 (grf4) video or
                   1014: {-#-}          CyberVision 64 (grf5)-})dnl
1.29      todd     1015: __devitem(grf_amiga, grf*, {-Motherboard bitmapped video.-})dnl
                   1016: __devitem(ite, ite*, terminal emulator interface to HP300 graphics devices)dnl
                   1017: __devitem({-hil-}, {-hil-}, HP300 HIL input devices)dnl
                   1018: __devitem(oppr, openprom)dnl
                   1019: _cdev(oppr, openprom, 70, 0)dnl
                   1020: __devitem(btw, bwtwo*)dnl
                   1021: _mcdev(btw, bwtwo*, bwtwo, {-major_btw_c-}, 666)dnl
                   1022: __devitem(ctw, cgtwo*)dnl
                   1023: _mcdev(ctw, cgtwo*, cgtwo, {-major_ctw_c-}, 666)dnl
                   1024: __devitem(ctr, cgthree*)dnl
                   1025: _mcdev(ctr, cgthree*, cgthree, {-major_ctr_c-}, 666)dnl
                   1026: __devitem(cfr, cgfour*)dnl
                   1027: _mcdev(cfr, cgfour*, cgfour, {-major_cfr_c-}, 666)dnl
                   1028: __devitem(csx, cgsix*)dnl
                   1029: _mcdev(csx, cgsix*, cgsix, {-major_csx_c-}, 666)dnl
                   1030: __devitem(ceg, cgeight*)dnl
                   1031: _mcdev(ceg, cgeight*, cgeight, {-major_ceg_c-}, 666)dnl
                   1032: __devitem(cfo, cgfourteen*)dnl
                   1033: _mcdev(cfo, cgfourteen*, cgfourteen, {-major_cfo_c-})dnl
                   1034: __devitem(tcx, tcx*)dnl
                   1035: _mcdev(tcx, tcx*, tcx, {-major_tcx_c-})dnl
                   1036: __devitem(cry, crypto, hardware crypto access driver)dnl
                   1037: _mkdev(cry, crypto, {-M crypto c major_cry_c-} 0)dnl
                   1038: __devitem(pf, pf*, Packet Filter)dnl
                   1039: _mkdev(pf, {-pf*-}, {-M pf c major_pf_c 0 600-})dnl
                   1040: __devitem(bpf, bpf*, Berkeley Packet Filter)dnl
                   1041: _mkdev(bpf, {-bpf*-}, {-M bpf$U c major_bpf_c $U 600-}, 600)dnl
                   1042: _mkdev(tun, {-tun*-}, {-M tun$U c major_tun_c $U 600-}, 600)dnl
                   1043: __devitem(altq, altq/, ALTQ control interface)dnl
                   1044: _mkdev(altq, altq, {-RMlist="mkdir -p altq;$RMlist"
1.1       todd     1045:        for d in altq cbq wfq afm fifoq red rio localq hfsc cdnr blue priq; do
                   1046:                M altq/$d c major_altq_c $U 644
1.29      todd     1047:                U=Add($U, 1)
1.1       todd     1048:        done-})dnl
1.29      todd     1049: __devitem(speak, speaker, pc speaker)dnl
                   1050: _mkdev(speak, speaker, {-M speaker c major_speak_c 0 600-})dnl
                   1051: __devitem(kbd, kbd, keyboard (provides events, for X11))dnl
                   1052: _cdev(kbd, kbd, {-major_kbd_c-}, 0, 600)dnl
                   1053: __devitem(kbd_atari, kbd, Atari keyboard)dnl
                   1054: __devitem(akbd, kbd, Amiga keyboard)dnl
                   1055: __devitem(rkbd, kbd, raw keyboard)dnl
                   1056: __devitem(kbdctl, kbdctl, keyboard control)dnl
                   1057: __devitem(beep, beep, riscpc speaker)dnl
                   1058: __devitem(iic, iic*, IIC bus device)dnl
                   1059: __devitem(rtc, rtc*, RTC device)dnl
                   1060: __devitem(view, view*, generic interface to graphic displays)dnl
                   1061: __devitem(aconf, aconf, {-autoconfig information (not yet)-})dnl
                   1062: __devitem(mouse-, mouse-*, "mouse link")dnl
                   1063: __devitem(mouse, mouse, mouse (provides events, for X11))dnl
                   1064: __devitem(amouse, mouse*, Amiga mice)dnl
                   1065: __devitem(lkm, lkm, loadable kernel modules interface)dnl
                   1066: _cdev(lkm, lkm, {-major_lkm_c-}, 0, 640, kmem)dnl
                   1067: __devitem(mmcl, mmclock, memory mapped clock)dnl
                   1068: __devitem(tun, tun*, network tunnel driver)dnl
                   1069: __devitem(rnd, *random, inkernel random data source)dnl
                   1070: _mkdev(rnd, *random, {-n=0
1.1       todd     1071:        for pre in " " s u p a
                   1072:        do
                   1073:                M ${pre}random c major_rnd_c $n 644
1.29      todd     1074:                n=Add($n, 1)
                   1075:        done-}, 644)dnl
                   1076: __devitem(joy, joy*, joystick driver)dnl
                   1077: _mcdev(joy, joy*, joy, {-major_joy_c-}, 666)dnl
                   1078: __devitem(mag, magma*, magma card (makes 16 tty and 2 bpp))dnl
                   1079: __devitem(bppmag, bppmag[mno], magma parallel port device)dnl
                   1080: __devitem(spif, spif*, spif card (makes 8 tty and 1 bpp))dnl
                   1081: __devitem(bppsp, bpp[jkl], spif parallel port device)dnl
                   1082: _mkdev(mag, magma*, {-case $U in
1.18      todd     1083:        0)      offset=0  nam=m;;
                   1084:        1)      offset=16 nam=n;;
                   1085:        2)      offset=32 nam=o;;
                   1086:        *)      echo "bad unit for $i: $U"; exit 127;;
                   1087:        esac
1.29      todd     1088:        offset=Mult($U, 64)
1.18      todd     1089:        n=0
                   1090:        while [ $n -lt 16 ]
                   1091:        do
                   1092:                name=${nam}`hex $n`
1.29      todd     1093:                M tty$name c major_mag_c Add($offset, $n) 660 dialer uucp
                   1094:                n=Add($n, 1)
1.18      todd     1095:        done
1.29      todd     1096:        M bpp${nam}0 c major_bppmag_c Add($offset, 0) 600
                   1097:        M bpp${nam}1 c major_bppmag_c Add($offset, 1) 600-})dnl
                   1098: _mkdev(spif, spif*, {-case $U in
1.18      todd     1099:        0)      offset=0  nam=j;;
                   1100:        1)      offset=16 nam=k;;
                   1101:        2)      offset=32 nam=l;;
                   1102:        *)      echo "bad unit for $i: $U"; exit 127;;
                   1103:        esac
1.29      todd     1104:        offset=Mult($U, 64)
1.18      todd     1105:        n=0
                   1106:        while [ $n -lt 8 ]
                   1107:        do
                   1108:                name=${nam}`hex $n`
1.29      todd     1109:                M tty$name c major_spif_c Add($offset, $n) 660 dialer uucp
                   1110:                n=Add($n, 1)
1.18      todd     1111:        done
1.29      todd     1112:        M bpp${nam}0 c major_bppsp_c Add($offset, 0) 600-})dnl
                   1113: __devitem(bpp, bpp*, parallel port devices)dnl
                   1114: __devitem(xfs, xfs*, XFS filesystem devices)dnl
                   1115: _mcdev(xfs, xfs*, xfs, {-major_xfs_c-}, 600)dnl
                   1116: __devitem(hil, hil, HIL input devices)dnl
                   1117: __devitem(rmidi, rmidi*, raw midi devices)dnl
                   1118: _mcdev(rmidi, rmidi*, rmidi, {-major_rmidi_c-}, 666)dnl
                   1119: __devtitle(plat, Platform-specific devices)dnl
                   1120: __devitem(fb, fb*, framebuffer device)dnl
                   1121: __devitem(bktr, bktr*, video capturing)dnl
                   1122: _mcdev(bktr, bktr*, bktr, {-major_bktr_c-}, 644)dnl
                   1123: __devitem(tuner, tuner*, tuner device)dnl
                   1124: _mkdev(tuner, tuner*, {-M tuner$U c major_bktr_c Add(Mult($U, 2), 16) 644-}, 644)dnl
                   1125: __devitem(pci, pci, PCI bus device)dnl
1.43      deraadt  1126: _mkdev(pci, pci, {-M pci c major_pci_c 0 600-}, 600)dnl
1.29      todd     1127: __devitem(adb, adb, Apple Desktop bus event interface)dnl
                   1128: _mkdev(adb, adb, {-M adb c major_adb_c 0-})dnl
                   1129: __devitem(pdc, pdc, PDC device)dnl
                   1130: _mkdev(local, local, {-test -s $T.local && sh $T.local-}, 666)dnl
1.49      fgsch    1131: __devitem(gpr, gpr*, gpr400 pcmcia device)dnl
                   1132: _mcdev(gpr, gpr*, gpr, {-major_gpr_c-})dnl
1.1       todd     1133: dnl
                   1134: divert(1)dnl
                   1135: include(etc.MACHINE/MAKEDEV.md)dnl
                   1136: dnl
                   1137: dnl
                   1138: divert(0)dnl
                   1139: #!/bin/sh -
                   1140: #
                   1141: # THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.
                   1142: # generated from:
                   1143: #
                   1144: show_vers()dnl <-- now that all files are included, show versions
                   1145: #
                   1146: dnl
                   1147: divert(2)dnl
                   1148: PATH=/sbin:/usr/sbin:/bin:/usr/bin
                   1149: T=$0
                   1150:
                   1151: # set this to echo for Echo-Only debugging
                   1152: [ "$eo" ] || eo=
                   1153:
                   1154: hex()
                   1155: {
                   1156:        case ${--}1 in
1.26      deraadt  1157:        [0-9]) echo -n {-$-}1;;
                   1158:        10) echo -n a;;
                   1159:        11) echo -n b;;
                   1160:        12) echo -n c;;
                   1161:        13) echo -n d;;
                   1162:        14) echo -n e;;
                   1163:        15) echo -n f;;
1.1       todd     1164:        esac
                   1165: }
1.26      deraadt  1166:
1.1       todd     1167: trunc()
                   1168: {
                   1169:        # XXX pdksh can't seem to deal with locally scoped variables
                   1170:        # in ${foo#$bar} expansions
                   1171:        arg1="{-$-}1"
                   1172:        arg2="{-$-}2"
                   1173:        case {-$-}3 in
                   1174:        l)   echo ${arg2#$arg1} ;;
                   1175:        r|*) echo ${arg1#$arg2} ;;
                   1176:        esac
                   1177: }
1.26      deraadt  1178:
1.1       todd     1179: unt()
                   1180: {
                   1181:        # XXX pdksh can't seem to deal with locally scoped variables
                   1182:        # in ${foo#$bar} expansions
                   1183:        arg="{-$-}1"
                   1184:        tmp="${arg#[a-zA-Z]*}"
                   1185:        tmp="${tmp%*[a-zA-Z]}"
                   1186:        while [ "$tmp" != "$arg" ]
                   1187:        do
                   1188:                arg=$tmp
                   1189:                tmp="${arg#[a-zA-Z]*}"
                   1190:                tmp="${tmp%*[a-zA-Z]}"
                   1191:        done
                   1192:        echo $arg
                   1193: }
                   1194: dnl
1.29      todd     1195: dnl dodisk(name, unit, blkmaj, chrmaj, unit, off[, stepping])
1.5       todd     1196: dnl   arg: 1    2    3      4      5    6    7
1.1       todd     1197: dnl
1.26      deraadt  1198:
1.1       todd     1199: dodisk()
                   1200: {
1.27      todd     1201:        [ "$DEBUG" ] && set -x
1.29      todd     1202:        n=Add(Mult(${5}, ${7:-16}), ${6}) count=0
1.1       todd     1203:        RMlist="$RMlist {-$-}1{-$-}2? r{-$-}1{-$-}2?"
1.13      todd     1204:        [ 0$7 -ne 8 ] && l="i j k l m n o p"
                   1205:        for d in a b c d e f g h $l
1.1       todd     1206:        do
1.29      todd     1207:                M {-$-}1{-$-}2$d        b {-$-}3 Add($n, $count) 640
                   1208:                M r{-$-}1{-$-}2$d       c {-$-}4 Add($n, $count) 640
1.1       todd     1209:                let count=count+1
                   1210:        done
                   1211:        MKlist="$MKlist;chown root.operator {-$-}1{-$-}2? r{-$-}1{-$-}2?"
                   1212: }
                   1213: dnl
1.29      todd     1214: dnl dodisk2(name, unit, blkmaj, chrmaj, unit, off[, stepping])
1.1       todd     1215: dnl
                   1216: dnl 1. name    - prefix name of the device
                   1217: dnl 2. unit    - beginning unit number for block devices
                   1218: dnl 3. blkmaj  - block device major number
                   1219: dnl 4. chrmaj  - character device major number
                   1220: dnl 5. unit    - beginning unit number for character devices
                   1221: dnl 6. off     - offset from 0 for all minor numbers (see svnd for an example)
1.5       todd     1222: dnl 7. step    - optional, defaults to 16, number of partitions per device
1.1       todd     1223: dnl
1.26      deraadt  1224:
1.1       todd     1225: dodisk2()
                   1226: {
1.29      todd     1227:        n=Add(Mult({-$-}5, ${7:-16}), {-$-}6)
1.1       todd     1228:        M {-$-}1{-$-}2a b {-$-}3 $n 640 operator
                   1229:        M r{-$-}1{-$-}2a c {-$-}4 $n 640 operator
1.29      todd     1230:        n=Add($n, 2)
1.1       todd     1231:        M {-$-}1{-$-}2c b {-$-}3 $n 640 operator
                   1232:        M r{-$-}1{-$-}2c c {-$-}4 $n 640 operator
                   1233: }
                   1234:
                   1235: # M name b/c major minor [mode] [group]
                   1236: RMlist="rm -f"
                   1237: MKlist=":"
1.26      deraadt  1238:
1.1       todd     1239: mkl() {
                   1240: dnl
                   1241: dnl uncomment if multi mknod happens
                   1242: dnl
1.29      todd     1243: ifelse(1, 0,
1.1       todd     1244: [ "${mklist[{-$-}1]}" ] && mklist[{-$-}1]="${mklist[{-$-}1]} {-$-}2 {-$-}3 {-$-}4 {-$-}5" || {
1.30      todd     1245:          mklist[{-$-}1]="mknod -m {-$-}1 {-$-}2 {-$-}3 {-$-}4 {-$-}5"
                   1246:          modes="$modes {-$-}1"
1.1       todd     1247:      },
                   1248: dnl
                   1249: dnl non multi mknod
                   1250: dnl
1.26      deraadt  1251:        [ "${mklist[{-$-}1]}" ] && {
                   1252:                mklist[{-$-}1]="${mklist[{-$-}1]};mknod -m {-$-}1 {-$-}2 {-$-}3 {-$-}4 {-$-}5"
                   1253:        } || {
                   1254:                mklist[{-$-}1]="mknod -m {-$-}1 {-$-}2 {-$-}3 {-$-}4 {-$-}5"
                   1255:                modes="$modes {-$-}1"
                   1256:        })
1.1       todd     1257: }
1.26      deraadt  1258:
1.1       todd     1259: M() {
                   1260:        RMlist="$RMlist {-$-}1"
                   1261:        mkl ${5-666} {-$-}1 {-$-}2 {-$-}3 {-$-}4
                   1262:        mklist="$mklist {-$-}1"
                   1263:        G={-$-}{6:-wheel}
                   1264:        [ "{-$-}7" ] && {
                   1265:                MKlist="$MKlist;chown {-$-}7.{-$-}G {-$-}1"
                   1266:        } || {
                   1267:                case $G in
                   1268:                wheel)g=0;;kmem)g=2;;operator)g=5;;tty)g=4;;dialer)g=117;;
                   1269:                esac
                   1270:                [ "${grplist[$g]}" ] && {
                   1271:                        grplist[$g]="${grplist[$g]} {-$-}1"
                   1272:                } || {
                   1273:                        groups="$groups $g"
                   1274:                        grplist[$g]="chgrp $G {-$-}1"
                   1275:                }
                   1276:        }
                   1277:        return 0
                   1278: }
                   1279: divert(7)dnl
                   1280: dnl
                   1281: dnl there is no blank line at the end of etc.arch/MAKEDEV.md files, so add one
                   1282: dnl on the following line:
                   1283:
                   1284: show_devs()dnl
                   1285: dnl
                   1286: divert(9)dnl
                   1287: *)
                   1288:        echo $i: unknown device
                   1289:        ;;
                   1290: esac
                   1291: done
                   1292: }
                   1293: _recurse "$@"
                   1294: if [ "$os" = "SunOS" ]; then
                   1295:        eo=transform
                   1296:        transform() {
                   1297:                case $mode in
                   1298:                600) mask=077;;
                   1299:                640) mask=027;;
                   1300:                660) mask=007;;
                   1301:                644) mask=022;;
                   1302:                666) mask=0;;
                   1303:                440) mask=227;;
                   1304:                esac
                   1305:                echo `echo "$@"|sed \
1.26      deraadt  1306:                    's/mknod -m \([0-9]*\) /umask '$mask';mknod /;s/-m [0-9]* //g;\
                   1307:                    s/operator/5/g;s/root.kmem/root.2/g;s/root\./root:/g'`
1.1       todd     1308:        }
                   1309: fi
                   1310: list="$RMlist"
                   1311: for mode in $modes; do
                   1312:        list="$list;${mklist[$mode]}"
                   1313: done
                   1314: for group in $groups; do
                   1315:        list="$list;${grplist[$group]}"
                   1316: done
                   1317: list="$list;$MKlist"
                   1318: if [ "$eo" = "echo" -o "$eo" = "transform" ]; then
                   1319:        $eo "$list"
                   1320: else
                   1321:        echo "$list" | sh
                   1322: fi
1.41      todd     1323: divert(3)dnl
1.1       todd     1324: dnl
1.26      deraadt  1325:
1.1       todd     1326: R() {
1.23      todd     1327: [ "$DEBUG" ] && set -x
1.1       todd     1328: for i in "$@"
                   1329: do
                   1330: U=`unt $i`
                   1331: [ "$U" ] || U=0
                   1332:
                   1333: case $i in
                   1334: dnl