Index: head/sys/modules/bhnd/Makefile =================================================================== --- head/sys/modules/bhnd/Makefile (nonexistent) +++ head/sys/modules/bhnd/Makefile (revision 296078) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../dev/bhnd + +KMOD= bhnd +SRCS= bhnd.c bhnd_subr.c \ + bhnd_bus_if.c bhnd_bus_if.h + +SRCS+= device_if.h bus_if.h + +SUBDIR= bcma \ + bcma_bhndb \ + bhndb \ + bhndb_pci \ + cores \ + nvram \ + siba \ + siba_bhndb + +.include +.include Property changes on: head/sys/modules/bhnd/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/bhnd/bcma/Makefile =================================================================== --- head/sys/modules/bhnd/bcma/Makefile (nonexistent) +++ head/sys/modules/bhnd/bcma/Makefile (revision 296078) @@ -0,0 +1,10 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/bhnd/bcma + +KMOD= bcma +SRCS= bcma.c bcma_subr.c bcma_erom.c + +SRCS+= device_if.h bus_if.h bhnd_bus_if.h + +.include Property changes on: head/sys/modules/bhnd/bcma/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/bhnd/bcma_bhndb/Makefile =================================================================== --- head/sys/modules/bhnd/bcma_bhndb/Makefile (nonexistent) +++ head/sys/modules/bhnd/bcma_bhndb/Makefile (revision 296078) @@ -0,0 +1,11 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/bhnd/bcma + +KMOD= bcma_bhndb +SRCS= bcma_bhndb.c + +SRCS+= bhnd_bus_if.h bhndb_if.h +SRCS+= device_if.h bus_if.h + +.include Property changes on: head/sys/modules/bhnd/bcma_bhndb/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/bhnd/bhndb/Makefile =================================================================== --- head/sys/modules/bhnd/bhndb/Makefile (nonexistent) +++ head/sys/modules/bhnd/bhndb/Makefile (revision 296078) @@ -0,0 +1,12 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/bhnd/bhndb + +KMOD= bhndb +SRCS= bhndb.c bhndb_subr.c bhndb_hwdata.c \ + bhndb_bus_if.c bhndb_bus_if.h \ + bhndb_if.c bhndb_if.h + +SRCS+= device_if.h bus_if.h + +.include Property changes on: head/sys/modules/bhnd/bhndb/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/bhnd/bhndb_pci/Makefile =================================================================== --- head/sys/modules/bhnd/bhndb_pci/Makefile (nonexistent) +++ head/sys/modules/bhnd/bhndb_pci/Makefile (revision 296078) @@ -0,0 +1,11 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/bhnd/bhndb + +KMOD= bhndb_pci +SRCS= bhndb_pci.c bhndb_pci_hwdata.c +SRCS+= bhnd_bus_if.h bhndb_bus_if.h bhndb_if.h + +SRCS+= device_if.h bus_if.h + +.include Property changes on: head/sys/modules/bhnd/bhndb_pci/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/bhnd/cores/Makefile =================================================================== --- head/sys/modules/bhnd/cores/Makefile (nonexistent) +++ head/sys/modules/bhnd/cores/Makefile (revision 296078) @@ -0,0 +1,8 @@ +# $FreeBSD$ + +SUBDIR= bhnd_chipc \ + bhnd_pci \ + bhnd_pci_hostb \ + bhnd_pcib + +.include Property changes on: head/sys/modules/bhnd/cores/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/bhnd/cores/bhnd_chipc/Makefile =================================================================== --- head/sys/modules/bhnd/cores/bhnd_chipc/Makefile (nonexistent) +++ head/sys/modules/bhnd/cores/bhnd_chipc/Makefile (revision 296078) @@ -0,0 +1,10 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../../dev/bhnd/cores/chipc + +KMOD= bhnd_chipc +SRCS= chipc.c \ + bhnd_chipc_if.c bhnd_chipc_if.h +SRCS+= device_if.h bus_if.h bhnd_bus_if.h + +.include Property changes on: head/sys/modules/bhnd/cores/bhnd_chipc/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/bhnd/cores/bhnd_pci/Makefile =================================================================== --- head/sys/modules/bhnd/cores/bhnd_pci/Makefile (nonexistent) +++ head/sys/modules/bhnd/cores/bhnd_pci/Makefile (revision 296078) @@ -0,0 +1,11 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../../dev/bhnd/cores/pci + +KMOD= bhnd_pci +SRCS= bhnd_pci.c \ + mdio_pcie.c +SRCS+= device_if.h bus_if.h bhnd_bus_if.h \ + mdio_if.h + +.include Property changes on: head/sys/modules/bhnd/cores/bhnd_pci/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/bhnd/cores/bhnd_pci_hostb/Makefile =================================================================== --- head/sys/modules/bhnd/cores/bhnd_pci_hostb/Makefile (nonexistent) +++ head/sys/modules/bhnd/cores/bhnd_pci_hostb/Makefile (revision 296078) @@ -0,0 +1,9 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../../dev/bhnd/cores/pci + +KMOD= bhnd_pci_hostb +SRCS= bhnd_pci_hostb.c +SRCS+= device_if.h bus_if.h bhnd_bus_if.h + +.include Property changes on: head/sys/modules/bhnd/cores/bhnd_pci_hostb/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/bhnd/cores/bhnd_pcib/Makefile =================================================================== --- head/sys/modules/bhnd/cores/bhnd_pcib/Makefile (nonexistent) +++ head/sys/modules/bhnd/cores/bhnd_pcib/Makefile (revision 296078) @@ -0,0 +1,9 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../../dev/bhnd/cores/pci + +KMOD= bhnd_pcib +SRCS= bhnd_pcib.c +SRCS+= device_if.h bus_if.h bhnd_bus_if.h + +.include Property changes on: head/sys/modules/bhnd/cores/bhnd_pcib/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/bhnd/nvram/Makefile =================================================================== --- head/sys/modules/bhnd/nvram/Makefile (nonexistent) +++ head/sys/modules/bhnd/nvram/Makefile (revision 296078) @@ -0,0 +1,10 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/bhnd/nvram + +KMOD= bhnd_nvram +SRCS= bhnd_nvram_if.c bhnd_nvram_if.h + +SRCS+= device_if.h bus_if.h + +.include Property changes on: head/sys/modules/bhnd/nvram/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/bhnd/siba/Makefile =================================================================== --- head/sys/modules/bhnd/siba/Makefile (nonexistent) +++ head/sys/modules/bhnd/siba/Makefile (revision 296078) @@ -0,0 +1,10 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/bhnd/siba + +KMOD= siba +SRCS= siba.c siba_subr.c + +SRCS+= device_if.h bus_if.h bhnd_bus_if.h + +.include Property changes on: head/sys/modules/bhnd/siba/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/bhnd/siba_bhndb/Makefile =================================================================== --- head/sys/modules/bhnd/siba_bhndb/Makefile (nonexistent) +++ head/sys/modules/bhnd/siba_bhndb/Makefile (revision 296078) @@ -0,0 +1,11 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../../dev/bhnd/siba + +KMOD= siba_bhndb +SRCS= siba_bhndb.c + +SRCS+= bhnd_bus_if.h bhndb_if.h +SRCS+= device_if.h bus_if.h + +.include Property changes on: head/sys/modules/bhnd/siba_bhndb/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