summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-02-27 15:42:02 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-03-15 14:36:52 +0000
commitddacd8c66fb53e7c077a217e73f4cbcc0b6c6f6f (patch)
treef0a0df890c7364dcbebef92fbd972a7c56ac6e6e /bitbake
parentcb3cbd8bb222b6f0e5f1a07d8e524b494eded70c (diff)
downloadpoky-ddacd8c66fb53e7c077a217e73f4cbcc0b6c6f6f.tar.gz
bitbake: bblayers/query: Update to handle REQUIRED_VERSION
Ii is unclear whether any changes are needed to bblayers are needed to handle the extra data from REQUIRED_VERSION. Update to at match the new API, at present it doesn't look necessary to handle the required version data. (Bitbake rev: 53c30efec4099035d19e6717059dfceff8ff88fd) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bblayers/query.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bblayers/query.py b/bitbake/lib/bblayers/query.py
index f5e3c84747..947422a72f 100644
--- a/bitbake/lib/bblayers/query.py
+++ b/bitbake/lib/bblayers/query.py
@@ -128,7 +128,7 @@ skipped recipes will also be listed, with a " (skipped)" suffix.
128 sys.exit(1) 128 sys.exit(1)
129 129
130 pkg_pn = self.tinfoil.cooker.recipecaches[mc].pkg_pn 130 pkg_pn = self.tinfoil.cooker.recipecaches[mc].pkg_pn
131 (latest_versions, preferred_versions) = self.tinfoil.find_providers(mc) 131 (latest_versions, preferred_versions, required_versions) = self.tinfoil.find_providers(mc)
132 allproviders = self.tinfoil.get_all_providers(mc) 132 allproviders = self.tinfoil.get_all_providers(mc)
133 133
134 # Ensure we list skipped recipes 134 # Ensure we list skipped recipes