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

Annotation of src/sys/arch/luna68k/conf/INSTALL, Revision 1.28

1.28    ! rin         1: # $NetBSD: INSTALL,v 1.27 2019/04/26 22:46:03 sevan Exp $
1.1       tsutsui     2: #
                      3: # config for installation ramdisk kernel
                      4: #
1.24      mrg         5: include        "arch/luna68k/conf/std.luna68k"
1.1       tsutsui     6:
                      7: makeoptions    COPTS="-Os"             # Optimise for space. Implies -O2
                      8:
                      9: maxusers       4
                     10:
                     11: options        M68030
1.2       tsutsui    12: options        M68040
                     13: options        FPSP    # on m68040 to emulate some missing FP instructions
1.1       tsutsui    14:
                     15: options        MEMORY_DISK_HOOKS
                     16: options        MEMORY_DISK_IS_ROOT             # Force root on ram-disk
                     17: options        MEMORY_DISK_SERVER=0            # no userspace md(4) support
1.28    ! rin        18: options        MEMORY_DISK_ROOT_SIZE=4000      # 2.00 Megabytes
1.1       tsutsui    19: options        MEMORY_DISK_RBFLAGS=RB_SINGLE   # boot in single-user mode
                     20:
                     21: # Standard system options
                     22: #options       NTP                     # NTP phase/frequency locked loop
                     23: #options       KTRACE
                     24: #options       SYSVMSG                 # System V message queues
                     25: #options       SYSVSEM                 # System V semaphores
                     26: #options       SYSVSHM                 # System V shared memory
                     27: #options       USERCONF                # userconf(4) support
                     28: options        PIPE_SOCKETPAIR         # smaller, but slower pipe(2)
                     29: #options       SYSCTL_INCLUDE_DESCR    # Include sysctl descriptions in kernel
                     30:
1.25      sevan      31: # Alternate buffer queue strategies for better responsiveness under high
                     32: # disk I/O load.
1.1       tsutsui    33: #options       BUFQ_READPRIO
                     34: #options       BUFQ_PRIOCSCAN
                     35:
                     36: # Debugging options
                     37: #options       DDB
                     38: #options       DDB_HISTORY_SIZE=100    # enable history editing in DDB
1.18      joerg      39: #makeoptions   COPY_SYMTAB=1   # place DDB symbols in data segment
1.1       tsutsui    40: #options       DEBUG                   # extra kernel debugging support
                     41: #options       DIAGNOSTIC              # extra kernel sanity checking
                     42: #options       SCSIVERBOSE             # Verbose SCSI errors
                     43: #options       SCSIDEBUG
                     44: #makeoptions   DEBUG="-g"              # compile full symbol table
                     45:
                     46: # Compatibility options
1.24      mrg        47: #include       "conf/compat_netbsd09.config
                     48:
1.1       tsutsui    49: #options       COMPAT_AOUT_M68K # support for NetBSD a.out executables
                     50: #options       EXEC_AOUT       # support for a.out executables
                     51: options                COMPAT_BSDPTY   # /dev/[pt]ty?? ptys.
                     52:
                     53: # Filesystem options
                     54: file-system    FFS             # ufs file system
                     55: #file-system   LFS             # log-structured file system
                     56: file-system    NFS             # nfs client support
                     57: file-system    MFS
                     58: file-system    CD9660          # ISO 9660 + Rock Ridge file system
                     59: #file-system   MSDOSFS         # MS-DOS FAT file system
                     60: #file-system   KERNFS          # /kern
                     61: #file-system   PROCFS          # /proc
                     62: #file-system   FDESC           # /dev/fd/*
                     63: #file-system   NULLFS          # loopback file system
                     64: #file-system   UMAPFS          # NULLFS + uid and gid remapping
                     65: #file-system   UNION           # union file system
                     66: #file-system   CODA            # Coda File System; also needs vcode (below)
                     67: #file-system   PTYFS           # /dev/pts/N support
                     68: #file-system   TMPFS           # Efficient memory file-system
                     69: #file-system   UDF             # experimental - OSTA UDF CD/DVD file-system
                     70:
                     71: #options       NFSSERVER       # nfs server support
                     72: #options       QUOTA           # legacy UFS quotas
                     73: #options       QUOTA2          # new, in-filesystem UFS quotas
                     74: #options       FFS_EI          # ffs endian independent support
1.4       dholland   75: options        WAPBL           # File system journaling support
1.1       tsutsui    76: options        FFS_NO_SNAPSHOT # No FFS snapshot support
                     77: #options       UFS_DIRHASH     # UFS Large Directory Hashing - Experimental
                     78:
                     79: # Networking options
                     80: options        INET            # IP protocol stack support
                     81: #options       INET6           # IPV6
                     82: #options       IPSEC           # IP security
                     83: #options       IPSEC_DEBUG     # debug for IP security
                     84: #options       GATEWAY         # IP packet forwarding
                     85: #options       MROUTING        # IP multicast routing
                     86: #options       PIM             # Protocol Independent Multicast
                     87: #options       NETATALK        # AppleTalk networking protocols
                     88: #options       PPP_BSDCOMP     # BSD-Compress compression support for PPP
                     89: #options       PPP_DEFLATE     # Deflate compression support for PPP
                     90: #options       PPP_FILTER      # Active filter support for PPP (requires bpf)
                     91: options        NFS_BOOT_DHCP   # superset of BOOTP
                     92: #options       TCP_DEBUG       # Record last TCP_NDEBUG packets with SO_DEBUG
                     93:
                     94: #options       ALTQ            # Manipulate network interfaces' output queues
                     95: #options       ALTQ_BLUE       # Stochastic Fair Blue
                     96: #options       ALTQ_CBQ        # Class-Based Queueing
                     97: #options       ALTQ_CDNR       # Diffserv Traffic Conditioner
                     98: #options       ALTQ_FIFOQ      # First-In First-Out Queue
                     99: #options       ALTQ_FLOWVALVE  # RED/flow-valve (red-penalty-box)
                    100: #options       ALTQ_HFSC       # Hierarchical Fair Service Curve
                    101: #options       ALTQ_LOCALQ     # Local queueing discipline
                    102: #options       ALTQ_PRIQ       # Priority Queueing
                    103: #options       ALTQ_RED        # Random Early Detection
                    104: #options       ALTQ_RIO        # RED with IN/OUT
                    105: #options       ALTQ_WFQ        # Weighted Fair Queueing
                    106:
                    107: # WS console uses SUN or VT100 terminal emulation
                    108: options        WSEMUL_VT100
1.7       abs       109: options        WSDISPLAY_DEFAULTSCREENS=1
                    110: #options       WSDISPLAY_COMPAT_USL            # wsconscfg VT handling
1.6       tsutsui   111: options        FONT_OMRON12x20
1.1       tsutsui   112:
                    113: config         netbsd root on ? type ?
                    114:
                    115: mainbus0 at root
                    116:
                    117: clock0 at mainbus0
                    118:
1.21      tsutsui   119: # LCD on front panel
                    120: lcd0   at mainbus0
                    121:
1.1       tsutsui   122: # uPD7201 SIO
                    123: sio0   at mainbus0
                    124: siotty0        at sio0                 # ttya
                    125: ws0    at sio0                 # port for keyboard and mouse
                    126: # AM7990 LANCE
                    127: le0    at mainbus0
                    128: # MB89532 SPC
                    129: spc0   at mainbus0
1.2       tsutsui   130: spc1   at mainbus0             # 2nd SCSI on LUNA-II
1.1       tsutsui   131: # framebuffer
                    132: fb0    at mainbus0             # 16 or 256 pseudo color
                    133:
                    134: # Workstation Console attachments
                    135: wsdisplay*     at fb?
                    136: wskbd*         at ws? console ?
                    137: #wsmouse*      at ws?
                    138:
                    139: # SCSI bus support
                    140: scsibus* at spc?
                    141:
                    142: # SCSI devices
                    143: sd* at scsibus? target ? lun ?         # SCSI disks
                    144: st* at scsibus? target ? lun ?         # SCSI tapes
                    145: cd* at scsibus? target ? lun ?         # SCSI CD-ROMs
                    146: #ch* at scsibus? target ? lun ?                # SCSI changer devices
                    147: #ss* at scsibus? target ? lun ?                # SCSI scanners
                    148: #uk* at scsibus? target ? lun ?                # unknown SCSI devices
                    149:
                    150: #
                    151: # accept filters
                    152: #pseudo-device   accf_data             # "dataready" accept filter
                    153: #pseudo-device   accf_http             # "httpready" accept filter
                    154:
                    155: pseudo-device  bpfilter                # Berkeley Packet Filter
                    156: #pseudo-device carp                    # Common Address Redundancy Protocol
1.11      christos  157: #pseudo-device ccd                     # concatenated and striped disks
                    158: #pseudo-device cgd                     # cryptographic disks
1.1       tsutsui   159: #pseudo-device gre                     # generic L3 over IP tunnel
1.26      maxv      160: #pseudo-device npf                     # NPF packet filter
1.11      christos  161: pseudo-device  loop                    # loopback interface; required
1.1       tsutsui   162: pseudo-device  md                      # memory disk device
                    163: #pseudo-device ppp                     # PPP interfaces
                    164: #pseudo-device pppoe                   # PPP over Ethernet (RFC 2516)
                    165: pseudo-device  pty                     # pseudo-terminals
1.12      christos  166: #pseudo-device raid                    # RAIDframe disk driver
1.1       tsutsui   167: #pseudo-device fss                     # file system snapshot device
                    168: #pseudo-device sl                      # SLIP interfaces
                    169: #pseudo-device tun                     # Network "tunnel" device
                    170: #pseudo-device tap                     # virtual Ethernet
                    171: #pseudo-device vlan                    # IEEE 802.1q encapsulation
                    172: #pseudo-device bridge                  # simple inter-network bridging
                    173: #options       BRIDGE_IPF              # bridge uses IP/IPv6 pfil hooks too
                    174: #pseudo-device agr                     # IEEE 802.3ad link aggregation
                    175: #pseudo-device vnd                     # disk-like interface to files
                    176: #options       VND_COMPRESSION         # compressed vnd(4)
                    177: #pseudo-device clockctl                # user control of clock subsystem
                    178: #pseudo-device ksyms                   # /dev/ksyms
                    179:
                    180: # Veriexec
1.27      sevan     181: # include "dev/veriexec.config"

CVSweb <webmaster@jp.NetBSD.org>