svn commit: r306619 - in head/sys: arm/conf modules/rpi_ft5406

Oleksandr Tymoshenko gonzo at FreeBSD.org
Mon Oct 3 01:08:36 UTC 2016


Author: gonzo
Date: Mon Oct  3 01:08:34 2016
New Revision: 306619
URL: https://svnweb.freebsd.org/changeset/base/306619

Log:
  Add rpi_ft5406 module and add it to extra modules in Raspberry Pi configs

Added:
  head/sys/modules/rpi_ft5406/
  head/sys/modules/rpi_ft5406/Makefile   (contents, props changed)
Modified:
  head/sys/arm/conf/RPI-B
  head/sys/arm/conf/RPI2

Modified: head/sys/arm/conf/RPI-B
==============================================================================
--- head/sys/arm/conf/RPI-B	Mon Oct  3 01:07:06 2016	(r306618)
+++ head/sys/arm/conf/RPI-B	Mon Oct  3 01:08:34 2016	(r306619)
@@ -94,4 +94,4 @@ options 	FDT			# Configure using FDT/DTB
 # handed to kernel via U-Boot and ubldr.
 #options 	FDT_DTB_STATIC
 #makeoptions	FDT_DTS_FILE=rpi.dts
-makeoptions	MODULES_EXTRA=dtb/rpi
+makeoptions	MODULES_EXTRA="dtb/rpi rpi_ft5406"

Modified: head/sys/arm/conf/RPI2
==============================================================================
--- head/sys/arm/conf/RPI2	Mon Oct  3 01:07:06 2016	(r306618)
+++ head/sys/arm/conf/RPI2	Mon Oct  3 01:08:34 2016	(r306619)
@@ -99,4 +99,4 @@ options 	FDT			# Configure using FDT/DTB
 # handed to kernel via U-Boot and ubldr.
 #options 	FDT_DTB_STATIC
 #makeoptions	FDT_DTS_FILE=rpi2.dts
-makeoptions	MODULES_EXTRA=dtb/rpi
+makeoptions	MODULES_EXTRA="dtb/rpi rpi_ft5406"

Added: head/sys/modules/rpi_ft5406/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sys/modules/rpi_ft5406/Makefile	Mon Oct  3 01:08:34 2016	(r306619)
@@ -0,0 +1,10 @@
+# $FreeBSD$
+
+.PATH: ${.CURDIR}/../../arm/broadcom/bcm2835/
+
+KMOD=	rpi_ft5406
+SRCS=	bcm2835_ft5406.c
+
+SRCS+= bus_if.h device_if.h ofw_bus_if.h
+
+.include <bsd.kmod.mk>


More information about the svn-src-head mailing list