diff options
author | mav <mav@FreeBSD.org> | 2009-10-26 10:35:16 +0000 |
---|---|---|
committer | mav <mav@FreeBSD.org> | 2009-10-26 10:35:16 +0000 |
commit | 984a5d433ffe0e65073d9efe3d5b4e8ad2fda46c (patch) | |
tree | f46b0b9731aabf82cecd9f5d1977e15a0df009a0 | |
parent | c9254b0a9daa5e5ca6bba501ef30bfaee9725b26 (diff) | |
download | FreeBSD-src-984a5d433ffe0e65073d9efe3d5b4e8ad2fda46c.zip FreeBSD-src-984a5d433ffe0e65073d9efe3d5b4e8ad2fda46c.tar.gz |
Document new modularised ATA kernel options.
PR: kern/133162
MFC after: 3 days
-rw-r--r-- | sys/conf/NOTES | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/sys/conf/NOTES b/sys/conf/NOTES index deab220..55e0f90 100644 --- a/sys/conf/NOTES +++ b/sys/conf/NOTES @@ -1657,6 +1657,10 @@ device siis # The 'ATA' driver supports all ATA and ATAPI devices, including PC Card # devices. You only need one "device ata" for it to find all # PCI and PC Card ATA/ATAPI devices on modern machines. +# Alternatively, individual bus and chipset drivers may be chosen by using +# the 'atacore' driver then selecting the drivers on a per vendor basis. +# For example to build a system which only supports a VIA chipset, +# omit 'ata' and include the 'atacore', 'atapci' and 'atavia' drivers. device ata device atadisk # ATA disk drives device ataraid # ATA RAID drives @@ -1665,6 +1669,39 @@ device atapifd # ATAPI floppy drives device atapist # ATAPI tape drives device atapicam # emulate ATAPI devices as SCSI ditto via CAM # needs CAM to be present (scbus & pass) + +# Modular ATA +#device atacore # Core ATA functionality +#device atacard # CARDBUS support +#device atabus # PC98 cbus support +#device ataisa # ISA bus support +#device atapci # PCI bus support; only generic chipset support + +# PCI ATA chipsets +#device ataahci # AHCI SATA +#device ataacard # ACARD +#device ataacerlabs # Acer Labs Inc. (ALI) +#device ataadaptec # Adaptec +#device ataamd # American Micro Devices (AMD) +#device ataati # ATI +#device atacenatek # Cenatek +#device atacypress # Cypress +#device atacyrix # Cyrix +#device atahighpoint # HighPoint +#device ataintel # Intel +#device ataite # Integrated Technology Inc. (ITE) +#device atajmicron # JMicron +#device atamarvell # Marvell +#device atamicron # Micron +#device atanational # National +#device atanetcell # NetCell +#device atanvidia # nVidia +#device atapromise # Promise +#device ataserverworks # ServerWorks +#device atasiliconimage # Silicon Image Inc. (SiI) (formerly CMD) +#device atasis # Silicon Integrated Systems Corp.(SiS) +#device atavia # VIA Technologies Inc. + # # For older non-PCI, non-PnPBIOS systems, these are the hints lines to add: hint.ata.0.at="isa" |