Author: ian
Date: Sun Jun 16 01:22:44 2019
New Revision: 349096
URL: https://svnweb.freebsd.org/changeset/base/349096

Log:
  Add module makefiles for Texas Instruments ARM SoCs.
  
  The natural place to look for them based on how other SoCs are organized
  would be sys/modules/ti, but that's already taken.  Drop a clue into
  modules/ti/Makefile directing people to modules/arm_ti if they're looking
  for ARM modules.

Added:
  head/sys/modules/arm_ti/
  head/sys/modules/arm_ti/Makefile   (contents, props changed)
  head/sys/modules/arm_ti/am335x_ehrpwm/
  head/sys/modules/arm_ti/am335x_ehrpwm/Makefile   (contents, props changed)
  head/sys/modules/arm_ti/ti_i2c/
  head/sys/modules/arm_ti/ti_i2c/Makefile   (contents, props changed)
Modified:
  head/sys/modules/ti/Makefile

Added: head/sys/modules/arm_ti/Makefile
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/sys/modules/arm_ti/Makefile    Sun Jun 16 01:22:44 2019        
(r349096)
@@ -0,0 +1,9 @@
+# $FreeBSD$
+# Build modules specific to Texas Instruments ARM SoCs.
+
+SUBDIR = \
+       ../am335x_dmtpps \
+       am335x_ehrpwm \
+       ti_i2c \
+       
+.include <bsd.subdir.mk>

Added: head/sys/modules/arm_ti/am335x_ehrpwm/Makefile
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/sys/modules/arm_ti/am335x_ehrpwm/Makefile      Sun Jun 16 01:22:44 
2019        (r349096)
@@ -0,0 +1,16 @@
+# $FreeBSD$
+
+.PATH: ${SRCTOP}/sys/arm/ti/am335x
+
+KMOD=  am335x_ehrpwm
+SRCS=  am335x_ehrpwm.c
+
+# Generated files...
+SRCS+= \
+       bus_if.h \
+       device_if.h \
+       ofw_bus_if.h \
+       pwmbus_if.h \
+
+.include <bsd.kmod.mk>
+

Added: head/sys/modules/arm_ti/ti_i2c/Makefile
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ head/sys/modules/arm_ti/ti_i2c/Makefile     Sun Jun 16 01:22:44 2019        
(r349096)
@@ -0,0 +1,14 @@
+# $FreeBSD$
+
+.PATH: ${SRCTOP}/sys/arm/ti
+
+KMOD=  ti_i2c
+SRCS=  ti_i2c.c
+
+SRCS+= \
+       bus_if.h \
+       device_if.h \
+       iicbus_if.h \
+       ofw_bus_if.h \
+
+.include <bsd.kmod.mk>

Modified: head/sys/modules/ti/Makefile
==============================================================================
--- head/sys/modules/ti/Makefile        Sun Jun 16 01:05:53 2019        
(r349095)
+++ head/sys/modules/ti/Makefile        Sun Jun 16 01:22:44 2019        
(r349096)
@@ -1,4 +1,6 @@
 # $FreeBSD$
+# Module for Alteon Networks Tigon PCI gigabit ethernet driver for FreeBSD.
+# Modules for Texas Instruments ARM SoCs are located in sys/modules/arm_ti.
 
 .PATH: ${SRCTOP}/sys/dev/ti
 
_______________________________________________
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"

Reply via email to