xref: /linux/scripts/sbom/sbom.py (revision e72b635ceaf7e8d5ad757169d5950c43adeb5261)
1#!/usr/bin/env python3
2# SPDX-License-Identifier: GPL-2.0-only OR MIT
3# Copyright (C) 2025 TNG Technology Consulting GmbH
4
5"""
6Compute software bill of materials in SPDX format describing a kernel build.
7"""
8
9
10def main():
11    pass
12
13
14# Call main method
15if __name__ == "__main__":
16    main()
17