From 05cba7f4ce36a7a24236999d9ce5ae493e61282a Mon Sep 17 00:00:00 2001 From: Huaxin Lu Date: Wed, 19 Jun 2024 14:56:21 +0800 Subject: [PATCH] Add the pub key in openEuler RPM-PGP certificate to kernel --- kernel.spec | 5 ++++- process_pgp_certs.sh | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/kernel.spec b/kernel.spec index ec1fca6f..b6e25312 100644 --- a/kernel.spec +++ b/kernel.spec @@ -12,7 +12,7 @@ %global upstream_sublevel 0 %global devel_release 153 %global maintenance_release .56.0 -%global pkg_release .134 +%global pkg_release .135 %define with_debuginfo 1 # Do not recompute the build-id of vmlinux in find-debuginfo.sh @@ -878,6 +878,9 @@ fi %endif %changelog +* Wed Jun 19 2024 luhuaxin - 5.10.0-153.56.0.135 +- Add the pub key in openEuler RPM-PGP certificate + * Wed May 29 2024 Jialin Zhang - 5.10.0-153.56.0.134 - !8158 [sync] PR-8017: perf/core: Bail out early if the request AUX area is out of bound - !8115 [sync] PR-8023: fs/ntfs3: Fixed overflow check in mi_enum_attr() diff --git a/process_pgp_certs.sh b/process_pgp_certs.sh index 87aae370..3f8cdf0f 100644 --- a/process_pgp_certs.sh +++ b/process_pgp_certs.sh @@ -31,6 +31,6 @@ dd if=$CERT_2203_SPx.gpg of=$CERT_2203_SPx.subkey.gpg skip=903 bs=1c count=399 s # 22.03 use main key to sign, so we dont need to deal it. # merge all cert information -cat $CERT_2203_SPx.subkey.gpg $CERT_2203_SPx.userid.gpg $CERT_2203.gpg > $CERT_OUT +cat $CERT_2203_SPx.subkey.gpg $CERT_2203_SPx.userid.gpg $CERT_2203.gpg $CERT_2203_SPx.gpg > $CERT_OUT # cleanup rm -f RPM-GPG-KEY-openEuler-* -- Gitee