forked from pool/dracut-pcr-signature
Compare commits
13 Commits
Author | SHA256 | Date | |
---|---|---|---|
4d139bd886 | |||
c2b491e4f4 | |||
ca91e50bb8 | |||
8505994193 | |||
f537195dee | |||
f78b9c9122 | |||
3f8b955db5 | |||
c15bf51a25 | |||
27a098f766 | |||
0f2e9f80d0 | |||
51eb753a31 | |||
c20c6beffa | |||
0c44d90542 |
@@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/aplanas/dracut-pcr-signature.git</param>
|
||||
<param name="changesrevision">9f5e5bc9f0e8d9cd4c6dfcca8f5505acce98d3dd</param></service></servicedata>
|
||||
<param name="changesrevision">2be2b326537499e7c75d8822a9affa3e0a66161b</param></service></servicedata>
|
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:771a8ea29ed9eab9140114868d4c709989687376c8a7145aa22bbd6642929181
|
||||
size 8400
|
3
dracut-pcr-signature-0.6+3.tar.xz
Normal file
3
dracut-pcr-signature-0.6+3.tar.xz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c2625b2fcc0f71f73e6022b8651e64dedaf77b484c8e7853070f13102a662429
|
||||
size 8764
|
@@ -1,3 +1,48 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 01 07:39:40 UTC 2025 - Alberto Planas Dominguez <aplanas@suse.com>
|
||||
|
||||
- Update to version 0.6+3:
|
||||
* Use installkernel() only to install kernel modules
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 22 09:27:06 UTC 2025 - Alberto Planas Dominguez <aplanas@suse.com>
|
||||
|
||||
- Update to version 0.6+2 (bsc#1246322):
|
||||
* Extract the token from os-release
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 17 14:49:21 UTC 2025 - aplanas@suse.com
|
||||
|
||||
- Update to version 0.6+1:
|
||||
* Fix typo in service description
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 31 13:46:43 UTC 2025 - aplanas@suse.com
|
||||
|
||||
- Update to version 0.6+0:
|
||||
* Copy measure-pcr files
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 17 09:56:49 UTC 2024 - aplanas@suse.com
|
||||
|
||||
- Update to version 0.5+1:
|
||||
* Make the mount do not depend of default service
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 31 09:37:56 UTC 2024 - aplanas@suse.com
|
||||
|
||||
- Update to version 0.5+0:
|
||||
* Normalize spec file
|
||||
* Use a generator to mount ESP
|
||||
* Avoid race condition when multiple disks are encrypted
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 07 14:52:41 UTC 2024 - aplanas@suse.com
|
||||
|
||||
- Update to version 0.4+2:
|
||||
* Synchronize spec file
|
||||
* Copy JSON file in /run to survive initrd
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu May 30 08:45:40 UTC 2024 - Alberto Planas Dominguez <aplanas@suse.com>
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package dracut-pcr-signature
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,12 +17,13 @@
|
||||
|
||||
|
||||
Name: dracut-pcr-signature
|
||||
Version: 0.4+0
|
||||
Version: 0.6+3
|
||||
Release: 0
|
||||
Summary: Dracut module to import PCR signatures
|
||||
License: GPL-2.0-or-later
|
||||
URL: https://github.com/aplanas/dracut-pcr-signature
|
||||
Source: %{name}-%{version}.tar.xz
|
||||
BuildRequires: pkgconfig
|
||||
BuildRequires: rpm-config-SUSE
|
||||
BuildRequires: pkgconfig(dracut)
|
||||
BuildArch: noarch
|
||||
@@ -39,10 +40,10 @@ unlock the LUKS2 device via systemd-cryptsetup.
|
||||
%build
|
||||
|
||||
%install
|
||||
mkdir -p %buildroot/usr/lib/dracut/modules.d/50pcr-signature
|
||||
cp module-setup.sh %buildroot/usr/lib/dracut/modules.d/50pcr-signature
|
||||
cp pcr-signature.sh %buildroot/usr/lib/dracut/modules.d/50pcr-signature
|
||||
cp pcr-signature.conf %buildroot/usr/lib/dracut/modules.d/50pcr-signature
|
||||
mkdir -p %{buildroot}%{_prefix}/lib/dracut/modules.d/50pcr-signature
|
||||
for i in module-setup.sh boot-efi-generator.sh pcr-signature.sh pcr-signature.service; do
|
||||
cp "$i" %{buildroot}%{_prefix}/lib/dracut/modules.d/50pcr-signature
|
||||
done
|
||||
|
||||
%post
|
||||
%{?regenerate_initrd_post}
|
||||
@@ -56,8 +57,8 @@ cp pcr-signature.conf %buildroot/usr/lib/dracut/modules.d/50pcr-signature
|
||||
%files
|
||||
%license LICENSE
|
||||
%doc README.md
|
||||
%dir /usr/lib/dracut
|
||||
%dir /usr/lib/dracut/modules.d
|
||||
/usr/lib/dracut/modules.d/50pcr-signature
|
||||
%dir %{_prefix}/lib/dracut
|
||||
%dir %{_prefix}/lib/dracut/modules.d
|
||||
%{_prefix}/lib/dracut/modules.d/50pcr-signature
|
||||
|
||||
%changelog
|
||||
|
Reference in New Issue
Block a user