Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[components.shim-unsigned-aarch64]
spec = { type = "upstream", upstream-distro = { name = "fedora", version = "43" }, upstream-commit = "67c1d520f9a8080f6b689714099f813f23154c8f" }
# Pin shim 16.1 to Fedora dist-git commit 4db14e5ed7d3bdb7fda97f62c93e612435f2cce9.
spec = { type = "upstream", upstream-distro = { name = "fedora", version = "44" }, upstream-commit = "4db14e5ed7d3bdb7fda97f62c93e612435f2cce9" }

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is intentional. We'll update the shim package once we have signed 16.1 binaries.


overlays = [
# Workaround: add dist tag to the release to avoid NEVR conflicts
Expand All @@ -8,5 +9,16 @@ overlays = [

# Workaround: create a compat symlink that does not include the dist tag.
{ type = "spec-append-lines", section = "%install", lines = ["ln -s %{version}-%{release} %{buildroot}%{_datadir}/shim/%{version}-2"] },
{ type = "spec-append-lines", section = "%files", lines = ["%{_datadir}/shim/%{version}-2"] }
{ type = "spec-append-lines", section = "%files", lines = ["%{_datadir}/shim/%{version}-2"] },

# Preserve the Fedora SBAT EVR and append the Azure Linux SBAT EVR.
{ description = "Use the Fedora 16.1-1.fc44 EVR in the shim.fedora SBAT record", type = "file-search-replace", file = "sbat.redhat.csv.in", regex = '@@VERSION@@-@@RELEASE@@', replacement = '@@UPSTREAM_VERSION_RELEASE@@', metadata = { category = "azl-branding-policy", upstream-status = "inapplicable" } },
{ description = "Add the Azure Linux shim SBAT record", type = "file-search-replace", file = "sbat.redhat.csv.in", regex = '\n\z', replacement = "\nshim.azurelinux,1,Microsoft,shim,@@VERSION@@-@@RELEASE@@,https://github.com/microsoft/azurelinux/issues\n", metadata = { category = "azl-branding-policy", upstream-status = "inapplicable" } },
{ description = "Define the upstream Fedora shim EVR for SBAT substitution", type = "spec-prepend-lines", lines = ["%global upstream_version_release 16.1-1.fc44", ""], metadata = { category = "azl-branding-policy", upstream-status = "inapplicable" } },
{ description = "Substitute the upstream Fedora shim EVR into SBAT", type = "spec-search-replace", section = "%prep", regex = '''^ -e 's/@@RELEASE@@/%{release}/g' \\$''', replacement = ''' -e 's/@@RELEASE@@/%{release}/g' \
-e 's/@@UPSTREAM_VERSION_RELEASE@@/%{upstream_version_release}/g' \''', metadata = { category = "azl-branding-policy", upstream-status = "inapplicable" } },
{ description = "Rename the Azure Linux shim SBAT template", type = "file-rename", file = "sbat.redhat.csv.in", replacement = "sbat.azurelinux.csv.in", metadata = { category = "azl-branding-policy", upstream-status = "inapplicable" } },
{ description = "Use the renamed Azure Linux SBAT template as Source3", type = "spec-search-replace", regex = 'sbat\.redhat\.csv\.in', replacement = "sbat.azurelinux.csv.in", metadata = { category = "azl-branding-policy", upstream-status = "inapplicable" } },
{ description = "Stage the Azure Linux Secure Boot CA as the shim vendor certificate", type = "file-add", file = "azurelinux-ca-20230216.der", source = "azurelinux-ca-20230216.der", metadata = { category = "azl-security-compliance", upstream-status = "inapplicable" } },
{ description = "Use the Azure Linux Secure Boot CA as shim Source1", type = "spec-search-replace", regex = 'fedora-ca-20200709\.cer', replacement = "azurelinux-ca-20230216.der", metadata = { category = "azl-security-compliance", upstream-status = "inapplicable" } }
]
Binary file not shown.
28 changes: 25 additions & 3 deletions base/comps/shim-unsigned-x64/shim-unsigned-x64.comp.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,34 @@
[components.shim-unsigned-x64]
spec = { type = "upstream", upstream-distro = { name = "fedora", version = "43" }, upstream-commit = "bacb81905ea6806b97b968527e5ca9b2e3f0f7b4" }
# Pin shim 16.1 to Fedora dist-git commit d355c62164bd48c6f47774fe04b0d730d892e006.
spec = { type = "upstream", upstream-distro = { name = "fedora", version = "43" }, upstream-commit = "d355c62164bd48c6f47774fe04b0d730d892e006" }

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is intentional. We'll update the shim package once we have properly signed 16.1 binaries.


overlays = [
# Workaround: add dist tag to the release to avoid NEVR conflicts
# while we are still rebuilding all packages in new tags nightly.
{ type = "spec-update-tag", tag = "Release", value = "2%{?dist}" },

# Workaround: create a compat symlink that does not include the dist tag.
{ type = "spec-append-lines", section = "%install", lines = ["ln -s %{version}-%{release} %{buildroot}%{_datadir}/shim/%{version}-2"] },
{ type = "spec-append-lines", section = "%files", lines = ["%{_datadir}/shim/%{version}-2"] }
{ type = "spec-append-lines", section = "%files", lines = ["%{_datadir}/shim/%{version}-2"] },

# Azure Linux does not support IA32. Omit its packages and skip its build
# and installation paths, which require the unsupported setarch -B call.
{ type = "spec-remove-subpackage", package = "shim-unsigned-%{efialtarch}" },
{ type = "spec-remove-subpackage", package = "shim-unsigned-%{efialtarch}-debuginfo" },
{ type = "spec-search-replace", regex = '^%global __debug_install_post %{SOURCE100} %{efiarch} %{efialtarch}$', replacement = "%global __debug_install_post %{SOURCE100} %{efiarch}" },
{ type = "spec-search-replace", section = "%prep", regex = '^mkdir build-%{efialtarch}$', replacement = "" },
{ type = "spec-search-replace", section = "%build", regex = '^cd build-%{efialtarch}$', replacement = "%if 0\ncd build-%{efialtarch}" },
{ type = "spec-append-lines", section = "%build", lines = ["%endif"] },
{ type = "spec-search-replace", section = "%install", regex = '^cd build-%{efialtarch}$', replacement = "%if 0\ncd build-%{efialtarch}" },
{ type = "spec-append-lines", section = "%install", lines = ["%endif", "ln -s %{version}-%{release} %{buildroot}%{_datadir}/shim/%{version}-2"] },
Comment on lines +15 to +22

# Preserve the Fedora SBAT EVR and append the Azure Linux SBAT EVR.
{ description = "Use the Fedora 16.1-1.fc43 EVR in the shim.fedora SBAT record", type = "file-search-replace", file = "sbat.redhat.csv.in", regex = '@@VERSION@@-@@RELEASE@@', replacement = '@@UPSTREAM_VERSION_RELEASE@@', metadata = { category = "azl-branding-policy", upstream-status = "inapplicable" } },
{ description = "Add the Azure Linux shim SBAT record", type = "file-search-replace", file = "sbat.redhat.csv.in", regex = '\n\z', replacement = "\nshim.azurelinux,1,Microsoft,shim,@@VERSION@@-@@RELEASE@@,https://github.com/microsoft/azurelinux/issues\n", metadata = { category = "azl-branding-policy", upstream-status = "inapplicable" } },
{ description = "Define the upstream Fedora shim EVR for SBAT substitution", type = "spec-prepend-lines", lines = ["%global upstream_version_release 16.1-1.fc43", ""], metadata = { category = "azl-branding-policy", upstream-status = "inapplicable" } },
{ description = "Substitute the upstream Fedora shim EVR into SBAT", type = "spec-search-replace", section = "%prep", regex = '''^ -e 's/@@RELEASE@@/%{release}/g' \\$''', replacement = ''' -e 's/@@RELEASE@@/%{release}/g' \
-e 's/@@UPSTREAM_VERSION_RELEASE@@/%{upstream_version_release}/g' \''', metadata = { category = "azl-branding-policy", upstream-status = "inapplicable" } },
{ description = "Rename the Azure Linux shim SBAT template", type = "file-rename", file = "sbat.redhat.csv.in", replacement = "sbat.azurelinux.csv.in", metadata = { category = "azl-branding-policy", upstream-status = "inapplicable" } },
{ description = "Use the renamed Azure Linux SBAT template as Source3", type = "spec-search-replace", regex = 'sbat\.redhat\.csv\.in', replacement = "sbat.azurelinux.csv.in", metadata = { category = "azl-branding-policy", upstream-status = "inapplicable" } },
{ description = "Stage the Azure Linux Secure Boot CA as the shim vendor certificate", type = "file-add", file = "azurelinux-ca-20230216.der", source = "azurelinux-ca-20230216.der", metadata = { category = "azl-security-compliance", upstream-status = "inapplicable" } },
{ description = "Use the Azure Linux Secure Boot CA as shim Source1", type = "spec-search-replace", regex = 'fedora-ca-20200709\.cer', replacement = "azurelinux-ca-20230216.der", metadata = { category = "azl-security-compliance", upstream-status = "inapplicable" } }
]
6 changes: 3 additions & 3 deletions locks/shim-unsigned-aarch64.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Managed by azldev component update. Do not edit manually.
version = 1
import-commit = '67c1d520f9a8080f6b689714099f813f23154c8f'
upstream-commit = '67c1d520f9a8080f6b689714099f813f23154c8f'
upstream-commit = '4db14e5ed7d3bdb7fda97f62c93e612435f2cce9'
manual-bump = 1
input-fingerprint = 'sha256:92d811b89ae5c9b28746a1b96deecf6d971d413071837f5cbdc17655206a9c7f'
resolution-input-hash = 'sha256:6db1df0efaeaeb4976389f097ed39c6342b172f973c7a4ae1c93e814c760989b'
input-fingerprint = 'sha256:3c4b6f87b3f70a95bca0aaffd3d2ed4b70513941943df490ad05b96867195e85'
resolution-input-hash = 'sha256:39a1f518415c394ca2aa046131b78bcd040da96a67ceab16974895aaf79e77bf'
6 changes: 3 additions & 3 deletions locks/shim-unsigned-x64.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Managed by azldev component update. Do not edit manually.
version = 1
import-commit = 'bacb81905ea6806b97b968527e5ca9b2e3f0f7b4'
upstream-commit = 'bacb81905ea6806b97b968527e5ca9b2e3f0f7b4'
upstream-commit = 'd355c62164bd48c6f47774fe04b0d730d892e006'
manual-bump = 1
input-fingerprint = 'sha256:ed3e699d4749fb506ed795fcfaa4e2b5bb892af8a44434a3c62455f9d9353437'
resolution-input-hash = 'sha256:0adce686885cc21f043cfebaaeef82b40a1710bbb0bb74b6de645c60e147a54d'
input-fingerprint = 'sha256:006952fdb30271fbb1d169ca2f69f917e358acc71977b57a031639c7e9bf1f07'
resolution-input-hash = 'sha256:6a1f2c11ed902ea756be8655161d7eadfb498d8b65a4633f896d278d663f7ed6'
Binary file not shown.
Binary file not shown.
4 changes: 4 additions & 0 deletions specs/s/shim-unsigned-aarch64/sbat.azurelinux.csv.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
shim.rh,3,The Fedora Project,shim,@@VERSION@@,https://src.fedoraproject.org/rpms/shim-unsigned-aarch64
shim.redhat,3,The Fedora Project,shim,@@VERSION@@,https://src.fedoraproject.org/rpms/shim-unsigned-aarch64
shim.fedora,3,The Fedora Project,shim,@@UPSTREAM_VERSION_RELEASE@@,https://src.fedoraproject.org/rpms/shim-unsigned-aarch64
shim.azurelinux,1,Microsoft,shim,@@VERSION@@-@@RELEASE@@,https://github.com/microsoft/azurelinux/issues
3 changes: 0 additions & 3 deletions specs/s/shim-unsigned-aarch64/sbat.redhat.csv

This file was deleted.

24 changes: 17 additions & 7 deletions specs/s/shim-unsigned-aarch64/shim-unsigned-aarch64.spec
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# This spec file has been modified by azldev to include build configuration overlays.
# Do not edit manually; changes may be overwritten.

%global upstream_version_release 16.1-1.fc44

%global pesign_vre 0.106-1
%global openssl_vre 1.0.2j
%global shim_commit_id afc49558b34548644c1cd0ad1b6526a9470182ed

# For prereleases, % global prerelease rc2, and downpatch Makefile
%if %{defined prerelease}
Expand All @@ -28,18 +31,18 @@
%global dbxfile %{nil}

Name: shim-unsigned-aarch64
Version: 15.8
Release: 4%{?dist}
Version: 16.1
Release: 7%{?dist}
Summary: First-stage UEFI bootloader
ExclusiveArch: aarch64
License: BSD-2-Clause AND OpenSSL
URL: https://github.com/rhboot/shim
Source0: https://github.com/rhboot/shim/releases/download/%{version}%{?dashpre}/shim-%{version}%{?dotpre}.tar.bz2
Source1: fedora-ca-20200709.cer
Source1: azurelinux-ca-20230216.der
%if 0%{?dbxfile}
Source2: %{dbxfile}
%endif
Source3: sbat.redhat.csv
Source3: sbat.azurelinux.csv.in
Source4: shim.patches

Source100: shim-find-debuginfo.sh
Expand All @@ -51,6 +54,7 @@ BuildRequires: elfutils-libelf-devel
BuildRequires: git openssl-devel openssl
BuildRequires: pesign >= %{pesign_vre}
BuildRequires: dos2unix findutils
BuildRequires: sed

# Shim uses OpenSSL, but cannot use the system copy as the UEFI ABI is not
# compatible with SysV (there's no red zone under UEFI) and there isn't a
Expand Down Expand Up @@ -90,10 +94,13 @@ BuildArch: noarch
git config --unset user.email
git config --unset user.name
mkdir build-%{efiarch}
cp %{SOURCE3} data/
sed -e 's/@@VERSION@@/%{version}/g' \
-e 's/@@RELEASE@@/%{release}/g' \
-e 's/@@UPSTREAM_VERSION_RELEASE@@/%{upstream_version_release}/g' \
< %{SOURCE3} > data/sbat.redhat.csv

%build
COMMIT_ID=5914984a1ffeab841f482c791426d7ca9935a5e6
COMMIT_ID=%{shim_commit_id}
MAKEFLAGS="TOPDIR=.. -f ../Makefile COMMIT_ID=${COMMIT_ID} "
MAKEFLAGS+="EFIDIR=%{efidir} PKGNAME=shim RELEASE=%{release} "
MAKEFLAGS+="ENABLE_SHIM_HASH=true "
Expand All @@ -114,7 +121,7 @@ make ${MAKEFLAGS} \
cd ..

%install
COMMIT_ID=5914984a1ffeab841f482c791426d7ca9935a5e6
COMMIT_ID=%{shim_commit_id}
MAKEFLAGS="TOPDIR=.. -f ../Makefile COMMIT_ID=${COMMIT_ID} "
MAKEFLAGS+="EFIDIR=%{efidir} PKGNAME=shim RELEASE=%{release} "
MAKEFLAGS+="ENABLE_SHIM_HASH=true "
Expand Down Expand Up @@ -151,6 +158,9 @@ ln -s %{version}-%{release} %{buildroot}%{_datadir}/shim/%{version}-2
%files debugsource -f build-%{efiarch}/debugsource.list

%changelog
* Wed Sep 03 2025 Peter Jones <pjones@redhat.com> - 16.1-1
- Update to shim-16.1

* Fri Mar 22 2024 Nicolas Frayer <nfrayer@redhat.com>
- Migrate to SPDX license
- Please refer to https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_2
Expand Down
2 changes: 1 addition & 1 deletion specs/s/shim-unsigned-aarch64/sources
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SHA512 (shim-15.8.tar.bz2) = 30b3390ae935121ea6fe728d8f59d37ded7b918ad81bea06e213464298b4bdabbca881b30817965bd397facc596db1ad0b8462a84c87896ce6c1204b19371cd1
SHA512 (shim-16.1.tar.bz2) = ca5f80e82f3b80b622028f03ef23105c98ee1b6a25f52a59c823080a3202dd4b9962266489296e99f955eb92e36ce13e0b1d57f688350006bba45f2718f159fb
Binary file not shown.
Binary file removed specs/s/shim-unsigned-x64/fedora-ca-20200709.cer
Binary file not shown.
4 changes: 4 additions & 0 deletions specs/s/shim-unsigned-x64/sbat.azurelinux.csv.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
shim.rh,3,The Fedora Project,shim,@@VERSION@@,https://src.fedoraproject.org/rpms/shim-unsigned-x64
shim.redhat,3,The Fedora Project,shim,@@VERSION@@,https://src.fedoraproject.org/rpms/shim-unsigned-x64
shim.fedora,3,The Fedora Project,shim,@@UPSTREAM_VERSION_RELEASE@@,https://src.fedoraproject.org/rpms/shim-unsigned-x64
shim.azurelinux,1,Microsoft,shim,@@VERSION@@-@@RELEASE@@,https://github.com/microsoft/azurelinux/issues
3 changes: 0 additions & 3 deletions specs/s/shim-unsigned-x64/sbat.redhat.csv

This file was deleted.

58 changes: 23 additions & 35 deletions specs/s/shim-unsigned-x64/shim-unsigned-x64.spec
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# This spec file has been modified by azldev to include build configuration overlays.
# Do not edit manually; changes may be overwritten.

%global upstream_version_release 16.1-1.fc43

%global pesign_vre 0.106-1
%global openssl_vre 1.0.2j
%global shim_commit_id afc49558b34548644c1cd0ad1b6526a9470182ed

# For prereleases, % global prerelease rc2, and downpatch Makefile
%if %{defined prerelease}
Expand All @@ -23,25 +26,25 @@
%global debug_package %{nil}
%global __debug_package 1
%global _binaries_in_noarch_packages_terminate_build 0
%global __debug_install_post %{SOURCE100} %{efiarch} %{efialtarch}
%global __debug_install_post %{SOURCE100} %{efiarch}
%undefine _debuginfo_subpackages

# currently here's what's in our dbx: nothing
%global dbxfile %{nil}

Name: shim-unsigned-%{efiarch}
Version: 15.8
Release: 4%{?dist}
Version: 16.1
Release: 8%{?dist}
Summary: First-stage UEFI bootloader
ExclusiveArch: x86_64
License: BSD-2-Clause AND OpenSSL
URL: https://github.com/rhboot/shim
Source0: https://github.com/rhboot/shim/releases/download/%{version}%{?dashpre}/shim-%{version}%{?dotpre}.tar.bz2
Source1: fedora-ca-20200709.cer
Source1: azurelinux-ca-20230216.der
%if 0%{?dbxfile}
Source2: %{dbxfile}
%endif
Source3: sbat.redhat.csv
Source3: sbat.azurelinux.csv.in
Source4: shim.patches

Source100: shim-find-debuginfo.sh
Expand All @@ -53,6 +56,7 @@ BuildRequires: elfutils-libelf-devel
BuildRequires: git openssl-devel openssl
BuildRequires: pesign >= %{pesign_vre}
BuildRequires: dos2unix findutils
BuildRequires: sed

# Shim uses OpenSSL, but cannot use the system copy as the UEFI ABI is not
# compatible with SysV (there's no red zone under UEFI) and there isn't a
Expand All @@ -71,13 +75,6 @@ use this package or when debugging this package.
%description
%desc

%package -n shim-unsigned-%{efialtarch}
Summary: First-stage UEFI bootloader (unsigned data)
Provides: bundled(openssl) = %{openssl_vre}

%description -n shim-unsigned-%{efialtarch}
%desc

%package debuginfo
Summary: Debug information for shim-unsigned-%{efiarch}
AutoReqProv: 0
Expand All @@ -86,14 +83,6 @@ BuildArch: noarch
%description debuginfo
%debug_desc

%package -n shim-unsigned-%{efialtarch}-debuginfo
Summary: Debug information for shim-unsigned-%{efialtarch}
AutoReqProv: 0
BuildArch: noarch

%description -n shim-unsigned-%{efialtarch}-debuginfo
%debug_desc

%package debugsource
Summary: Debug Source for shim-unsigned
AutoReqProv: 0
Expand All @@ -107,11 +96,14 @@ BuildArch: noarch
git config --unset user.email
git config --unset user.name
mkdir build-%{efiarch}
mkdir build-%{efialtarch}
cp %{SOURCE3} data/

sed -e 's/@@VERSION@@/%{version}/g' \
-e 's/@@RELEASE@@/%{release}/g' \
-e 's/@@UPSTREAM_VERSION_RELEASE@@/%{upstream_version_release}/g' \
< %{SOURCE3} > data/sbat.redhat.csv

%build
COMMIT_ID=5914984a1ffeab841f482c791426d7ca9935a5e6
COMMIT_ID=%{shim_commit_id}
MAKEFLAGS="TOPDIR=.. -f ../Makefile COMMIT_ID=${COMMIT_ID} "
MAKEFLAGS+="EFIDIR=%{efidir} PKGNAME=shim RELEASE=%{release} "
MAKEFLAGS+="ENABLE_SHIM_HASH=true "
Expand All @@ -131,15 +123,17 @@ make ${MAKEFLAGS} \
all
cd ..

%if 0
cd build-%{efialtarch}
setarch linux32 -B make ${MAKEFLAGS} \
ARCH=%{efialtarch} \
DEFAULT_LOADER='\\\\grub%{efialtarch}.efi' \
all
cd ..

%endif
%install
COMMIT_ID=5914984a1ffeab841f482c791426d7ca9935a5e6
COMMIT_ID=%{shim_commit_id}
MAKEFLAGS="TOPDIR=.. -f ../Makefile COMMIT_ID=${COMMIT_ID} "
MAKEFLAGS+="EFIDIR=%{efidir} PKGNAME=shim RELEASE=%{release} "
MAKEFLAGS+="ENABLE_SHIM_HASH=true "
Expand All @@ -160,6 +154,7 @@ make ${MAKEFLAGS} \
install -m 0644 BOOT*.CSV "${RPM_BUILD_ROOT}/%{shimdir}/"
cd ..

%if 0
cd build-%{efialtarch}
setarch linux32 make ${MAKEFLAGS} \
ARCH=%{efialtarch} \
Expand All @@ -169,6 +164,7 @@ setarch linux32 make ${MAKEFLAGS} \
install -m 0644 BOOT*.CSV "${RPM_BUILD_ROOT}/%{shimaltdir}/"
cd ..

%endif
ln -s %{version}-%{release} %{buildroot}%{_datadir}/shim/%{version}-2
%files
%license COPYRIGHT
Expand All @@ -180,22 +176,14 @@ ln -s %{version}-%{release} %{buildroot}%{_datadir}/shim/%{version}-2
%{shimdir}/*.CSV

%{_datadir}/shim/%{version}-2
%files -n shim-unsigned-%{efialtarch}
%license COPYRIGHT
%dir %{shimrootdir}
%dir %{shimversiondir}
%dir %{shimaltdir}
%{shimaltdir}/*.efi
%{shimaltdir}/*.hash
%{shimaltdir}/*.CSV

%files debuginfo -f build-%{efiarch}/debugfiles.list

%files -n shim-unsigned-%{efialtarch}-debuginfo -f build-%{efialtarch}/debugfiles.list

%files debugsource -f build-%{efiarch}/debugsource.list

%changelog
* Wed Sep 03 2025 Peter Jones <pjones@redhat.com> - 16.1-1
- Update to shim-16.1

* Fri Mar 22 2024 Nicolas Frayer <nfrayer@redhat.com>
- Migrate to SPDX license
- Please refer to https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_2
Expand Down
2 changes: 1 addition & 1 deletion specs/s/shim-unsigned-x64/sources
Original file line number Diff line number Diff line change
@@ -1 +1 @@
SHA512 (shim-15.8.tar.bz2) = 30b3390ae935121ea6fe728d8f59d37ded7b918ad81bea06e213464298b4bdabbca881b30817965bd397facc596db1ad0b8462a84c87896ce6c1204b19371cd1
SHA512 (shim-16.1.tar.bz2) = ca5f80e82f3b80b622028f03ef23105c98ee1b6a25f52a59c823080a3202dd4b9962266489296e99f955eb92e36ce13e0b1d57f688350006bba45f2718f159fb
Loading