svn commit: r282921 - in head/sys: amd64/conf i386/conf

Jim Harris jimharris at FreeBSD.org
Thu May 14 20:19:23 UTC 2015


Author: jimharris
Date: Thu May 14 20:19:22 2015
New Revision: 282921
URL: https://svnweb.freebsd.org/changeset/base/282921

Log:
  Add nvme and nvd drivers to GENERIC for amd64 and i386.
  
  MFC after:	3 days
  Sponsored by:	Intel

Modified:
  head/sys/amd64/conf/GENERIC
  head/sys/i386/conf/GENERIC

Modified: head/sys/amd64/conf/GENERIC
==============================================================================
--- head/sys/amd64/conf/GENERIC	Thu May 14 20:17:53 2015	(r282920)
+++ head/sys/amd64/conf/GENERIC	Thu May 14 20:19:22 2015	(r282921)
@@ -173,6 +173,10 @@ device		mrsas			# LSI/Avago MegaRAID SAS
 #device		pst			# Promise Supertrak SX6000
 device		twe			# 3ware ATA RAID
 
+# NVM Express (NVMe) support
+device		nvme			# base NVMe driver
+device		nvd			# expose NVMe namespaces as disks, depends on nvme
+
 # atkbdc0 controls both the keyboard and the PS/2 mouse
 device		atkbdc			# AT keyboard controller
 device		atkbd			# AT keyboard

Modified: head/sys/i386/conf/GENERIC
==============================================================================
--- head/sys/i386/conf/GENERIC	Thu May 14 20:17:53 2015	(r282920)
+++ head/sys/i386/conf/GENERIC	Thu May 14 20:19:22 2015	(r282921)
@@ -177,6 +177,10 @@ device		mrsas			# LSI/Avago MegaRAID SAS
 device		pst			# Promise Supertrak SX6000
 device		twe			# 3ware ATA RAID
 
+# NVM Express (NVMe) support
+device		nvme			# base NVMe driver
+device		nvd			# expose NVMe namespace as disks, depends on nvme
+
 # atkbdc0 controls both the keyboard and the PS/2 mouse
 device		atkbdc			# AT keyboard controller
 device		atkbd			# AT keyboard


More information about the svn-src-head mailing list