svn commit: r300405 - in projects/vmware_pvscsi/sys/modules/vmware: . pvscsi

Garrett Cooper ngie at FreeBSD.org
Sun May 22 07:50:11 UTC 2016


Author: ngie
Date: Sun May 22 07:50:10 2016
New Revision: 300405
URL: https://svnweb.freebsd.org/changeset/base/300405

Log:
  Rename sys/modules/vmware/vmw_pvscsi to sys/modules/vmware/pvscsi to
  reduce redundancy in the name

Added:
  projects/vmware_pvscsi/sys/modules/vmware/pvscsi/
  projects/vmware_pvscsi/sys/modules/vmware/pvscsi/Makefile   (contents, props changed)
Modified:
  projects/vmware_pvscsi/sys/modules/vmware/Makefile

Modified: projects/vmware_pvscsi/sys/modules/vmware/Makefile
==============================================================================
--- projects/vmware_pvscsi/sys/modules/vmware/Makefile	Sun May 22 07:39:25 2016	(r300404)
+++ projects/vmware_pvscsi/sys/modules/vmware/Makefile	Sun May 22 07:50:10 2016	(r300405)
@@ -23,6 +23,7 @@
 # SUCH DAMAGE.
 #
 
-SUBDIR=	vmxnet3
+SUBDIR+=	pvscsi
+SUBDIR+=	vmxnet3
 
 .include <bsd.subdir.mk>

Added: projects/vmware_pvscsi/sys/modules/vmware/pvscsi/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ projects/vmware_pvscsi/sys/modules/vmware/pvscsi/Makefile	Sun May 22 07:50:10 2016	(r300405)
@@ -0,0 +1,11 @@
+# $FreeBSD$
+
+.PATH: ${SRCTOP}/sys/dev/vmware/vmw_pvscsi
+
+KMOD=	vmw_pvscsi
+SRCS=	vmw_pvscsi.c
+
+CLEANFILES+=	bus_if.h device_if.h opt_cam.h pci_if.h
+SRCS+=		bus_if.h device_if.h opt_cam.h pci_if.h
+
+.include <bsd.kmod.mk>


More information about the svn-src-projects mailing list