Changeset 2651

Show
Ignore:
Timestamp:
08/25/08 10:23:47 (3 months ago)
Author:
kris
Message:

Updated the default kernel a bit more to fit the latest GENERIC in 7-Stable

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pcbsd/trunk/system-overlay/PCBSD/conf/PCBSD.i386

    r2629 r2651  
    3232options         INET                    # InterNETworking 
    3333options         INET6                   # IPv6 communications protocols 
     34options         SCTP                    # Stream Control Transmission Protocol 
    3435options         FFS                     # Berkeley Fast Filesystem 
    3536options         SOFTUPDATES             # Enable FFS soft updates support 
     
    5455options         PROCFS                  # Process filesystem (requires PSEUDOFS) 
    5556options         PSEUDOFS                # Pseudo-filesystem framework 
     57options         GEOM_PART_GPT           # GUID Partition Tables. 
     58options         GEOM_LABEL              # Provides labelization 
     59options         COMPAT_43TTY            # BSD 4.3 TTY compat [KEEP THIS!] 
    5660options         GEOM_UZIP               # Read-only compressed disks 
    57 options         GEOM_LABEL              # Provide labelization 
    58 options         COMPAT_43               # Compatible with BSD 4.3 [KEEP THIS!] 
    5961options         COMPAT_FREEBSD4         # Compatible with FreeBSD4 
    6062options         COMPAT_FREEBSD5         # Compatible with FreeBSD5 
    61 options         COMPAT_FREEBSD6         # Compatible with FreeBSD5 
     63options         COMPAT_FREEBSD6         # Compatible with FreeBSD6 
    6264options         SCSI_DELAY=5000         # Delay (in ms) before probing SCSI 
    6365options         KTRACE                  # ktrace(1) support 
     66options         STACK                   # stack(9) support 
    6467options         SYSVSHM                 # SYSV-style shared memory 
    6568options         SYSVMSG                 # SYSV-style message queues 
     
    6770options         _KPOSIX_PRIORITY_SCHEDULING # POSIX P1003_1B real-time extensions 
    6871options         KBD_INSTALL_CDEV        # install a CDEV entry in /dev 
    69 options         AHC_REG_PRETTY_PRINT    # Print register bitfields in debug 
    70                                         # output.  Adds ~128k to driver. 
    71 options         AHD_REG_PRETTY_PRINT    # Print register bitfields in debug 
    72                                         # output.  Adds ~215k to driver. 
    7372options         ADAPTIVE_GIANT          # Giant mutex is adaptive. 
     73options         STOP_NMI                # Stop CPUS using NMI instead of IPI 
     74options         AUDIT                   # Security event auditing 
     75 
     76# To make an SMP kernel, the next two lines are needed 
     77options         SMP                     # Symmetric MultiProcessor Kernel 
    7478device          apic                    # I/O APIC 
    75 options         SCTP                    # Stream Control Transmission Protocol 
     79 
     80# CPU frequency control 
     81device          cpufreq 
     82 
    7683 
    7784# Bus support. 
     
    95102device          ahb             # EISA AHA1742 family 
    96103device          ahc             # AHA2940 and onboard AIC7xxx devices 
     104options         AHC_REG_PRETTY_PRINT    # Print register bitfields in debug 
     105                                        # output.  Adds ~128k to driver. 
    97106device          ahd             # AHA39320/29320 and onboard AIC79xx devices 
     107options         AHD_REG_PRETTY_PRINT    # Print register bitfields in debug 
     108                                        # output.  Adds ~215k to driver. 
    98109device          amd             # AMD 53C974 (Tekram DC-390(T)) 
    99110device          hptiop          # Highpoint RocketRaid 3xxx series 
     
    160171device          sc 
    161172 
    162 # Enable this for the pcvt (VT220 compatible) console driver 
    163 #device         vt 
    164 #options        XSERVER         # support for X server on a vt console 
    165 #options        FAT_CURSOR      # start with block cursor 
    166  
    167173device          agp             # support several AGP chipsets 
    168174 
     
    192198# If you've got a "dumb" serial or parallel PCI card that is 
    193199# supported by the puc(4) glue driver, uncomment the following 
    194 # line to enable it (connects to the sio and/or ppc drivers): 
     200# line to enable it (connects to sio, uart and/or ppc drivers): 
    195201#device         puc 
    196202 
     
    258264device          ath             # Atheros pci/cardbus NIC's 
    259265device          ath_hal         # Atheros HAL (Hardware Access Layer) 
    260 device          ath_rate_sample # SampleRate tx rate control for ath 
     266device          ath_rate_sample # SampleRate tx rate control for ath 
    261267device          awi             # BayStack 660 and others 
    262268device          ral             # Ralink Technology RT2500 wireless NICs. 
     
    325331device          sbp             # SCSI over FireWire (Requires scbus and da) 
    326332device          fwe             # Ethernet over FireWire (non-standard!) 
    327  
    328  
    329 options         HZ=1000 
    330 options         DEVICE_POLLING 
     333device          fwip            # IP over FireWire (RFC 2734,3146) 
     334device          dcons           # Dumb console driver 
     335device          dcons_crom      # Configuration ROM for dcons 
     336 
    331337 
    332338# Enable IPFIREWALL / IPDIVERT for natd to work properly 
     
    348354options         ALTQ_NOPCC 
    349355 
    350 options         SMP 
    351  
    352