Ok, [email protected] ist installiert und für die Instanzen 1, 2, 3 und 4 auch so konfiguriert, dass diese vier Instanzen nach dem Systemstart auch gestartet werden. Die ipnetp.cfg möchte ich aber gerne Dir überlassen.
i.A.Thomas Pfau Engineer T: +49 4102 480-0 D: +49 4102 480 774 E: [email protected] Beimoorweg 22d/22926Ahrensburg/Germany Follow us: EAE: QIPC: **** EAE Engineering Automation Electronics GmbH **** Registered office: Ahrensburg District Court: Lübeck - Trade register: HRB 14141 Managing Directors: Conrad Borchert, Tom van Holten Privacy statement Please note that we store your data as part of our business activities. For further information please refer to our privacy statement on our website: EAE privacy statement. -----Ursprüngliche Nachricht----- Von: ptxdist <[email protected]> Im Auftrag von Michael Grzeschik Gesendet: Donnerstag, 6. November 2025 12:31 An: [email protected] Betreff: [ptxdist] [PATCH] report/cyclonedx_sbom: add propietary to ignore list CAUTION: This email originated from outside EAE. Please use caution when clicking links or opening attachments. Some packages in customer BSPs have internaly set proprietary in their license tag. Those packages should be ignored in the license parsing. Signed-off-by: Michael Grzeschik <[email protected]> --- scripts/report/cyclonedx_sbom.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/report/cyclonedx_sbom.py b/scripts/report/cyclonedx_sbom.py index 70bf7ab7a..594824f3f 100644 --- a/scripts/report/cyclonedx_sbom.py +++ b/scripts/report/cyclonedx_sbom.py @@ -72,7 +72,7 @@ class CycloneDXSbomGenerator(SbomGenerator): ) if licenses := pkg.get('licenses', None): - if licenses != 'ignore': + if licenses != 'ignore' and licenses != 'proprietary': component.licenses = [ self.lc_factory.make_from_string(licenses)] @@ -93,7 +93,7 @@ class CycloneDXSbomGenerator(SbomGenerator): lic.url = prefix + file_path license_list.append(lic) component.evidence = ComponentEvidence(licenses=license_list) - elif licenses != 'ignore' and not parent: + elif licenses != 'ignore' and licenses != 'proprietary' and not parent: print(f'Warning: missing license-files for "{pkg_name}"') if urls := pkg.get('url', None): -- 2.47.3
