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

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

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