forked from pool/tboot
Matthias Gerstner
f76889e9c2
- Skip tboot launch error index read/write when ignore prev err option is true - s3-fix: fix a stack overflow caused by enlarged tb_hash_t union - S3 fix: revert the mis-changed type casting in changeset 522:8e881a07c059 - S3-fix: Adding option save_vtd=true to opt-in the vtd table restore - rebased patches to match new upstream version OBS-URL: https://build.opensuse.org/package/show/security/tboot?expand=0&rev=85
27 lines
962 B
Diff
27 lines
962 B
Diff
Index: tboot-1.9.8/tboot/20_linux_tboot
|
|
===================================================================
|
|
--- tboot-1.9.8.orig/tboot/20_linux_tboot
|
|
+++ tboot-1.9.8/tboot/20_linux_tboot
|
|
@@ -72,7 +72,7 @@ CLASS="--class gnu-linux --class gnu --c
|
|
if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then
|
|
OS=GNU/Linux
|
|
else
|
|
- OS="${GRUB_DISTRIBUTOR} GNU/Linux"
|
|
+ OS="${GRUB_DISTRIBUTOR}"
|
|
CLASS="--class $(echo ${GRUB_DISTRIBUTOR} | tr '[A-Z]' '[a-z]' | cut -d' ' -f1) ${CLASS}"
|
|
fi
|
|
|
|
Index: tboot-1.9.8/tboot/20_linux_xen_tboot
|
|
===================================================================
|
|
--- tboot-1.9.8.orig/tboot/20_linux_xen_tboot
|
|
+++ tboot-1.9.8/tboot/20_linux_xen_tboot
|
|
@@ -63,7 +63,7 @@ CLASS="--class gnu-linux --class gnu --c
|
|
if [ "x${GRUB_DISTRIBUTOR}" = "x" ] ; then
|
|
OS=GNU/Linux
|
|
else
|
|
- OS="${GRUB_DISTRIBUTOR} GNU/Linux"
|
|
+ OS="${GRUB_DISTRIBUTOR}"
|
|
CLASS="--class $(echo ${GRUB_DISTRIBUTOR} | tr 'A-Z' 'a-z' | cut -d' ' -f1) ${CLASS}"
|
|
fi
|
|
|