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

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

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