mirror of
https://git.yoctoproject.org/poky
synced 2026-06-03 01:40:07 +00:00
cml1/sstate: Fix missing getVar parameter
(From OE-Core rev: 84065e9b33e6d401e4e50436665838be2d0267ad) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -26,7 +26,7 @@ python do_menuconfig() {
|
||||
except OSError:
|
||||
mtime = 0
|
||||
|
||||
oe_terminal("${SHELL} -c \"make %s; if [ \$? -ne 0 ]; then echo 'Command failed.'; printf 'Press any key to continue... '; read r; fi\"" % d.getVar('KCONFIG_CONFIG_COMMAND'),
|
||||
oe_terminal("${SHELL} -c \"make %s; if [ \$? -ne 0 ]; then echo 'Command failed.'; printf 'Press any key to continue... '; read r; fi\"" % d.getVar('KCONFIG_CONFIG_COMMAND', True),
|
||||
d.getVar('PN', True ) + ' Configuration', d)
|
||||
|
||||
# FIXME this check can be removed when the minimum bitbake version has been bumped
|
||||
|
||||
@@ -691,8 +691,8 @@ python sstate_sign_package () {
|
||||
sstate_pkg = d.getVar('SSTATE_PKG', True)
|
||||
if os.path.exists(sstate_pkg + '.sig'):
|
||||
os.unlink(sstate_pkg + '.sig')
|
||||
signer.detach_sign(sstate_pkg, d.getVar('SSTATE_SIG_KEY'), None,
|
||||
d.getVar('SSTATE_SIG_PASSPHRASE'), armor=False)
|
||||
signer.detach_sign(sstate_pkg, d.getVar('SSTATE_SIG_KEY', False), None,
|
||||
d.getVar('SSTATE_SIG_PASSPHRASE', True), armor=False)
|
||||
}
|
||||
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user