From: Pawel R. <paw...@in...> - 2023-01-25 09:42:42
|
changeset c0fc38b9d2a9 in /hg/p/tboot/code details: http://hg.code.sf.net/p/tboot/code/code?cmd=changeset;node=c0fc38b9d2a9 description: Version v1.11.1 diffstat: CHANGELOG | 2 ++ tboot/20_linux_tboot | 2 +- tboot/20_linux_xen_tboot | 2 +- tboot/Config.mk | 4 ++-- 4 files changed, 6 insertions(+), 4 deletions(-) diffs (47 lines): diff -r dcc226f98508 -r c0fc38b9d2a9 CHANGELOG --- a/CHANGELOG Wed Jan 25 10:20:43 2023 +0100 +++ b/CHANGELOG Wed Jan 25 10:42:00 2023 +0100 @@ -1,3 +1,5 @@ +20230125: v1.11.1 + Revert log memory range extension (caused memory overlaps and boot failures) 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) diff -r dcc226f98508 -r c0fc38b9d2a9 tboot/20_linux_tboot --- a/tboot/20_linux_tboot Wed Jan 25 10:20:43 2023 +0100 +++ b/tboot/20_linux_tboot Wed Jan 25 10:42:00 2023 +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.11.0" + tboot_version="1.11.1" echo "submenu \"tboot ${tboot_version}\" {" while [ "x$list" != "x" ] ; do linux=`version_find_latest $list` diff -r dcc226f98508 -r c0fc38b9d2a9 tboot/20_linux_xen_tboot --- a/tboot/20_linux_xen_tboot Wed Jan 25 10:20:43 2023 +0100 +++ b/tboot/20_linux_xen_tboot Wed Jan 25 10:42:00 2023 +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.11.0" + tboot_version="1.11.1" list="${linux_list}" echo "submenu \"Xen ${xen_version}\" \"Tboot ${tboot_version}\"{" while [ "x$list" != "x" ] ; do diff -r dcc226f98508 -r c0fc38b9d2a9 tboot/Config.mk --- a/tboot/Config.mk Wed Jan 25 10:20:43 2023 +0100 +++ b/tboot/Config.mk Wed Jan 25 10:42:00 2023 +0100 @@ -6,8 +6,8 @@ # # tboot-specific build settings # -RELEASEVER := "1.11.0" -RELEASETIME := "2022-12-23 11:00 +0100" +RELEASEVER := "1.11.1" +RELEASETIME := "2023-01-25 11:00 +0100" ROOTDIR ?= $(CURDIR)/.. # tboot needs too many customized compiler settings to use system CFLAGS, |