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

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

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