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

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

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