Index: head/sys/modules/spi/Makefile =================================================================== --- head/sys/modules/spi/Makefile (revision 329545) +++ head/sys/modules/spi/Makefile (revision 329546) @@ -1,7 +1,9 @@ # $FreeBSD$ SUBDIR = \ ../spigen \ + at45d \ + mx25l \ spibus \ .include Index: head/sys/modules/spi/at45d/Makefile =================================================================== --- head/sys/modules/spi/at45d/Makefile (nonexistent) +++ head/sys/modules/spi/at45d/Makefile (revision 329546) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +.PATH: ${SRCTOP}/sys/dev/flash + +KMOD= at45d +SRCS= at45d.c + +# Generated files... +SRCS+= \ + bus_if.h \ + device_if.h \ + spibus_if.c \ + spibus_if.h \ + +.if !empty(OPT_FDT) +SRCS+= ofw_bus_if.h +.endif + +.include Property changes on: head/sys/modules/spi/at45d/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/spi/mx25l/Makefile =================================================================== --- head/sys/modules/spi/mx25l/Makefile (nonexistent) +++ head/sys/modules/spi/mx25l/Makefile (revision 329546) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +.PATH: ${SRCTOP}/sys/dev/flash + +KMOD= mx25l +SRCS= mx25l.c + +# Generated files... +SRCS+= \ + bus_if.h \ + device_if.h \ + spibus_if.c \ + spibus_if.h \ + +.if !empty(OPT_FDT) +SRCS+= ofw_bus_if.h +.endif + +.include Property changes on: head/sys/modules/spi/mx25l/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