Add support for taps client to ubuntu gNB & nrUE images

This commit is contained in:
Bartosz Podrygajlo
2026-01-21 12:56:28 +01:00
parent 13f46a0c0a
commit 9ac9e3ba91
4 changed files with 9 additions and 3 deletions

View File

@@ -51,7 +51,10 @@ RUN apt-get update && \
m4 \
# python3-pip for conf template generation
python3-pip \
wget && \
wget \
flatbuffers-compiler \
libflatbuffers-dev \
libnanomsg-dev && \
# --break-system-packages allows externally managed environment in pip
pip3 install --ignore-installed pyyaml --break-system-packages

View File

@@ -49,6 +49,7 @@ RUN \
--build-lib "telnetsrv enbscope uescope nrscope" \
-w USRP -t Ethernet \
--build-e2 --cmake-opt -DKPM_VERSION=$KPM_VERSION --cmake-opt -DE2AP_VERSION=$E2AP_VERSION \
--cmake-opt -DOAI_VRTSIM_TAPS_CLIENT=ON \
--noavx512 \
--build-tool-opt -k10 \
--cmake-opt -DCMAKE_C_FLAGS="-Werror" --cmake-opt -DCMAKE_CXX_FLAGS="-Werror" $BUILD_OPTION && \

View File

@@ -64,7 +64,8 @@ RUN apt-get update && \
python3-six \
python3-requests \
libusb-1.0-0 \
libyaml-cpp-dev && \
libyaml-cpp-dev \
libnanomsg5 && \
# if the --sanitize option was used to build, additional packages are required
/bin/bash -c 'if [[ "$BUILD_OPTION" = "--sanitize" ]]; then DEBIAN_FRONTEND=noninteractive apt-get install --yes \
libasan8 \

View File

@@ -65,7 +65,8 @@ RUN apt-get update && \
iproute2 \
iperf3 \
iperf \
libyaml-cpp-dev && \
libyaml-cpp-dev \
libnanomsg5 && \
# if the --sanitize option was used to build, additional packages are required
/bin/bash -c 'if [[ "$BUILD_OPTION" = "--sanitize" ]]; then DEBIAN_FRONTEND=noninteractive apt-get install --yes \
libasan8 \