Accepting request 897356 from home:gary_lin:branches:devel:openSUSE:Factory

- shim-install: reset def_shim_efi to "shim.efi" if the given
  file doesn't exist

OBS-URL: https://build.opensuse.org/request/show/897356
OBS-URL: https://build.opensuse.org/package/show/devel:openSUSE:Factory/shim?expand=0&rev=182
This commit is contained in:
Gary Ching-Pang Lin 2021-06-04 08:21:06 +00:00 committed by Git OBS Bridge
parent 7f83b4b531
commit b088ad9ddf
2 changed files with 7 additions and 1 deletions

View File

@ -28,7 +28,7 @@ def_boot_efi=
[ ! -r /usr/etc/default/shim ] || . /usr/etc/default/shim
[ ! -r /etc/default/shim ] || . /etc/default/shim
if [ -z "$def_shim_efi" ] ; then
if [ -z "$def_shim_efi" -o ! -e ${source_dir}/${def_shim_efi} ] ; then
def_shim_efi="shim.efi"
fi

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri Jun 4 07:02:03 UTC 2021 - Gary Ching-Pang Lin <glin@suse.com>
- shim-install: reset def_shim_efi to "shim.efi" if the given
file doesn't exist
-------------------------------------------------------------------
Wed May 19 01:07:43 UTC 2021 - Gary Ching-Pang Lin <glin@suse.com>