diff options
| author | pgoyette <pgoyette@NetBSD.org> | 2015-05-03 02:54:07 +0000 |
|---|---|---|
| committer | pgoyette <pgoyette@NetBSD.org> | 2015-05-03 02:54:07 +0000 |
| commit | a80aa408178d9628c4e0db9847e9b4c13d2c0c7a (patch) | |
| tree | b44a70597396cf6f73b8196f91d419b2490dba5a /sys/modules | |
| parent | f9d975228abd89782b7810cc458d996cee222ece (diff) | |
Build the tco watchdog module
Diffstat (limited to 'sys/modules')
| -rw-r--r-- | sys/modules/Makefile | 3 | ||||
| -rw-r--r-- | sys/modules/tco/Makefile | 13 | ||||
| -rw-r--r-- | sys/modules/tco/tco.ioconf | 11 |
3 files changed, 26 insertions, 1 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 3fd1d9b5b29..0721c18083f 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.149 2015/04/29 17:38:50 riastradh Exp $ +# $NetBSD: Makefile,v 1.150 2015/05/03 02:54:07 pgoyette Exp $ .include <bsd.own.mk> @@ -147,6 +147,7 @@ SUBDIR+= hdaudioverbose SUBDIR+= hpet SUBDIR+= odcm SUBDIR+= powernow +SUBDIR+= tco SUBDIR+= tprof_pmi SUBDIR+= tprof_amdpmi SUBDIR+= vmt diff --git a/sys/modules/tco/Makefile b/sys/modules/tco/Makefile new file mode 100644 index 00000000000..728b99ba391 --- /dev/null +++ b/sys/modules/tco/Makefile @@ -0,0 +1,13 @@ +# $NetBSD: Makefile,v 1.1 2015/05/03 02:54:07 pgoyette Exp $ + +.include "../Makefile.inc" + +.PATH: ${S}/arch/x86/pci + +KMOD= tco +IOCONF= tco.ioconf +SRCS= tco.c + +WARNS= 4 + +.include <bsd.kmodule.mk> diff --git a/sys/modules/tco/tco.ioconf b/sys/modules/tco/tco.ioconf new file mode 100644 index 00000000000..0cfce4372e5 --- /dev/null +++ b/sys/modules/tco/tco.ioconf @@ -0,0 +1,11 @@ +# $NetBSD: tco.ioconf,v 1.1 2015/05/03 02:54:07 pgoyette Exp $ + +ioconf tco + +include "conf/files" +include "dev/pci/files.pci" +include "arch/x86/pci/files.pci" + +pseudo-root tcoichbus* + +tco* at tcoichbus? |
