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

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

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