[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Xen-devel] [VTPM v5 0/7] Vtpm resubmit



The following contains my vtpm patches and new configure scripts
for stubdom and the root directory.

Matthew Fioravante (7):
  add vtpm-stubdom code
  add stubdom/vtpmmgr code
  vtpm/vtpmmgr and required libs to stubdom/Makefile
  Add vtpm documentation
  Add cmake dependency to README
  Add autoconf to stubdom
  Add a real top level configure script that calls the others

 README                             |    1 +
 autogen.sh                         |    3 +
 config/Stubdom.mk.in               |   44 +
 configure                          | 3013 ++++++++++++++++++++++++-
 configure.ac                       |   14 +
 docs/misc/vtpm.txt                 |  357 ++-
 m4/curses.m4                       |   20 +
 m4/extfs.m4                        |   20 +
 m4/features.m4                     |   21 +
 m4/fetcher.m4                      |   14 +
 m4/ocaml.m4                        |  241 ++
 m4/path_or_fail.m4                 |   13 +
 m4/pkg.m4                          |  157 ++
 m4/pthread.m4                      |   41 +
 m4/ptyfuncs.m4                     |   35 +
 m4/python_devel.m4                 |   36 +
 m4/python_version.m4               |   12 +
 m4/savevar.m4                      |    6 +
 m4/set_cflags_ldflags.m4           |   19 +
 m4/stubdom.m4                      |   63 +
 m4/uuid.m4                         |    9 +
 stubdom/Makefile                   |  154 +-
 stubdom/configure                  | 4370 ++++++++++++++++++++++++++++++++++++
 stubdom/configure.ac               |   54 +
 stubdom/install.sh                 |    1 +
 stubdom/polarssl.patch             |   64 +
 stubdom/tpmemu-0.7.4.patch         |   12 +
 stubdom/vtpm/Makefile              |   37 +
 stubdom/vtpm/README                |   75 +
 stubdom/vtpm/minios.cfg            |   14 +
 stubdom/vtpm/vtpm.c                |  404 ++++
 stubdom/vtpm/vtpm.h                |   36 +
 stubdom/vtpm/vtpm_cmd.c            |  256 +++
 stubdom/vtpm/vtpm_cmd.h            |   31 +
 stubdom/vtpm/vtpm_pcrs.c           |   43 +
 stubdom/vtpm/vtpm_pcrs.h           |   53 +
 stubdom/vtpm/vtpmblk.c             |  307 +++
 stubdom/vtpm/vtpmblk.h             |   31 +
 stubdom/vtpmmgr/Makefile           |   32 +
 stubdom/vtpmmgr/README             |   75 +
 stubdom/vtpmmgr/init.c             |  553 +++++
 stubdom/vtpmmgr/log.c              |  151 ++
 stubdom/vtpmmgr/log.h              |   85 +
 stubdom/vtpmmgr/marshal.h          |  528 +++++
 stubdom/vtpmmgr/minios.cfg         |   14 +
 stubdom/vtpmmgr/tcg.h              |  707 ++++++
 stubdom/vtpmmgr/tpm.c              |  938 ++++++++
 stubdom/vtpmmgr/tpm.h              |  218 ++
 stubdom/vtpmmgr/tpmrsa.c           |  175 ++
 stubdom/vtpmmgr/tpmrsa.h           |   67 +
 stubdom/vtpmmgr/uuid.h             |   50 +
 stubdom/vtpmmgr/vtpm_cmd_handler.c |  152 ++
 stubdom/vtpmmgr/vtpm_manager.h     |   64 +
 stubdom/vtpmmgr/vtpm_storage.c     |  794 +++++++
 stubdom/vtpmmgr/vtpm_storage.h     |   68 +
 stubdom/vtpmmgr/vtpmmgr.c          |   93 +
 stubdom/vtpmmgr/vtpmmgr.h          |   77 +
 tools/configure                    |  601 ++---
 tools/configure.ac                 |   30 +-
 tools/m4/curses.m4                 |   20 -
 tools/m4/extfs.m4                  |   20 -
 tools/m4/features.m4               |   21 -
 tools/m4/fetcher.m4                |   14 -
 tools/m4/ocaml.m4                  |  241 --
 tools/m4/path_or_fail.m4           |    6 -
 tools/m4/pkg.m4                    |  157 --
 tools/m4/pthread.m4                |   41 -
 tools/m4/ptyfuncs.m4               |   35 -
 tools/m4/python_devel.m4           |   36 -
 tools/m4/python_version.m4         |   12 -
 tools/m4/savevar.m4                |    6 -
 tools/m4/set_cflags_ldflags.m4     |   20 -
 tools/m4/uuid.m4                   |    9 -
 73 files changed, 15115 insertions(+), 1076 deletions(-)
 create mode 100644 config/Stubdom.mk.in
 create mode 100644 configure.ac
 create mode 100644 m4/curses.m4
 create mode 100644 m4/extfs.m4
 create mode 100644 m4/features.m4
 create mode 100644 m4/fetcher.m4
 create mode 100644 m4/ocaml.m4
 create mode 100644 m4/path_or_fail.m4
 create mode 100644 m4/pkg.m4
 create mode 100644 m4/pthread.m4
 create mode 100644 m4/ptyfuncs.m4
 create mode 100644 m4/python_devel.m4
 create mode 100644 m4/python_version.m4
 create mode 100644 m4/savevar.m4
 create mode 100644 m4/set_cflags_ldflags.m4
 create mode 100644 m4/stubdom.m4
 create mode 100644 m4/uuid.m4
 create mode 100755 stubdom/configure
 create mode 100644 stubdom/configure.ac
 create mode 100644 stubdom/install.sh
 create mode 100644 stubdom/polarssl.patch
 create mode 100644 stubdom/tpmemu-0.7.4.patch
 create mode 100644 stubdom/vtpm/Makefile
 create mode 100644 stubdom/vtpm/README
 create mode 100644 stubdom/vtpm/minios.cfg
 create mode 100644 stubdom/vtpm/vtpm.c
 create mode 100644 stubdom/vtpm/vtpm.h
 create mode 100644 stubdom/vtpm/vtpm_cmd.c
 create mode 100644 stubdom/vtpm/vtpm_cmd.h
 create mode 100644 stubdom/vtpm/vtpm_pcrs.c
 create mode 100644 stubdom/vtpm/vtpm_pcrs.h
 create mode 100644 stubdom/vtpm/vtpmblk.c
 create mode 100644 stubdom/vtpm/vtpmblk.h
 create mode 100644 stubdom/vtpmmgr/Makefile
 create mode 100644 stubdom/vtpmmgr/README
 create mode 100644 stubdom/vtpmmgr/init.c
 create mode 100644 stubdom/vtpmmgr/log.c
 create mode 100644 stubdom/vtpmmgr/log.h
 create mode 100644 stubdom/vtpmmgr/marshal.h
 create mode 100644 stubdom/vtpmmgr/minios.cfg
 create mode 100644 stubdom/vtpmmgr/tcg.h
 create mode 100644 stubdom/vtpmmgr/tpm.c
 create mode 100644 stubdom/vtpmmgr/tpm.h
 create mode 100644 stubdom/vtpmmgr/tpmrsa.c
 create mode 100644 stubdom/vtpmmgr/tpmrsa.h
 create mode 100644 stubdom/vtpmmgr/uuid.h
 create mode 100644 stubdom/vtpmmgr/vtpm_cmd_handler.c
 create mode 100644 stubdom/vtpmmgr/vtpm_manager.h
 create mode 100644 stubdom/vtpmmgr/vtpm_storage.c
 create mode 100644 stubdom/vtpmmgr/vtpm_storage.h
 create mode 100644 stubdom/vtpmmgr/vtpmmgr.c
 create mode 100644 stubdom/vtpmmgr/vtpmmgr.h
 delete mode 100644 tools/m4/curses.m4
 delete mode 100644 tools/m4/extfs.m4
 delete mode 100644 tools/m4/features.m4
 delete mode 100644 tools/m4/fetcher.m4
 delete mode 100644 tools/m4/ocaml.m4
 delete mode 100644 tools/m4/path_or_fail.m4
 delete mode 100644 tools/m4/pkg.m4
 delete mode 100644 tools/m4/pthread.m4
 delete mode 100644 tools/m4/ptyfuncs.m4
 delete mode 100644 tools/m4/python_devel.m4
 delete mode 100644 tools/m4/python_version.m4
 delete mode 100644 tools/m4/savevar.m4
 delete mode 100644 tools/m4/set_cflags_ldflags.m4
 delete mode 100644 tools/m4/uuid.m4

-- 
1.7.10.4


_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxx
http://lists.xen.org/xen-devel


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.