xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [VTPM v5 0/7] Vtpm resubmit
@ 2012-11-29 17:35 Matthew Fioravante
  2012-11-29 17:35 ` [VTPM v5 1/7] add vtpm-stubdom code Matthew Fioravante
                   ` (6 more replies)
  0 siblings, 7 replies; 18+ messages in thread
From: Matthew Fioravante @ 2012-11-29 17:35 UTC (permalink / raw)
  To: xen-devel, Ian.Jackson, Ian.Campbell; +Cc: Matthew Fioravante

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

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2012-12-04 18:19 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-29 17:35 [VTPM v5 0/7] Vtpm resubmit Matthew Fioravante
2012-11-29 17:35 ` [VTPM v5 1/7] add vtpm-stubdom code Matthew Fioravante
2012-11-29 17:35 ` [VTPM v5 2/7] add stubdom/vtpmmgr code Matthew Fioravante
2012-11-29 17:35 ` [VTPM v5 3/7] vtpm/vtpmmgr and required libs to stubdom/Makefile Matthew Fioravante
2012-11-29 17:35 ` [VTPM v5 4/7] Add vtpm documentation Matthew Fioravante
2012-11-29 17:35 ` [VTPM v5 5/7] Add cmake dependency to README Matthew Fioravante
2012-11-29 17:35 ` [VTPM v5 6/7] Add autoconf to stubdom Matthew Fioravante
2012-11-30 11:50   ` Ian Campbell
2012-12-04 17:49   ` Ian Campbell
2012-12-04 18:19     ` Fioravante, Matthew E.
2012-11-29 17:35 ` [VTPM v5 7/7] Add a real top level configure script that calls the others Matthew Fioravante
2012-11-30 11:57   ` Ian Campbell
2012-12-04 15:57     ` Matthew Fioravante
2012-12-04 16:01   ` Roger Pau Monné
2012-12-04 16:05     ` Matthew Fioravante
2012-12-04 16:13     ` Ian Campbell
2012-12-04 16:22       ` Roger Pau Monné
2012-12-04 17:13         ` Matthew Fioravante

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).