Skip to content

Commit

Permalink
Apply new patch to kirkstone-patch-new
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan link committed Nov 11, 2024
1 parent 2d0b0c9 commit 3165955
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions classes/fossa.bbclass
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,15 @@ python do_fossa() {

metadata_dir = d.getVar('FOSSA_METADATA_RECIPES')
pkg_metadata = all_pkg_metadata(d, metadata_dir)
pkgs = image_list_installed_packages(d)
pkg_metadata = all_pkg_metadata(d, metadata_dir)

installed_pkgs = []
for pkg in pkgs:
for pkg in pkg_metadata:

for ignored_suffix in (d.getVar("SPECIAL_PKGSUFFIX") or "").split():
if pkg.endswith(ignored_suffix):
pass

try:
installed_pkgs.append(mk_user_dependencies(pkg_metadata[pkg]))
except Exception:
Expand Down

0 comments on commit 3165955

Please sign in to comment.