diff options
author | Zoltán Böszörményi <zboszor@gmail.com> | 2025-01-30 10:04:03 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-02-07 17:52:48 +0000 |
commit | 21521c621895019e8fc46b4118f9cbb6abf8b5bb (patch) | |
tree | 7231697592119ddaa243574dd7a681fd2253a85d /documentation | |
parent | d554399bf8d53e3d31c6409ce9fb4a3f9ecb7ffc (diff) | |
download | poky-21521c621895019e8fc46b4118f9cbb6abf8b5bb.tar.gz |
dev-manual/packages: add information about signing changes
(From yocto-docs rev: 6c1a77e5db7ae9910d24deb023619b9391c8b4ad)
Signed-off-by: Zoltán Böszörményi <zboszor@gmail.com>
Reviewed-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Antonin Godard <antonin.godard@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/dev-manual/packages.rst | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/documentation/dev-manual/packages.rst b/documentation/dev-manual/packages.rst index 4ba2dcae3a..8845bf2fab 100644 --- a/documentation/dev-manual/packages.rst +++ b/documentation/dev-manual/packages.rst | |||
@@ -819,9 +819,19 @@ to use signed package feeds (repositories) when doing a build. | |||
819 | Signing RPM Packages | 819 | Signing RPM Packages |
820 | -------------------- | 820 | -------------------- |
821 | 821 | ||
822 | To enable signing RPM packages, you must set up the following | 822 | To enable signing RPM packages, you must modify the ``rpm`` |
823 | configurations in either your ``local.config`` or ``distro.config`` | 823 | recipe configuration to include support for OpenPGP signing. |
824 | file:: | 824 | That may be done either in a ``.bbappend`` for the ``rpm`` recipe:: |
825 | |||
826 | PACKAGECONFIG:append = " sequoia" | ||
827 | |||
828 | or in a :term:`Configuration File`:: | ||
829 | |||
830 | PACKAGECONFIG:append:pn-rpm-native = " sequoia" | ||
831 | PACKAGECONFIG:append:pn-rpm = " sequoia" | ||
832 | |||
833 | You must also set up the following settings in a | ||
834 | :term:`Configuration File`:: | ||
825 | 835 | ||
826 | # Inherit sign_rpm.bbclass to enable signing functionality | 836 | # Inherit sign_rpm.bbclass to enable signing functionality |
827 | INHERIT += " sign_rpm" | 837 | INHERIT += " sign_rpm" |