Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Mar 2018 21:06:21 +0000 (UTC)
From:      Ian Lepore <ian@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r330412 - in head/sys/modules/i2c: . rtc8583
Message-ID:  <201803042106.w24L6Lqe073191@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ian
Date: Sun Mar  4 21:06:21 2018
New Revision: 330412
URL: https://svnweb.freebsd.org/changeset/base/330412

Log:
  Build iicbus/rtc8583 as a module.

Added:
  head/sys/modules/i2c/rtc8583/
  head/sys/modules/i2c/rtc8583/Makefile   (contents, props changed)
Modified:
  head/sys/modules/i2c/Makefile

Modified: head/sys/modules/i2c/Makefile
==============================================================================
--- head/sys/modules/i2c/Makefile	Sun Mar  4 21:04:30 2018	(r330411)
+++ head/sys/modules/i2c/Makefile	Sun Mar  4 21:06:21 2018	(r330412)
@@ -17,6 +17,7 @@ SUBDIR = \
 	jedec_dimm \
 	jedec_ts \
 	nxprtc \
+	rtc8583 \
 	s35390a \
 	smb \
 	smbus \

Added: head/sys/modules/i2c/rtc8583/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/modules/i2c/rtc8583/Makefile	Sun Mar  4 21:06:21 2018	(r330412)
@@ -0,0 +1,19 @@
+# $FreeBSD$
+
+.PATH:	${SRCTOP}/sys/dev/iicbus
+KMOD	= rtc8583
+SRCS	= rtc8583.c 
+
+# Generated files...
+SRCS+=	\
+	bus_if.h \
+	clock_if.h \
+	device_if.h \
+	iicbus_if.h \
+	opt_platform.h \
+
+.if !empty(OPT_FDT)
+SRCS+=	ofw_bus_if.h
+.endif
+
+.include <bsd.kmod.mk>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803042106.w24L6Lqe073191>