Index: head/sys/modules/i2c/Makefile =================================================================== --- head/sys/modules/i2c/Makefile (revision 321827) +++ head/sys/modules/i2c/Makefile (revision 321828) @@ -1,16 +1,19 @@ # $FreeBSD$ SUBDIR = \ controllers \ cyapa \ + ds1307 \ + ds3231 \ if_ic \ iic \ iicbb \ iicbus \ iicsmb \ isl \ jedec_ts \ + nxprtc \ smb \ smbus \ .include Index: head/sys/modules/i2c/ds1307/Makefile =================================================================== --- head/sys/modules/i2c/ds1307/Makefile (nonexistent) +++ head/sys/modules/i2c/ds1307/Makefile (revision 321828) @@ -0,0 +1,7 @@ +# $FreeBSD$ + +.PATH: ${SRCTOP}/sys/dev/iicbus +KMOD = ds1307 +SRCS = ds1307.c bus_if.h clock_if.h device_if.h iicbus_if.h + +.include Property changes on: head/sys/modules/i2c/ds1307/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sys/modules/i2c/ds3231/Makefile =================================================================== --- head/sys/modules/i2c/ds3231/Makefile (nonexistent) +++ head/sys/modules/i2c/ds3231/Makefile (revision 321828) @@ -0,0 +1,7 @@ +# $FreeBSD$ + +.PATH: ${SRCTOP}/sys/dev/iicbus +KMOD = ds3231 +SRCS = ds3231.c bus_if.h clock_if.h device_if.h iicbus_if.h + +.include Property changes on: head/sys/modules/i2c/ds3231/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: head/sys/modules/i2c/nxprtc/Makefile =================================================================== --- head/sys/modules/i2c/nxprtc/Makefile (nonexistent) +++ head/sys/modules/i2c/nxprtc/Makefile (revision 321828) @@ -0,0 +1,7 @@ +# $FreeBSD$ + +.PATH: ${SRCTOP}/sys/dev/iicbus +KMOD = nxprtc +SRCS = nxprtc.c bus_if.h clock_if.h device_if.h iicbus_if.h + +.include Property changes on: head/sys/modules/i2c/nxprtc/Makefile ___________________________________________________________________ Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:keywords ## -0,0 +1 ## +FreeBSD=%H \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property