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

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

1.1       todd        1: include(MAKEDEV.sub)dnl
                      2: dnl
1.16    ! todd        3: vers(a,{-$OpenBSD: MAKEDEV.mi,v 1.15 2002/01/08 05:10:38 todd Exp $-})dnl
1.1       todd        4: dnl
                      5: divert(1)dnl
                      6: {-#-}
                      7: {-#-} Copyright (c) 2001 Todd T. Fries <todd@OpenBSD.org>
                      8: {-#-} All rights reserved.
                      9: {-#-}
                     10: {-#-} Redistribution and use in source and binary forms, with or without
                     11: {-#-} modification, are permitted provided that the following conditions
                     12: {-#-} are met:
                     13: {-#-} 1. Redistributions of source code must retain the above copyright
                     14: {-#-}    notice, this list of conditions and the following disclaimer.
                     15: {-#-} 2. The name of the author may not be used to endorse or promote products
                     16: {-#-}    derived from this software without specific prior written permission.
                     17: {-#-}
                     18: {-#-} THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
                     19: {-#-} INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
                     20: {-#-} AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
                     21: {-#-} THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
                     22: {-#-} EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
                     23: {-#-} PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
                     24: {-#-} OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
                     25: {-#-} WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
                     26: {-#-} OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
                     27: {-#-} ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
                     28: {-#-}
                     29: dnl
                     30: dnl Diversions:  (upon termination, concatenated output queues)
                     31: dnl
                     32: dnl 0 - very top
                     33: dnl 1 - descriptions of devices
                     34: dnl 2 - init of script, function definitions, etc
                     35: dnl 3 - beginning of global recursive R() function
                     36: dnl 7 - body of MAKEDEV, device creations, etc
                     37: dnl 9 - end
                     38: dnl
                     39: dnl HOW TO ADD A DEVICE:
                     40: dnl
                     41: dnl In this file, you must use at least two macros:
                     42: dnl
                     43: dnl  Use '__devitem(uniqueid,name-pattern,description)' to create an entry
                     44: dnl  in the description at the top of the generated MAKEDEV file:
                     45: dnl
                     46: dnl    __devitem(sca,sca*,Sugar Generic device)dnl
                     47: dnl
                     48: dnl  This is ultimately shown as:
                     49: dnl
                     50: dnl    #  sca*   Sugar Generic device
                     51: dnl
                     52: dnl  Use '_mkdev(uniqueid,shell-pattern,{-shell-script-})dnl' to create
                     53: dnl  a shell script fragment used to 'create' the device (be sure to match
                     54: dnl  the uniqueid from above):
                     55: dnl
                     56: dnl    _mkdev(sca,sca*,{-M sca$U c major_sca_c $U
                     57: dnl           M rsca$U b major_sca_b Add($U,128)-})dnl
                     58: dnl
                     59: dnl  This is ultimately expanded into:
                     60: dnl
                     61: dnl    sca*)  M sca$U c 24 $U
                     62: dnl           M sca$U b 42 $(($U+128));;
                     63: dnl
                     64: dnl In the MAKEDEV.md file, add a '_DEV(uniqueid,charmajor,blockmajor)'
                     65: dnl entry:
                     66: dnl
                     67: dnl   _DEV(sca,24,42)
                     68: dnl
                     69: dnl Final step is to add an entry to the 'all' entry below. For a short
                     70: dnl example:
                     71: dnl
1.4       todd       72: dnl   _mkdev({-all-},{-all-},{-dnl
1.1       todd       73: dnl   _dl({-std-},{-std-},{-sca-},{-sca0 sca1 sca2 sca3-})-})dnl
                     74: dnl
                     75: dnl would expand to:
                     76: dnl
                     77: dnl   all)
                     78: dnl        R std sca0 sca1 sca2 sca3
                     79: dnl        ;;
                     80: dnl
                     81: dnl presuming '_DEV(sca..' and '_DEV(std)' were in the MAKEDEV.md file.
                     82: dnl
                     83: dnl
                     84: dnl Everything is 'automatically' added to 'MAKEDEV' based on whether or
                     85: dnl not the '_DEV()' entry has a corresponding _mkdev() and __devitem()
                     86: dnl entry in MAKEDEV.sub (this file).
                     87: dnl
                     88: dnl Note: be very wary of adding whitespace, carriage returns, or not
                     89: dnl finishing a macro with ')dnl' .. otherwise, extra blank lines show up
                     90: dnl in the output.
                     91: dnl
                     92: _mkdev(loc,local,{-test -s $T.local && sh $T.local-})dnl
                     93: dnl
                     94: __devtitle(make,Device "make" file.  Valid arguments)dnl
1.4       todd       95: __devitem({-all-},{-all-},
                     96: {-makes all known devices{-,-} including local devices.
1.1       todd       97: {-#-}          Tries to make the ``standard'' number of each type.-})dnl
                     98: dnl
                     99: dnl 'all' is special.  The 'D'evice 'L'ist (or _dl) macro checks to see if
                    100: dnl a particular devices is in the MAKEDEV.md file, and if so, includes the
                    101: dnl necessary devices.  Otherwise the devices are not included in the 'all'
                    102: dnl target.  Note this keeps line lengths to less than column 70.  For the
                    103: dnl gory details see the definition of '_dl' in MAKEDEV.sub
                    104: dnl
                    105: _mkdev(all,{-all-},{-dnl
                    106: _dl({-std-},{-std-},
                    107: {-fdesc-},{-fd-},
                    108: {-sd-},{-sd0 sd1 sd2 sd3 sd4-},
1.12      todd      109: {-attyB-},{-sd5 sd6 sd7 sd8 sd9-},
1.1       todd      110: {-pty-},{-pty0 pty1-},
                    111: {-st-},{-st0 st1-},
                    112: {-ch-},{-ch0-},
                    113: {-cd-},{-cd0 cd1-},
                    114: {-mcd-},{-mcd0-},
                    115: {-vnd-},{-vnd0 vnd1 vnd2 vnd3-},
                    116: {-ccd-},{-ccd0 ccd1 ccd2 ccd3-},
                    117: {-wd-},{-wd0 wd1 wd2 wd3-},
                    118: {-raid-},{-raid0 raid1 raid2 raid3-},
1.10      todd      119: {-xy-},{-xy0 xy1 xy2 xy3-},
                    120: {-xd-},{-xd0 xd1 xd2 xd3-},
1.4       todd      121: {-hd-},{-hd0 hd1 hd2 hd3 hd4-},
                    122: {-rz-},{-rz0 rz1 rz2 rz3 rz4-},
                    123: {-rd-},{-rd0-},
                    124: {-flo-},{-fd0 fd0B fd0C fd0D fd0E fd0F fd0G fd0H-},
                    125: {-flo-},{-fd1 fd1B fd1C fd1D fd1E fd1F fd1G fd1H-},
1.9       todd      126: {-aflo-},{-fd0 fd1 fd2 fd3-},
1.1       todd      127: {-bpf-},{-bpf0 bpf1 bpf2 bpf3 bpf4 bpf5 bpf6 bpf7 bpf8 bpf9-},
                    128: {-tun-},{-tun0 tun1 tun2 tun3-},
1.8       todd      129: {-pctr-},{-pctr-},
                    130: {-bktr-},{-bktr0-},
1.1       todd      131: {-altq-},{-altq-},
                    132: {-pf-},{-pf-},
                    133: {-cry-},{-crypto-},
1.4       todd      134: {-apm-},{-apm-},
                    135: {-tth-},{-ttyh0 ttyh1-},
1.12      todd      136: {-ttyA-},{-ttyA0 ttyA1-},
1.9       todd      137: {-ttyB-},{-ttyB0 ttyB1 ttyB2 ttyB3 ttyB4 ttyB5-},
                    138: {-attyB-},{-ttyB0 ttyB1 ttyB2 ttyB3 ttyB4-},
1.1       todd      139: {-tty0-},{-tty00 tty01 tty02 tty03-},
1.13      todd      140: {-mac_tty0-},{-tty00 tty01-},
1.1       todd      141: {-tzs-},{-ttya ttyb ttyc ttyd-},
1.7       todd      142: {-czs-},{-cuaa cuab cuac cuad-},
1.13      todd      143: {-ttyc-},{-ttyc0 ttyc1 ttyc2 ttyc3 ttyc4 ttyc5 ttyc6 ttyc7-},
                    144: {-com-},{-tty00 tty01 tty02 tty03-},
                    145: {-mac_ttye-},{-ttye0-},
                    146: {-ttye-},{-ttye0 ttye1 ttye2 ttye3 ttye4 ttye5 ttye6-},
1.1       todd      147: {-lkm-},{-lkm-},
                    148: {-mmcl-},{-mmclock-},dnl
1.8       todd      149: {-lpt-},{-lpa0 lpt0 lpa1 lpt1 lpa2 lpt2-},
                    150: {-joy-},{-joy0 joy1-},
1.1       todd      151: {-rnd-},{-random-},
                    152: {-ses-},{-ses0-},
                    153: {-uk-},{-uk0 uk1-},
                    154: {-ss-},{-ss0 ss1-},
1.8       todd      155: {-wt-},{-wt0-},
                    156: {-wdt-},{-wdt0-},
1.1       todd      157: {-xfs-},{-xfs0-},
                    158: {-au-},{-audio0-},
1.15      todd      159: {-speak-},{-speaker-},
1.13      todd      160: {-asc-},{-asc0-},
1.8       todd      161: {-music-},{-music0-},
                    162: {-radio-},{-radio0-},
                    163: {-tuner-},{-tuner0-},
                    164: {-rmidi-},{-rmidi0 rmidi1 rmidi2 rmidi3 rmidi4 rmidi5 rmidi6 rmidi7-},
1.1       todd      165: {-usbs-},{-usbs-},
1.13      todd      166: {-adb-},{-adb-},
                    167: {-iop-},{-iop0 iop1-},
1.9       todd      168: {-pci-},{-pci-},
1.1       todd      169: {-wsmouse-},{-wscons-},
1.10      todd      170: {-btw-},{-bwtwo0-},
1.11      todd      171: {-ctw-},{-cgtwo0-},
1.16    ! todd      172: {-ctr-},{-cgthree0-},
1.10      todd      173: {-cfr-},{-cgfour0-},
1.16    ! todd      174: {-csx-},{-cgsix0-},
        !           175: {-ceg-},{-cgeight0-},
        !           176: {-cfo-},{-cgfourteen0-},
        !           177: {-tcx-},{-tcx0-},
1.13      todd      178: {-mac_grf-},{-grf0 grf1 grf2 grf3-},
1.9       todd      179: {-grf-},{-grf0 grf1 grf2 grf3 grf4 grf5 grf6-},
                    180: {-par-},{-par0-},
                    181: {-amouse-},{-mouse0 mouse1-},
                    182: {-akbd-},{-kbd-},
                    183: {-ppi-},{-ppi0-},
1.12      todd      184: {-view-},{-view00 view01 view02 view03 view04 view05-},
1.1       todd      185: {-local-},{-local-})-})dnl
                    186: __devitem(floppy,floppy,devices to be put on install floppies)dnl
                    187: __devitem(std,{-std-},standard devices)dnl
                    188: dnl
                    189: dnl _std
                    190: dnl
                    191: dnl $1: tty
                    192: dnl $2: memstuff
                    193: dnl $3: ksyms
                    194: dnl $4: drum
                    195: dnl $5: klog
                    196: dnl
                    197: define({-_std-},{-dnl
                    198: std)
                    199:        M console       c 0 0 600
                    200:        M tty           c $1 0
                    201:        M mem           c $2 0 640 kmem
                    202:        M kmem          c $2 1 640 kmem
                    203:        M null          c $2 2
                    204:        M zero          c $2 12
                    205:        M stdin         c major_fdesc_c 0
                    206:        M stdout        c major_fdesc_c 1
                    207:        M stderr        c major_fdesc_c 2
                    208:        M ksyms         c $3 0 640 kmem
                    209:        M drum          c $4 0 640 kmem
                    210:        M klog          c $5 0 600-})dnl
                    211: dnl
                    212: __devitem({-usbs-},usbs,make USB devices)dnl
                    213: _mkdev(usbs,usbs,{-dnl
                    214: _dl({-usb-},{-usb0 usb1-},
                    215: {-urio-},{-urio-},
1.2       todd      216: {-uscan-},{-uscanner0-},
1.1       todd      217: {-uhid-},{-uhid0 uhid1 uhid2 uhid3-},
                    218: {-ulpt-},{-ulpt0 ulpt1-},
                    219: {-ugen-},{-ugen0 ugen1-},
                    220: {-utty-},{-utty0 utty1-})-})dnl
                    221: __devtitle(tap,Tapes)dnl
                    222: __devitem(wt,{-wt*     -},QIC-interface (e.g. not SCSI) 3M cartridge tape)dnl
                    223: _mkdev(wt,wt*,
                    224: {-name=wt
                    225:        n=Mult($U,8) m=Add($n,4)
                    226:        M $name$U       b major_wt_b $n 640 operator
                    227:        M r$name$U      c major_wt_c $n 640 operator
                    228:        M n$name$U      b major_wt_b $m 640 operator
                    229:        M nr$name$U     c major_wt_c $m 640 operator-})dnl
                    230: __devitem(tz,tz*,{-SCSI tapes{-,-} DEC TK50 cartridge tape-})dnl
                    231: __devitem(st,{-st*-},SCSI tapes)dnl
                    232: _mkdev(st,st*,{-n=Mult($U,16)
                    233:        for pre in " " n e en
                    234:        do
                    235:                M ${pre}st$U    b major_st_b $n 660 operator
                    236:                M ${pre}rst$U   c major_st_c $n 660 operator
                    237:                n=Add($n,1)
                    238:        done-})dnl
                    239: _mkdev(st_hp300,ct*|mt*|st*,
                    240: {-case $i in
                    241:        ct*) name=ct blk=major_ct_b chr=major_ct_c;;
                    242:        mt*) name=mt blk=major_mt_b chr=major_mt_c;;
                    243:        st*) name=st blk=major_st_hp300_b chr=major_st_hp300_c;;
                    244:        esac
                    245:        case $U in
                    246:        [0-7])
                    247:                four=Add($U,4) eight=Add($U,8)
                    248:                twelve=Add($U,12) twenty=Add($U,20)
                    249:                M r$name$U      c $chr $U 660 operator
                    250:                M r$name$four   c $chr $four 660 operator
                    251:                M r$name$eight  c $chr $eight 660 operator
                    252:                M r$name$twelve c $chr $twelve 660 operator
                    253:                MKlist="$MKlist;ln r$name$four nr$name$U";: sanity w/pdp11 v7
                    254:                MKlist="$MKlist;ln r$name$twelve nr$name$eight";: ditto
                    255:                RMlist="$RMlist nr$name$U nr$name$eight"
                    256:                ;;
                    257:        *)
                    258:                echo bad unit for tape in: $1
                    259:                ;;
                    260:        esac-})dnl
                    261: __devitem(st_hp300,st*,Exabyte tape)dnl
                    262: __devitem(ct,ct*,HP300 HP-IB cartridge tape)dnl
                    263: __devitem(mt,mt*,(Magnetic) 9-track reel tape)dnl
                    264: __devtitle(dis,Disks)dnl
                    265: __devitem(rz,rz*,SCSI disks)dnl
                    266: __devitem(sd,{-sd*-},SCSI disks{-,-} includes flopticals)dnl
                    267: __devitem(hd,{-hd*-},HP300 HP-IB disks)dnl
                    268: __devitem(cd,{-cd*-},SCSI cdrom drives)dnl
                    269: __devitem(acd,acd*,ATAPI cdrom drives)dnl
1.6       todd      270: _mkdev(cd,cd*,{-dodisk2 cd $U major_cd_b major_cd_c $U 0{--}ifstep(cd)-})dnl
                    271: __devitem(mcd,mcd*,Mitsumi cdrom drives)dnl
                    272: _mkdev(mcd,mcd*,{-dodisk2 mcd $U major_mcd_b major_mcd_c $U 0{--}ifstep(mcd)dnl
1.1       todd      273: -})dnl
                    274: __devitem(ch,{-ch*-},SCSI media changer)dnl
                    275: _mcdev(ch,ch*,ch,{-major_ch_c-},660,operator)dnl
                    276: __devitem(uk,uk*,SCSI Unknown device)dnl
                    277: _mcdev(uk,uk*,uk,{-major_uk_c-},640,operator)dnl
                    278: __devitem(ss,ss*,SCSI scanners)dnl
                    279: _mkdev(ss,ss*,{-M ss$U c major_ss_c $U 440 operator
                    280:        RMlist="$RMlist scan$U"
                    281:        MKlist="$MKlist;umask 77;ln -s ss$U scan$U"-})dnl
                    282: __devitem(ses,ses*,SES/SAF-TE SCSI devices)dnl
                    283: _mkdev(ses,ses*,{-M ses$U c major_ses_c $U 640 operator-})dnl
                    284: __devitem(ramd,ramdisk,makes all devices for a ramdisk kernel)dnl arc
                    285: __devitem(rd,{-rd*-},"ramdisk" pseudo-disks)dnl
1.6       todd      286: _mkdev(rd,rd*,{-dodisk2 rd $U major_rd_b major_rd_c $U 0{--}ifstep(rd)-})dnl
1.1       todd      287: __devitem(xd,xd*,Xylogic 753/7053 disks)dnl
                    288: __devitem(xy,xy*,{-    Xylogic 450/451 disks-})dnl
                    289: __devitem(flo,{-fd*-},{-Floppy disk drives (3 1/2"{-,-} 5 1/4")-})dnl
                    290: _mkdev(flo,fd*,
                    291: {-typnam=$U${i#fd[01]*}
                    292:        case $typnam in
                    293:        0|1)    typnum=0;; # no type specified, assume A
                    294:        *A)             typnam=0; typnum=0;;
                    295:        *B)             typnum=1;;
                    296:        *C)             typnum=2;;
                    297:        *D)             typnum=3;;
                    298:        *E)             typnum=4;;
                    299:        *F)             typnum=5;;
                    300:        *G)             typnum=6;;
                    301:        *H)             typnum=7;;
                    302:        *)              echo bad type $typnam for $i; exit 1;;
                    303:        esac
                    304:        case $U in
                    305:        0|1)    blk=major_flo_b; chr=major_flo_c;;
                    306:        *)      echo bad unit $U for $i; exit 1;;
                    307:        esac
                    308:        nam=fd${typnam}
                    309:        n=Add(Mult($U,128),Mult($typnum,16))
                    310:        M ${nam}a       b $blk $n 640 operator
                    311:        M ${nam}b       b $blk Add($n,1) 640 operator
                    312:        M ${nam}c       b $blk Add($n,2) 640 operator
                    313:        M r${nam}a      c $chr $n 640 operator
                    314:        M r${nam}b      c $chr Add($n,1) 640 operator
                    315:        M r${nam}c      c $chr Add($n,2) 640 operator-},664)dnl
                    316: __devitem(aflo,floppy,devices needed for install floppies)dnl
                    317: _mkdev(aflo,fd*,{-case $U in 0|1|2|3)
                    318:        M fd${U}a b major_aflo_b Mult($U,16) 640 operator
                    319:        M fd${U}b b major_aflo_b Add(Mult($U,16),1) 640 operator
                    320:        M rfd${U}a c major_aflo_c Mult($U,16) 640 operator
                    321:        M rfd${U}b c major_aflo_c Add(Mult($U,16),1) 640 operator;;
                    322:        *) echo bad unit for floppy disk in: $i;;
                    323:        esac-})dnl
                    324: __devitem(iop,iop*,I2O controller device)dnl
                    325: _mcdev(iop,iop*,iop,{-major_iop_c-},660)dnl
                    326: __devitem(wdt,wdt0,watchdog timer)dnl
                    327: _mcdev(wdt,wdt0,wdt,{-major_wdt_c-},440,operator)dnl
                    328: __devitem(local,local,configuration specific devices)dnl
                    329: __devitem(wd,{-wd*-},{-"winchester" disk drives (ST506,IDE,ESDI,RLL,...)-})dnl
                    330: __devitem(ccd,ccd*,concatenated disk devices)dnl
                    331: __devitem(raid,raid*,RAIDframe disk devices)dnl
                    332: __devitem(vnd,vnd*,"file" pseudo-disks)dnl
1.6       todd      333: _mkdev(vnd,vnd*,{-dodisk vnd $U major_vnd_b major_vnd_c $U 0{--}ifstep(vnd)
                    334:        dodisk svnd $U major_vnd_b major_vnd_c $U 128{--}ifstep(vnd)-})dnl
1.1       todd      335: dnl
                    336: dnl For normal disk devices, add a disk_q entry; anything else define like
                    337: dnl the rest (such as vnd above).
                    338: dnl
                    339: disk_q({-xy-})dnl
                    340: disk_q({-xd-})dnl
                    341: disk_q({-hd-})dnl
                    342: disk_q({-rz-})dnl
                    343: disk_q({-wd-})dnl
                    344: disk_q({-raid-})dnl
                    345: disk_q({-ccd-})dnl
                    346: disk_q({-sd-})dnl
                    347: dnl
                    348: __devitem(loc,local,configuration specific devices)dnl
                    349: _mkdev(loc,local,{-test -s $T.local && sh $T.local-})dnl
                    350: _mkdev({-disks-},{-undefine({-C_ase-})show_disks()undefine({-C_ase-})-},
                    351: {-case $i in
                    352: show_disks2()dnl
1.6       todd      353:        esac-})dnl
1.1       todd      354: __mkdev({-disks-}){--}dnl
                    355: dnl
                    356: __devtitle(cons,Console ports)dnl
                    357: __devitem(ttyv0,ttyv0,pccons or pcvt screen 0)dnl
                    358: __devitem(ttyv,ttyv*,pcvt)dnl
                    359: __devitem(ttye,ttye*,ite bitmapped consoles)dnl
1.13      todd      360: __devitem(mac_ttye,ttye*,ite bitmapped consoles)dnl
1.1       todd      361: __devitem(wscons,ttyC0,wscons screen 0)dnl
                    362: _mkdev({-wscons-},{-wscons-},{-dnl
                    363: _dl(dnl
                    364: {-wscons-},{-ttyCcfg-},
1.3       todd      365: {-wsdisp-},{-ttyC0 ttyC1 ttyC2 ttyC3 ttyC4 ttyC5 ttyC6 ttyC7 ttyC8 ttyC9-},
                    366: {-wsdisp-},{-ttyCa ttyCb-},
1.1       todd      367: {-wsmux-},{-wsmux-},
                    368: {-wskbd-},{-wskbd0 wskbd1 wskbd2 wskbd3-},
                    369: {-wsmouse-},{-wsmouse0 wsmouse1 wsmouse2 wsmouse3-})-})dnl
1.3       todd      370: __devitem(wsdisp,ttyC*,wscons virtual consoles)dnl
                    371: _mkdev({-wsdisp-},ttyC*,{-U=${i##ttyC}
                    372:        case $U in
1.8       todd      373:        [0-9a-f]) M ttyC$U c major_wsdisp_c {-$(( 16#$U ))-} 600;;
                    374:        cfg) M ttyCcfg c major_wsdisp_c 255 600;;
1.3       todd      375:        *) echo bad unit $U for $i; exit 1;;
1.6       todd      376:        esac-})dnl
1.1       todd      377: __devitem(wskbd,wskbd*,wscons keyboards)dnl
                    378: _mkdev(wskbd,wskbd*,{-M wskbd$U c major_wskbd_c $U 600-})dnl
                    379: __devitem(wsmux,wsmux,wscons keyboard/mouse mux devices)dnl
                    380: _mkdev(wsmux,wsmux|wsmouse|wskbd,{-M wsmouse c major_wsmux_c 0 600
                    381:        M wskbd c major_wsmux_c 1 600-})dnl
                    382: __devitem(pcons,console,PROM console)dnl
                    383: __devtitle(point,Pointing devices)dnl
                    384: __devitem(wsmouse,wsmouse*,wscons mice)dnl
                    385: _mkdev(wsmouse,wsmouse*,{-M wsmouse$U c major_wsmouse_c $U 600-})dnl
                    386: __devitem(quad,quadmouse,"quadrature mouse")dnl
                    387: __devtitle(pty,Pseudo terminals)dnl
                    388: __devitem(tty,tty*,set of 16 slave psuedo terminals)dnl
                    389: __devitem(pty,pty*,set of 16 master pseudo terminals)dnl
                    390: _mkdev(pty,pty*,{-case $U in
                    391:        0) off=0 name=p;;
                    392:        1) off=16 name=q;;
                    393:        2) off=32 name=r;;
                    394:        3) off=48 name=s;;
                    395: # Note that telnetd, rlogind, and xterm (at least) only look at p-s.
                    396:        4) off=64 name=t;;
                    397:        5) off=80 name=u;;
                    398:        6) off=96 name=v;;
                    399:        7) off=112 name=w;;
                    400:        8) off=128 name=x;;
                    401:        9) off=144 name=y;;
                    402:        10) off=160 name=z;;
                    403:        11) off=176 name=P;;
                    404:        12) off=192 name=Q;;
                    405:        13) off=206 name=R;;
                    406:        14) off=224 name=S;;
                    407:        15) off=240 name=T;;
                    408:        *) echo bad unit for pty in: $i; continue;;
                    409:        esac
                    410:        n=0
                    411:        while [ $n -lt 16 ]
                    412:        do
                    413:                nam=$name$(hex $n)
                    414:                M tty$nam c major_tty_c Add($off,$n)
                    415:                M pty$nam c major_pty_c Add($off,$n)
                    416:                n=Add($n,1)
                    417:        done-})dnl
                    418: __devitem(dc,dc*,{-4 channel serial interface (keyboard{-,-} mouse{-,-}modem{-,-} printer)-})dnl
                    419: __devtitle(prn,Printers)dnl
                    420: __devitem(par,par*,motherboard parallel port)dnl
                    421: __devitem(lpt,lpt*,IEEE 1284 centronics printer)dnl
                    422: _mkdev(lpt,lpt*|lpa*,
                    423: {-case $i in
                    424:        lpt*) n=lpt f=0;;
                    425:        lpa*) n=lpa f=128;;
                    426:        esac
                    427:        M $n$U c major_lpt_c Add($U,$f) 600-})dnl
                    428: __devitem(lpa,lpa*,interruptless lp)dnl
                    429: __devitem(ppi,ppi*,HP-IB plotters)dnl
                    430: __devtitle({-usb-},USB devices)dnl
                    431: __devitem({-usb-},usb*,Bus control devices used by usbd for attach/detach)dnl
                    432: _mkdev({-usb-},usb*,{-[ "$i" = "usb" ] && u= || u=$U
                    433:        M usb$u c major_usb_c $U 660-})dnl
                    434: __devitem(uhid,uhid*,Generic HID devices)dnl
                    435: _mcdev({-uhid-},uhid*,{-uhid-},{-major_uhid_c-},660)dnl
                    436: __devitem(ulpt,ulpt*,Printer devices)dnl
                    437: _mcdev({-ulpt-},ulpt*,{-ulpt-},{-major_ulpt_c-},660)dnl
                    438: __devitem(utty,utty*,Serial ports)dnl
                    439: _mcdev({-utty-},utty*,{-utty-},{-major_utty_c-},660)dnl
                    440: __devitem(urio,urio*,Diamond Multimedia Rio 500)dnl
                    441: _mcdev({-urio-},urio*,{-urio-},{-major_urio_c-},660)dnl
1.2       todd      442: __devitem(uscan,uscanner*,Scanners)dnl
                    443: _mcdev({-uscan-},uscanner*,{-uscanner-},{-major_uscan_c-},660)dnl
1.1       todd      444: __devitem(ugen,ugen*,Generic device)dnl
                    445: _mkdev(ugen,ugen*,{-n=Mult($U,16)
                    446:        for j in 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15
                    447:        do
                    448:                M ugen$U.$j c major_ugen_c Add($n,$j) 660
                    449:        done-})dnl
                    450: __devtitle(cpu,Cpus)dnl
                    451: __devitem(cpu,cpu*,cpus)dnl
                    452: __devtitle(call,Call units)dnl
                    453: __devtitle(term,Terminal ports)dnl
                    454: __devtitle(termp,Terminal multiplexers)dnl
                    455: __devitem(dca,dca*,HP200/300 single port serial interface)dnl
                    456: __devitem(dcm,dcm*,HP200/300 4 port serial mux interface)dnl
                    457: __devitem(apci,apci*,HP400 4 port serial mux interface)dnl
                    458: __devitem({-com-},{-tty0*-},NS16x50 serial ports)dnl
                    459: _mkdev(com,{-tty0*-},{-M tty$U c major_com_c $U 660 dialer uucp
                    460:        M cua$U c major_com_c Add($U,128) 660 dialer uucp-})dnl
                    461: __devitem(ttyc,ttyc*,Cyclades serial ports)dnl
                    462: __devitem(tzs,tty[a-z]*,Zilog 8530 Serial Port)dnl
                    463: _mkdev(tzs,{-tty[a-z]-},{-u=${i#tty*}
                    464:        case $u in
                    465:        a) n=0 ;;
                    466:        b) n=1 ;;
                    467:        c) n=4 ;;
                    468:        d) n=5 ;;
                    469:        *) echo unknown tty device $i ;;
                    470:        esac
                    471:        M tty$u c major_tzs_c $n 660 dialer uucp-})dnl
                    472: __devitem(tth,ttyh*,Sab82532 serial devices)dnl
                    473: _mkdev(tth,ttyh*,{-M ttyh$U c major_tth_c $U 660 dialer uucp-})dnl
                    474: __devitem(czs,cua[a-z]*,Zilog 8530 Serial Port)dnl
                    475: _mkdev(czs,cua[a-z],{-u=${i#cua*}
                    476:        case $u in
                    477:        a) n=0 ;;
                    478:        b) n=1 ;;
                    479:        c) n=4 ;;
                    480:        d) n=5 ;;
                    481:        *) echo unknown cua device $i ;;
                    482:        esac
                    483:        M cua$u c major_czs_c Add($n,128) 660 dialer uucp-})dnl
                    484: __devitem(arm_tty,tty*,{-alias for PC COM ports{-,-} this is what the system really wants-})dnl
                    485: __devitem(tty0,tty00,standard serial port)dnl
1.13      todd      486: __devitem(mac_tty0,tty00,standard serial port)dnl
1.1       todd      487: __devitem(ttyA,ttyA*,mfc serial ports)dnl
                    488: __devitem(attyB,ttyB*,ISA COM ports)dnl  amiga
                    489: __devitem(ttyz,tty[a-d],onboard zs serial ports)dnl
                    490: __devitem(cuaz,cua[a-d],onboard zs serial ports)dnl
                    491: __devitem(ttyB,ttyB?,DEC 3000 ZS8530 ("scc") serial ports)dnl
                    492: __devitem(scc,scc*,82530 serial interface)dnl
                    493: __devitem(arc_ttyC,ttyC0,pccons)dnl
                    494: __devitem(i386_ttyC,ttyC*,pcvt)dnl
                    495: __devitem(ttyC,ttyC?,{-AlphaStation NS16550 ("com serial ports")-})dnl
                    496: __devitem(ttyE,ttyE?,Workstation console (framebuffer & keyboard) tty emulators)dnl
                    497: __devitem(ser02,ser02,{-serial2 port (channel A on 8530)-})dnl
                    498: __devitem(mdm02,mdm02,{-modem2 port (channel B on 8530)-})dnl
                    499: __devtitle(spec,Special purpose devices)dnl
                    500: __devitem(apm,apm      ,power management device)dnl
                    501: _mkdev(apm,apm*,{-M apm        c major_apm_c 0 644
                    502:        M apmctl        c major_apm_c 8 644-})dnl
                    503: __devitem(pcmcia,pcmcia*,PCMCIA card drivers)dnl
                    504: __devitem(pctr,pctr*,PC Performance Tuning Register access device)dnl
                    505: _mkdev(pctr,pctr,{-M pctr c major_pctr_c 0 644-})dnl
                    506: __devitem(au,audio*,audio device)dnl
                    507: _mkdev(au,audio*,{-M sound$U   c major_au_c $U
                    508:        M mixer$U       c major_au_c Add($U,16)
                    509:        M audio$U       c major_au_c Add($U,128)
                    510:        M audioctl$U    c major_au_c Add($U,192)
                    511:        MKlist="$MKlist;[ -e audio ] || ln -s audio$U audio"
                    512:        MKlist="$MKlist;[ -e mixer ] || ln -s mixer$U mixer"
                    513:        MKlist="$MKlist;[ -e sound ] || ln -s sound$U sound"
                    514:        MKlist="$MKlist;[ -e audioctl ] || ln -s audioctl$U audioctl"-})dnl
1.13      todd      515: __devitem(asc,asc*,ASC Audio device)dnl
                    516: _mkdev(asc,asc*,{-M asc$U major_asc_c 0-})dnl
1.1       todd      517: __devitem(music,music*,midi devices)dnl
                    518: _mkdev(music,music*,{-M music$U     c major_music_c $U
                    519:        M sequencer$U c major_music_c Add($U,128)
                    520:        MKlist="$MKlist;[ -e music ] || ln -s music$U music"
                    521:        MKlist="$MKlist;[ -e sequencer ] || ln -s sequencer$U sequencer"-})dnl
1.8       todd      522: __devitem(radio,radio*,FM tuner device)dnl
                    523: _mkdev(radio,radio*,{-M radio$U     c major_radio_c $U 644
                    524:        MKlist="$MKlist;[ -e radio ] || ln -s radio$U radio"-})dnl
1.1       todd      525: __devitem(fdesc,fd,makes fd/* for the fdescfs)dnl
                    526: _mkdev(fdesc,fd,{-RMlist="mkdir -p fd;$RMlist" n=0
                    527:        while [ $n -lt 64 ];do M fd/$n c major_fdesc_c $n;n=Add($n,1);done
                    528:        MKlist="$MKlist;chmod 555 fd"-})dnl
                    529: __devtitle(graph,Graphics devices)dnl
1.13      todd      530: __devitem(mac_grf,grf*,{-custom chip (grf0){-,-} Retina Z2/Z3 (grf1/grf2){-,-}
1.1       todd      531: {-#-}          Cirrus boards (grf3){-,-} A2410 (grf4) video or
                    532: {-#-}          CyberVision 64 (grf5)-})dnl
                    533: __devitem(grf_amiga,grf*,{-Motherboard bitmapped video.-})dnl
                    534: __devitem(grf_hp300,grf*,raw interface to HP300 graphics devices)dnl
                    535: __devitem(ite,ite*,terminal emulator interface to HP300 graphics devices)dnl
                    536: __devitem({-hil-},{-hil-},HP300 HIL input devices)dnl
                    537: __devitem(oppr,openprom)dnl
                    538: _cdev(oppr,openprom,70,0)dnl
                    539: __devitem(btw,bwtwo*)dnl
                    540: _mcdev(btw,bwtwo*,bwtwo,{-major_btw_c-},666)dnl
                    541: __devitem(ctw,cgtwo*)dnl
                    542: _mcdev(ctw,cgtwo*,cgtwo,{-major_ctw_c-},666)dnl
                    543: __devitem(ctr,cgthree*)dnl
                    544: _mcdev(ctr,cgthree*,cgthree,{-major_ctr_c-},666)dnl
                    545: __devitem(cfr,cgfour*)dnl
                    546: _mcdev(cfr,cgfour*,cgfour,{-major_cfr_c-},666)dnl
                    547: __devitem(csx,cgsix*)dnl
                    548: _mcdev(csx,cgsix*,cgsix,{-major_csx_c-},666)dnl
                    549: __devitem(ceg,cgeight*)dnl
                    550: _mcdev(ceg,cgeight*,cgeight,{-major_ceg_c-},666)dnl
                    551: __devitem(cfo,cgfourteen*)dnl
                    552: _mcdev(cfo,cgfourteen*,cgfourteen,{-major_cfo_c-})dnl
                    553: __devitem(tcx,tcx*)dnl
                    554: _mcdev(tcx,tcx*,tcx,{-major_tcx_c-})dnl
                    555: __devitem(cry,crypto,hardware crypto access driver)dnl
                    556: _mkdev(cry,crypto,{-M crypto c major_cry_c-} 0)dnl
                    557: __devitem(pf,pf*,Packet Filter)dnl
                    558: _mkdev(pf,{-pf*-},{-M pf c major_pf_c 0 600-})dnl
                    559: __devitem(bpf,bpf*,Berkeley Packet Filter)dnl
                    560: _mkdev(bpf,{-bpf*-},{-M bpf$U c major_bpf_c $U 600-},600)dnl
                    561: _mkdev(tun,{-tun*-},{-M tun$U c major_tun_c $U 600-},600)dnl
                    562: __devitem(altq,altq/,ALTQ control interface)dnl
                    563: _mkdev(altq,altq,{-RMlist="mkdir -p altq;$RMlist"
                    564:        for d in altq cbq wfq afm fifoq red rio localq hfsc cdnr blue priq; do
                    565:                M altq/$d c major_altq_c $U 644
                    566:                U=Add($U,1)
                    567:        done-})dnl
                    568: __devitem(speak,speaker,pc speaker)dnl
1.15      todd      569: _mkdev(speak,speaker,{-M speaker c major_speak_c 0 600-})dnl
1.1       todd      570: __devitem(kbd,kbd,keyboard (provides events, for X11))dnl
                    571: _cdev(kbd,kbd,{-major_kbd_c-},0,600)dnl
                    572: __devitem(kbd_atari,kbd,Atari keyboard)dnl
                    573: __devitem(akbd,kbd,Amiga keyboard)dnl
                    574: __devitem(rkbd,kbd,raw keyboard)dnl
                    575: __devitem(kbdctl,kbdctl,keyboard control)dnl
                    576: __devitem(beep,beep,riscpc speaker)dnl
                    577: __devitem(iic,iic*,IIC bus device)dnl
                    578: __devitem(rtc,rtc*,RTC device)dnl
                    579: __devitem(view,view*,generic interface to graphic displays)dnl
                    580: __devitem(aconf,aconf,{-autoconfig information (not yet)-})dnl
                    581: __devitem(mouse-,mouse-*,"mouse link")dnl
                    582: __devitem(mouse,mouse,mouse (provides events, for X11))dnl
                    583: __devitem(amouse,mouse*,Amiga mice)dnl
                    584: __devitem(lkm,lkm,loadable kernel modules interface)dnl
                    585: _cdev(lkm,lkm,{-major_lkm_c-},0,640,kmem)dnl
                    586: __devitem(mmcl,mmclock,memory mapped clock)dnl
                    587: __devitem(tun,tun*,network tunnel driver)dnl
                    588: __devitem(rnd,*random,inkernel random data source)dnl
                    589: _mkdev(rnd,*random,{-n=0
                    590:        for pre in " " s u p a
                    591:        do
                    592:                M ${pre}random c major_rnd_c $n 644
                    593:                n=Add($n,1)
                    594:        done-},644)dnl
                    595: __devitem(joy,joy*,joystick driver)dnl
1.8       todd      596: _mcdev(joy,joy*,joy,{-major_joy_c-},666)dnl
1.1       todd      597: __devitem(mag,magma*,magma card (makes 16 tty and 2 bpp))dnl
                    598: __devitem(xfs,xfs*,XFS filesystem devices)dnl
                    599: _mcdev(xfs,xfs*,xfs,{-major_xfs_c-},600)dnl
                    600: __devitem(hil,hil,HIL input devices)dnl
                    601: __devitem(rmidi,rmidi*,raw midi devices)dnl
                    602: _mcdev(rmidi,rmidi*,rmidi,{-major_rmidi_c-},666)dnl
                    603: __devtitle(plat,Platform-specific devices)dnl
                    604: __devitem(fb,fb*,framebuffer device)dnl
                    605: __devitem(bktr,bktr*,video capturing)dnl
                    606: _mcdev(bktr,bktr*,bktr,{-major_bktr_c-},644)dnl
                    607: __devitem(tuner,tuner*,tuner device)dnl
                    608: _mkdev(tuner,tuner*,{-M tuner$U c major_tuner_c Add(Mult($U,2),16) 644-},644)dnl
1.7       todd      609: __devitem(pci,pci,PCI bus device)dnl
                    610: _mkdev(pci,pci,{-M pci c major_pci_c 0 664-},664)dnl
1.13      todd      611: __devitem(adb,adb,Apple Desktop bus event interface)dnl
                    612: _mkdev(adb,adb,{-M adb c major_adb_c 0-})dnl
1.15      todd      613: __devitem(pdc,pdc,PDC device)dnl
1.1       todd      614: _mkdev(local,local,{-test -s $T.local && sh $T.local-},666)dnl
                    615: dnl
                    616: divert(1)dnl
                    617: include(etc.MACHINE/MAKEDEV.md)dnl
                    618: dnl
                    619: dnl
                    620: divert(0)dnl
                    621: #!/bin/sh -
                    622: #
                    623: # THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.
                    624: # generated from:
                    625: #
                    626: show_vers()dnl <-- now that all files are included, show versions
                    627: #
1.6       todd      628: {-#-}  $Open{--}BSD$
1.1       todd      629: dnl
                    630: divert(2)dnl
                    631: PATH=/sbin:/usr/sbin:/bin:/usr/bin
                    632: T=$0
                    633:
                    634: # set this to echo for Echo-Only debugging
                    635: [ "$eo" ] || eo=
                    636:
                    637: hex()
                    638: {
                    639:        case ${--}1 in
                    640:                [0-9]) echo -n {-$-}1;;
                    641:                10) echo -n a;;
                    642:                11) echo -n b;;
                    643:                12) echo -n c;;
                    644:                13) echo -n d;;
                    645:                14) echo -n e;;
                    646:                15) echo -n f;;
                    647:        esac
                    648: }
                    649: trunc()
                    650: {
                    651:        # XXX pdksh can't seem to deal with locally scoped variables
                    652:        # in ${foo#$bar} expansions
                    653:        arg1="{-$-}1"
                    654:        arg2="{-$-}2"
                    655:        case {-$-}3 in
                    656:        l)   echo ${arg2#$arg1} ;;
                    657:        r|*) echo ${arg1#$arg2} ;;
                    658:        esac
                    659: }
                    660: unt()
                    661: {
                    662:        # XXX pdksh can't seem to deal with locally scoped variables
                    663:        # in ${foo#$bar} expansions
                    664:        arg="{-$-}1"
                    665:        tmp="${arg#[a-zA-Z]*}"
                    666:        tmp="${tmp%*[a-zA-Z]}"
                    667:        while [ "$tmp" != "$arg" ]
                    668:        do
                    669:                arg=$tmp
                    670:                tmp="${arg#[a-zA-Z]*}"
                    671:                tmp="${tmp%*[a-zA-Z]}"
                    672:        done
                    673:        echo $arg
                    674: }
                    675: dnl
1.5       todd      676: dnl dodisk(name,unit,blkmaj,chrmaj,unit,off[,stepping])
                    677: dnl   arg: 1    2    3      4      5    6    7
1.1       todd      678: dnl
                    679: dodisk()
                    680: {
1.5       todd      681:        n=Add(Mult(${5},${7:-16}),${6}) count=0
1.1       todd      682:        RMlist="$RMlist {-$-}1{-$-}2? r{-$-}1{-$-}2?"
1.13      todd      683:        [ 0$7 -ne 8 ] && l="i j k l m n o p"
                    684:        for d in a b c d e f g h $l
1.1       todd      685:        do
                    686:                M {-$-}1{-$-}2$d        b {-$-}3 Add($n,$count) 640
                    687:                M r{-$-}1{-$-}2$d       c {-$-}4 Add($n,$count) 640
                    688:                let count=count+1
                    689:        done
                    690:        MKlist="$MKlist;chown root.operator {-$-}1{-$-}2? r{-$-}1{-$-}2?"
                    691: }
                    692: dnl
1.5       todd      693: dnl dodisk2(name,unit,blkmaj,chrmaj,unit,off[,stepping])
1.1       todd      694: dnl
                    695: dnl 1. name    - prefix name of the device
                    696: dnl 2. unit    - beginning unit number for block devices
                    697: dnl 3. blkmaj  - block device major number
                    698: dnl 4. chrmaj  - character device major number
                    699: dnl 5. unit    - beginning unit number for character devices
                    700: dnl 6. off     - offset from 0 for all minor numbers (see svnd for an example)
1.5       todd      701: dnl 7. step    - optional, defaults to 16, number of partitions per device
1.1       todd      702: dnl
                    703: dodisk2()
                    704: {
1.5       todd      705:        n=Add(Mult({-$-}5,${7:-16}),{-$-}6)
1.1       todd      706:        M {-$-}1{-$-}2a b {-$-}3 $n 640 operator
                    707:        M r{-$-}1{-$-}2a c {-$-}4 $n 640 operator
                    708:        n=Add($n,2)
                    709:        M {-$-}1{-$-}2c b {-$-}3 $n 640 operator
                    710:        M r{-$-}1{-$-}2c c {-$-}4 $n 640 operator
                    711: }
                    712:
                    713: # M name b/c major minor [mode] [group]
                    714: RMlist="rm -f"
                    715: MKlist=":"
                    716: mkl() {
                    717: dnl
                    718: dnl uncomment if multi mknod happens
                    719: dnl
                    720: ifelse(1,0,
                    721: [ "${mklist[{-$-}1]}" ] && mklist[{-$-}1]="${mklist[{-$-}1]} {-$-}2 {-$-}3 {-$-}4 {-$-}5" || {
                    722:           mklist[{-$-}1]="mknod -m {-$-}1 {-$-}2 {-$-}3 {-$-}4 {-$-}5"
                    723:           modes="$modes {-$-}1"
                    724:      },
                    725: dnl
                    726: dnl non multi mknod
                    727: dnl
                    728:  [ "${mklist[{-$-}1]}" ] && {
                    729:   mklist[{-$-}1]="${mklist[{-$-}1]};mknod -m {-$-}1 {-$-}2 {-$-}3 {-$-}4 {-$-}5"
                    730:  } || {
                    731:   mklist[{-$-}1]="mknod -m {-$-}1 {-$-}2 {-$-}3 {-$-}4 {-$-}5"
                    732:   modes="$modes {-$-}1"
                    733:  })
                    734: }
                    735: M() {
                    736:        RMlist="$RMlist {-$-}1"
                    737:        mkl ${5-666} {-$-}1 {-$-}2 {-$-}3 {-$-}4
                    738:        mklist="$mklist {-$-}1"
                    739:        G={-$-}{6:-wheel}
                    740:        [ "{-$-}7" ] && {
                    741:                MKlist="$MKlist;chown {-$-}7.{-$-}G {-$-}1"
                    742:        } || {
                    743:                case $G in
                    744:                wheel)g=0;;kmem)g=2;;operator)g=5;;tty)g=4;;dialer)g=117;;
                    745:                esac
                    746:                [ "${grplist[$g]}" ] && {
                    747:                        grplist[$g]="${grplist[$g]} {-$-}1"
                    748:                } || {
                    749:                        groups="$groups $g"
                    750:                        grplist[$g]="chgrp $G {-$-}1"
                    751:                }
                    752:        }
                    753:        return 0
                    754: }
                    755: divert(7)dnl
                    756: dnl
                    757: dnl there is no blank line at the end of etc.arch/MAKEDEV.md files, so add one
                    758: dnl on the following line:
                    759:
                    760: show_devs()dnl
                    761: dnl
                    762: divert(9)dnl
                    763: *)
                    764:        echo $i: unknown device
                    765:        ;;
                    766: esac
                    767: done
                    768: }
                    769: _recurse "$@"
                    770: if [ "$os" = "SunOS" ]; then
                    771:        eo=transform
                    772:        transform() {
                    773:                case $mode in
                    774:                600) mask=077;;
                    775:                640) mask=027;;
                    776:                660) mask=007;;
                    777:                644) mask=022;;
                    778:                666) mask=0;;
                    779:                440) mask=227;;
                    780:                esac
                    781:                echo `echo "$@"|sed \
                    782:                        's/mknod -m \([0-9]*\) /umask '$mask';mknod /;s/-m [0-9]* //g;\
                    783:                         s/operator/5/g;s/root.kmem/root.2/g;s/root\./root:/g'`
                    784:        }
                    785: fi
                    786: list="$RMlist"
                    787: for mode in $modes; do
                    788:        list="$list;${mklist[$mode]}"
                    789: done
                    790: for group in $groups; do
                    791:        list="$list;${grplist[$group]}"
                    792: done
                    793: list="$list;$MKlist"
                    794: if [ "$eo" = "echo" -o "$eo" = "transform" ]; then
                    795:        $eo "$list"
                    796: else
                    797:        echo "$list" | sh
                    798: fi
                    799: divert(3)dnl
                    800: dnl
                    801: R() {
                    802: for i in "$@"
                    803: do
                    804: U=`unt $i`
                    805: [ "$U" ] || U=0
                    806:
                    807: case $i in
                    808: dnl