Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,3 +93,11 @@ jobs:
with:
name: images
path: images/*.desktop

- name: Upload Software Bill of Materials to GitHub
uses: actions/upload-artifact@v7
with:
name: sbom
path: |
images/lxatac-core-image-base-lxatac.rootfs.json
images/lxatac-core-image-base-lxatac.rootfs.spdx.json
4 changes: 4 additions & 0 deletions meta-lxatac-bsp/recipes-kernel/linux/linux-lxatac.bb
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ S = "${UNPACKDIR}/linux-${LINUX_VERSION}"

COMPATIBLE_MACHINE = "lxatac"

# Track which files are compiled in so we can ignore CVEs that only
# affect files we do not build.
SPDX_INCLUDE_COMPILED_SOURCES = "1"

# The coreutils-native dependency is required since kernel 6.11,
# which uses the `truncate` tool in a script.
# It can likely be removed again once the kernel.bbclass is updated.
Expand Down
7 changes: 5 additions & 2 deletions meta-lxatac-software/conf/distro/tacos.conf
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,11 @@ require conf/distro/include/yocto-uninative.inc
require conf/distro/include/security_flags.inc
INHERIT += "uninative"

# Enable creation of SPDX manifests
INHERIT += "create-spdx"
# Enable creation of SPDX manifests and vulnerability exploitability
# exchange files.
# Exclude CVEs that are known to not affect yocto.
require conf/distro/include/cve-extra-exclusions.inc
INHERIT += "create-spdx vex"

# Create a directory for each package in `/usr/share/licenses`
# and place licensing information there.
Expand Down