Skip to content
Draft
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
2 changes: 1 addition & 1 deletion .github/actions/setup-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: "Performs setup for caching and other common needs."
runs:
using: "composite"
steps:
- run: sudo apt -y install build-essential openssl libssl-dev pkg-config liblz4-tool clang
- run: sudo apt -y install build-essential openssl libbpf-dev libelf-dev libssl-dev pkg-config liblz4-tool clang
shell: bash
- uses: actions/cache/restore@v4
# Restore most recent cache if available.
Expand Down
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/rottweiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ source-groups = [

[build-dependencies]
glibc = { path = "../glibc" }
libbpf = { path = "../libbpf" }
6 changes: 6 additions & 0 deletions packages/rottweiler/rottweiler.spec
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
--build-dir %{_builddir}/sources \
--spdx --cyclonedx}

# Skip the FIPS check, which has a false positive because of a symbol that
# starts with the "ring" prefix.
%undefine cross_check_fips

Name: %{_cross_os}rottweiler
Version: 0.1.0
Release: 1%{?dist}
Expand All @@ -16,7 +20,9 @@ License: Apache-2.0 OR MIT
URL: https://github.com/bottlerocket-os/bottlerocket

BuildRequires: %{_cross_os}glibc-devel
BuildRequires: %{_cross_os}libbpf-devel
Requires: %{_cross_os}cryptsetup
Requires: %{_cross_os}libbpf
Requires: %{_cross_os}systemd-cryptsetup
Requires: %{_cross_os}tpm2-tools

Expand Down
1 change: 1 addition & 0 deletions packages/selinux-policy/fs.cil
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
(genfscon bdev / any)
(genfscon binfmt_misc / binfmt_misc_fs)
(genfscon bpf / any)
(genfscon bpf /rottweiler private)
(genfscon cgroup / any)
(genfscon cgroup2 / any)
(genfscon debugfs / any)
Expand Down
Loading
Loading