svn commit: r198446 - stable/7/sys/modules/firmware

Andrew Gallatin gallatin at FreeBSD.org
Sat Oct 24 18:38:14 UTC 2009


Author: gallatin
Date: Sat Oct 24 18:38:13 2009
New Revision: 198446
URL: http://svn.freebsd.org/changeset/base/198446

Log:
  Fix firmware module build when it is not
  built with the kernel (eg, make world when MODULES_WITH_WORLD
  is defined)
  
  Submitted by:	Andre Albsmeier at siemens dot com
  Pointy hat to: gallatin

Modified:
  stable/7/sys/modules/firmware/Makefile

Modified: stable/7/sys/modules/firmware/Makefile
==============================================================================
--- stable/7/sys/modules/firmware/Makefile	Sat Oct 24 18:33:01 2009	(r198445)
+++ stable/7/sys/modules/firmware/Makefile	Sat Oct 24 18:38:13 2009	(r198446)
@@ -3,6 +3,6 @@
 .PATH: ${.CURDIR}/../../kern
 
 KMOD=	firmware
-SRCS=	subr_firmware.c
+SRCS=	subr_firmware.c vnode_if.h
 
 .include <bsd.kmod.mk>


More information about the svn-src-stable mailing list