Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
zzha zzha
OpenXG-RAN
Commits
a58b3989
Commit
a58b3989
authored
Aug 19, 2022
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Install gdb in RAN images to have stack traces on asserts
parent
4dc26bf5
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
24 additions
and
0 deletions
+24
-0
docker/Dockerfile.eNB.rhel8.2
docker/Dockerfile.eNB.rhel8.2
+1
-0
docker/Dockerfile.eNB.ubuntu18
docker/Dockerfile.eNB.ubuntu18
+1
-0
docker/Dockerfile.gNB.rhel8.2
docker/Dockerfile.gNB.rhel8.2
+1
-0
docker/Dockerfile.gNB.ubuntu18
docker/Dockerfile.gNB.ubuntu18
+1
-0
docker/Dockerfile.lteRU.rhel8.2
docker/Dockerfile.lteRU.rhel8.2
+1
-0
docker/Dockerfile.lteRU.ubuntu18
docker/Dockerfile.lteRU.ubuntu18
+1
-0
docker/Dockerfile.lteUE.rhel8.2
docker/Dockerfile.lteUE.rhel8.2
+1
-0
docker/Dockerfile.nrUE.rhel8.2
docker/Dockerfile.nrUE.rhel8.2
+1
-0
docker/Dockerfile.nrUE.ubuntu18
docker/Dockerfile.nrUE.ubuntu18
+1
-0
docker/scripts/enb_entrypoint.sh
docker/scripts/enb_entrypoint.sh
+3
-0
docker/scripts/gnb_entrypoint.sh
docker/scripts/gnb_entrypoint.sh
+3
-0
docker/scripts/lte_ru_entrypoint.sh
docker/scripts/lte_ru_entrypoint.sh
+3
-0
docker/scripts/lte_ue_entrypoint.sh
docker/scripts/lte_ue_entrypoint.sh
+3
-0
docker/scripts/nr_ue_entrypoint.sh
docker/scripts/nr_ue_entrypoint.sh
+3
-0
No files found.
docker/Dockerfile.eNB.rhel8.2
View file @
a58b3989
...
...
@@ -43,6 +43,7 @@ RUN yum update -y && \
tzdata \
procps-ng \
atlas \
gdb \
python3 \
python3-pip \
net-tools \
...
...
docker/Dockerfile.eNB.ubuntu18
View file @
a58b3989
...
...
@@ -53,6 +53,7 @@ RUN apt-get update && \
iputils-ping \
iproute2 \
iperf \
gdb \
python \
python3 \
python3-six \
...
...
docker/Dockerfile.gNB.rhel8.2
View file @
a58b3989
...
...
@@ -46,6 +46,7 @@ RUN yum repolist --disablerepo=* && \
lksctp-tools \
nettle \
tzdata \
gdb \
python3 \
python3-pip \
net-tools \
...
...
docker/Dockerfile.gNB.ubuntu18
View file @
a58b3989
...
...
@@ -52,6 +52,7 @@ RUN apt-get update && \
net-tools \
iproute2 \
iputils-ping \
gdb \
python \
python3 \
python3-six \
...
...
docker/Dockerfile.lteRU.rhel8.2
View file @
a58b3989
...
...
@@ -41,6 +41,7 @@ RUN yum update -y && \
tzdata \
procps-ng \
atlas \
gdb \
python3 \
python3-pip \
net-tools \
...
...
docker/Dockerfile.lteRU.ubuntu18
View file @
a58b3989
...
...
@@ -47,6 +47,7 @@ RUN apt-get update && \
libatlas3-base \
libconfig9 \
net-tools \
gdb \
python \
python3 \
python3-six \
...
...
docker/Dockerfile.lteUE.rhel8.2
View file @
a58b3989
...
...
@@ -44,6 +44,7 @@ RUN yum update -y && \
nettle \
tzdata \
atlas \
gdb \
python3 \
python3-pip \
iproute \
...
...
docker/Dockerfile.nrUE.rhel8.2
View file @
a58b3989
...
...
@@ -46,6 +46,7 @@ RUN yum update -y && \
iputils \
iproute \
atlas \
gdb \
python3 \
python3-pip \
libXpm \
...
...
docker/Dockerfile.nrUE.ubuntu18
View file @
a58b3989
...
...
@@ -50,6 +50,7 @@ RUN apt-get update && \
libconfig9 \
openssl \
net-tools \
gdb \
python \
python3 \
python3-six \
...
...
docker/scripts/enb_entrypoint.sh
View file @
a58b3989
...
...
@@ -68,6 +68,9 @@ elif [[ -v USE_N3XX ]]; then
$PREFIX
/bin/uhd_images_downloader.py
-t
n3xx
fi
# enable printing of stack traces on assert
export
gdbStacks
=
1
echo
"=================================="
echo
"== Starting eNB soft modem"
if
[[
-v
USE_ADDITIONAL_OPTIONS
]]
;
then
...
...
docker/scripts/gnb_entrypoint.sh
View file @
a58b3989
...
...
@@ -68,6 +68,9 @@ elif [[ -v USE_N3XX ]]; then
$PREFIX
/bin/uhd_images_downloader.py
-t
n3xx
fi
# enable printing of stack traces on assert
export
gdbStacks
=
1
echo
"=================================="
echo
"== Starting gNB soft modem"
if
[[
-v
USE_ADDITIONAL_OPTIONS
]]
;
then
...
...
docker/scripts/lte_ru_entrypoint.sh
View file @
a58b3989
...
...
@@ -48,6 +48,9 @@ elif [[ -v USE_N3XX ]]; then
$PREFIX
/bin/uhd_images_downloader.py
-t
n3xx
fi
# enable printing of stack traces on assert
export
gdbStacks
=
1
echo
"=================================="
echo
"== Starting eNB soft modem"
if
[[
-v
USE_ADDITIONAL_OPTIONS
]]
;
then
...
...
docker/scripts/lte_ue_entrypoint.sh
View file @
a58b3989
...
...
@@ -63,6 +63,9 @@ if [[ -v USE_NFAPI ]]; then
new_args+
=(
"
$PREFIX
/etc/ue.conf"
)
fi
# enable printing of stack traces on assert
export
gdbStacks
=
1
echo
"=================================="
echo
"== Starting LTE UE soft modem"
if
[[
-v
USE_ADDITIONAL_OPTIONS
]]
;
then
...
...
docker/scripts/nr_ue_entrypoint.sh
View file @
a58b3989
...
...
@@ -64,6 +64,9 @@ while [[ $# -gt 0 ]]; do
shift
done
# enable printing of stack traces on assert
export
gdbStacks
=
1
echo
"=================================="
echo
"== Starting NR UE soft modem"
if
[[
-v
USE_ADDITIONAL_OPTIONS
]]
;
then
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment