diff options
| author | Takanori Watanabe <takawata@FreeBSD.org> | 2010-08-12 00:16:18 +0000 |
|---|---|---|
| committer | Takanori Watanabe <takawata@FreeBSD.org> | 2010-08-12 00:16:18 +0000 |
| commit | 97f24f666faf69a512fc3c2bd8ee3d11b41e51ef (patch) | |
| tree | 6eff209d2cbf61a6d7d9af4234e28c99023faae1 /sys/modules/tpm | |
| parent | 60c7b36b7a05db2d4c76913198928de944d28e2a (diff) | |
Add tpm(4) driver for Trusted Platform Module.
You may want to look at http://bsssd.sourceforge.net/ .
Submitted by: Hans-Joerg Hoexer <Hans-Joerg_Hoexer@genua.de>
Notes
svn path=/head/; revision=211201
Diffstat (limited to 'sys/modules/tpm')
| -rw-r--r-- | sys/modules/tpm/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/modules/tpm/Makefile b/sys/modules/tpm/Makefile new file mode 100644 index 000000000000..652e9c896ba7 --- /dev/null +++ b/sys/modules/tpm/Makefile @@ -0,0 +1,9 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../dev/tpm + +KMOD= tpm +SRCS= tpm.c tpm_isa.c tpm_acpi.c isa_if.h opt_acpi.h acpi_if.h \ + bus_if.h device_if.h + +.include <bsd.kmod.mk> |
