forked from pool/tboot
- removed following patches, because they're now included upstream: * tboot-grub2-fix-menu-in-xen-host-server.patch * tboot-grub2-fix-xen-submenu-name.patch * tboot-grub2-suse.patch - Changes in this version: * GCC7 fix, adds generic FALLTHROUGH notations to avoid warnings appearing on GCC7 * Ensure Tboot never overwrites modules in the process of moving them. * Add support to x2APIC, which uses 32 bit APIC ID. * Fix S3 secrets sealing/unsealing failures * Support OpenSSL 1.1.0+ for ECDSA signature verification. * Support OpenSSL 1.1.0+ for RSA key manipulation. * Adds additional checks to prevent the kernel image from being overwritten. * Added TCG TPM event log support. * Pass through the EFI memory map that's provided by grub2. * Fix a null pointer dereference bug when Intel TXT is disabled in BIOS. * Adjust KERNEL_CMDLINE_OFFSET from 0x9000 to 0x8D00. * Bounds checking on the kernel_cmdline string. OBS-URL: https://build.opensuse.org/package/show/security/tboot?expand=0&rev=64
20 lines
822 B
Diff
20 lines
822 B
Diff
From: Michael Chang <mchang@suse.com>
|
|
Subject: fix xen submenu name to show tboot version
|
|
|
|
References: bnc#865815
|
|
Patch-Mainline: no
|
|
|
|
Index: tboot-1.9.6/tboot/20_linux_xen_tboot
|
|
===================================================================
|
|
--- tboot-1.9.6.orig/tboot/20_linux_xen_tboot
|
|
+++ tboot-1.9.6/tboot/20_linux_xen_tboot
|
|
@@ -232,7 +232,7 @@ while [ "x${xen_list}" != "x" ] ; do
|
|
rel_tboot_dirname=`make_system_path_relative_to_its_root $tboot_dirname`
|
|
tboot_version="1.9.6"
|
|
list="${linux_list}"
|
|
- echo "submenu \"Xen ${xen_version}\" \"Tboot ${tboot_version}\"{"
|
|
+ echo "submenu \"Xen ${xen_version} with Tboot ${tboot_version}\"{"
|
|
while [ "x$list" != "x" ] ; do
|
|
linux=`version_find_latest $list`
|
|
echo "Found linux image: $linux" >&2
|