summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYi Zhao <yi.zhao@windriver.com>2019-08-19 15:09:34 +0800
committerJia Zhang <zhang.jia@linux.alibaba.com>2019-08-19 17:20:45 +0800
commit729916e3228cac04d14dd74d737d36ff35c03175 (patch)
tree3ea6ed5be854947b51ae53873f96c2bbf524ab2b
parent1be79730bf8bf32a68800bd12dacda0773bb44fb (diff)
downloadmeta-secure-core-729916e3228cac04d14dd74d737d36ff35c03175.tar.gz
fixup! meta-secure-core: use bb.fatal instead of bb.build.FuncFailed
-rw-r--r--meta-signing-key/classes/user-key-store.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-signing-key/classes/user-key-store.bbclass b/meta-signing-key/classes/user-key-store.bbclass
index fbbac56..88d7290 100644
--- a/meta-signing-key/classes/user-key-store.bbclass
+++ b/meta-signing-key/classes/user-key-store.bbclass
@@ -220,7 +220,7 @@ def pem2der(input, output, d):
220 try: 220 try:
221 result, _ = bb.process.run(cmd) 221 result, _ = bb.process.run(cmd)
222 except bb.process.ExecutionError: 222 except bb.process.ExecutionError:
223 raise bb.fatal('Unable to convert %s to %s' % (input, output)) 223 bb.fatal('Unable to convert %s to %s' % (input, output))
224 224
225# Convert the certificate (PEM formatted) to ESL. 225# Convert the certificate (PEM formatted) to ESL.
226__pem2esl() { 226__pem2esl() {