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

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

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