f788ffb5e5b4493cb4c1deaa12a97c80c2694b01 |
|
05-Jun-2015 |
Vadim Bendebury <vbendeb@chromium.org> |
reformat added files This patch is the result of running the following script inside chroot: $ for f in $(git diff bfc1e79 | grep -A1 '^\-\-\- /dev/null' | \ grep '^\+\+' awk -F/ '{print $2}'); do # for all added files rm -f /tmp/clf.h # remove the placeholder file mcomms $f > /tmp/clf.h # a hepler script putting multiline comments in one line rm -f $f clang-format --style=Google /tmp/clf.h > $f done BUG=none TEST=verified that make still succeeds and that $ objdump -d build/tpm2lib | md5sum returns the same value before and after this patch Change-Id: I7e2dca6a1fdd1d77b1c77f3b6cdd3433556d9c1d Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/275681 Reviewed-by: Utkarsh Sanghi <usanghi@chromium.org>
/external/tpm2/Entity_fp.h
|
3d5312a7b6dd7d41f25227bed05f6f04f6e21d96 |
|
02-Jun-2015 |
Vadim Bendebury <vbendeb@chromium.org> |
Changes to allow compilation of SessionProcess.c BUG=none TEST=compilation succeeds: cc -Wall -Werror -c -o /dev/null SessionProcess.c Change-Id: I352201ecdf427d76f7a96ce1337c9742c1acbf66 Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/274662 Reviewed-by: Utkarsh Sanghi <usanghi@chromium.org>
/external/tpm2/Entity_fp.h
|
1bb3d5fa4c4a7c4617bf113f44ceade92d743f79 |
|
02-Jun-2015 |
Vadim Bendebury <vbendeb@chromium.org> |
Changes to allow compilation of Session.c BUG=none TEST=compilation succeeds: cc -Wall -Werror -c -o /dev/null Session.c Change-Id: I17f1ebe40c16c3363eb0b19b9de52a85870976f6 Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/274661 Reviewed-by: Utkarsh Sanghi <usanghi@chromium.org>
/external/tpm2/Entity_fp.h
|
54a3d365babd30b8344e72e687c090e8d928000d |
|
02-Jun-2015 |
Vadim Bendebury <vbendeb@chromium.org> |
Changes to allow compilation of PolicyNV.c BUG=none TEST=compilation succeeds: cc -Wall -Werror -c -o /dev/null PolicyNV.c Change-Id: I82139bccddcd3ced9f34e8e2d2043b4ceddd8964 Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/274639 Reviewed-by: Utkarsh Sanghi <usanghi@chromium.org>
/external/tpm2/Entity_fp.h
|
da7250691b11dc6892b02900c5b51aaa9d6bda59 |
|
31-May-2015 |
Vadim Bendebury <vbendeb@chromium.org> |
Changes to allow compilation of ExecCommand.c BUG=none TEST=compilation succeeds: cc -Wall -Werror -c -o /dev/null ExecCommand.c Change-Id: I7aa3c738d96e47ae4e10e728257a557d5b248cff Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/274057 Reviewed-by: Utkarsh Sanghi <usanghi@chromium.org>
/external/tpm2/Entity_fp.h
|
b86371b644cd8baa87fc807297c0507f87c47143 |
|
28-May-2015 |
Vadim Bendebury <vbendeb@chromium.org> |
Changes to allow compilation of Attest_spt.c Add necessary external declarations and data definitions. BUG=none TEST=verify that compilation succeeds: $ \rm -f build/Attest_spt.o $ make build/Attest_spt.o cc -Wall -Werror -c -o build/Attest_spt.o Attest_spt.c $ ls build/Attest_spt.o build/Attest_spt.o $ Change-Id: I1649516f988022fea4478c20a49fcb6020bbd12b Signed-off-by: Vadim Bendebury <vbendeb@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/274013 Reviewed-by: Utkarsh Sanghi <usanghi@chromium.org> Reviewed-by: Darren Krahn <dkrahn@chromium.org>
/external/tpm2/Entity_fp.h
|
c4b77e00643ea6e230916a76da450315ab820997 |
|
28-May-2015 |
Vadim Bendebury <vbendeb@chromium.org> |
Changes to allow compilation of ActivateCredential.c This patch provides plumbing necessary to compile ActivateCredential.c. Most of the new files are currently empty - they are listed as includes, but no information from them is required for this particular compilation. The *_fp.h files provide necessary function prototypes, only few of these prototypes are required at this time. TPM_Types.h is a purged copy of https://github.com/tianocore/edk2.git:MdePkg/Include/IndustryStandard/Tpm20.h (at e9a1e37), which can not be copied directly due to some definition collisions with this package. Some more items will be copied later. BUG=none TEST=running make now results in the ./build directory created: $ make 2>/dev/null > /dev/null # Suppress other compile errors $ ls build ActivateCredential.o Change-Id: Ie3e52923306d33ee697e2b9e739f715cbb8913aa Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
/external/tpm2/Entity_fp.h
|