summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--documentation/dev-manual/packages.rst16
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.
819Signing RPM Packages 819Signing RPM Packages
820-------------------- 820--------------------
821 821
822To enable signing RPM packages, you must set up the following 822To enable signing RPM packages, you must modify the ``rpm``
823configurations in either your ``local.config`` or ``distro.config`` 823recipe configuration to include support for OpenPGP signing.
824file:: 824That may be done either in a ``.bbappend`` for the ``rpm`` recipe::
825
826 PACKAGECONFIG:append = " sequoia"
827
828or in a :term:`Configuration File`::
829
830 PACKAGECONFIG:append:pn-rpm-native = " sequoia"
831 PACKAGECONFIG:append:pn-rpm = " sequoia"
832
833You 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"