Accepting request 822330 from devel:openSUSE:Factory

OBS-URL: https://build.opensuse.org/request/show/822330
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/shim?expand=0&rev=82
This commit is contained in:
Dominique Leuenberger 2020-07-26 14:15:31 +00:00 committed by Git OBS Bridge
commit 36cc2b3925
2 changed files with 16 additions and 1 deletions

View File

@ -146,7 +146,17 @@ do
no_nvram=yes ;; no_nvram=yes ;;
--suse-enable-tpm) --suse-enable-tpm)
source_grub_efi="/usr/lib/grub2/${grub_install_target}/grub-tpm.efi" ;; # bsc#1174320 shim-install uses wrong paths for EFI files
# There are 3 possible locations of grub-tpm.efi and we will check them
# one by one.
if [ -e "${source_dir}/grub-tpm.efi" ]; then
source_grub_efi="${source_dir}/grub-tpm.efi"
elif [ -e "${datadir}/grub2/${grub_install_target}/grub-tpm.efi" ] ; then
source_grub_efi="${datadir}/grub2/${grub_install_target}/grub-tpm.efi"
else
source_grub_efi="/usr/lib/grub2/${grub_install_target}/grub-tpm.efi"
fi
;;
--clean) --clean)
clean=yes ;; clean=yes ;;

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed Jul 22 09:23:02 UTC 2020 - Gary Ching-Pang Lin <glin@suse.com>
- Update the path to grub-tpm.efi in shim-install (bsc#1174320)
------------------------------------------------------------------- -------------------------------------------------------------------
Fri Jul 10 06:28:44 UTC 2020 - Gary Ching-Pang Lin <glin@suse.com> Fri Jul 10 06:28:44 UTC 2020 - Gary Ching-Pang Lin <glin@suse.com>