Skip to content
Merged
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
24 changes: 23 additions & 1 deletion sonic-slave-bookworm/Dockerfile.j2
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,29 @@ RUN apt-get update && apt-get install -y \
protobuf-compiler \
libprotobuf-dev \
# For sonic-dhcp6relay build
libjsoncpp-dev
libjsoncpp-dev \
#for nvidia-blufield driver compilation
pciutils \
dh-dkms \
rpm2cpio \
libsnmp-dev \
libpopt-dev \
{%- if CONFIGURED_ARCH == "arm64" %}
grub-efi-arm64-bin \
{%- endif %}
efibootmgr \
watchdog \
dmidecode \
# For nvidia-blufield sdk compilation
cython3 \
pandoc \
valgrind \
udev \
inkscape \
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why does the SDK require valgrind and inkscape for compilation?

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

valgrind is required for OFED compilation
inkscape is required for DPDK compilation

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

DPDK uses inkscape for the memory reports.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OFED uses valgrind to provide built-in debugging capabilities.

meson \
python3-pyelftools \
hwdata \
libzip-dev

{%- if CROSS_BUILD_ENVIRON == "y" %}
# Arm vs. amd64 versions conflict - remove amd64 packages
Expand Down