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

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

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