Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG UE
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 UE
Commits
876af41f
Commit
876af41f
authored
Mar 21, 2018
by
Guy De Souza
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Build_oai changes for NR
parent
8c508ca0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
88 additions
and
51 deletions
+88
-51
cmake_targets/build_oai
cmake_targets/build_oai
+88
-51
No files found.
cmake_targets/build_oai
View file @
876af41f
...
@@ -67,6 +67,7 @@ UE_TIMING_TRACE="False"
...
@@ -67,6 +67,7 @@ UE_TIMING_TRACE="False"
DISABLE_LOG_X
=
"False"
DISABLE_LOG_X
=
"False"
USRP_REC_PLAY
=
"False"
USRP_REC_PLAY
=
"False"
BUILD_ECLIPSE
=
0
BUILD_ECLIPSE
=
0
NR
=
"False"
trap
handle_ctrl_c INT
trap
handle_ctrl_c INT
function
print_help
()
{
function
print_help
()
{
...
@@ -93,6 +94,10 @@ Options
...
@@ -93,6 +94,10 @@ Options
Print this help
Print this help
--eNB
--eNB
Makes the LTE softmodem
Makes the LTE softmodem
--gNB
Makes the NR softmodem
--nrUE
Makes the NR UE softmodem
--UE
--UE
Makes the UE specific parts (ue_ip, usim, nvram) from the given configuration file
Makes the UE specific parts (ue_ip, usim, nvram) from the given configuration file
--UE-conf-nvram [configuration file]
--UE-conf-nvram [configuration file]
...
@@ -200,6 +205,11 @@ function main() {
...
@@ -200,6 +205,11 @@ function main() {
eNB
=
1
eNB
=
1
echo_info
"Will compile eNB"
echo_info
"Will compile eNB"
shift
;;
shift
;;
--gNB
)
gNB
=
1
NR
=
"True"
echo_info
"Will compile gNB"
shift
;;
-a
|
--agent
)
-a
|
--agent
)
echo_info
"FlexRAN support is always compiled into the eNB"
echo_info
"FlexRAN support is always compiled into the eNB"
shift
;;
shift
;;
...
@@ -207,6 +217,11 @@ function main() {
...
@@ -207,6 +217,11 @@ function main() {
UE
=
1
UE
=
1
echo_info
"Will compile UE"
echo_info
"Will compile UE"
shift
;;
shift
;;
--nrUE
)
nrUE
=
1
NR
=
"True"
echo_info
"Will compile NR UE"
shift
;;
--UE-conf-nvram
)
--UE-conf-nvram
)
conf_nvram_path
=
$(
readlink
-f
"
$1
"
)
conf_nvram_path
=
$(
readlink
-f
"
$1
"
)
shift
2
;;
shift
2
;;
...
@@ -359,17 +374,18 @@ function main() {
...
@@ -359,17 +374,18 @@ function main() {
CMAKE_CMD
=
"
$CMAKE_CMD
.."
CMAKE_CMD
=
"
$CMAKE_CMD
.."
echo_info
"CMAKE_CMD=
$CMAKE_CMD
"
echo_info
"CMAKE_CMD=
$CMAKE_CMD
"
if
[
"
$eNB
"
=
"1"
]
&&
[
"
$
UE
"
=
"1"
]
;
then
if
[
"
$eNB
"
=
"1"
-o
"
$gNB
"
=
"1"
]
&&
[
"
$UE
"
=
"1"
-o
"
$nr
UE
"
=
"1"
]
;
then
echo_error
"Cannot build UE
and e
NB on one build_oai execution"
echo_error
"Cannot build UE
/nrUE and eNB/g
NB on one build_oai execution"
echo_error
"use 2 build_oai invocations"
echo_error
"use 2 build_oai invocations"
exit
exit
fi
fi
#########################################################
#########################################################
# check validity of HW and TP parameters for eNB
# check validity of HW and TP parameters for eNB
/ gNB
#########################################################
#########################################################
# to be discussed
# to be discussed
if
[
"
$eNB
"
=
"1"
]
;
then
if
[
"
$eNB
"
=
"1"
-o
"
$gNB
"
=
"1"
]
;
then
if
[
"
$HW
"
=
"None"
-a
"
$TP
"
=
"None"
]
;
then
if
[
"
$HW
"
=
"None"
-a
"
$TP
"
=
"None"
]
;
then
echo_fatal
"Define a local radio head (e.g. -w EXMIMO) or a transport protocol (e.g. -t ETHERNET) to communicate with a remote radio head!"
echo_fatal
"Define a local radio head (e.g. -w EXMIMO) or a transport protocol (e.g. -t ETHERNET) to communicate with a remote radio head!"
fi
fi
...
@@ -490,21 +506,42 @@ function main() {
...
@@ -490,21 +506,42 @@ function main() {
echo_info
"3. building the compilation directives ..."
echo_info
"3. building the compilation directives ..."
DIR
=
$OPENAIR_DIR
/cmake_targets
DIR
=
$OPENAIR_DIR
/cmake_targets
if
[
"
$NR
"
=
"True"
]
then
if
[
"
$NOS1
"
=
"1"
]
;
then
if
[
"
$NOS1
"
=
"1"
]
;
then
lte_build_dir
=
lte_noS1_build_oai
build_dir
=
nr_noS1_build_oai
if
[
"
$gNB
"
=
"1"
]
;
then
exec
=
nr-softmodem-nos1
fi
if
[
"
$nrUE
"
=
"1"
]
;
then
exec
=
nr-uesoftmodem-nos1
fi
else
build_dir
=
nr_build_oai
if
[
"
$gNB
"
=
"1"
]
;
then
exec
=
nr-softmodem
fi
if
[
"
$nrUE
"
=
"1"
]
;
then
exec
=
nr-uesoftmodem
fi
fi
else
if
[
"
$NOS1
"
=
"1"
]
;
then
build_dir
=
lte_noS1_build_oai
if
[
"
$eNB
"
=
"1"
]
;
then
if
[
"
$eNB
"
=
"1"
]
;
then
lte_
exec
=
lte-softmodem-nos1
exec
=
lte-softmodem-nos1
fi
fi
if
[
"
$UE
"
=
"1"
]
;
then
if
[
"
$UE
"
=
"1"
]
;
then
lte_
exec
=
lte-uesoftmodem-nos1
exec
=
lte-uesoftmodem-nos1
fi
fi
else
else
lte_
build_dir
=
lte_build_oai
build_dir
=
lte_build_oai
if
[
"
$eNB
"
=
"1"
]
;
then
if
[
"
$eNB
"
=
"1"
]
;
then
lte_
exec
=
lte-softmodem
exec
=
lte-softmodem
fi
fi
if
[
"
$UE
"
=
"1"
]
;
then
if
[
"
$UE
"
=
"1"
]
;
then
lte_exec
=
lte-uesoftmodem
exec
=
lte-uesoftmodem
fi
fi
fi
fi
fi
...
@@ -512,15 +549,15 @@ function main() {
...
@@ -512,15 +549,15 @@ function main() {
config_libconfig_shlib
=
params_libconfig
config_libconfig_shlib
=
params_libconfig
# first generate the CMakefile in the right directory
# first generate the CMakefile in the right directory
if
[
"
$eNB
"
=
"1"
-o
"
$UE
"
=
"1"
-o
"
$HW
"
=
"EXMIMO"
]
;
then
if
[
"
$eNB
"
=
"1"
-o
"
$UE
"
=
"1"
-o
"
$
gNB
"
=
"1"
-o
"
$nrUE
"
=
"1"
-o
"
$
HW
"
=
"EXMIMO"
]
;
then
#
LTE
softmodem compilation
# softmodem compilation
[
"
$CLEAN
"
=
"1"
]
&&
rm
-rf
$DIR
/
$
lte_
build_dir
/build
[
"
$CLEAN
"
=
"1"
]
&&
rm
-rf
$DIR
/
$build_dir
/build
mkdir
-p
$DIR
/
$
lte_
build_dir
/build
mkdir
-p
$DIR
/
$build_dir
/build
cmake_file
=
$DIR
/
$
lte_
build_dir
/CMakeLists.txt
cmake_file
=
$DIR
/
$build_dir
/CMakeLists.txt
echo
"cmake_minimum_required(VERSION 2.8)"
>
$cmake_file
echo
"cmake_minimum_required(VERSION 2.8)"
>
$cmake_file
if
[
"
$NOS1
"
=
"1"
]
;
then
if
[
"
$NOS1
"
=
"1"
]
;
then
cat
$DIR
/
$
lte_
build_dir
/CMakeLists.template
>>
$cmake_file
cat
$DIR
/
$build_dir
/CMakeLists.template
>>
$cmake_file
fi
fi
echo
"set ( CMAKE_BUILD_TYPE
$CMAKE_BUILD_TYPE
)"
>>
$cmake_file
echo
"set ( CMAKE_BUILD_TYPE
$CMAKE_BUILD_TYPE
)"
>>
$cmake_file
echo
"set ( CFLAGS_PROCESSOR_USER
\"
$CFLAGS_PROCESSOR_USER
\"
)"
>>
$cmake_file
echo
"set ( CFLAGS_PROCESSOR_USER
\"
$CFLAGS_PROCESSOR_USER
\"
)"
>>
$cmake_file
...
@@ -529,7 +566,7 @@ function main() {
...
@@ -529,7 +566,7 @@ function main() {
echo
"set ( ENABLE_VCD_FIFO
$VCD_TIMING
)"
>>
$cmake_file
echo
"set ( ENABLE_VCD_FIFO
$VCD_TIMING
)"
>>
$cmake_file
echo
"set ( RF_BOARD
\"
${
HW
}
\"
)"
>>
$cmake_file
echo
"set ( RF_BOARD
\"
${
HW
}
\"
)"
>>
$cmake_file
echo
"set ( TRANSP_PRO
\"
${
TP
}
\"
)"
>>
$cmake_file
echo
"set ( TRANSP_PRO
\"
${
TP
}
\"
)"
>>
$cmake_file
echo
"set(PACKAGE_NAME
\"
${
lte_
exec
}
\"
)"
>>
$cmake_file
echo
"set(PACKAGE_NAME
\"
${
exec
}
\"
)"
>>
$cmake_file
echo
"set (DEADLINE_SCHEDULER
\"
${
DEADLINE_SCHEDULER_FLAG_USER
}
\"
)"
>>
$cmake_file
echo
"set (DEADLINE_SCHEDULER
\"
${
DEADLINE_SCHEDULER_FLAG_USER
}
\"
)"
>>
$cmake_file
echo
"set (CPU_AFFINITY
\"
${
CPU_AFFINITY_FLAG_USER
}
\"
)"
>>
$cmake_file
echo
"set (CPU_AFFINITY
\"
${
CPU_AFFINITY_FLAG_USER
}
\"
)"
>>
$cmake_file
echo
"set ( T_TRACER
$T_TRACER
)"
>>
$cmake_file
echo
"set ( T_TRACER
$T_TRACER
)"
>>
$cmake_file
...
@@ -544,30 +581,30 @@ function main() {
...
@@ -544,30 +581,30 @@ function main() {
echo
"set (PDCP_USE_NETLINK True )"
>>
$cmake_file
echo
"set (PDCP_USE_NETLINK True )"
>>
$cmake_file
fi
fi
echo
'include(${CMAKE_CURRENT_SOURCE_DIR}/../CMakeLists.txt)'
>>
$cmake_file
echo
'include(${CMAKE_CURRENT_SOURCE_DIR}/../CMakeLists.txt)'
>>
$cmake_file
cd
$DIR
/
$
lte_
build_dir
/build
cd
$DIR
/
$build_dir
/build
eval
$CMAKE_CMD
eval
$CMAKE_CMD
fi
fi
if
[
"
$eNB
"
=
"1"
-o
"
$UE
"
=
"1"
]
;
then
if
[
"
$eNB
"
=
"1"
-o
"
$UE
"
=
"1"
-o
"
$gNB
"
=
"1"
-o
"
$nrUE
"
=
"1"
]
;
then
echo_info
"Compiling
$
lte_
exec
"
echo_info
"Compiling
$exec
"
compilations
\
compilations
\
$
lte_build_dir
$lte_
exec
\
$
build_dir
$
exec
\
$
lte_exec
$dbin
/
$lte_
exec
.
$REL
$
exec
$dbin
/
$
exec
.
$REL
# mandatory shared lib
# mandatory shared lib
compilations
\
compilations
\
$
lte_
build_dir
$config_libconfig_shlib
\
$build_dir
$config_libconfig_shlib
\
lib
$config_libconfig_shlib
.so
$dbin
/lib
$config_libconfig_shlib
.so
lib
$config_libconfig_shlib
.so
$dbin
/lib
$config_libconfig_shlib
.so
compilations
\
compilations
\
$
lte_
build_dir
coding
\
$build_dir
coding
\
libcoding.so
$dbin
/libcoding.so
libcoding.so
$dbin
/libcoding.so
if
[
"
$NOS1
"
=
"1"
]
;
then
if
[
"
$NOS1
"
=
"1"
]
;
then
compilations
\
compilations
\
$
lte_
build_dir
nasmesh
\
$build_dir
nasmesh
\
CMakeFiles/nasmesh/nasmesh.ko
$dbin
/nasmesh.ko
CMakeFiles/nasmesh/nasmesh.ko
$dbin
/nasmesh.ko
compilations
\
compilations
\
$
lte_
build_dir
rb_tool
\
$build_dir
rb_tool
\
rb_tool
$dbin
/rb_tool
rb_tool
$dbin
/rb_tool
cp
$OPENAIR_DIR
/cmake_targets/tools/init_nas_nos1
$dbin
cp
$OPENAIR_DIR
/cmake_targets/tools/init_nas_nos1
$dbin
fi
fi
...
@@ -577,7 +614,7 @@ function main() {
...
@@ -577,7 +614,7 @@ function main() {
# ue_ip driver compilation
# ue_ip driver compilation
echo_info
"Compiling UE specific part"
echo_info
"Compiling UE specific part"
compilations
\
compilations
\
$
lte_
build_dir
ue_ip
\
$build_dir
ue_ip
\
CMakeFiles/ue_ip/ue_ip.ko
$dbin
/ue_ip.ko
CMakeFiles/ue_ip/ue_ip.ko
$dbin
/ue_ip.ko
# mkdir -p $DIR/at_commands/build
# mkdir -p $DIR/at_commands/build
...
@@ -605,10 +642,10 @@ function main() {
...
@@ -605,10 +642,10 @@ function main() {
# generate USIM data
# generate USIM data
if
[
-f
$dbin
/conf2uedata
]
;
then
if
[
-f
$dbin
/conf2uedata
]
;
then
install_nas_tools
$conf_nvram_path
$gen_nvram_path
install_nas_tools
$conf_nvram_path
$gen_nvram_path
echo_info
"Copying UE specific part to
$DIR
/
$
lte_
build_dir
/build"
echo_info
"Copying UE specific part to
$DIR
/
$build_dir
/build"
cp
-Rvf
$dbin
/.ue_emm.nvram0
$DIR
/
$
lte_
build_dir
/build
cp
-Rvf
$dbin
/.ue_emm.nvram0
$DIR
/
$build_dir
/build
cp
-Rvf
$dbin
/.ue.nvram0
$DIR
/
$
lte_
build_dir
/build
cp
-Rvf
$dbin
/.ue.nvram0
$DIR
/
$build_dir
/build
cp
-Rvf
$dbin
/.usim.nvram0
$DIR
/
$
lte_
build_dir
/build
cp
-Rvf
$dbin
/.usim.nvram0
$DIR
/
$build_dir
/build
else
else
echo_warning
"not generated UE NAS files: binaries not found"
echo_warning
"not generated UE NAS files: binaries not found"
fi
fi
...
@@ -653,14 +690,14 @@ function main() {
...
@@ -653,14 +690,14 @@ function main() {
echo_info
"Compiling Express MIMO 2 board drivers"
echo_info
"Compiling Express MIMO 2 board drivers"
compilations
\
compilations
\
$
lte_
build_dir
openair_rf
\
$build_dir
openair_rf
\
CMakeFiles/openair_rf/openair_rf.ko
$dbin
/openair_rf.ko
CMakeFiles/openair_rf/openair_rf.ko
$dbin
/openair_rf.ko
compilations
\
compilations
\
$
lte_
build_dir
updatefw
\
$build_dir
updatefw
\
updatefw
$dbin
/updatefw
updatefw
$dbin
/updatefw
echo_info
"Compiling oarf tools. The logfile for compilation is here:
$dlog
/oarf.txt"
echo_info
"Compiling oarf tools. The logfile for compilation is here:
$dlog
/oarf.txt"
make
-C
$OPENAIR_DIR
/cmake_targets/
$
lte_
build_dir
/build oarf
>
$dlog
/oarf.txt 2>&1
make
-C
$OPENAIR_DIR
/cmake_targets/
$build_dir
/build oarf
>
$dlog
/oarf.txt 2>&1
cp
$OPENAIR_DIR
/cmake_targets/
$
lte_
build_dir
/build/
*
.oct
$dbin
cp
$OPENAIR_DIR
/cmake_targets/
$build_dir
/build/
*
.oct
$dbin
if
[
-s
$dbin
/oarf_config_exmimo.oct
]
;
then
if
[
-s
$dbin
/oarf_config_exmimo.oct
]
;
then
echo_success
"oarf tools compiled"
echo_success
"oarf tools compiled"
else
else
...
@@ -783,7 +820,7 @@ function main() {
...
@@ -783,7 +820,7 @@ function main() {
# Telnet server compilation
# Telnet server compilation
#####################
#####################
if
[
"
$BUILD_TELNETSRV
"
=
"1"
]
;
then
if
[
"
$BUILD_TELNETSRV
"
=
"1"
]
;
then
build_dir
=
$
lte_
build_dir
build_dir
=
$build_dir
compilations
\
compilations
\
$build_dir
telnetsrv
\
$build_dir
telnetsrv
\
libtelnetsrv.so
$dbin
/libtelnetsrv.so
libtelnetsrv.so
$dbin
/libtelnetsrv.so
...
@@ -791,9 +828,9 @@ function main() {
...
@@ -791,9 +828,9 @@ function main() {
fi
fi
# build RF device and transport protocol libraries
# build RF device and transport protocol libraries
#####################################
#####################################
if
[
"
$eNB
"
=
"1"
-o
"
$UE
"
=
"1"
]
;
then
if
[
"
$eNB
"
=
"1"
-o
"
$UE
"
=
"1"
-o
"
$gNB
"
=
"1"
-o
"
$nrUE
"
=
"1"
]
;
then
build_dir
=
$
lte_build_dir
build_dir
=
$
build_dir
# build RF device libraries
# build RF device libraries
if
[
"
$HW
"
!=
"None"
]
;
then
if
[
"
$HW
"
!=
"None"
]
;
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