mirror of
https://gitlab.eurecom.fr/oai/openairinterface5g.git
synced 2026-07-13 04:30:28 +00:00
docker: enable FHI72 mplane build
- Build and install libyang (v2.1.111) and libnetconf2 (v2.1.37) from source. - Build ran-build-fhi72 image with M-plane enabled - Copy YANG models required for M-plane operation into the container. - Update gNB Dockerfile to work without M-plane Signed-off-by: Jaroslava Fiedlerova <jaroslava.fiedlerova@openairinterface.org>
This commit is contained in:
committed by
Jaroslava Fiedlerova
parent
d843877123
commit
df21063668
@@ -22,13 +22,50 @@ RUN apt-get update && \
|
|||||||
xz-utils \
|
xz-utils \
|
||||||
pkg-config \
|
pkg-config \
|
||||||
libnuma-dev \
|
libnuma-dev \
|
||||||
python3-pyelftools && \
|
python3-pyelftools \
|
||||||
|
libpcre3-dev \
|
||||||
|
libssh-dev \
|
||||||
|
libxml2-dev \
|
||||||
|
libpam0g \
|
||||||
|
libnuma-dev && \
|
||||||
rm -rf /var/lib/apt/lists/*
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
RUN rm -Rf /oai-ran
|
RUN rm -Rf /oai-ran
|
||||||
WORKDIR /oai-ran
|
WORKDIR /oai-ran
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
|
RUN git clone https://github.com/CESNET/libyang.git && \
|
||||||
|
cd libyang && \
|
||||||
|
git checkout v2.1.111 && \
|
||||||
|
mkdir build && cd build && \
|
||||||
|
cmake -DENABLE_TESTS=OFF \
|
||||||
|
-DENABLE_VALGRIND_TESTS=OFF \
|
||||||
|
-DCMAKE_INSTALL_PREFIX=/usr/local \
|
||||||
|
-DCMAKE_INSTALL_RPATH=/usr/local/lib \
|
||||||
|
-DPLUGINS_DIR=/usr/local/lib/libyang \
|
||||||
|
-DPLUGINS_DIR_EXTENSIONS=/usr/local/lib/libyang/extensions \
|
||||||
|
-DPLUGINS_DIR_TYPES=/usr/local/lib/libyang/types \
|
||||||
|
-DYANG_MODULE_DIR=/usr/local/share/yang/modules/libyang .. && \
|
||||||
|
make && \
|
||||||
|
make install
|
||||||
|
|
||||||
|
RUN git clone https://github.com/CESNET/libnetconf2.git && \
|
||||||
|
cd libnetconf2 && \
|
||||||
|
git checkout v2.1.37 && \
|
||||||
|
mkdir build && cd build && \
|
||||||
|
cmake -DENABLE_TESTS=OFF \
|
||||||
|
-DENABLE_EXAMPLES=OFF \
|
||||||
|
-DENABLE_VALGRIND_TESTS=OFF \
|
||||||
|
-DCLIENT_SEARCH_DIR=/usr/local/share/yang/modules \
|
||||||
|
-DCMAKE_INSTALL_PREFIX=/usr/local \
|
||||||
|
-DCMAKE_INSTALL_RPATH=/usr/local/lib \
|
||||||
|
-DLIBYANG_INCLUDE_DIR=/usr/local/include \
|
||||||
|
-DLIBYANG_LIBRARY=/usr/local/lib/libyang.so \
|
||||||
|
-DLY_VERSION_PATH=/usr/local/include \
|
||||||
|
-DYANG_MODULE_DIR=/usr/local/share/yang/modules/libnetconf2 .. && \
|
||||||
|
make && \
|
||||||
|
make install
|
||||||
|
|
||||||
## Download and build DPDK
|
## Download and build DPDK
|
||||||
RUN wget --no-verbose http://fast.dpdk.org/rel/dpdk-24.11.4.tar.xz && \
|
RUN wget --no-verbose http://fast.dpdk.org/rel/dpdk-24.11.4.tar.xz && \
|
||||||
tar -xf dpdk-24.11.4.tar.xz && \
|
tar -xf dpdk-24.11.4.tar.xz && \
|
||||||
@@ -53,7 +90,7 @@ RUN /bin/sh oaienv && \
|
|||||||
./build_oai \
|
./build_oai \
|
||||||
--ninja --gNB --nrRU \
|
--ninja --gNB --nrRU \
|
||||||
--build-lib "telnetsrv enbscope uescope nrscope" \
|
--build-lib "telnetsrv enbscope uescope nrscope" \
|
||||||
-t oran_fhlib_5g --cmake-opt -Dxran_LOCATION=/opt/phy/fhi_lib/lib \
|
-t oran_fhlib_5g_mplane --cmake-opt -Dxran_LOCATION=/opt/phy/fhi_lib/lib \
|
||||||
--build-e2 --cmake-opt -DKPM_VERSION=$KPM_VERSION --cmake-opt -DE2AP_VERSION=$E2AP_VERSION && \
|
--build-e2 --cmake-opt -DKPM_VERSION=$KPM_VERSION --cmake-opt -DE2AP_VERSION=$E2AP_VERSION && \
|
||||||
# Mainly to see if the sanitize option was perfectly executed
|
# Mainly to see if the sanitize option was perfectly executed
|
||||||
ldd ran_build/build/nr-softmodem && \
|
ldd ran_build/build/nr-softmodem && \
|
||||||
|
|||||||
@@ -57,7 +57,8 @@ COPY ./docker/scripts/check-prach-io.sh ./check-prach-io.sh
|
|||||||
|
|
||||||
COPY --from=gnb-build \
|
COPY --from=gnb-build \
|
||||||
/oai-ran/cmake_targets/ran_build/build/librfsimulator.so \
|
/oai-ran/cmake_targets/ran_build/build/librfsimulator.so \
|
||||||
/oai-ran/cmake_targets/ran_build/build/liboai_transpro.so \
|
/oai-ran/cmake_targets/ran_build/build/liboran_fhlib_5g.so \
|
||||||
|
/oai-ran/cmake_targets/ran_build/build/liboran_fhlib_5g_mplane.so \
|
||||||
/oai-ran/cmake_targets/ran_build/build/libcoding.so \
|
/oai-ran/cmake_targets/ran_build/build/libcoding.so \
|
||||||
/oai-ran/cmake_targets/ran_build/build/libparams_libconfig.so \
|
/oai-ran/cmake_targets/ran_build/build/libparams_libconfig.so \
|
||||||
/oai-ran/cmake_targets/ran_build/build/libdfts.so \
|
/oai-ran/cmake_targets/ran_build/build/libdfts.so \
|
||||||
@@ -65,7 +66,16 @@ COPY --from=gnb-build \
|
|||||||
/oai-ran/cmake_targets/ran_build/build/libtelnetsrv.so \
|
/oai-ran/cmake_targets/ran_build/build/libtelnetsrv.so \
|
||||||
/oai-ran/cmake_targets/ran_build/build/libtelnetsrv_ci.so \
|
/oai-ran/cmake_targets/ran_build/build/libtelnetsrv_ci.so \
|
||||||
/oai-ran/cmake_targets/ran_build/build/libparams_yaml.so \
|
/oai-ran/cmake_targets/ran_build/build/libparams_yaml.so \
|
||||||
/usr/local/lib/
|
/usr/local/lib/libnetconf2.so \
|
||||||
|
/usr/local/lib/libyang.so \
|
||||||
|
/usr/local/lib
|
||||||
|
|
||||||
|
# default is CUS (no M plane)
|
||||||
|
RUN ln -s /usr/local/lib/liboran_fhlib_5g.so /usr/local/lib/liboai_transpro.so
|
||||||
|
|
||||||
|
COPY --from=gnb-build \
|
||||||
|
/oai-ran/radio/fhi_72/mplane/yang/models/ \
|
||||||
|
/oai-ran/radio/fhi_72/mplane/yang/models/
|
||||||
|
|
||||||
## Libxran library
|
## Libxran library
|
||||||
COPY --from=gnb-build \
|
COPY --from=gnb-build \
|
||||||
|
|||||||
Reference in New Issue
Block a user