From: Pawel R. <paw...@in...> - 2022-12-23 09:21:03
|
changeset 4af1bd83b21b in /hg/p/tboot/code details: http://hg.code.sf.net/p/tboot/code/code?cmd=changeset;node=4af1bd83b21b description: Version v1.11.0 diffstat: CHANGELOG | 10 ++++++++++ tboot/20_linux_tboot | 2 +- tboot/20_linux_xen_tboot | 2 +- tboot/Config.mk | 4 ++-- 4 files changed, 14 insertions(+), 4 deletions(-) diffs (55 lines): diff -r be0a892edfc8 -r 4af1bd83b21b CHANGELOG --- a/CHANGELOG Mon Dec 12 11:35:49 2022 +0100 +++ b/CHANGELOG Fri Dec 23 10:15:42 2022 +0100 @@ -1,3 +1,13 @@ +20221223: v1.11.0 + Fixed TPM handling to flush objects after integrity measurement (Intel PTT limitations) + Exteded low memory range for logs (HCC CPUs had issue with not enough memory) + "agile" removed from PCR Extend policy options (requested deprecation) + Added handling for flexible ACM Info Table format + lcptools: CPPFLAGS use by environment in build + lcptools: removed __DATE__ refs to make build reproducible + Only platform-matchin SINIT modules can be selected + txt-acminfo: Map TXT heap using mmap + Typo fix in man page 20220304: v1.10.5 Fixed mlehash.c to bring back functionality and make it GCC12 compliant Reverted change for replacing EFI memory to bring back Tboot in-memory logs diff -r be0a892edfc8 -r 4af1bd83b21b tboot/20_linux_tboot --- a/tboot/20_linux_tboot Mon Dec 12 11:35:49 2022 +0100 +++ b/tboot/20_linux_tboot Fri Dec 23 10:15:42 2022 +0100 @@ -195,7 +195,7 @@ tboot_dirname=`dirname ${current_tboot}` rel_tboot_dirname=`make_system_path_relative_to_its_root $tboot_dirname` # tboot_version=`echo $tboot_basename | sed -e "s,.gz$,,g;s,^tboot-,,g"` - tboot_version="1.10.5" + tboot_version="1.11.0" echo "submenu \"tboot ${tboot_version}\" {" while [ "x$list" != "x" ] ; do linux=`version_find_latest $list` diff -r be0a892edfc8 -r 4af1bd83b21b tboot/20_linux_xen_tboot --- a/tboot/20_linux_xen_tboot Mon Dec 12 11:35:49 2022 +0100 +++ b/tboot/20_linux_xen_tboot Fri Dec 23 10:15:42 2022 +0100 @@ -230,7 +230,7 @@ tboot_basename=`basename ${current_tboot}` tboot_dirname=`dirname ${current_tboot}` rel_tboot_dirname=`make_system_path_relative_to_its_root $tboot_dirname` - tboot_version="1.10.5" + tboot_version="1.11.0" list="${linux_list}" echo "submenu \"Xen ${xen_version}\" \"Tboot ${tboot_version}\"{" while [ "x$list" != "x" ] ; do diff -r be0a892edfc8 -r 4af1bd83b21b tboot/Config.mk --- a/tboot/Config.mk Mon Dec 12 11:35:49 2022 +0100 +++ b/tboot/Config.mk Fri Dec 23 10:15:42 2022 +0100 @@ -6,8 +6,8 @@ # # tboot-specific build settings # -RELEASEVER := "1.10.5" -RELEASETIME := "2022-03-04 12:00 +0100" +RELEASEVER := "1.11.0" +RELEASETIME := "2022-12-23 11:00 +0100" ROOTDIR ?= $(CURDIR)/.. # tboot needs too many customized compiler settings to use system CFLAGS, |