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

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

1.1       todd        1: include(MAKEDEV.sub)dnl
                      2: dnl
1.67    ! todd        3: vers(a, {-$OpenBSD: MAKEDEV.mi,v 1.66 2004/01/13 15:13:14 todd Exp $-})dnl
1.1       todd        4: dnl
                      5: divert(1)dnl
                      6: {-#-}
1.60      todd        7: {-#-} Copyright (c) 2001,2002,2003 Todd T. Fries <todd@OpenBSD.org>
1.1       todd        8: {-#-}
1.60      todd        9: {-#-} Permission to use, copy, modify, and distribute this software for any
                     10: {-#-} purpose with or without fee is hereby granted, provided that the above
                     11: {-#-} copyright notice and this permission notice appear in all copies.
1.1       todd       12: {-#-}
1.60      todd       13: {-#-} THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
                     14: {-#-} WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
                     15: {-#-} MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
                     16: {-#-} ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
                     17: {-#-} WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
                     18: {-#-} ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
                     19: {-#-} OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1.1       todd       20: {-#-}
                     21: dnl
                     22: dnl Diversions:  (upon termination, concatenated output queues)
                     23: dnl
                     24: dnl 0 - very top
                     25: dnl 1 - descriptions of devices
                     26: dnl 2 - init of script, function definitions, etc
                     27: dnl 3 - beginning of global recursive R() function
                     28: dnl 7 - body of MAKEDEV, device creations, etc
                     29: dnl 9 - end
                     30: dnl
                     31: dnl HOW TO ADD A DEVICE:
                     32: dnl
                     33: dnl In this file, you must use at least two macros:
                     34: dnl
1.29      todd       35: dnl  Use '__devitem(uniqueid, name-pattern, description)' to create an entry
1.1       todd       36: dnl  in the description at the top of the generated MAKEDEV file:
                     37: dnl
1.29      todd       38: dnl    __devitem(sca, sca*, Sugar Generic device)dnl
1.41      todd       39: dnl    __devitem(cry, crypto, hardware crypto access driver)dnl
1.1       todd       40: dnl
                     41: dnl  This is ultimately shown as:
                     42: dnl
                     43: dnl    #  sca*   Sugar Generic device
1.41      todd       44: dnl    #  crypto hardware crypto access driver
1.1       todd       45: dnl
1.29      todd       46: dnl  Use '_mkdev(uniqueid, shell-pattern, {-shell-script-})dnl' to create
1.1       todd       47: dnl  a shell script fragment used to 'create' the device (be sure to match
                     48: dnl  the uniqueid from above):
                     49: dnl
1.29      todd       50: dnl    _mkdev(sca, sca*, {-M sca$U c major_sca_c $U
                     51: dnl           M rsca$U b major_sca_b Add($U, 128)-})dnl
1.41      todd       52: dnl    _mkdev(cry, crypto, {-M crypto c major_cry_c 0-})dnl
1.1       todd       53: dnl
                     54: dnl  This is ultimately expanded into:
                     55: dnl
1.41      todd       56: dnl    sca*)
                     57: dnl           M sca$U c 24 $U
                     58: dnl           M sca$U b 42 $(($U+128))
                     59: dnl           ;;
                     60: dnl
                     61: dnl    crypto)
                     62: dnl           M crypto c 47 0
                     63: dnl           ;;
1.1       todd       64: dnl
1.29      todd       65: dnl In the MAKEDEV.md file, add a '_DEV(uniqueid, charmajor, blockmajor)'
1.1       todd       66: dnl entry:
                     67: dnl
1.29      todd       68: dnl   _DEV(sca, 24, 42)
1.41      todd       69: dnl   _DEV(cry, 47)
1.1       todd       70: dnl
1.41      todd       71: dnl Final step is to use the 'target/twrget' macros to have the 'all)' target
                     72: dnl generate one or more device(s).  Usage of 'target/twrget' is:
                     73: dnl      target(target_name, device_name [, append_string ] .. )
                     74: dnl      twrget(target_name, uniqueid, device_name, [, append_string ] .. )
1.1       todd       75: dnl
1.41      todd       76: dnl        target_name   a unique name that later is used as an argument to
                     77: dnl                      'show_target()' (which expands all devices for a
                     78: dnl                      given 'target_name').
                     79: dnl        uniqueid      same as 'uniqueid' above
                     80: dnl        device_name   string representing the device to be mknod'ed
                     81: dnl        append_string for each append_string, `device_name' is prepended
                     82: dnl
                     83: dnl Note: 'target(a,b,c)' is equivalent to 'twrget(a,b,b,c)'
                     84: dnl
                     85: dnl
                     86: dnl For a short example:
                     87: dnl
                     88: dnl   target(all, std)dnl
                     89: dnl   target(all, sca, 0, 1, 2, 3)dnl
                     90: dnl   twrget(all, cry, crypto)dnl
1.1       todd       91: dnl
                     92: dnl would expand to:
                     93: dnl
                     94: dnl   all)
1.41      todd       95: dnl        R std sca0 sca1 sca2 sca3 crypto
1.1       todd       96: dnl        ;;
                     97: dnl
1.41      todd       98: dnl presuming '_DEV(sca, ?, ?)' and '_DEV(std)' were in the MAKEDEV.md file.
1.1       todd       99: dnl
                    100: dnl
                    101: dnl Everything is 'automatically' added to 'MAKEDEV' based on whether or
                    102: dnl not the '_DEV()' entry has a corresponding _mkdev() and __devitem()
1.41      todd      103: dnl entry in MAKEDEV.mi (this file).
1.1       todd      104: dnl
                    105: dnl Note: be very wary of adding whitespace, carriage returns, or not
                    106: dnl finishing a macro with ')dnl' .. otherwise, extra blank lines show up
                    107: dnl in the output.
                    108: dnl
1.31      todd      109: dnl TODO:
                    110: dnl
                    111: dnl make a 'disktgt' macro that automatically does:
1.34      deraadt   112: dnl disktgt(rd, {-rd-})
1.31      todd      113: dnl
                    114: dnl    target(all,rd,0)
                    115: dnl    target(ramd,rd,0)
                    116: dnl    disk_q(rd)
1.34      deraadt   117: dnl    __devitem(rd, {-rd*-}, {-rd-})dnl
1.31      todd      118: dnl
1.41      todd      119: dnl  Note: not all disks are generated in 'all)'. (e.g. vax has a lot of
                    120: dnl        disks that are not generated by 'all)')
                    121: dnl
1.31      todd      122: dnl
1.29      todd      123: _mkdev(loc, local, {-test -s $T.local && sh $T.local-})dnl
1.1       todd      124: dnl
1.29      todd      125: __devtitle(make, Device "make" file.  Valid arguments)dnl
                    126: __devitem({-all-}, {-all-},
1.4       todd      127: {-makes all known devices{-,-} including local devices.
1.1       todd      128: {-#-}          Tries to make the ``standard'' number of each type.-})dnl
                    129: dnl
                    130: dnl
1.29      todd      131: target(all, mcd, 0)dnl
                    132: twrget(all, fdesc, fd)dnl
                    133: target(all, st, 0, 1)dnl
                    134: target(all, std)dnl
                    135: target(all, raid, 0, 1, 2, 3)dnl
                    136: target(all, rz, 0, 1, 2, 3, 4)dnl
                    137: target(all, hp, 0, 1, 2, 3)dnl
                    138: target(all, ra, 0, 1, 2, 3)dnl
                    139: target(all, rx, 0, 1)dnl
                    140: target(all, wd, 0, 1, 2, 3)dnl
                    141: target(all, xd, 0, 1, 2, 3)dnl
                    142: twrget(all, aflo, fd, 0, 1, 2, 3)dnl
1.46      provos    143: target(all, systrace)dnl
1.29      todd      144: target(all, pctr)dnl
                    145: target(all, pctr0)dnl
                    146: target(all, pf)dnl
                    147: twrget(all, cry, crypto)dnl
                    148: target(all, apm)dnl
                    149: twrget(all, tth, ttyh, 0, 1)dnl
                    150: target(all, ttyA, 0, 1)dnl
                    151: target(all, ttyB, 0, 1, 2, 3, 4, 5)dnl
1.40      deraadt   152: twrget(all, attyB, ttyB, 0, 1, 2, 3, 4)dnl
1.29      todd      153: target(all, tty0, 0, 1, 2, 3)dnl
                    154: twrget(all, mac_tty0, tty0, 0, 1)dnl
                    155: twrget(all, tzs, tty, a, b, c, d)dnl
                    156: twrget(all, czs, cua, a, b, c, d)dnl
                    157: target(all, ttyc, 0, 1, 2, 3, 4, 5, 6, 7)dnl
                    158: twrget(all, com, tty0, 0, 1, 2, 3)dnl
                    159: target(all, lkm)dnl
                    160: twrget(all, mmcl, mmclock)dnl
                    161: target(all, lpt, 0, 1, 2)dnl
                    162: twrget(all, lpt, lpa, 0, 1, 2)dnl
                    163: target(all, joy, 0, 1)dnl
1.41      todd      164: twrget(all, rnd, random)dnl
1.29      todd      165: target(all, uk, 0)dnl
                    166: target(all, wt, 0)dnl
                    167: target(all, wdt, 0)dnl
                    168: twrget(all, au, audio, 0)dnl
                    169: twrget(all, speak, speaker)dnl
                    170: target(all, asc, 0)dnl
                    171: target(all, music, 0)dnl
                    172: target(all, radio, 0)dnl
                    173: target(all, tuner, 0)dnl
                    174: target(all, rmidi, 0, 1, 2, 3, 4, 5, 6, 7)dnl
                    175: target(all, usbs)dnl
                    176: target(all, adb)dnl
                    177: target(all, iop, 0, 1)dnl
                    178: target(all, pci)dnl
                    179: twrget(all, wsmouse, wscons)dnl
1.40      deraadt   180: twrget(all, grf_mac, grf, 0, 1, 2, 3)dnl
1.29      todd      181: target(all, par, 0)dnl
                    182: twrget(all, amouse, mouse, 0, 1)dnl
                    183: twrget(all, akbd, kbd)dnl
                    184: target(all, apci, 0)dnl
                    185: target(all, ppi, 0)dnl
                    186: target(all, view0, 0, 1, 2, 3, 4, 5)dnl
                    187: target(all, local)dnl
1.49      fgsch     188: target(all, gpr, 0)dnl
1.18      todd      189: dnl
1.29      todd      190: _mkdev(all, {-all-}, {-dnl
1.18      todd      191: show_target(all)dnl
                    192: -})dnl
                    193: dnl
1.34      deraadt   194: __devitem(ramdisk, ramdisk, devices to be put on ramdisk-based media)dnl
1.29      todd      195: __devitem(std, {-std-}, standard devices)dnl
1.1       todd      196: dnl
1.18      todd      197: dnl
                    198: dnl
1.1       todd      199: dnl _std
                    200: dnl
                    201: dnl $1: tty
                    202: dnl $2: memstuff
                    203: dnl $3: ksyms
                    204: dnl $4: drum
                    205: dnl $5: klog
                    206: dnl
1.29      todd      207: define({-_std-}, {-dnl
1.1       todd      208: std)
                    209:        M console       c 0 0 600
                    210:        M tty           c $1 0
                    211:        M mem           c $2 0 640 kmem
                    212:        M kmem          c $2 1 640 kmem
                    213:        M null          c $2 2
                    214:        M zero          c $2 12
                    215:        M stdin         c major_fdesc_c 0
                    216:        M stdout        c major_fdesc_c 1
                    217:        M stderr        c major_fdesc_c 2
                    218:        M ksyms         c $3 0 640 kmem
                    219:        M drum          c $4 0 640 kmem
                    220:        M klog          c $5 0 600-})dnl
                    221: dnl
1.29      todd      222: target(usb, usb, 0, 1)dnl
                    223: target(usb, urio, 0)dnl
                    224: twrget(usb, uscan, uscanner, 0)dnl
                    225: target(usb, uhid, 0, 1, 2, 3)dnl
                    226: target(usb, ulpt, 0, 1)dnl
                    227: target(usb, ugen, 0, 1)dnl
1.64      todd      228: target(usb, ttyU, 0, 1)dnl
1.18      todd      229: dnl
1.29      todd      230: __devitem({-usbs-}, usbs, make USB devices)dnl
                    231: _mkdev(usbs, usbs, {-dnl
1.18      todd      232: show_target({-usb-})dnl
                    233: -})dnl
1.29      todd      234: __devtitle(tap, Tapes)dnl
                    235: __devitem(wt, {-wt*    -}, QIC-interface (e.g. not SCSI) 3M cartridge tape)dnl
                    236: _mkdev(wt, wt*,
1.1       todd      237: {-name=wt
1.29      todd      238:        n=Mult($U, 8) m=Add($n, 4)
1.1       todd      239:        M $name$U       b major_wt_b $n 640 operator
                    240:        M r$name$U      c major_wt_c $n 640 operator
                    241:        M n$name$U      b major_wt_b $m 640 operator
                    242:        M nr$name$U     c major_wt_c $m 640 operator-})dnl
1.29      todd      243: __devitem(tz, tz*, {-SCSI tapes{-,-} DEC TK50 cartridge tape-})dnl
                    244: __devitem(st, {-st*-}, SCSI tapes)dnl
                    245: _mkdev(st, st*, {-n=Mult($U, 16)
1.1       todd      246:        for pre in " " n e en
                    247:        do
                    248:                M ${pre}st$U    b major_st_b $n 660 operator
                    249:                M ${pre}rst$U   c major_st_c $n 660 operator
1.29      todd      250:                n=Add($n, 1)
1.1       todd      251:        done-})dnl
1.29      todd      252: __devitem(ct, ct*, HP300 HP-IB cartridge tape)dnl
                    253: __devitem(mt, mt*, (Magnetic) 9-track reel tape)dnl
                    254: __devitem(ht, ht*, massbus tm03 & tu??)dnl
                    255: __devitem(tm, tm*, unibus tm11 & te10 emulations (e.g. Emulex tc-11))dnl
                    256: __devitem(ts, ts*, unibus ts11)dnl
                    257: __devitem(ut, ut*, unibus tu45 emulations (e.g.si 9700))dnl
                    258: __devtitle(dis, Disks)dnl
                    259: __devitem(rz, rz*, SCSI disks)dnl
1.31      todd      260: __devitem(sd, {-sd*-}, {-SCSI disks, includes flopticals-})dnl
1.29      todd      261: __devitem(hd, {-hd*-}, HP300 HP-IB disks)dnl
                    262: __devitem(cd, {-cd*-}, SCSI cdrom drives)dnl
                    263: __devitem(acd, acd*, ATAPI cdrom drives)dnl
                    264: _mkdev(cd, cd*, {-dodisk2 cd $U major_cd_b major_cd_c $U 0{--}ifstep(cd)-})dnl
                    265: __devitem(mcd, mcd*, Mitsumi cdrom drives)dnl
                    266: _mkdev(mcd, mcd*, {-dodisk2 mcd $U major_mcd_b major_mcd_c $U 0{--}ifstep(mcd)dnl
                    267: -})dnl
                    268: __devitem(ch, {-ch*-}, SCSI media changer)dnl
                    269: _mcdev(ch, ch*, ch, {-major_ch_c-}, 660, operator)dnl
                    270: __devitem(uk, uk*, SCSI Unknown device)dnl
                    271: _mcdev(uk, uk*, uk, {-major_uk_c-}, 640, operator)dnl
                    272: __devitem(ss, ss*, SCSI scanners)dnl
1.31      todd      273: _mkdev(ss, ss*, {-M ss$U c major_ss_c Mult($U,16) 640 operator
                    274:        M nss$U c major_ss_c Add(Mult($U,16),1) 640 operator
                    275:        M enss$U c major_ss_c Add(Mult($U,16),3) 640 operator
1.1       todd      276:        RMlist="$RMlist scan$U"
                    277:        MKlist="$MKlist;umask 77;ln -s ss$U scan$U"-})dnl
1.29      todd      278: __devitem(ses, ses*, SES/SAF-TE SCSI devices)dnl
                    279: _mkdev(ses, ses*, {-M ses$U c major_ses_c $U 640 operator-})dnl
                    280: __devitem(ramd, ramdisk, makes all devices for a ramdisk kernel)dnl arc
                    281: _mkdev(ramd, ramdisk, {-dnl
1.20      todd      282: show_target(ramd)dnl
1.29      todd      283: -})dnl
                    284: target(ramd, std)dnl
                    285: target(ramd, random)dnl
                    286: target(ramd, bpf, 0)dnl
1.34      deraadt   287: __devitem(rd, {-rd*-}, "rd" pseudo-disks)dnl
1.29      todd      288: _mkdev(rd, rd*, {-dodisk2 rd $U major_rd_b major_rd_c $U 0{--}ifstep(rd)-})dnl
                    289: __devitem(xd, xd*, Xylogic 753/7053 disks)dnl
                    290: __devitem(xy, xy*, {-  Xylogic 450/451 disks-})dnl
                    291: __devitem(flo, {-fd*-}, {-Floppy disk drives (3 1/2"{-,-} 5 1/4")-})dnl
                    292: _mkdev(flo, fd*,
1.1       todd      293: {-typnam=$U${i#fd[01]*}
                    294:        case $typnam in
                    295:        0|1)    typnum=0;; # no type specified, assume A
1.26      deraadt   296:        *A)     typnum=0; typnam=0;;
                    297:        *B)     typnum=1;;
                    298:        *C)     typnum=2;;
                    299:        *D)     typnum=3;;
                    300:        *E)     typnum=4;;
                    301:        *F)     typnum=5;;
                    302:        *G)     typnum=6;;
                    303:        *H)     typnum=7;;
                    304:        *)      echo bad type $typnam for $i; exit 1;;
1.1       todd      305:        esac
                    306:        case $U in
                    307:        0|1)    blk=major_flo_b; chr=major_flo_c;;
                    308:        *)      echo bad unit $U for $i; exit 1;;
                    309:        esac
                    310:        nam=fd${typnam}
1.29      todd      311:        n=Add(Mult($U, 128), Mult($typnum, 16))
1.1       todd      312:        M ${nam}a       b $blk $n 640 operator
1.29      todd      313:        M ${nam}b       b $blk Add($n, 1) 640 operator
                    314:        M ${nam}c       b $blk Add($n, 2) 640 operator
1.1       todd      315:        M r${nam}a      c $chr $n 640 operator
1.29      todd      316:        M r${nam}b      c $chr Add($n, 1) 640 operator
                    317:        M r${nam}c      c $chr Add($n, 2) 640 operator-}, 664)dnl
                    318: __devitem(aflo, ramdisk, devices needed for install floppies)dnl
                    319: _mkdev(aflo, fd*, {-case $U in 0|1|2|3)
                    320:        M fd${U}a b major_aflo_b Mult($U, 16) 640 operator
                    321:        M fd${U}b b major_aflo_b Add(Mult($U, 16), 1) 640 operator
                    322:        M rfd${U}a c major_aflo_c Mult($U, 16) 640 operator
                    323:        M rfd${U}b c major_aflo_c Add(Mult($U, 16), 1) 640 operator;;
1.1       todd      324:        *) echo bad unit for floppy disk in: $i;;
                    325:        esac-})dnl
1.29      todd      326: __devitem(iop, iop*, I2O controller device)dnl
                    327: _mcdev(iop, iop*, iop, {-major_iop_c-}, 660)dnl
                    328: __devitem(wdt, wdt0, watchdog timer)dnl
                    329: _mcdev(wdt, wdt0, wdt, {-major_wdt_c-}, 440, operator)dnl
                    330: __devitem(local, local, configuration specific devices)dnl
                    331: __devitem(wd, {-wd*-}, {-"winchester" disk drives (ST506, IDE, ESDI, RLL, ...)-})dnl
                    332: __devitem(ccd, ccd*, concatenated disk devices)dnl
                    333: __devitem(raid, raid*, RAIDframe disk devices)dnl
                    334: __devitem(vnd, vnd*, "file" pseudo-disks)dnl
                    335: _mkdev(vnd, vnd*, {-dodisk vnd $U major_vnd_b major_vnd_c $U 0{--}ifstep(vnd)
1.61      tedu      336:        dodisk svnd $U major_vnd_b major_vnd_c $U 2048{--}ifstep(vnd)-})dnl
1.29      todd      337: __devitem(ra, ra*, {-MSCP disks (ra??, hd??)-})dnl
                    338: __devitem(hp, hp*, {-massbuss rm??-})dnl
                    339: __devitem(hk, hk*, {-unibus rk06 and rk07-})dnl
                    340: __devitem(up, up*, {-other unibus devices (e.g. on Emulex sc-21v controller)-})dnl
                    341: __devitem(rb, rb*, {-730 idc w/ rb80 and/or rb02-})dnl
                    342: __devitem(rx, rx*, {-MSCP floppy disk (rx33/50/...)-})dnl
                    343: __devitem(rl, rl*, {-unibus r102-})dnl
                    344: __devitem(hd, hd*, {-HDC9224 hd disks on VS2000-})dnl
1.1       todd      345: dnl
                    346: dnl For normal disk devices, add a disk_q entry; anything else define like
                    347: dnl the rest (such as vnd above).
                    348: dnl
1.18      todd      349: disk_q({-ccd-})dnl
                    350: disk_q({-hd-})dnl
                    351: disk_q({-hk-})dnl
                    352: disk_q({-hp-})dnl
                    353: disk_q({-ra-})dnl
                    354: disk_q({-raid-})dnl
                    355: disk_q({-rb-})dnl
                    356: disk_q({-rl-})dnl
                    357: disk_q({-rx-})dnl
                    358: disk_q({-sd-})dnl
1.1       todd      359: disk_q({-xy-})dnl
                    360: disk_q({-xd-})dnl
1.18      todd      361: disk_q({-up-})dnl
                    362: disk_q({-wd-})dnl
1.1       todd      363: disk_q({-rz-})dnl
                    364: dnl
1.29      todd      365: __devitem(loc, local, configuration specific devices)dnl
                    366: _mkdev(loc, local, {-test -s $T.local && sh $T.local-})dnl
                    367: _mkdev({-disks-}, {-undefine({-C_ase-})show_disks()undefine({-C_ase-})-},
1.1       todd      368: {-case $i in
                    369: show_disks2()dnl
1.6       todd      370:        esac-})dnl
1.1       todd      371: __mkdev({-disks-}){--}dnl
                    372: dnl
1.29      todd      373: __devtitle(cons, Console ports)dnl
                    374: __devitem(ttyv0, ttyv0, pccons or pcvt screen 0)dnl
                    375: __devitem(ttyv, ttyv*, pcvt)dnl
                    376: __devitem(wscons, ttyC0, wscons screen 0)dnl
1.35      todd      377: twrget(wscons, wscons, ttyC, cfg, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b)dnl
                    378: target(wscons, wsmux)dnl
                    379: target(wscons, wskbd, 0, 1, 2, 3)dnl
                    380: target(wscons, wsmouse, 0, 1, 2, 3)dnl
1.29      todd      381: _mkdev({-wscons-}, {-wscons-}, {-dnl
1.35      todd      382: show_target(wscons)dnl
                    383: -})dnl
1.36      todd      384: __devitem(wsdisp, ttyC-F*, wscons virtual consoles)dnl
1.35      todd      385: _mkdev({-wsdisp-}, tty[C-F]*, {-U=${i##tty[C-F]}
                    386:        case $i in
                    387:        ttyC*) n=C m=expr(0*256);;
                    388:        ttyD*) n=D m=expr(1*256);;
                    389:        ttyE*) n=E m=expr(2*256);;
                    390:        ttyF*) n=F m=expr(3*256);;
                    391:        esac
1.3       todd      392:        case $U in
1.35      todd      393:        [0-9a-f]) M tty$n$U c major_wsdisp_c {-$(( 16#$U + $m ))-} 600;;
                    394:        cfg) M tty${n}cfg c major_wsdisp_c Add(255,$m) 600;;
1.3       todd      395:        *) echo bad unit $U for $i; exit 1;;
1.6       todd      396:        esac-})dnl
1.29      todd      397: __devitem(wskbd, wskbd*, wscons keyboards)dnl
                    398: _mkdev(wskbd, wskbd*, {-M wskbd$U c major_wskbd_c $U 600-})dnl
                    399: __devitem(wsmux, wsmux, wscons keyboard/mouse mux devices)dnl
                    400: _mkdev(wsmux, wsmux|wsmouse|wskbd, {-M wsmouse c major_wsmux_c 0 600
1.1       todd      401:        M wskbd c major_wsmux_c 1 600-})dnl
1.29      todd      402: __devitem(pcons, console, PROM console)dnl
                    403: __devtitle(point, Pointing devices)dnl
                    404: __devitem(wsmouse, wsmouse*, wscons mice)dnl
                    405: _mkdev(wsmouse, wsmouse*, {-M wsmouse$U c major_wsmouse_c $U 600-})dnl
                    406: __devitem(quad, quadmouse, "quadrature mouse")dnl
                    407: __devtitle(pty, Pseudo terminals)dnl
                    408: __devitem(tty, tty*, set of 16 slave psuedo terminals)dnl
                    409: __devitem(pty, pty*, set of 16 master pseudo terminals)dnl
1.31      todd      410: _mkdev(pty, pty*, {-if [ $U -gt 15 ]; then
                    411:                echo bad unit for pty in: $i
                    412:                continue
                    413:        fi
                    414:        set -A tbl p q r s t u v w x y z P Q R S T
                    415:        name=${tbl[$U]}
1.1       todd      416:        n=0
                    417:        while [ $n -lt 16 ]
                    418:        do
                    419:                nam=$name$(hex $n)
1.31      todd      420:                off=Mult($U, 16)
1.29      todd      421:                M tty$nam c major_tty_c Add($off, $n)
                    422:                M pty$nam c major_pty_c Add($off, $n)
                    423:                n=Add($n, 1)
1.1       todd      424:        done-})dnl
1.29      todd      425: __devitem(dc, dc*, {-4 channel serial interface (keyboard{-,-} mouse{-,-}modem{-,-} printer)-})dnl
                    426: __devtitle(prn, Printers)dnl
                    427: __devitem(par, par*, motherboard parallel port)dnl
                    428: __devitem(lpt, lpt*, IEEE 1284 centronics printer)dnl
                    429: _mkdev(lpt, lpt*|lpa*,
1.1       todd      430: {-case $i in
                    431:        lpt*) n=lpt f=0;;
                    432:        lpa*) n=lpa f=128;;
                    433:        esac
1.29      todd      434:        M $n$U c major_lpt_c Add($U, $f) 600-})dnl
                    435: __devitem(lpa, lpa*, interruptless lp)dnl
                    436: __devitem(ppi, ppi*, HP-IB plotters)dnl
                    437: __devtitle({-usb-}, USB devices)dnl
                    438: __devitem({-usb-}, usb*, Bus control devices used by usbd for attach/detach)dnl
                    439: _mkdev({-usb-}, usb*, {-[ "$i" = "usb" ] && u= || u=$U
1.1       todd      440:        M usb$u c major_usb_c $U 660-})dnl
1.29      todd      441: __devitem(uhid, uhid*, Generic HID devices)dnl
                    442: _mcdev({-uhid-}, uhid*, {-uhid-}, {-major_uhid_c-}, 660)dnl
                    443: __devitem(ulpt, ulpt*, Printer devices)dnl
                    444: _mcdev({-ulpt-}, ulpt*, {-ulpt-}, {-major_ulpt_c-}, 660)dnl
1.64      todd      445: __devitem(ttyU, ttyU*, Serial ports)dnl
1.65      todd      446: _mkdev({-ttyU-}, {-ttyU[0-9a-zA-Z]-}, {-U=${i#ttyU*}
                    447:        o=$(alph2d $U)
                    448:        M ttyU$U c major_ttyU_c $o 660 dialer uucp-})dnl
1.29      todd      449: __devitem(urio, urio*, Diamond Multimedia Rio 500)dnl
                    450: _mcdev({-urio-}, urio*, {-urio-}, {-major_urio_c-}, 660)dnl
                    451: __devitem(uscan, uscanner*, Scanners)dnl
                    452: _mcdev({-uscan-}, uscanner*, {-uscanner-}, {-major_uscan_c-}, 660)dnl
                    453: __devitem(ugen, ugen*, Generic device)dnl
                    454: _mkdev(ugen, ugen*, {-n=Mult($U, 16)
1.1       todd      455:        for j in 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
                    456:        do
1.29      todd      457:                M ugen$U.$j c major_ugen_c Add($n, $j) 660
1.1       todd      458:        done-})dnl
1.29      todd      459: __devtitle(cpu, Cpus)dnl
                    460: __devitem(cpu, cpu*, cpus)dnl
                    461: __devtitle(call, Call units)dnl
                    462: __devtitle(term, Terminal ports)dnl
                    463: __devtitle(termp, Terminal multiplexers)dnl
                    464: __devitem(dca, dca*, HP200/300 single port serial interface)dnl
                    465: __devitem(dcm, dcm*, HP200/300 4 port serial mux interface)dnl
                    466: __devitem(apci, apci*, HP400 4 port serial mux interface)dnl
1.62      todd      467: __devitem({-com-}, {-tty[0-7][0-9a-f]-}, NS16x50 serial ports)dnl
                    468: _mkdev(com, {-tty[0-7][0-9a-f]-}, {-U=${i#tty*}
1.63      todd      469:        o=$(h2d $U)
1.62      todd      470:        M tty$U c major_com_c $o 660 dialer uucp
                    471:        M cua$U c major_com_c Add($o, 128) 660 dialer uucp-})dnl
1.29      todd      472: __devitem(ttyc, ttyc*, Cyclades serial ports)dnl
                    473: __devitem(tzs, tty[a-z]*, Zilog 8530 Serial Port)dnl
                    474: _mkdev(tzs, {-tty[a-z]-}, {-u=${i#tty*}
1.1       todd      475:        case $u in
                    476:        a) n=0 ;;
                    477:        b) n=1 ;;
                    478:        c) n=4 ;;
                    479:        d) n=5 ;;
                    480:        *) echo unknown tty device $i ;;
                    481:        esac
                    482:        M tty$u c major_tzs_c $n 660 dialer uucp-})dnl
1.29      todd      483: __devitem(tth, ttyh*, Sab82532 serial devices)dnl
                    484: _mkdev(tth, ttyh*, {-M ttyh$U c major_tth_c $U 660 dialer uucp-})dnl
                    485: __devitem(czs, cua[a-z]*, Zilog 8530 Serial Port)dnl
                    486: _mkdev(czs, cua[a-z], {-u=${i#cua*}
1.1       todd      487:        case $u in
                    488:        a) n=0 ;;
                    489:        b) n=1 ;;
                    490:        c) n=4 ;;
                    491:        d) n=5 ;;
1.41      todd      492:        *) echo unknown cua device $i ;;
1.1       todd      493:        esac
1.29      todd      494:        M cua$u c major_czs_c Add($n, 128) 660 dialer uucp-})dnl
                    495: __devitem(arm_tty, tty*, {-alias for PC COM ports{-,-} this is what the system really wants-})dnl
                    496: __devitem(tty0, tty00, standard serial port)dnl
                    497: __devitem(mac_tty0, tty00, standard serial port)dnl
                    498: __devitem(ttyA, ttyA*, mfc serial ports)dnl
                    499: __devitem(ttyz, tty[a-d], onboard zs serial ports)dnl
                    500: __devitem(cuaz, cua[a-d], onboard zs serial ports)dnl
                    501: __devitem(ttyB, ttyB?, DEC 3000 ZS8530 ("scc") serial ports)dnl
                    502: __devitem(scc, scc*, 82530 serial interface)dnl
                    503: __devitem(arc_ttyC, ttyC0, pccons)dnl
                    504: __devitem(i386_ttyC, ttyC*, pcvt)dnl
                    505: __devitem(ttyC, ttyC?, {-AlphaStation NS16550 ("com serial ports")-})dnl
                    506: __devitem(ttyE, ttyE?, Workstation console (framebuffer & keyboard) tty emulators)dnl
                    507: __devitem(ser02, ser02, {-serial2 port (channel A on 8530)-})dnl
                    508: __devitem(mdm02, mdm02, {-modem2 port (channel B on 8530)-})dnl
                    509: __devtitle(spec, Special purpose devices)dnl
                    510: __devitem(apm, apm     , power management device)dnl
                    511: _mkdev(apm, apm*, {-M apm      c major_apm_c 0 644
1.1       todd      512:        M apmctl        c major_apm_c 8 644-})dnl
1.29      todd      513: __devitem(pcmcia, pcmcia*, PCMCIA card drivers)dnl
                    514: __devitem(pctr, pctr*, PC Performance Tuning Register access device)dnl
                    515: _mkdev(pctr, pctr, {-M pctr c major_pctr_c 0 644-})dnl
1.46      provos    516: __devitem(systrace, systrace*, system call tracing device)dnl
                    517: _mkdev(systrace, systrace, {-M systrace c major_systrace_c 0 644-})dnl
1.29      todd      518: __devitem(au, audio*, audio device)dnl
                    519: _mkdev(au, audio*, {-M sound$U c major_au_c $U
                    520:        M mixer$U       c major_au_c Add($U, 16)
                    521:        M audio$U       c major_au_c Add($U, 128)
                    522:        M audioctl$U    c major_au_c Add($U, 192)
1.1       todd      523:        MKlist="$MKlist;[ -e audio ] || ln -s audio$U audio"
                    524:        MKlist="$MKlist;[ -e mixer ] || ln -s mixer$U mixer"
                    525:        MKlist="$MKlist;[ -e sound ] || ln -s sound$U sound"
                    526:        MKlist="$MKlist;[ -e audioctl ] || ln -s audioctl$U audioctl"-})dnl
1.29      todd      527: __devitem(asc, asc*, ASC Audio device)dnl
                    528: _mkdev(asc, asc*, {-M asc$U major_asc_c 0-})dnl
                    529: __devitem(music, music*, midi devices)dnl
                    530: _mkdev(music, music*, {-M music$U     c major_music_c $U
                    531:        M sequencer$U c major_music_c Add($U, 128)
1.1       todd      532:        MKlist="$MKlist;[ -e music ] || ln -s music$U music"
                    533:        MKlist="$MKlist;[ -e sequencer ] || ln -s sequencer$U sequencer"-})dnl
1.29      todd      534: __devitem(radio, radio*, FM tuner device)dnl
                    535: _mkdev(radio, radio*, {-M radio$U     c major_radio_c $U
1.8       todd      536:        MKlist="$MKlist;[ -e radio ] || ln -s radio$U radio"-})dnl
1.29      todd      537: __devitem(fdesc, fd, makes fd/* for the fdescfs)dnl
                    538: _mkdev(fdesc, fd, {-RMlist="mkdir -p fd;$RMlist" n=0
                    539:        while [ $n -lt 64 ];do M fd/$n c major_fdesc_c $n;n=Add($n, 1);done
1.1       todd      540:        MKlist="$MKlist;chmod 555 fd"-})dnl
1.29      todd      541: __devtitle(graph, Graphics devices)dnl
                    542: __devitem(grf_mac, grf*, {-custom chip (grf0){-,-} Retina Z2/Z3 (grf1/grf2){-,-}
1.1       todd      543: {-#-}          Cirrus boards (grf3){-,-} A2410 (grf4) video or
                    544: {-#-}          CyberVision 64 (grf5)-})dnl
1.29      todd      545: __devitem(ite, ite*, terminal emulator interface to HP300 graphics devices)dnl
                    546: __devitem({-hil-}, {-hil-}, HP300 HIL input devices)dnl
                    547: __devitem(oppr, openprom)dnl
                    548: _cdev(oppr, openprom, 70, 0)dnl
                    549: __devitem(cry, crypto, hardware crypto access driver)dnl
                    550: _mkdev(cry, crypto, {-M crypto c major_cry_c-} 0)dnl
                    551: __devitem(pf, pf*, Packet Filter)dnl
                    552: _mkdev(pf, {-pf*-}, {-M pf c major_pf_c 0 600-})dnl
                    553: __devitem(bpf, bpf*, Berkeley Packet Filter)dnl
                    554: _mkdev(bpf, {-bpf*-}, {-M bpf$U c major_bpf_c $U 600-}, 600)dnl
                    555: _mkdev(tun, {-tun*-}, {-M tun$U c major_tun_c $U 600-}, 600)dnl
                    556: __devitem(speak, speaker, pc speaker)dnl
                    557: _mkdev(speak, speaker, {-M speaker c major_speak_c 0 600-})dnl
                    558: __devitem(kbd, kbd, keyboard (provides events, for X11))dnl
                    559: _cdev(kbd, kbd, {-major_kbd_c-}, 0, 600)dnl
                    560: __devitem(kbd_atari, kbd, Atari keyboard)dnl
                    561: __devitem(akbd, kbd, Amiga keyboard)dnl
                    562: __devitem(rkbd, kbd, raw keyboard)dnl
                    563: __devitem(kbdctl, kbdctl, keyboard control)dnl
                    564: __devitem(beep, beep, riscpc speaker)dnl
                    565: __devitem(iic, iic*, IIC bus device)dnl
                    566: __devitem(rtc, rtc*, RTC device)dnl
                    567: __devitem(view, view*, generic interface to graphic displays)dnl
                    568: __devitem(aconf, aconf, {-autoconfig information (not yet)-})dnl
                    569: __devitem(mouse-, mouse-*, "mouse link")dnl
                    570: __devitem(mouse, mouse, mouse (provides events, for X11))dnl
                    571: __devitem(amouse, mouse*, Amiga mice)dnl
                    572: __devitem(lkm, lkm, loadable kernel modules interface)dnl
1.55      deraadt   573: _cdev(lkm, lkm, {-major_lkm_c-}, 0, 640, _lkm)dnl
1.29      todd      574: __devitem(mmcl, mmclock, memory mapped clock)dnl
                    575: __devitem(tun, tun*, network tunnel driver)dnl
                    576: __devitem(rnd, *random, inkernel random data source)dnl
                    577: _mkdev(rnd, *random, {-n=0
1.1       todd      578:        for pre in " " s u p a
                    579:        do
                    580:                M ${pre}random c major_rnd_c $n 644
1.29      todd      581:                n=Add($n, 1)
                    582:        done-}, 644)dnl
                    583: __devitem(joy, joy*, joystick driver)dnl
                    584: _mcdev(joy, joy*, joy, {-major_joy_c-}, 666)dnl
                    585: __devitem(mag, magma*, magma card (makes 16 tty and 2 bpp))dnl
                    586: __devitem(bppmag, bppmag[mno], magma parallel port device)dnl
                    587: __devitem(spif, spif*, spif card (makes 8 tty and 1 bpp))dnl
                    588: __devitem(bppsp, bpp[jkl], spif parallel port device)dnl
                    589: _mkdev(mag, magma*, {-case $U in
1.18      todd      590:        0)      offset=0  nam=m;;
                    591:        1)      offset=16 nam=n;;
                    592:        2)      offset=32 nam=o;;
                    593:        *)      echo "bad unit for $i: $U"; exit 127;;
                    594:        esac
1.29      todd      595:        offset=Mult($U, 64)
1.18      todd      596:        n=0
                    597:        while [ $n -lt 16 ]
                    598:        do
                    599:                name=${nam}`hex $n`
1.29      todd      600:                M tty$name c major_mag_c Add($offset, $n) 660 dialer uucp
                    601:                n=Add($n, 1)
1.18      todd      602:        done
1.29      todd      603:        M bpp${nam}0 c major_bppmag_c Add($offset, 0) 600
                    604:        M bpp${nam}1 c major_bppmag_c Add($offset, 1) 600-})dnl
                    605: _mkdev(spif, spif*, {-case $U in
1.18      todd      606:        0)      offset=0  nam=j;;
                    607:        1)      offset=16 nam=k;;
                    608:        2)      offset=32 nam=l;;
                    609:        *)      echo "bad unit for $i: $U"; exit 127;;
                    610:        esac
1.29      todd      611:        offset=Mult($U, 64)
1.18      todd      612:        n=0
                    613:        while [ $n -lt 8 ]
                    614:        do
                    615:                name=${nam}`hex $n`
1.29      todd      616:                M tty$name c major_spif_c Add($offset, $n) 660 dialer uucp
                    617:                n=Add($n, 1)
1.18      todd      618:        done
1.29      todd      619:        M bpp${nam}0 c major_bppsp_c Add($offset, 0) 600-})dnl
                    620: __devitem(bpp, bpp*, parallel port devices)dnl
1.59      jason     621: _mkdev(bpp, {-bpp*-}, {-M bpp$U c major_bpp_c $U 600-}, 600)dnl
1.29      todd      622: __devitem(xfs, xfs*, XFS filesystem devices)dnl
                    623: _mcdev(xfs, xfs*, xfs, {-major_xfs_c-}, 600)dnl
                    624: __devitem(hil, hil, HIL input devices)dnl
                    625: __devitem(rmidi, rmidi*, raw midi devices)dnl
                    626: _mcdev(rmidi, rmidi*, rmidi, {-major_rmidi_c-}, 666)dnl
                    627: __devtitle(plat, Platform-specific devices)dnl
                    628: __devitem(fb, fb*, framebuffer device)dnl
                    629: __devitem(bktr, bktr*, video capturing)dnl
                    630: _mcdev(bktr, bktr*, bktr, {-major_bktr_c-}, 644)dnl
                    631: __devitem(tuner, tuner*, tuner device)dnl
                    632: _mkdev(tuner, tuner*, {-M tuner$U c major_bktr_c Add(Mult($U, 2), 16) 644-}, 644)dnl
                    633: __devitem(pci, pci, PCI bus device)dnl
1.43      deraadt   634: _mkdev(pci, pci, {-M pci c major_pci_c 0 600-}, 600)dnl
1.29      todd      635: __devitem(adb, adb, Apple Desktop bus event interface)dnl
                    636: _mkdev(adb, adb, {-M adb c major_adb_c 0-})dnl
                    637: __devitem(pdc, pdc, PDC device)dnl
                    638: _mkdev(local, local, {-test -s $T.local && sh $T.local-}, 666)dnl
1.49      fgsch     639: __devitem(gpr, gpr*, gpr400 pcmcia device)dnl
                    640: _mcdev(gpr, gpr*, gpr, {-major_gpr_c-})dnl
1.1       todd      641: dnl
                    642: divert(1)dnl
                    643: include(etc.MACHINE/MAKEDEV.md)dnl
                    644: dnl
                    645: dnl
                    646: divert(0)dnl
                    647: #!/bin/sh -
                    648: #
                    649: # THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.
                    650: # generated from:
                    651: #
                    652: show_vers()dnl <-- now that all files are included, show versions
                    653: #
                    654: dnl
                    655: divert(2)dnl
                    656: PATH=/sbin:/usr/sbin:/bin:/usr/bin
                    657: T=$0
                    658:
                    659: # set this to echo for Echo-Only debugging
                    660: [ "$eo" ] || eo=
                    661:
                    662: hex()
                    663: {
                    664:        case ${--}1 in
1.26      deraadt   665:        [0-9]) echo -n {-$-}1;;
                    666:        10) echo -n a;;
                    667:        11) echo -n b;;
                    668:        12) echo -n c;;
                    669:        13) echo -n d;;
                    670:        14) echo -n e;;
                    671:        15) echo -n f;;
1.1       todd      672:        esac
1.65      todd      673: }
                    674:
                    675: alph2d()
                    676: {
                    677:        local t="$1"
                    678:        local p="0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
                    679:        local sub=${p%${t}*}
                    680:        echo ${#sub}
1.1       todd      681: }
1.26      deraadt   682:
1.62      todd      683: h2d()
1.1       todd      684: {
1.62      todd      685:        local s="$1"
                    686:        local f=${s%*[0-9a-f]} n=${s#[0-9a-f]*}
                    687:
                    688:        echo $(($(_h2d $f)*16+ $(_h2d $n) ))
                    689: }
                    690:
                    691: _h2d()
                    692: {
                    693:        case $1 in
                    694:        [0-9]) echo -n $1;;
                    695:        a) echo -n 10;;
                    696:        b) echo -n 11;;
                    697:        c) echo -n 12;;
                    698:        d) echo -n 13;;
                    699:        e) echo -n 14;;
                    700:        f) echo -n 15;;
1.1       todd      701:        esac
                    702: }
1.26      deraadt   703:
1.1       todd      704: unt()
                    705: {
                    706:        # XXX pdksh can't seem to deal with locally scoped variables
                    707:        # in ${foo#$bar} expansions
                    708:        arg="{-$-}1"
                    709:        tmp="${arg#[a-zA-Z]*}"
                    710:        tmp="${tmp%*[a-zA-Z]}"
                    711:        while [ "$tmp" != "$arg" ]
                    712:        do
                    713:                arg=$tmp
                    714:                tmp="${arg#[a-zA-Z]*}"
                    715:                tmp="${tmp%*[a-zA-Z]}"
                    716:        done
                    717:        echo $arg
                    718: }
                    719: dnl
1.29      todd      720: dnl dodisk(name, unit, blkmaj, chrmaj, unit, off[, stepping])
1.5       todd      721: dnl   arg: 1    2    3      4      5    6    7
1.1       todd      722: dnl
1.26      deraadt   723:
1.1       todd      724: dodisk()
                    725: {
1.27      todd      726:        [ "$DEBUG" ] && set -x
1.29      todd      727:        n=Add(Mult(${5}, ${7:-16}), ${6}) count=0
1.1       todd      728:        RMlist="$RMlist {-$-}1{-$-}2? r{-$-}1{-$-}2?"
1.13      todd      729:        [ 0$7 -ne 8 ] && l="i j k l m n o p"
                    730:        for d in a b c d e f g h $l
1.1       todd      731:        do
1.29      todd      732:                M {-$-}1{-$-}2$d        b {-$-}3 Add($n, $count) 640
                    733:                M r{-$-}1{-$-}2$d       c {-$-}4 Add($n, $count) 640
1.1       todd      734:                let count=count+1
                    735:        done
1.58      millert   736:        MKlist="$MKlist;chown root:operator {-$-}1{-$-}2? r{-$-}1{-$-}2?"
1.1       todd      737: }
                    738: dnl
1.29      todd      739: dnl dodisk2(name, unit, blkmaj, chrmaj, unit, off[, stepping])
1.1       todd      740: dnl
                    741: dnl 1. name    - prefix name of the device
                    742: dnl 2. unit    - beginning unit number for block devices
                    743: dnl 3. blkmaj  - block device major number
                    744: dnl 4. chrmaj  - character device major number
                    745: dnl 5. unit    - beginning unit number for character devices
                    746: dnl 6. off     - offset from 0 for all minor numbers (see svnd for an example)
1.5       todd      747: dnl 7. step    - optional, defaults to 16, number of partitions per device
1.1       todd      748: dnl
1.26      deraadt   749:
1.1       todd      750: dodisk2()
                    751: {
1.29      todd      752:        n=Add(Mult({-$-}5, ${7:-16}), {-$-}6)
1.1       todd      753:        M {-$-}1{-$-}2a b {-$-}3 $n 640 operator
                    754:        M r{-$-}1{-$-}2a c {-$-}4 $n 640 operator
1.29      todd      755:        n=Add($n, 2)
1.1       todd      756:        M {-$-}1{-$-}2c b {-$-}3 $n 640 operator
                    757:        M r{-$-}1{-$-}2c c {-$-}4 $n 640 operator
                    758: }
                    759:
                    760: # M name b/c major minor [mode] [group]
                    761: RMlist="rm -f"
                    762: MKlist=":"
1.26      deraadt   763:
1.1       todd      764: mkl() {
                    765: dnl
                    766: dnl uncomment if multi mknod happens
                    767: dnl
1.29      todd      768: ifelse(1, 0,
1.1       todd      769: [ "${mklist[{-$-}1]}" ] && mklist[{-$-}1]="${mklist[{-$-}1]} {-$-}2 {-$-}3 {-$-}4 {-$-}5" || {
1.30      todd      770:          mklist[{-$-}1]="mknod -m {-$-}1 {-$-}2 {-$-}3 {-$-}4 {-$-}5"
                    771:          modes="$modes {-$-}1"
1.1       todd      772:      },
                    773: dnl
                    774: dnl non multi mknod
                    775: dnl
1.26      deraadt   776:        [ "${mklist[{-$-}1]}" ] && {
                    777:                mklist[{-$-}1]="${mklist[{-$-}1]};mknod -m {-$-}1 {-$-}2 {-$-}3 {-$-}4 {-$-}5"
                    778:        } || {
                    779:                mklist[{-$-}1]="mknod -m {-$-}1 {-$-}2 {-$-}3 {-$-}4 {-$-}5"
                    780:                modes="$modes {-$-}1"
                    781:        })
1.1       todd      782: }
1.26      deraadt   783:
1.1       todd      784: M() {
                    785:        RMlist="$RMlist {-$-}1"
                    786:        mkl ${5-666} {-$-}1 {-$-}2 {-$-}3 {-$-}4
                    787:        mklist="$mklist {-$-}1"
                    788:        G={-$-}{6:-wheel}
                    789:        [ "{-$-}7" ] && {
1.58      millert   790:                MKlist="$MKlist;chown {-$-}7:{-$-}G {-$-}1"
1.1       todd      791:        } || {
                    792:                case $G in
1.56      todd      793:                wheel)g=0;;kmem)g=2;;operator)g=5;;tty)g=4;;dialer)g=117;;_lkm)g=61;;
1.1       todd      794:                esac
                    795:                [ "${grplist[$g]}" ] && {
                    796:                        grplist[$g]="${grplist[$g]} {-$-}1"
                    797:                } || {
                    798:                        groups="$groups $g"
                    799:                        grplist[$g]="chgrp $G {-$-}1"
                    800:                }
                    801:        }
                    802:        return 0
                    803: }
                    804: divert(7)dnl
                    805: dnl
                    806: dnl there is no blank line at the end of etc.arch/MAKEDEV.md files, so add one
                    807: dnl on the following line:
                    808:
                    809: show_devs()dnl
                    810: dnl
                    811: divert(9)dnl
                    812: *)
                    813:        echo $i: unknown device
                    814:        ;;
                    815: esac
                    816: done
                    817: }
                    818: _recurse "$@"
                    819: list="$RMlist"
                    820: for mode in $modes; do
                    821:        list="$list;${mklist[$mode]}"
                    822: done
                    823: for group in $groups; do
                    824:        list="$list;${grplist[$group]}"
                    825: done
                    826: list="$list;$MKlist"
1.67    ! todd      827: if [ "$eo" = "echo" ]; then
1.1       todd      828:        $eo "$list"
                    829: else
                    830:        echo "$list" | sh
                    831: fi
1.41      todd      832: divert(3)dnl
1.1       todd      833: dnl
1.26      deraadt   834:
1.1       todd      835: R() {
1.23      todd      836: [ "$DEBUG" ] && set -x
1.1       todd      837: for i in "$@"
                    838: do
                    839: U=`unt $i`
                    840: [ "$U" ] || U=0
                    841:
                    842: case $i in
                    843: dnl