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
Michael Black
OpenXG-RAN
Commits
4dc26bf5
Commit
4dc26bf5
authored
Aug 11, 2022
by
Robert Schmidt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docker entrypoints: print config, log USRP loader
parent
23cf8059
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
30 additions
and
0 deletions
+30
-0
docker/scripts/enb_entrypoint.sh
docker/scripts/enb_entrypoint.sh
+6
-0
docker/scripts/gnb_entrypoint.sh
docker/scripts/gnb_entrypoint.sh
+6
-0
docker/scripts/lte_ru_entrypoint.sh
docker/scripts/lte_ru_entrypoint.sh
+6
-0
docker/scripts/lte_ue_entrypoint.sh
docker/scripts/lte_ue_entrypoint.sh
+6
-0
docker/scripts/nr_ue_entrypoint.sh
docker/scripts/nr_ue_entrypoint.sh
+6
-0
No files found.
docker/scripts/enb_entrypoint.sh
View file @
4dc26bf5
...
...
@@ -51,9 +51,15 @@ for c in ${CONFIG_FILES}; do
# render template and inline replace config file
sed
-i
"
${
EXPRESSIONS
}
"
${
c
}
echo
"=================================="
echo
"== Configuration file:
${
c
}
"
cat
${
c
}
done
# Load the USRP binaries
echo
"=================================="
echo
"== Load USRP binaries"
if
[[
-v
USE_B2XX
]]
;
then
$PREFIX
/bin/uhd_images_downloader.py
-t
b2xx
elif
[[
-v
USE_X3XX
]]
;
then
...
...
docker/scripts/gnb_entrypoint.sh
View file @
4dc26bf5
...
...
@@ -51,9 +51,15 @@ for c in ${CONFIG_FILES}; do
# render template and inline replace config file
sed
-i
"
${
EXPRESSIONS
}
"
${
c
}
echo
"=================================="
echo
"== Configuration file:
${
c
}
"
cat
${
c
}
done
# Load the USRP binaries
echo
"=================================="
echo
"== Load USRP binaries"
if
[[
-v
USE_B2XX
]]
;
then
$PREFIX
/bin/uhd_images_downloader.py
-t
b2xx
elif
[[
-v
USE_X3XX
]]
;
then
...
...
docker/scripts/lte_ru_entrypoint.sh
View file @
4dc26bf5
...
...
@@ -31,9 +31,15 @@ for c in ${CONFIG_FILES}; do
# render template and inline replace config file
sed
-i
"
${
EXPRESSIONS
}
"
${
c
}
echo
"=================================="
echo
"== Configuration file:
${
c
}
"
cat
${
c
}
done
# Load the USRP binaries
echo
"=================================="
echo
"== Load USRP binaries"
if
[[
-v
USE_B2XX
]]
;
then
$PREFIX
/bin/uhd_images_downloader.py
-t
b2xx
elif
[[
-v
USE_X3XX
]]
;
then
...
...
docker/scripts/lte_ue_entrypoint.sh
View file @
4dc26bf5
...
...
@@ -30,6 +30,10 @@ for c in ${CONFIG_FILES}; do
# render template and inline replace config file
sed
-i
"
${
EXPRESSIONS
}
"
${
c
}
echo
"=================================="
echo
"== Configuration file:
${
c
}
"
cat
${
c
}
done
#now generate USIM files
...
...
@@ -38,6 +42,8 @@ cd $PREFIX
$PREFIX
/bin/conf2uedata
-c
$PREFIX
/etc/ue_usim.conf
-o
$PREFIX
# Load the USRP binaries
echo
"=================================="
echo
"== Load USRP binaries"
if
[[
-v
USE_B2XX
]]
;
then
$PREFIX
/bin/uhd_images_downloader.py
-t
b2xx
elif
[[
-v
USE_X3XX
]]
;
then
...
...
docker/scripts/nr_ue_entrypoint.sh
View file @
4dc26bf5
...
...
@@ -40,9 +40,15 @@ for c in ${CONFIG_FILES}; do
# render template and inline replace config file
sed
-i
"
${
EXPRESSIONS
}
"
${
c
}
echo
"=================================="
echo
"== Configuration file:
${
c
}
"
cat
${
c
}
done
# Load the USRP binaries
echo
"=================================="
echo
"== Load USRP binaries"
if
[[
-v
USE_B2XX
]]
;
then
$PREFIX
/bin/uhd_images_downloader.py
-t
b2xx
elif
[[
-v
USE_X3XX
]]
;
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