diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2017-10-31 11:35:17 +1300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-11-10 14:44:31 +0000 |
commit | 05e2c4ada7083f40866846a21fe76c852f1dfefe (patch) | |
tree | 476dceef538790223ae39627a9e9fd1f7c6777f9 /scripts/lib | |
parent | 44f4c97234623cbd770fbc86eabb04e7e0c91061 (diff) | |
download | openembedded-core-05e2c4ada7083f40866846a21fe76c852f1dfefe.tar.gz openembedded-core-05e2c4ada7083f40866846a21fe76c852f1dfefe.tar.bz2 openembedded-core-05e2c4ada7083f40866846a21fe76c852f1dfefe.zip |
devtool: upgrade: fix accidentally swapped parameters
It appears that when fixing the signature unlocking in OE-Core commit
4e9a0be32fc30fb87d65da7cd1a4015c99533aff I swapped the parameters here
and did not test it within the eSDK (it does nothing outside of the
eSDK) resulting in a TypeError when devtool upgrade was used in the
eSDK. Swap the parameters around to the correct ordering.
Fixes [YOCTO #12285].
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'scripts/lib')
-rw-r--r-- | scripts/lib/devtool/upgrade.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/upgrade.py b/scripts/lib/devtool/upgrade.py index f1b3ff0a99..4cfab0cb19 100644 --- a/scripts/lib/devtool/upgrade.py +++ b/scripts/lib/devtool/upgrade.py @@ -433,7 +433,7 @@ def upgrade(args, config, basepath, workspace): copied, config.workspace_path, rd) standard._add_md5(config, pn, af) - update_unlockedsigs(basepath, workspace, [pn], args.fixed_setup) + update_unlockedsigs(basepath, workspace, args.fixed_setup, [pn]) logger.info('Upgraded source extracted to %s' % srctree) logger.info('New recipe is %s' % rf) |