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
spbro
OpenXG-RAN
Commits
ebe1b711
Commit
ebe1b711
authored
Mar 04, 2024
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Print core_pattern in all entrypoint scripts
parent
c99db698
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
17 additions
and
0 deletions
+17
-0
docker/scripts/enb_entrypoint.sh
docker/scripts/enb_entrypoint.sh
+3
-0
docker/scripts/gnb-aw2s_entrypoint.sh
docker/scripts/gnb-aw2s_entrypoint.sh
+3
-0
docker/scripts/gnb_entrypoint.sh
docker/scripts/gnb_entrypoint.sh
+2
-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/scripts/enb_entrypoint.sh
View file @
ebe1b711
...
...
@@ -5,6 +5,9 @@ set -uo pipefail
PREFIX
=
/opt/oai-enb
CONFIGFILE
=
$PREFIX
/etc/enb.conf
echo
"=================================="
echo
"/proc/sys/kernel/core_pattern=
$(
cat
/proc/sys/kernel/core_pattern
)
"
if
[
!
-f
$CONFIGFILE
]
;
then
echo
"No configuration file found: please mount at
$CONFIGFILE
"
exit
255
...
...
docker/scripts/gnb-aw2s_entrypoint.sh
View file @
ebe1b711
...
...
@@ -5,6 +5,9 @@ set -uo pipefail
PREFIX
=
/opt/oai-gnb-aw2s
CONFIGFILE
=
$PREFIX
/etc/gnb.conf
echo
"=================================="
echo
"/proc/sys/kernel/core_pattern=
$(
cat
/proc/sys/kernel/core_pattern
)
"
if
[
!
-f
$CONFIGFILE
]
;
then
echo
"No configuration file found: please mount at
$CONFIGFILE
"
exit
255
...
...
docker/scripts/gnb_entrypoint.sh
View file @
ebe1b711
...
...
@@ -5,6 +5,8 @@ set -uo pipefail
PREFIX
=
/opt/oai-gnb
CONFIGFILE
=
$PREFIX
/etc/gnb.conf
echo
"=================================="
echo
"/proc/sys/kernel/core_pattern=
$(
cat
/proc/sys/kernel/core_pattern
)
"
if
[
!
-f
$CONFIGFILE
]
;
then
echo
"No configuration file found: please mount at
$CONFIGFILE
"
...
...
docker/scripts/lte_ru_entrypoint.sh
View file @
ebe1b711
...
...
@@ -5,6 +5,9 @@ set -uo pipefail
PREFIX
=
/opt/oai-lte-ru
CONFIGFILE
=
$PREFIX
/etc/rru.conf
echo
"=================================="
echo
"/proc/sys/kernel/core_pattern=
$(
cat
/proc/sys/kernel/core_pattern
)
"
if
[
!
-f
$CONFIGFILE
]
;
then
echo
"No configuration file found: please mount at
$CONFIGFILE
"
exit
255
...
...
docker/scripts/lte_ue_entrypoint.sh
View file @
ebe1b711
...
...
@@ -5,6 +5,9 @@ set -uo pipefail
PREFIX
=
/opt/oai-lte-ue
USIM_CONFIGFILE
=
$PREFIX
/etc/ue_usim.conf
echo
"=================================="
echo
"/proc/sys/kernel/core_pattern=
$(
cat
/proc/sys/kernel/core_pattern
)
"
if
[
!
-f
$USIM_CONFIGFILE
]
;
then
echo
"No ue_usim.conf configuration file found: please mount at
$USIM_CONFIGFILE
"
exit
255
...
...
docker/scripts/nr_ue_entrypoint.sh
View file @
ebe1b711
...
...
@@ -5,6 +5,9 @@ set -uo pipefail
PREFIX
=
/opt/oai-nr-ue
CONFIGFILE
=
$PREFIX
/etc/nr-ue.conf
echo
"=================================="
echo
"/proc/sys/kernel/core_pattern=
$(
cat
/proc/sys/kernel/core_pattern
)
"
if
[
!
-f
$CONFIGFILE
]
;
then
echo
"No configuration file found: please mount at
$CONFIGFILE
"
exit
255
...
...
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