[BACK]Return to GENERIC CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / arch / macppc / conf

Annotation of src/sys/arch/macppc/conf/GENERIC, Revision 1.112

1.112   ! itohy       1: #      $NetBSD: GENERIC,v 1.111 2001/11/03 17:16:17 tsutsui Exp $
1.1       tsubai      2: #
1.38      tsubai      3: #      GENERIC -- everything that's currently supported
1.1       tsubai      4: #
                      5:
1.11      thorpej     6: include                "arch/macppc/conf/std.macppc"
1.48      hubertf     7:
1.112   ! itohy       8: #ident                 "GENERIC-$Revision: 1.111 $"
1.1       tsubai      9:
                     10: maxusers       32
                     11:
                     12: # Standard system options
                     13: #options       UCONSOLE        # users can use TIOCCONS (for xconsole)
                     14: #options       INSECURE        # disable kernel security levels
1.98      wiz        15:
                     16: options        RTC_OFFSET=0    # hardware clock is this many mins. west of GMT
1.1       tsubai     17: #options       NTP             # NTP phase/frequency locked loop
1.20      tsubai     18: options        KTRACE          # system call tracing via ktrace(1)
1.1       tsubai     19:
                     20: options        SYSVMSG         # System V message queues
                     21: options        SYSVSEM         # System V semaphores
1.104     tsubai     22: #options       SEMMNI=10       # number of semaphore identifiers
                     23: #options       SEMMNS=60       # number of semaphores in system
                     24: #options       SEMUME=10       # max number of undo entries per process
                     25: #options       SEMMNU=30       # number of undo structures in system
1.1       tsubai     26: options        SYSVSHM         # System V shared memory
                     27: #options       SHMMAXPGS=1024  # 1024 pages is the default
                     28:
                     29: options        LKM             # loadable kernel modules
                     30:
                     31: # Diagnostic/debugging support options
                     32: options        DIAGNOSTIC      # cheap kernel consistency checks
                     33: #options       DEBUG           # expensive debugging checks/support
                     34: options        DDB             # in-kernel debugger
1.81      mycroft    35: options        DDB_HISTORY_SIZE=512    # enable history editing in DDB
1.1       tsubai     36: options        TRAP_PANICWAIT
                     37:
                     38: #makeoptions   DEBUG="-g"      # compile full symbol table
                     39:
                     40: # Compatibility options
                     41: options        COMPAT_09       # NetBSD 0.9,
                     42: options        COMPAT_10       # NetBSD 1.0,
                     43: options        COMPAT_11       # NetBSD 1.1,
                     44: options        COMPAT_12       # NetBSD 1.2,
                     45: options        COMPAT_13       # NetBSD 1.3,
1.31      augustss   46: options        COMPAT_14       # NetBSD 1.4,
1.1       tsubai     47: options        COMPAT_43       # and 4.3BSD
                     48: #options       COMPAT_386BSD_MBRPART # recognize old partition ID
1.110     manu       49: #options       COMPAT_LINUX    # Linux binary compatibility
1.103     abs        50: #options       TCP_COMPAT_42   # 4.2BSD TCP/IP bug compat. Not recommended.
1.1       tsubai     51:
                     52: # File systems
                     53: file-system    FFS             # UFS
                     54: file-system    EXT2FS          # second extended file system (linux)
                     55: file-system    LFS             # log-structured file system
                     56: file-system    MFS             # memory file system
                     57: file-system    NFS             # Network File System client
                     58: file-system    CD9660          # ISO 9660 + Rock Ridge file system
                     59: file-system    MSDOSFS         # MS-DOS file system
                     60: file-system    FDESC           # /dev/fd
                     61: file-system    KERNFS          # /kern
                     62: file-system    NULLFS          # loopback file system
1.47      wrstuden   63: file-system    OVERLAY         # overlay file system
1.1       tsubai     64: file-system    PORTAL          # portal filesystem (still experimental)
                     65: file-system    PROCFS          # /proc
                     66: file-system    UMAPFS          # NULLFS + uid and gid remapping
                     67: file-system    UNION           # union file system
                     68:
                     69: # File system options
                     70: options        QUOTA           # UFS quotas
                     71: #options       FFS_EI          # FFS Endian Independant support
1.104     tsubai     72: options        SOFTDEP         # FFS soft updates support.
1.1       tsubai     73: options        NFSSERVER       # Network File System server
                     74: #options       EXT2FS_SYSTEM_FLAGS # makes ext2fs file flags (append and
                     75:                                # immutable) behave as system flags.
1.8       thorpej    76:
                     77: options        NFS_BOOT_DHCP   # Support DHCP NFS root
1.43      itojun     78:
1.1       tsubai     79: # Networking options
                     80: #options       GATEWAY         # packet forwarding
                     81: options        INET            # IP + ICMP + TCP + UDP
1.43      itojun     82: options        INET6           # IPV6
                     83: #options       IPSEC           # IP security
                     84: #options       IPSEC_ESP       # IP security (encryption part; define w/IPSEC)
                     85: #options       IPSEC_DEBUG     # debug for IP security
1.1       tsubai     86: #options       MROUTING        # IP multicast routing
                     87: #options       NS              # XNS
                     88: #options       NSIP            # XNS tunneling over IP
                     89: #options       ISO,TPIP        # OSI
                     90: #options       EON             # OSI tunneling over IP
                     91: #options       CCITT,LLC,HDLC  # X.25
                     92: options        NETATALK        # AppleTalk networking protocols
1.30      christos   93: options        PPP_BSDCOMP     # BSD-Compress compression support for PPP
                     94: options        PPP_DEFLATE     # Deflate compression support for PPP
                     95: options        PPP_FILTER      # Active filter support for PPP (requires bpf)
                     96: options        PFIL_HOOKS      # pfil(9) packet filter hooks
                     97: options        IPFILTER_LOG    # ipmon(8) log support
1.103     abs        98: #options       TCP_DEBUG       # Record last TCP_NDEBUG packets with SO_DEBUG
1.1       tsubai     99:
                    100: # These options enable verbose messages for several subsystems.
                    101: # Warning, these may compile large string tables into the kernel!
                    102: options        PCIVERBOSE      # verbose PCI device autoconfig messages
1.64      augustss  103: options        MIIVERBOSE      # verbose PHY autoconfig messages
1.58      cgd       104: #options       PCI_CONFIG_DUMP # verbosely dump PCI config space
1.1       tsubai    105: options        SCSIVERBOSE     # human readable SCSI error messages
1.22      tsubai    106: options        USBVERBOSE      # verbose USB device autoconfig messages
1.1       tsubai    107:
1.14      tsubai    108: # wscons options
                    109: #options       WSEMUL_SUN              # sun terminal emulation
                    110: options        WSEMUL_VT100            # VT100 / VT220 emulation
1.53      tsubai    111: options        FONT_GALLANT12x22
1.14      tsubai    112:
1.1       tsubai    113: # Kernel root file system and dump configuration.
                    114: config         netbsd  root on ? type ?
                    115:
                    116: #
                    117: # Device configuration
                    118: #
                    119:
1.26      tsubai    120: mainbus* at root
1.1       tsubai    121:
1.26      tsubai    122: cpu*   at mainbus?
1.51      tsubai    123: bandit*        at mainbus?
                    124: grackle* at mainbus?
1.54      tsubai    125: uninorth* at mainbus?
1.51      tsubai    126:
                    127: pci*   at bandit? bus ?
                    128: pci*   at grackle? bus ?
1.54      tsubai    129: pci*   at uninorth? bus ?
1.26      tsubai    130: pci*   at ppb? bus ?
1.1       tsubai    131:
                    132: pchb*  at pci? dev ? function ?        # PCI-Host bridges
1.25      tsubai    133: ppb*   at pci? dev ? function ?        # PCI-PCI bridges
1.6       tsubai    134:
1.27      tsubai    135: de*    at pci? dev ? function ?        # DEC 21x4x-based Ethernet
1.37      matt      136: fpa*   at pci? dev ? function ?        # DEC PCI FDDI (DEFPA) Controller
1.26      tsubai    137: ep*    at pci? dev ? function ?        # 3Com 3c59x
1.66      tsutsui   138: epic*  at pci? dev ? function ?        # SMC EPIC/100 Ethernet
1.105     hubertf   139: ex*    at pci? dev ? function ?        # 3Com 90x[BC]
1.65      tsutsui   140: fxp*   at pci? dev ? function ?        # Intel EtherExpress PRO 10+/100B
1.106     eeh       141: lmc*   at pci? dev ? function ?        # Lan Media Corp SSI/HSSI/DS3
1.1       tsubai    142: ne*    at pci? dev ? function ?        # NE2000-compatible Ethernet
1.63      tsubai    143: rtk*   at pci? dev ? function ?        # Realtek 8129/8139
1.78      tsutsui   144: sip*   at pci? dev ? function ?        # SiS 900/7016 Ethernet
1.89      tsutsui   145: tlp*   at pci? dev ? function ?        # DECchip 21x4x (and clones) Ethernet
1.100     matt      146: options        TLP_MATCH_21040
                    147: options        TLP_MATCH_21041
                    148: options        TLP_MATCH_21140
                    149: options        TLP_MATCH_21142
1.16      dante     150: adv*   at pci? dev ? function ?        # AdvanSys 1200[A,B], 9xx[U,UA] SCSI
1.107     briggs    151: adw*   at pci? dev ? function ?        # AdvanSys 9x0UW[D], 3940U[2,3]W SCSI
1.26      tsubai    152: ahc*   at pci? dev ? function ?        # Adaptec 294x, aic78x0 SCSI
1.29      wrstuden  153: bha*   at pci? dev ? function ?        # BusLogic 9xx SCSI
1.99      tsutsui   154: iha*   at pci? dev ? function ?        # Initio INIC-940/950 SCSI
1.86      mjacob    155: isp*   at pci? dev ? function ?        # Qlogic ISP 10x0/2xx0 SCSI/Fibre Chan
1.111     tsutsui   156: pcscp* at pci? dev ? function ?        # AMD Am53c974 PCscsi-PCI SCSI
1.82      matt      157: siop*  at pci? dev ? function ?        # NCR 53c8xx SCSI
1.111     tsutsui   158: trm*   at pci? dev ? function ?        # Tekram DC-395U/UW/F, DC-315/U SCSI
1.26      tsubai    159: ofb*   at pci? dev ? function ?        # Generic Open Firmware Framebuffer
1.28      wrstuden  160: pciide*        at pci? dev ? function ?
1.52      tsubai    161: cbb*   at pci? dev ? function ?        # PCI-CardBus bridge
1.59      tsubai    162: gm*    at pci? dev ? function ?        # gmac ethernet
1.38      tsubai    163: obio0  at pci? dev ? function ?
1.26      tsubai    164: #macofcons0 at pci? dev ? function ?   # OpenFirmware console (for debugging)
1.16      dante     165:
1.104     tsubai    166: bmtphy*        at mii? phy ?                   # Broadcom BCM5201/BCM5202 PHYs
1.50      tsubai    167: exphy* at mii? phy ?                   # 3Com internal PHYs
                    168: icsphy*        at mii? phy ?                   # Integrated Circuit Systems ICS1890
                    169: inphy* at mii? phy ?                   # Intel 82555 PHYs
                    170: iophy* at mii? phy ?                   # Intel 82553 PHYs
                    171: lxtphy*        at mii? phy ?                   # Level One LXT-970 PHYs
1.26      tsubai    172: nsphy* at mii? phy ?                   # NS83840 PHYs
1.50      tsubai    173: nsphyter* at mii? phy ?                        # NS83843 PHYs
                    174: qsphy* at mii? phy ?                   # Quality Semiconductor QS6612 PHYs
                    175: sqphy* at mii? phy ?                   # Seeq 80220/80221/80223 PHYs
                    176: tlphy* at mii? phy ?                   # ThunderLAN PHYs
                    177: tqphy* at mii? phy ?                   # TDK Semiconductor PHYs
                    178: ukphy* at mii? phy ?                   # generic unknown PHYs
1.67      wrstuden  179:
1.68      tsubai    180: # PCI serial interfaces
                    181: cy*    at pci? dev ? function ?        # Cyclades Cyclom-Y serial boards
1.67      wrstuden  182: #cz*   at pci? dev ? function ?        # Cyclades-Z multi-port serial boards
1.13      tsubai    183:
1.26      tsubai    184: bm*    at obio?                        # bmac ethernet
                    185: mc*    at obio?                        # MACE ethernet
                    186: esp*   at obio? flags 0x00ff           # 53c9x SCSI
                    187: mesh*  at obio? flags 0xffff           # MESH SCSI
                    188: nvram* at obio?                        # nvram
                    189: adb*   at obio?                        # Apple Desktop Bus
1.13      tsubai    190: aed*   at adb?                         # ADB Event Device
                    191: akbd*  at adb?                         # ADB keyboard
                    192: ams*   at adb?                         # ADB mouse
1.52      tsubai    193: abtn*  at adb?
1.26      tsubai    194: zsc*   at obio?
                    195: zstty* at zsc? channel ?
1.33      tsubai    196: mediabay* at obio?
                    197: wdc*   at mediabay? flags 0
1.79      mycroft   198: awacs* at obio?                        # Apple audio device
1.97      tsubai    199: wi*    at obio?                        # AirMac
1.38      tsubai    200:
                    201: cardslot* at cbb?
                    202: cardbus* at cardslot?
                    203: pcmcia*        at cardslot?
                    204:
1.39      tsubai    205: com*   at pcmcia? function ?           # Modems and serial cards
1.38      tsubai    206: wdc*   at pcmcia? function ?           # PCMCIA IDE controllers
                    207: ep*    at pcmcia? function ?           # 3Com 3c589 and 3c562 Ethernet
                    208: mbe*   at pcmcia? function ?           # MB8696x based Ethernet
                    209: ne*    at pcmcia? function ?           # NE2000-compatible Ethernet
1.93      tsubai    210: awi*   at pcmcia? function ?           # BayStack 650/660 (802.11FH/DS)
1.97      tsubai    211: wi*    at pcmcia? function ?           # Lucent WaveLan IEEE (802.11)
1.52      tsubai    212: ex*    at cardbus? dev ? function ?    # 3Com 3C575TX
                    213: tlp*   at cardbus? dev ? function ?    # DECchip 21143
1.62      haya      214: rtk*   at cardbus? dev ? function ?    # Realtek 8129/8139
1.13      tsubai    215:
1.26      tsubai    216: wsdisplay0 at ofb? console ?
1.21      tsubai    217: wskbd0 at akbd? console ?
1.41      mycroft   218: wsmouse0 at ams?
1.14      tsubai    219:
1.26      tsubai    220: scsibus* at adv?
                    221: scsibus* at ahc?
1.29      wrstuden  222: scsibus* at bha?
1.99      tsutsui   223: scsibus* at iha?
1.86      mjacob    224: scsibus* at isp?
1.26      tsubai    225: scsibus* at esp?
                    226: scsibus* at mesh?
                    227: scsibus* at pcscp?
1.82      matt      228: scsibus* at siop?
1.111     tsutsui   229: scsibus* at trm?
1.1       tsubai    230:
                    231: sd*    at scsibus? target ? lun ?      # SCSI disks
                    232: st*    at scsibus? target ? lun ?      # SCSI tape drives
                    233: cd*    at scsibus? target ? lun ?      # SCSI CD-ROM drives
                    234: ch*    at scsibus? target ? lun ?      # SCSI autochangers
                    235: ss*    at scsibus? target ? lun ?      # SCSI scanners
                    236: uk*    at scsibus? target ? lun ?      # SCSI unknown
1.20      tsubai    237:
1.69      tsubai    238: wdc*   at obio? flags 0x1
1.28      wrstuden  239: wd*    at pciide? channel ? drive ?
1.20      tsubai    240: wd*    at wdc? channel ? drive ? flags 0x0000
                    241:
1.88      tsutsui   242: atapibus* at pciide? channel ?
1.20      tsubai    243: atapibus* at wdc? channel ?
                    244:
                    245: cd*    at atapibus? drive ? flags 0x0000       # ATAPI CD-ROM drives
                    246: sd*    at atapibus? drive ? flags 0x0000       # ATAPI disk drives
                    247: uk*    at atapibus? drive ? flags 0x0000       # ATAPI unknown
1.22      tsubai    248:
                    249: # PCI USB controllers
1.93      tsubai    250: ohci*  at pci? dev ? function ?                        # Open Host Controller
1.22      tsubai    251:
1.93      tsubai    252: usb*   at ohci?                                        # USB bus support
                    253: uhub*  at usb?                                         # USB Hubs
1.22      tsubai    254: uhub*  at uhub? port ? configuration ? interface ?
                    255:
1.93      tsubai    256: ums*   at uhub? port ? configuration ? interface ?     # USB Mice
1.41      mycroft   257: wsmouse* at ums?
1.22      tsubai    258:
1.93      tsubai    259: ukbd*  at uhub? port ? configuration ? interface ?     # USB Keyboards
1.41      mycroft   260: wskbd* at ukbd? console ?
1.22      tsubai    261:
1.93      tsubai    262: uhid*  at uhub? port ? configuration ? interface ?     # USB Generic HID
                    263: ulpt*  at uhub? port ? configuration ? interface ?     # USB Printer
1.34      augustss  264:
1.93      tsubai    265: umodem*        at uhub? port ? configuration ?                 # USB Modem
1.49      augustss  266: ucom*  at umodem?
1.35      thorpej   267:
1.93      tsubai    268: umass* at uhub? port ? configuration ? interface ?     # USB Mass Storage
1.60      augustss  269: atapibus* at umass? channel ?
1.35      thorpej   270: scsibus* at umass? channel ?
1.36      augustss  271:
1.93      tsubai    272: uaudio*        at uhub? port ? configuration ?                 # USB audio
1.46      augustss  273:
                    274: # USB Ethernet adapters
                    275: aue*   at uhub? port ?         # ADMtek AN986 Pegasus based adapters
                    276: cue*   at uhub? port ?         # CATC USB-EL1201A based adapters
                    277: kue*   at uhub? port ?         # Kawasaki LSI KL5KUSB101B based adapters
1.83      augustss  278:
1.93      tsubai    279: uscanner* at uhub? port ?                              # USB scanners
                    280: uyap* at uhub? port ?                                  # Y@P firmware loader
                    281: ugen*  at uhub? port ? configuration ? interface ?     # USB Generic driver
1.73      wrstuden  282:
1.84      matt      283: # PCI IEEE1394 controllers
                    284: fwohci*        at pci? dev ? function ?        # IEEE1394 Open Host Controller
1.85      kei       285: #fwlynx* at pci? dev ? function ?      # IEEE1394 TI Lynx Controller
1.84      matt      286: fw*    at fwbus?                       # IP over 1394
                    287:
                    288: # IEEE1394 nodes
                    289: #fwnode* at fwbus? oui ? devhi ? devlo ?
                    290: #scsibus* at fwnode?
                    291:
1.73      wrstuden  292: # Audio Devices
                    293:
                    294: # PCI audio devices
                    295: #clcs* at pci? dev ? function ?        # Cirrus Logic CS4280
                    296: #cmpci*        at pci? dev ? function ?        # C-Media CMI8338/8738
                    297: eap*   at pci? dev ? function ?        # Ensoniq AudioPCI
                    298: #eso*  at pci? dev ? function ?        # ESS Solo-1 PCI AudioDrive
                    299: #fms*  at pci? dev ? function ?        # Forte Media FM801
                    300: #sv*   at pci? dev ? function ?        # S3 SonicVibes
                    301:
                    302: # OPL[23] FM synthesizers
1.112   ! itohy     303: #opl*  at cmpci? flags 1
1.73      wrstuden  304: #opl*  at eso?
                    305: #opl*  at fms?
                    306:
                    307: # Audio support
1.80      mycroft   308: audio* at awacs?
1.73      wrstuden  309: #audio*        at clcs?
                    310: #audio*        at cmpci?
                    311: audio* at eap?
                    312: #audio*        at eso?
                    313: #audio*        at fms?
                    314: #audio*        at sv?
                    315: audio* at uaudio?
                    316:
                    317: # MPU 401 UARTs
1.112   ! itohy     318: #mpu*  at cmpci?
1.73      wrstuden  319: #mpu*  at eso?
                    320: #mpu*  at fms?
                    321:
                    322: # MIDI support
                    323: midi*  at eap?                 # 137[01] MIDI port
                    324: #midi* at mpu?                 # MPU 401
1.1       tsubai    325:
                    326: pseudo-device  vnd             4       # disk-like interface to files
                    327: pseudo-device  ccd             4       # concatenated/striped disk devices
1.18      tsubai    328: #pseudo-device raid            4       # RAIDframe disk driver
1.57      simonb    329: #options       RAID_AUTOCONFIG         # auto-configuration of RAID components
1.4       tsubai    330: pseudo-device  md              1       # memory disk device
1.1       tsubai    331: pseudo-device  loop                    # network loopback
                    332: pseudo-device  bpfilter        8       # packet filter
                    333: pseudo-device  ipfilter                # IP filter (firewall) and NAT
                    334: pseudo-device  ppp             2       # Point-to-Point Protocol
                    335: pseudo-device  sl              2       # Serial Line IP
                    336: pseudo-device  tun             4       # network tunneling over tty
1.19      hwr       337: #pseudo-device gre             2       # generic L3 over IP tunnel
1.43      itojun    338: pseudo-device  gif             4       # IPv[46] over IPv[46] tunnel (RFC1933)
                    339: #pseudo-device faith           1       # IPv[46] tcp relay translation i/f
1.61      itojun    340: #pseudo-device stf             1       # 6to4 IPv6 over IPv4 encapsulation
1.87      bouyer    341: pseudo-device  vlan                    # IEEE 802.1q encapsulation
1.109     atatat    342: #pseudo-device bridge                  # simple inter-network bridging
1.77      jdolecek  343: pseudo-device  pty                     # pseudo-terminals
1.75      tsubai    344: pseudo-device  rnd                     # /dev/random and in-kernel generator
1.85      kei       345: pseudo-device  openfirm                # /dev/openfirm

CVSweb <webmaster@jp.NetBSD.org>