From: Mateusz M. <mat...@in...> - 2024-09-24 07:14:49
|
changeset 9b2748d651ee in /hg/p/tboot/code details: http://hg.code.sf.net/p/tboot/code/code?cmd=changeset;node=9b2748d651ee description: Version 1.11.6 diffstat: CHANGELOG | 8 +++++--- tboot/20_linux_tboot | 2 +- tboot/20_linux_xen_tboot | 2 +- tboot/Config.mk | 4 ++-- 4 files changed, 9 insertions(+), 7 deletions(-) diffs (54 lines): diff -r b6f26b413095 -r 9b2748d651ee CHANGELOG --- a/CHANGELOG Tue Sep 24 09:04:53 2024 +0200 +++ b/CHANGELOG Tue Sep 24 09:09:50 2024 +0200 @@ -1,7 +1,9 @@ +20240924: v1.11.6 + Merge TXT Protected Range support branch. 20240918: v1.11.5 - Add TXT Protected Range support. Remove unncessary OPENSSL_free from lcputils.c - and add a functionality to move ACM modules from the address range below TBOOT - to above TBOOT, to allow the usage of ACMs bigger than 256KB. + Remove unncessary OPENSSL_free from lcputils.c and add a functionality + to move ACM modules from the address range below TBOOT to above TBOOT, + to allow the usage of ACMs bigger than 256KB. 20240405: v1.11.4 Increase the TBOOT log size from 32 KB to 64 KB. For some Intel server platforms, it was noticed that TBOOT_SERIAL_LOG memory section was too diff -r b6f26b413095 -r 9b2748d651ee tboot/20_linux_tboot --- a/tboot/20_linux_tboot Tue Sep 24 09:04:53 2024 +0200 +++ b/tboot/20_linux_tboot Tue Sep 24 09:09:50 2024 +0200 @@ -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.5" + tboot_version="1.11.6" echo "submenu \"tboot ${tboot_version}\" {" while [ "x$list" != "x" ] ; do linux=`version_find_latest $list` diff -r b6f26b413095 -r 9b2748d651ee tboot/20_linux_xen_tboot --- a/tboot/20_linux_xen_tboot Tue Sep 24 09:04:53 2024 +0200 +++ b/tboot/20_linux_xen_tboot Tue Sep 24 09:09:50 2024 +0200 @@ -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.5" + tboot_version="1.11.6" list="${linux_list}" echo "submenu \"Xen ${xen_version}\" \"Tboot ${tboot_version}\"{" while [ "x$list" != "x" ] ; do diff -r b6f26b413095 -r 9b2748d651ee tboot/Config.mk --- a/tboot/Config.mk Tue Sep 24 09:04:53 2024 +0200 +++ b/tboot/Config.mk Tue Sep 24 09:09:50 2024 +0200 @@ -6,8 +6,8 @@ # # tboot-specific build settings # -RELEASEVER := "1.11.5" -RELEASETIME := "2024-09-18 16:00 +0100" +RELEASEVER := "1.11.6" +RELEASETIME := "2024-09-18 09:00 +0100" ROOTDIR ?= $(CURDIR)/.. # tboot needs too many customized compiler settings to use system CFLAGS, |