summaryrefslogtreecommitdiffstats
path: root/meta/classes/sign_package_feed.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/sign_package_feed.bbclass')
-rw-r--r--meta/classes/sign_package_feed.bbclass6
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/classes/sign_package_feed.bbclass b/meta/classes/sign_package_feed.bbclass
index d89bc0b195..d5df8afb9f 100644
--- a/meta/classes/sign_package_feed.bbclass
+++ b/meta/classes/sign_package_feed.bbclass
@@ -6,6 +6,10 @@
6# Path to a file containing the passphrase of the signing key. 6# Path to a file containing the passphrase of the signing key.
7# PACKAGE_FEED_GPG_NAME 7# PACKAGE_FEED_GPG_NAME
8# Name of the key to sign with. May be key id or key name. 8# Name of the key to sign with. May be key id or key name.
9# PACKAGE_FEED_GPG_BACKEND
10# Optional variable for specifying the backend to use for signing.
11# Currently the only available option is 'local', i.e. local signing
12# on the build host.
9# GPG_BIN 13# GPG_BIN
10# Optional variable for specifying the gpg binary/wrapper to use for 14# Optional variable for specifying the gpg binary/wrapper to use for
11# signing. 15# signing.
@@ -15,6 +19,8 @@
15inherit sanity 19inherit sanity
16 20
17PACKAGE_FEED_SIGN = '1' 21PACKAGE_FEED_SIGN = '1'
22PACKAGE_FEED_GPG_BACKEND ?= 'local'
23
18 24
19python () { 25python () {
20 # Check sanity of configuration 26 # Check sanity of configuration