From: Mateusz M. <mat...@in...> - 2024-10-11 12:55:29
|
changeset 93a7c3451154 in /hg/p/tboot/code details: http://hg.code.sf.net/p/tboot/code/code?cmd=changeset;node=93a7c3451154 description: Version 1.11.9. 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 2021424028cc -r 93a7c3451154 CHANGELOG --- a/CHANGELOG Fri Oct 11 14:50:18 2024 +0200 +++ b/CHANGELOG Fri Oct 11 14:55:09 2024 +0200 @@ -1,3 +1,5 @@ +20241011: v1.11.9 + Restore call to configure_vtd. 20241004: v1.11.8 Increase DIRECTMAP size from 64 MB to 128 MB. During the last TBOOT MLE verification process for the Intel ARL-S (Arrowlake) CPUs, it was noticed diff -r 2021424028cc -r 93a7c3451154 tboot/20_linux_tboot --- a/tboot/20_linux_tboot Fri Oct 11 14:50:18 2024 +0200 +++ b/tboot/20_linux_tboot Fri Oct 11 14:55:09 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.8" + tboot_version="1.11.9" echo "submenu \"tboot ${tboot_version}\" {" while [ "x$list" != "x" ] ; do linux=`version_find_latest $list` diff -r 2021424028cc -r 93a7c3451154 tboot/20_linux_xen_tboot --- a/tboot/20_linux_xen_tboot Fri Oct 11 14:50:18 2024 +0200 +++ b/tboot/20_linux_xen_tboot Fri Oct 11 14:55:09 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.8" + tboot_version="1.11.9" list="${linux_list}" echo "submenu \"Xen ${xen_version}\" \"Tboot ${tboot_version}\"{" while [ "x$list" != "x" ] ; do diff -r 2021424028cc -r 93a7c3451154 tboot/Config.mk --- a/tboot/Config.mk Fri Oct 11 14:50:18 2024 +0200 +++ b/tboot/Config.mk Fri Oct 11 14:55:09 2024 +0200 @@ -6,8 +6,8 @@ # # tboot-specific build settings # -RELEASEVER := "1.11.8" -RELEASETIME := "2024-10-04 12:00 +0100" +RELEASEVER := "1.11.9" +RELEASETIME := "2024-10-11 12:00 +0100" ROOTDIR ?= $(CURDIR)/.. # tboot needs too many customized compiler settings to use system CFLAGS, |