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

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

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