Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

generate_sbom: add license mapping to rewrite licenses spdx conform #1006

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on May 17, 2024

  1. generate_sbom: add license mapping to rewrite licenses spdx conform

    Added functionalities to configure license mapping files
    (json-formatted) to do a rewrite of the licenses to write spdx conform
    ones into the generated document.
    
    This is to handle non spdx conform license naming in packages taken from
    upstream without forking/fixing each package.
    
    The mapping has to be part of the image sources/created rootfs (e.g. livebuild).
    
    Example of a mapping file:
    ```
    {
      "GPL-1+": "GPL-1.0-or-later",
      "LGPL-1+": "LGPL-1.0-or-later",
      "LGPL-1.0+": "LGPL-1.0-or-later",
      "GPL-2+": "GPL-2.0-or-later",
      "GPL-2.0+": "GPL-2.0-or-later",
      "GPL-2": "GPL-2.0-only",
      "GPL-2.0": "GPL-2.0-only",
      "GPL-3+": "GPL-3.0-or-later"
    }
    
    ```
    
    The mapping is activated by specifying the files in the project
    configuration:
    ```
    BuildFlags: spdx-license-mapping:/license_mapping.json spdx-license-mapping:/spdx_licenses.json
    ```
    
    The flag can be defined multiple times for different files if needed,
    the content of the files gets merged.
    The files are defined in the BuildFlag with its path in the created rootfs.
    cschneemann committed May 17, 2024
    Configuration menu
    Copy the full SHA
    5f7e431 View commit details
    Browse the repository at this point in the history