build_oai 33.2 KB
Newer Older
thomasl's avatar
thomasl committed
1
#!/bin/bash
2 3 4 5 6
#/*
# * Licensed to the OpenAirInterface (OAI) Software Alliance under one or more
# * contributor license agreements.  See the NOTICE file distributed with
# * this work for additional information regarding copyright ownership.
# * The OpenAirInterface Software Alliance licenses this file to You under
7
# * the OAI Public License, Version 1.1  (the "License"); you may not use this file
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
# * except in compliance with the License.
# * You may obtain a copy of the License at
# *
# *      http://www.openairinterface.org/?page_id=698
# *
# * Unless required by applicable law or agreed to in writing, software
# * distributed under the License is distributed on an "AS IS" BASIS,
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# * See the License for the specific language governing permissions and
# * limitations under the License.
# *-------------------------------------------------------------------------------
# * For more information about the OpenAirInterface (OAI) Software Alliance:
# *      contact@openairinterface.org
# */

23
# file build_oai
thomasl's avatar
thomasl committed
24 25 26
# brief OAI automated build tool that can be used to install, compile, run OAI.
# author  Navid Nikaein, Lionel GAUTHIER, Laurent Thomas

27
set -e
thomasl's avatar
thomasl committed
28 29 30 31

################################
# include helper functions
################################
thomasl's avatar
thomasl committed
32
ORIGIN_PATH=$PWD
thomasl's avatar
thomasl committed
33
THIS_SCRIPT_PATH=$(dirname $(readlink -f $0))
34
source $THIS_SCRIPT_PATH/tools/build_helper
thomasl's avatar
thomasl committed
35

36 37 38 39 40 41 42
# set environment variables (OPENAIR_HOME, ...)
set_openair_env

#variables for UE data generation
gen_nvram_path=$OPENAIR_DIR/targets/bin
conf_nvram_path=$OPENAIR_DIR/openair3/NAS/TOOLS/ue_eurecom_test_sfr.conf

43
MSC_GEN="False"
44
XFORMS="True"
45
FLEXRAN_AGENT_SB_IF="True"
46
PRINT_STATS="False"
thomasl's avatar
thomasl committed
47
VCD_TIMING="False"
laurent's avatar
laurent committed
48 49
DEADLINE_SCHEDULER_FLAG_USER="False"
FORCE_DEADLINE_SCHEDULER_FLAG_USER=""
50
CPU_AFFINITY_FLAG_USER="False" #Only valid when lowlatecy flag is set to False
Cedric Roux's avatar
Cedric Roux committed
51
REL="Rel14"
52
HW="None"
53
TP="None"
Florian Kaltenberger's avatar
Florian Kaltenberger committed
54
NOS1=0
Lionel Gauthier's avatar
Lionel Gauthier committed
55
EPC=0
56
VERBOSE_COMPILE=0
57
CFLAGS_PROCESSOR_USER=""
58 59
RUN_GROUP=0
TEST_CASE_GROUP=""
60
BUILD_DOXYGEN=0
61
T_TRACER="False"
Rohit Gupta's avatar
Rohit Gupta committed
62
DISABLE_HARDWARE_DEPENDENCY="False"
63
CMAKE_BUILD_TYPE=""
64
CMAKE_CMD="$CMAKE"
65
UE_AUTOTEST_TRACE="False"
gabrielC's avatar
gabrielC committed
66 67
UE_DEBUG_TRACE="False"
UE_TIMING_TRACE="False"
Cedric Roux's avatar
Cedric Roux committed
68
DISABLE_LOG_X="False"
69
USRP_REC_PLAY="False"
70
BUILD_ECLIPSE=0
71 72
trap handle_ctrl_c INT

73
function print_help() {
Cedric Roux's avatar
Cedric Roux committed
74
  echo_info "
75 76 77 78 79 80
This program installs OpenAirInterface Software
You should have ubuntu 14.xx, updated, and the Linux kernel >= 3.14
Options
-h
   This help
-c | --clean
Cedric Roux's avatar
Cedric Roux committed
81
   Erase all files to make a rebuild from start
82
-C | --clean-all
Cedric Roux's avatar
Cedric Roux committed
83
   Erase all files made by previous compilations, installations
84 85
--clean-kernel
   Erase previously installed features in kernel: iptables, drivers, ...
Lionel Gauthier's avatar
Lionel Gauthier committed
86
-I | --install-external-packages
87 88 89 90 91
   Installs required packages such as LibXML, asn1.1 compiler, freediameter, ...
   This option will require root password
--install-optional-packages
   Install useful but not mandatory packages such as valgrind
-g | --run-with-gdb
92
   Add debugging symbols to compilation directives. It also disables any compiler optimization. Only for debugging. Do not use in normal operation!
93 94 95
-h | --help
   Print this help
--eNB
96
   Makes the LTE softmodem
97
--UE
98
   Makes the UE specific parts (ue_ip, usim, nvram) from the given configuration file
Cedric Roux's avatar
Cedric Roux committed
99 100 101 102
--UE-conf-nvram [configuration file]
   Specify conf_nvram_path (default \"$conf_nvram_path\")
--UE-gen-nvram [output path]
   Specify gen_nvram_path (default \"$gen_nvram_path\")
103 104
--RRH
   Makes the RRH
105 106
-a | --agent
   Enables agent for software-defined control of the eNB
107
-r | --3gpp-release
Cedric Roux's avatar
Cedric Roux committed
108
   default is Rel14,
109
   Rel8 limits the implementation to 3GPP Release 8 version
Cedric Roux's avatar
Cedric Roux committed
110
   Rel10 limits the implementation to 3GPP Release 10 version
111
-w | --hardware
112
   EXMIMO, USRP, BLADERF, ETHERNET, LMSSDR, None (Default)
113
   Adds this RF board support (in external packages installation and in compilation)
114 115 116
-t | --transport protocol
   ETHERNET , None
   Adds this trasport protocol support in compilation
117
--oaisim
Cedric Roux's avatar
Cedric Roux committed
118
   Makes the oaisim simulator. Hardware will be defaulted to \"None\".
119 120 121 122 123 124
--phy_simulators
   Makes the unitary tests Layer 1 simulators
--core_simulators
   Makes the core security features unitary simulators
-s | --check
   runs a set of auto-tests based on simulators and several compilation tests
125 126
--run-group 
   runs only specified test cases specified here. This flag is only valid with -s
127 128 129
-V | --vcd
   Adds a debgging facility to the binary files: GUI with major internal synchronization events
-x | --xforms
130
   Adds a software oscilloscope feature to the produced binaries. If oaisim, then enable PRINT_STATS.
131
--install-system-files
Lionel Gauthier's avatar
Lionel Gauthier committed
132
   Install OpenArInterface required files in Linux system
133
   (will ask root password)
134 135
--noS1 
   Compiles oaisim or lte-softmodem without S1 interface, using direct link to IP instead
136 137
--verbose-compile
   Shows detailed compilation instructions in makefile
138 139
--cflags_processor
   Manually Add CFLAGS of processor if they are not detected correctly by script. Only add these flags if you know your processor supports them. Example flags: -msse3 -msse4.1 -msse4.2 -mavx2
140 141
--build-doxygen
   Builds doxygen based documentation.
142
--disable-deadline
143 144
   Disables deadline scheduler of Linux kernel (>=3.14.x).
--enable-deadline
laurent's avatar
laurent committed
145
   Enable deadline scheduler of Linux kernel (>=3.14.x). 
146
--disable-cpu-affinity
147
   Disables CPU Affinity between UHD/TX/RX Threads (Valid only when deadline scheduler is disabled). By defaulT, CPU Affinity is enabled when not using deadline scheduler. It is enabled only with >2 CPUs. For eNB, CPU_0-> Device library (UHD), CPU_1->TX Threads, CPU_2...CPU_MAX->Rx Threads. For UE, CPU_0->Device Library(UHD), CPU_1..CPU_MAX -> All the UE threads
148 149
--T-tracer
   Enables the T tracer.
Rohit Gupta's avatar
Rohit Gupta committed
150 151
--disable-hardware-dependency
   Disable HW dependency during installation
152 153
--ue-autotest-trace
    Enable specific traces for UE autotest framework
gabrielC's avatar
gabrielC committed
154 155 156 157
--ue-trace
    Enable traces for UE debugging
--ue-timing
    Enable traces for timing
Cedric Roux's avatar
Cedric Roux committed
158 159
--disable-log
   Disable all LOG_* macros
160 161
--build-eclipse
   Build eclipse project files. Paths are auto corrected by fixprj.sh
162 163
--usrp-recplay
   Build for I/Q record-playback modes
164
Usage (first build):
165 166 167
 oaisim (eNB + UE): ./build_oai -I  --oaisim -x --install-system-files
 Eurecom EXMIMO + COTS UE : ./build_oai -I  --eNB -x --install-system-files
 NI/ETTUS B201  + COTS UE : ./build_oai -I  --eNB -x --install-system-files -w USRP
168 169 170
Usage (Regular):
 oaisim : ./build_oai --oaisim -x 
 Eurecom EXMIMO + OAI ENB : ./build_oai --eNB -x 
Cedric Roux's avatar
Cedric Roux committed
171
 NI/ETTUS B201  + OAI ENB : ./build_oai --eNB -x -w USRP"
172 173 174 175
}


function main() {
176

177 178
  until [ -z "$1" ]
  do
179
    case "$1" in
180 181 182 183 184
       -c | --clean)
            CLEAN=1
            shift;;
       -C | --clean-all)
            CLEAN_ALL=1
thomasl's avatar
thomasl committed
185
            shift;;
186 187 188
       --clean-kernel)
            clean_kernel
            echo_info "Erased iptables config and removed modules from kernel"
thomasl's avatar
thomasl committed
189
            shift;;
190
       -I | --install-external-packages)
191
            INSTALL_EXTERNAL=1
192
            echo_info "Will install external packages"
thomasl's avatar
thomasl committed
193
            shift;;
194
       --install-optional-packages)
thomasl's avatar
thomasl committed
195 196 197
            INSTALL_OPTIONAL=1
            echo_info "Will install optional packages"
            shift;;
198
       -g | --run-with-gdb)
thomasl's avatar
thomasl committed
199
            GDB=1
200 201
            CMAKE_BUILD_TYPE="Debug"
            echo_info "Will Compile with gdb symbols and disable compiler optimization"
202
            CMAKE_CMD="$CMAKE_CMD -DCMAKE_BUILD_TYPE=Debug"
thomasl's avatar
thomasl committed
203
            shift;;
204 205 206 207
       --eNB)
            eNB=1
            echo_info "Will compile eNB"
            shift;;
208 209 210 211
       -a | --agent)
	    FLEXRAN_AGENT=1
	    echo_info "Will compile eNB with agent support"
	    shift;;
212 213 214 215
       --UE)
            UE=1
            echo_info "Will compile UE"
            shift;;
Cedric Roux's avatar
Cedric Roux committed
216 217 218 219
       --UE-conf-nvram)
            conf_nvram_path=$(readlink -f "$1")
            shift 2;;
        --UE-gen-nvram)
220 221
            gen_nvram_path=$(readlink -f $2)
            shift 2;;
222 223 224 225
       --RRH)
            RRH=1
            echo_info "Will compile RRH"
            shift;;
thomasl's avatar
thomasl committed
226
       -r | --3gpp-release)
Lionel Gauthier's avatar
Lionel Gauthier committed
227
            REL=$2
228
            echo_info "Setting release to: $REL"
thomasl's avatar
thomasl committed
229 230 231
            shift 2;;
       -w | --hardware)
            HW="$2" #"${i#*=}"
232
            # Use OAI_USRP  as the key word USRP is used inside UHD driver           
233
	    if [ "$HW" != "BLADERF" -a  "$HW" != "USRP" -a "$HW" != "LMSSDR" -a  "$HW" != "None" -a  "$HW" != "EXMIMO"  ] ; then 
234 235 236 237 238 239 240 241
		echo_fatal "Unknown HW type $HW will exit..."		
	    else
		if [ "$HW" == "USRP" ] ; then 
		    HW="OAI_USRP"
		fi 
		if [ "$HW" == "BLADERF" ] ; then 
		    HW="OAI_BLADERF"
		fi
242 243 244
		if [ "$HW" == "LMSSDR" ] ; then 
		    HW="OAI_LMSSDR"
		fi 
245 246
		echo_info "Setting hardware to: $HW"
	    fi
thomasl's avatar
thomasl committed
247
            shift 2;;
248 249
	-t | --transport_protocol)
            TP="$2" #"${i#*=}"
250 251 252 253 254
	    if [ "$TP" != "ETHERNET" -a "$TP" != "None" ] ; then 
		echo_fatal "Unknown TP type $TP will exit..."		
	    else
		echo_info "Setting transport protocol to: $TP"		
	    fi
thomasl's avatar
thomasl committed
255
            shift 2;;
256
	--oaisim)
257 258 259 260
            oaisim=1
            echo_info "Will compile oaisim and drivers nasmesh, ..."
            shift;;
       --phy_simulators)
thomasl's avatar
thomasl committed
261
            SIMUS_PHY=1
262 263 264 265 266 267
            echo_info "Will compile dlsim, ulsim, ..."
            shift;;
       --core_simulators)
            SIMUS_CORE=1
            echo_info "Will compile security unitary tests"
            shift;;
thomasl's avatar
thomasl committed
268 269
       -s | --check)
            OAI_TEST=1
270
            echo_info "Will run auto-tests"
thomasl's avatar
thomasl committed
271
            shift;;
272 273 274 275 276
       --run-group)
            RUN_GROUP=1
            TEST_CASE_GROUP=$2
            echo_info "executing test cases only in group: $TEST_CASE_GROUP"
            shift 2;;
thomasl's avatar
thomasl committed
277
       -V | --vcd)
278
            echo_info "Setting gtk-wave output"
thomasl's avatar
thomasl committed
279 280
            VCD_TIMING=1
            EXE_ARGUMENTS="$EXE_ARGUMENTS -V"
thomasl's avatar
thomasl committed
281
            shift;;
thomasl's avatar
thomasl committed
282
       -x | --xforms)
283
            XFORMS="True"
thomasl's avatar
thomasl committed
284
            EXE_ARGUMENTS="$EXE_ARGUMENTS -d"
285
            echo_info "Will generate the software oscilloscope features"
thomasl's avatar
thomasl committed
286
            shift;;
287 288 289 290
       --install-system-files)
            INSTALL_SYSTEM_FILES=1
            echo_info "Will copy OpenAirInterface files in Linux directories"
            shift;;
291 292 293 294
       --noS1)
	    NOS1=1
            echo_info "Will compile without S1 interface"
            shift;;
295 296 297 298
       --verbose-compile)
	    VERBOSE_COMPILE=1
            echo_info "Will compile with verbose instructions"
            shift;;
299 300
       --cflags_processor)
            CFLAGS_PROCESSOR_USER=$2
301
            echo_info "Setting CPU FLAGS from USER to: $CFLAGS_PROCESSOR_USER"
302
            shift 2;;
303 304 305 306
       --build-doxygen)
	    BUILD_DOXYGEN=1
            echo_info "Will build doxygen support"
            shift;;     
307
       --disable-deadline)
laurent's avatar
laurent committed
308
            FORCE_DEADLINE_SCHEDULER_FLAG_USER="False"
309 310
            echo_info "Disabling the usage of deadline scheduler"
            shift 1;;
311
       --enable-deadline)
laurent's avatar
laurent committed
312
            FORCE_DEADLINE_SCHEDULER_FLAG_USER="True"
313 314
            echo_info "Enabling the usage of deadline scheduler"
            shift 1;;
315 316 317 318
       --disable-cpu-affinity)
            CPU_AFFINITY_FLAG_USER="False"
            echo_info "Disabling CPU Affinity (only valid when not using deadline scheduler)"
            shift 1;;
319 320 321 322
       --T-tracer)
            T_TRACER="True"
            echo_info "Enabling the T tracer"
            shift 1;;
323 324 325 326
       --disable-hardware-dependency)
            echo_info "Disabling hardware dependency for compiling software"
            DISABLE_HARDWARE_DEPENDENCY="True"
            shift 1;;
327 328 329 330
        --ue-autotest-trace)
            UE_AUTOTEST_TRACE="True"
            echo_info "Enabling autotest specific trace for UE"
            shift 1;;
gabrielC's avatar
gabrielC committed
331 332 333 334 335 336 337 338
        --ue-trace)
            UE_DEBUG_TRACE="True"
            echo_info "Enabling UE trace for debug"
            shift 1;;
        --ue-timing)
            UE_TIMING_TRACE="True"
            echo_info "Enabling UE timing trace"
            shift 1;;
Cedric Roux's avatar
Cedric Roux committed
339 340 341 342
        --disable-log)
            DISABLE_LOG_X="True"
            echo_info "Disabling all LOG_* traces"
            shift 1;;
343 344 345 346
        --uhd-images-dir)
            UHD_IMAGES_DIR=$2
            echo_info "Downloading UHD images in the indicated location"
            shift 2;;
347 348 349 350
       --build-eclipse)
            BUILD_ECLIPSE=1
            CMAKE_CMD="$CMAKE_CMD"' -DCMAKE_ECLIPSE_GENERATE_SOURCE_PROJECT=TRUE -G"Eclipse CDT4 - Unix Makefiles"'
            echo_info "Enabling build eclipse project support"
oai's avatar
oai committed
351 352 353 354 355
            shift 1;;
       --build-telnetsrv)
            BUILD_TELNETSRV=1
            echo_info "Build embedded telnet server"
            shift ;;			
356 357 358 359
        --usrp-recplay)
            USRP_REC_PLAY="True"
            echo_info "Enabling USRP record playback mode"
            shift 1;;
thomasl's avatar
thomasl committed
360 361 362
        -h | --help)
            print_help
            exit 1;;
Lionel Gauthier's avatar
Lionel Gauthier committed
363
	*)
364 365
	    print_help
            echo_fatal "Unknown option $1"
thomasl's avatar
thomasl committed
366
            break;;
thomasl's avatar
thomasl committed
367
   esac
368
  done
369
  
370 371 372
  CMAKE_CMD="$CMAKE_CMD .."
  echo_info "CMAKE_CMD=$CMAKE_CMD"
  
373
  #########################################################
374
  # check validity of HW and TP parameters for RRH and eNB
375
  #########################################################
Aikaterini's avatar
Aikaterini committed
376
  # to be discussed
377
  
378
  if [ "$eNB" = "1" ] ; then
379 380
      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!"
381
      fi
382 383
      if [ "$HW" = "None" ] ; then 
	  echo_info "No radio head has been selected (HW set to $HW)"	
384
      fi
385 386
      if [ "$TP" = "None" ] ; then
	  echo_info "No transport protocol has been selected (TP set to $TP)"	
387 388 389 390
      fi
  fi
  
  if [ "$RRH" = "1" ] ; then
391 392
      if [ "$TP" = "None" ] ; then
	  echo_fatal "A transport protocol (e.g. -t ETHERNET) must be defined!"
393
      fi
394 395
      if [ "$HW" = "None" ] ; then
	  echo_info "No radio head has been selected (HW set to $HW)"	
396 397
      fi
  fi
thomasl's avatar
thomasl committed
398

399
  echo_info "RF HW set to $HW" 
400 401 402 403
  #Now we set flags to enable deadline scheduler settings
  #By default: USRP: disable, 
  #By default: BLADERF: enable,
  #By default: EXMIMO: enable
laurent's avatar
laurent committed
404
  if [ "$FORCE_DEADLINE_SCHEDULER_FLAG_USER" = "" ]; then
405
     if [ "$HW" = "EXMIMO" ] ; then 
406
        DEADLINE_SCHEDULER_FLAG_USER="True"
407
     elif [ "$HW" = "ETHERNET" ] ; then 
408
        DEADLINE_SCHEDULER_FLAG_USER="False"
409
     elif [ "$HW" = "OAI_USRP" ] ; then 
laurent's avatar
laurent committed
410
        DEADLINE_SCHEDULER_FLAG_USER="False"
411
     elif [ "$HW" = "OAI_BLADERF" ] ; then 
laurent's avatar
laurent committed
412
        DEADLINE_SCHEDULER_FLAG_USER="False"
413
     elif [ "$HW" = "OAI_LMSSDR" ] ; then 
laurent's avatar
laurent committed
414
        DEADLINE_SCHEDULER_FLAG_USER="False"
415
     elif [ "$HW" = "None" ] ; then 
laurent's avatar
laurent committed
416
        DEADLINE_SCHEDULER_FLAG_USER="False"
417 418 419 420 421
     else 
        echo_error "Unknown HW type $HW. Exiting now..."
        exit 
     fi
  else
laurent's avatar
laurent committed
422
     DEADLINE_SCHEDULER_FLAG_USER=$FORCE_DEADLINE_SCHEDULER_FLAG_USER
423 424
  fi

425
  #Disable CPU Affinity for deadline scheduler
laurent's avatar
laurent committed
426
  if [ "$DEADLINE_SCHEDULER_FLAG_USER" = "True" ] ; then 
427 428
     CPU_AFFINITY_FLAG_USER="False"
  fi
429

laurent's avatar
laurent committed
430
  echo_info "Flags for Deadline scheduler: $DEADLINE_SCHEDULER_FLAG_USER"
431
  echo_info "Flags for CPU Affinity: $CPU_AFFINITY_FLAG_USER"
Aikaterini's avatar
Aikaterini committed
432

433 434 435 436
  if [ -n "$UHD_IMAGES_DIR" ] && [ -z "$INSTALL_EXTERNAL" ]; then
    echo_error "UHD images download settings will not be applied without -I present"
    exit
  fi
437 438 439
  ############################################
  # setting and printing OAI envs, we should check here
  ############################################
Lionel Gauthier's avatar
Lionel Gauthier committed
440

441
  echo_info "2. Setting the OAI PATHS ..."
thomasl's avatar
thomasl committed
442

443
  cecho "OPENAIR_DIR    = $OPENAIR_DIR" $green
thomasl's avatar
thomasl committed
444

445 446 447 448 449 450 451 452 453 454
  # for conf files copy in this bash script
  if [ -d /usr/lib/freeDiameter ]; then
    export FREEDIAMETER_PREFIX=/usr
  else
    if [ -d /usr/local/lib/freeDiameter ]; then
      export FREEDIAMETER_PREFIX=/usr/local
    else
      echo_warning "FreeDiameter prefix not found, install freeDiameter if EPC, HSS"
    fi
  fi
thomasl's avatar
thomasl committed
455

456

457 458 459 460
  if [ "$CLEAN_ALL" = "1" ] ; then
    clean_all_files
    echo_info "Erased all previously producted files"
  fi
461

462 463 464 465 466 467 468
  dbin=$OPENAIR_DIR/targets/bin
  dlog=$OPENAIR_DIR/cmake_targets/log
  mkdir -p $dbin $dlog

  if [ "$INSTALL_EXTERNAL" = "1" ] ; then
    echo_info "Installing packages"
    check_install_oai_software
469 470 471
    if [ "$HW" == "OAI_USRP" ] ; then
      echo_info "installing packages for USRP support"
      check_install_usrp_uhd_driver
472
      if [ ! "$DISABLE_HARDWARE_DEPENDENCY" == "True" ]; then
473
        install_usrp_uhd_driver $UHD_IMAGES_DIR
474
      fi
475 476
    fi 
    if [ "$HW" == "OAI_BLADERF" ] ; then
477
      echo_info "installing packages for BLADERF support"
478
      check_install_bladerf_driver
479 480 481
      if [ ! "$DISABLE_HARDWARE_DEPENDENCY" == "True" ]; then
        flash_firmware_bladerf
      fi
482
    fi
483 484 485 486 487
    if [ "$FLEXRAN_AGENT" == "1" ] ; then
      echo_info "installing protobuf/protobuf-c for flexran agent support"
      install_protobuf_from_source
      install_protobuf_c_from_source
    fi
488 489 490 491 492 493 494
  fi

  if [ "$INSTALL_OPTIONAL" = "1" ] ; then
    echo_info "Installing optional packages"
    check_install_additional_tools
  fi

495
  if [ "$oaisim" = "1" ] ; then
496
      #to be discussed
497
      # there is no RF device  transport protocol 
498
      HW="None" 
499
      TP="ETHERNET"
500
      
501 502 503 504 505 506
      if [ "$XFORMS" == "True" ] ; then 
	  PRINT_STATS="True"
      fi 
  fi
  
  
507 508 509
  echo_info "3. building the compilation directives ..."

  DIR=$OPENAIR_DIR/cmake_targets
510 511 512 513 514 515 516
  if [ "$NOS1" =  "1" ] ; then
      lte_build_dir=lte_noS1_build_oai
      lte_exec=lte-softmodem-nos1
  else
      lte_build_dir=lte_build_oai
      lte_exec=lte-softmodem
  fi
517

518 519 520
# configuration module libraries, one currently available, using libconfig 
  config_libconfig_shlib=params_libconfig
  
521 522
  # first generate the CMakefile in the right directory
  if [ "$eNB" = "1" -o "$UE" = "1" -o "$HW" = "EXMIMO" ] ; then
523

524
    # LTE softmodem compilation
525 526 527 528 529 530 531
    [ "$CLEAN" = "1" ] && rm -rf $DIR/$lte_build_dir/build
    mkdir -p $DIR/$lte_build_dir/build
    cmake_file=$DIR/$lte_build_dir/CMakeLists.txt
    echo "cmake_minimum_required(VERSION 2.8)"   >  $cmake_file
    if [ "$NOS1" = "1" ] ; then
	cat  $DIR/$lte_build_dir/CMakeLists.template >>  $cmake_file
    fi
532
    echo "set ( CMAKE_BUILD_TYPE $CMAKE_BUILD_TYPE )" >> $cmake_file
533
    echo "set ( CFLAGS_PROCESSOR_USER \"$CFLAGS_PROCESSOR_USER\" )" >>  $cmake_file
534
    echo "set ( XFORMS $XFORMS )"                  >>  $cmake_file
535 536 537
    if [ "$FLEXRAN_AGENT" = "1" ] ; then
	echo "set ( FLEXRAN_AGENT_SB_IF $FLEXRAN_AGENT_SB_IF )"      >>  $cmake_file
    fi
538 539 540
    echo "set ( RRC_ASN1_VERSION \"${REL}\")"      >>  $cmake_file
    echo "set ( ENABLE_VCD_FIFO $VCD_TIMING )"     >>  $cmake_file
    echo "set ( RF_BOARD \"${HW}\")"               >>  $cmake_file
541 542
    echo "set ( TRANSP_PRO \"${TP}\")"             >>  $cmake_file
    echo "set(PACKAGE_NAME \"${lte_exec}\")"       >>  $cmake_file
laurent's avatar
laurent committed
543
    echo "set (DEADLINE_SCHEDULER \"${DEADLINE_SCHEDULER_FLAG_USER}\" )"    >>$cmake_file
544
    echo "set (CPU_AFFINITY \"${CPU_AFFINITY_FLAG_USER}\" )"      >>$cmake_file
545
    echo "set ( T_TRACER $T_TRACER )"              >>  $cmake_file
546
    echo "set (UE_AUTOTEST_TRACE $UE_AUTOTEST_TRACE)"        >>  $cmake_file
gabrielC's avatar
gabrielC committed
547 548
    echo "set (UE_DEBUG_TRACE $UE_DEBUG_TRACE)"        >>  $cmake_file
    echo "set (UE_TIMING_TRACE $UE_TIMING_TRACE)"        >>  $cmake_file
Cedric Roux's avatar
Cedric Roux committed
549
    echo "set (DISABLE_LOG_X $DISABLE_LOG_X)"        >>  $cmake_file
550
    echo "set (USRP_REC_PLAY $USRP_REC_PLAY)"        >>  $cmake_file
gabrielC's avatar
gabrielC committed
551 552 553 554 555
    if [ "$UE" = 1 -a "$NOS1" = "0" ] ; then
     echo_info "Compiling UE S1 build : enabling Linux and NETLINK"
     echo "set (LINUX True )"              >>  $cmake_file
     echo "set (PDCP_USE_NETLINK True )"   >>  $cmake_file
    fi
556
    echo 'include(${CMAKE_CURRENT_SOURCE_DIR}/../CMakeLists.txt)' >> $cmake_file
557
    cd  $DIR/$lte_build_dir/build
558
    eval $CMAKE_CMD
559 560
  fi

Florian Kaltenberger's avatar
Florian Kaltenberger committed
561
  if [ "$eNB" = "1" -o "$UE" = "1" ] ; then
562
    echo_info "Compiling $lte_exec"
563
    compilations \
564 565 566
	  $lte_build_dir $lte_exec \
	  $lte_exec $dbin/$lte_exec.$REL

567 568 569 570 571
# mandatory shared lib
    compilations \
	  $lte_build_dir $config_libconfig_shlib \
	  lib$config_libconfig_shlib.so $dbin/lib$config_libconfig_shlib.so
	  
572 573 574 575 576 577 578 579 580
    if [ "$NOS1" = "1" ] ; then
	compilations \
	    $lte_build_dir nasmesh \
	    CMakeFiles/nasmesh/nasmesh.ko $dbin/nasmesh.ko
	compilations \
	    $lte_build_dir rb_tool \
	    rb_tool $dbin/rb_tool
	cp $OPENAIR_DIR/cmake_targets/tools/init_nas_nos1 $dbin
    fi
581
  fi
582

Florian Kaltenberger's avatar
Florian Kaltenberger committed
583
  if [ "$UE" = 1 -a "$NOS1" = "0" ] ; then
584 585 586
    # ue_ip driver compilation
    echo_info "Compiling UE specific part"
    compilations \
587
      $lte_build_dir ue_ip \
Lionel Gauthier's avatar
Lionel Gauthier committed
588
      CMakeFiles/ue_ip/ue_ip.ko $dbin/ue_ip.ko
589

Lionel Gauthier's avatar
Lionel Gauthier committed
590 591
#    mkdir -p $DIR/at_commands/build
#    cd $DIR/at_commands/build
592
#    eval $CMAKE_CMD
Lionel Gauthier's avatar
Lionel Gauthier committed
593 594 595
#    compilations \
#      at_commands at_nas_ue \
#      at_nas_ue $dbin/at_nas_ue
596
    
Lionel Gauthier's avatar
Lionel Gauthier committed
597
    [ "$CLEAN" = "1" ] && rm -rf $DIR/nas_sim_tools/build
598 599
    mkdir -p $DIR/nas_sim_tools/build
    cd $DIR/nas_sim_tools/build
Lionel Gauthier's avatar
Lionel Gauthier committed
600
    
601
    eval $CMAKE_CMD
thomasl's avatar
thomasl committed
602
    compilations \
603 604
      nas_sim_tools usim \
      usim $dbin/usim
thomasl's avatar
thomasl committed
605
    compilations \
606 607
      nas_sim_tools nvram \
      nvram $dbin/nvram
thomasl's avatar
thomasl committed
608
    compilations \
609 610
        nas_sim_tools conf2uedata \
        conf2uedata $dbin/conf2uedata
611 612

    # generate USIM data
613 614
    if [ -f $dbin/conf2uedata ]; then
      install_nas_tools $conf_nvram_path $gen_nvram_path
615
      echo_info "Copying UE specific part to $DIR/$lte_build_dir/build"
616 617 618
      cp -Rvf $dbin/.ue_emm.nvram0 $DIR/$lte_build_dir/build
      cp -Rvf $dbin/.ue.nvram0 $DIR/$lte_build_dir/build
      cp -Rvf $dbin/.usim.nvram0 $DIR/$lte_build_dir/build
619 620 621
    else
      echo_warning "not generated UE NAS files: binaries not found"
    fi
622
  fi
thomasl's avatar
thomasl committed
623

624
  if [ "$SIMUS_PHY" = "1" -o "$SIMUS_CORE" = "1" ] ; then
625 626 627 628 629
    cd $OPENAIR_DIR/cmake_targets/lte-simulators
    [ "$CLEAN" = "1" ] && rm -rf build
    mkdir -p build
    cd build
    rm -f *sim
630
    eval $CMAKE_CMD
631
  fi
632

633 634 635
  if [ "$SIMUS_PHY" = "1" ] ; then
    # lte unitary simulators compilation
    echo_info "Compiling unitary tests simulators"
636
    simlist="dlsim_tm4 dlsim ulsim pucchsim prachsim pdcchsim pbchsim mbmssim"
637 638 639 640 641 642
    for f in $simlist ; do
      compilations \
      lte-simulators $f \
	  $f $dbin/$f.$REL
    done
  fi
thomasl's avatar
thomasl committed
643

Lionel Gauthier's avatar
Lionel Gauthier committed
644
  # Core simulators
645 646 647 648 649 650 651 652 653 654 655
  #############
  if [ "$SIMUS_CORE" = "1" ] ; then
    # lte unitary simulators compilation
    echo_info "Compiling unitary tests simulators"
    simlist="secu_knas_encrypt_eia1 secu_kenb aes128_ctr_encrypt aes128_ctr_decrypt secu_knas_encrypt_eea2 secu_knas secu_knas_encrypt_eea1 kdf aes128_cmac_encrypt secu_knas_encrypt_eia2"
    for f in $simlist ; do
      compilations \
	  lte-simulators test_$f \
	  test_$f $dbin/test_$f.$REL
    done
  fi
thomasl's avatar
thomasl committed
656

657 658
  # EXMIMO drivers & firmware loader
  ###############
659
  if [ "$HW" = "EXMIMO" ] ; then
Lionel Gauthier's avatar
Lionel Gauthier committed
660
    
661 662
    echo_info "Compiling Express MIMO 2 board drivers"
    compilations \
663
        $lte_build_dir openair_rf \
thomasl's avatar
thomasl committed
664
        CMakeFiles/openair_rf/openair_rf.ko $dbin/openair_rf.ko
665
    compilations \
666
	  $lte_build_dir updatefw \
Lionel Gauthier's avatar
Lionel Gauthier committed
667
	  updatefw $dbin/updatefw
668
    echo_info "Compiling oarf tools. The logfile for compilation is here: $dlog/oarf.txt"
669 670 671 672 673 674 675
    make -C $OPENAIR_DIR/cmake_targets/$lte_build_dir/build oarf > $dlog/oarf.txt 2>&1
    cp $OPENAIR_DIR/cmake_targets/$lte_build_dir/build/*.oct $dbin
    if [ -s $dbin/oarf_config_exmimo.oct ] ; then
	echo_success "oarf tools compiled"
    else
	echo_error "oarf tools compilation failed"
    fi
676
    cp $OPENAIR_DIR/cmake_targets/tools/init_exmimo2 $dbin
677
  fi
thomasl's avatar
thomasl committed
678

679 680
  # oaisim compilation
  ###############
681
  if [ "$oaisim" = "1" ] ; then
682
    dconf=$OPENAIR_DIR/targets/bin
683 684 685 686 687 688 689
      if [ "$NOS1" =  "1" ] ; then
	  oaisim_build_dir=oaisim_noS1_build_oai
	  oaisim_exec=oaisim_nos1
      else
	  oaisim_build_dir=oaisim_build_oai
	  oaisim_exec=oaisim
      fi
690
    
691 692 693
    echo_info "Compiling $oaisim_exec ($oaisim_build_dir)"
    cmake_file=$DIR/$oaisim_build_dir/CMakeLists.txt
    cp $DIR/$oaisim_build_dir/CMakeLists.template $cmake_file
694
    echo "set ( CMAKE_BUILD_TYPE $CMAKE_BUILD_TYPE )" >> $cmake_file
695
    echo "set ( CFLAGS_PROCESSOR_USER \"$CFLAGS_PROCESSOR_USER\" )" >>  $cmake_file
696
    echo "set ( XFORMS $XFORMS )" >>  $cmake_file
697 698 699
    if [ "$FLEXRAN_AGENT" = "1" ] ; then
	echo "set ( FLEXRAN_AGENT_SB_IF $FLEXRAN_AGENT_SB_IF )"      >>  $cmake_file
    fi
700 701 702
    echo "set ( PRINT_STATS $PRINT_STATS )" >>  $cmake_file
    echo "set ( RRC_ASN1_VERSION \"${REL}\")" >>  $cmake_file
    echo "set ( ENABLE_VCD_FIFO $VCD_TIMING )" >>  $cmake_file
703
    echo "set ( T_TRACER $T_TRACER )"          >>  $cmake_file
704
    echo 'include(${CMAKE_CURRENT_SOURCE_DIR}/../CMakeLists.txt)' >> $cmake_file
705 706 707
    [ "$CLEAN" = "1" ] && rm -rf $DIR/$oaisim_build_dir/build
    mkdir -p $DIR/$oaisim_build_dir/build
    cd $DIR/$oaisim_build_dir/build
708
    eval $CMAKE_CMD
709
    compilations \
710 711 712 713 714 715 716 717 718
	  $oaisim_build_dir $oaisim_exec \
	  $oaisim_exec $dbin/$oaisim_exec.$REL

    if [ "$NOS1" != "1" ] ; then

	[ "$CLEAN" = "1" ] && rm -rf $DIR/at_commands/build
    	echo_info "Compiling at_nas_ue"
	mkdir -p $DIR/at_commands/build
	cd $DIR/at_commands/build
719
	eval $CMAKE_CMD
720 721 722 723 724 725 726 727 728 729 730 731 732
	compilations \
	    at_commands at_nas_ue \
	    at_nas_ue $dbin/at_nas_ue

	# ue_ip driver compilation
	echo_info "Compiling UE specific part (ue_ip driver and usim tools)"
	compilations \
	    oaisim_build_oai ue_ip \
	    CMakeFiles/ue_ip/ue_ip.ko $dbin/ue_ip.ko

	[ "$CLEAN" = "1" ] && rm -rf $DIR/nas_sim_tools/build
	mkdir -p $DIR/nas_sim_tools/build
	cd $DIR/nas_sim_tools/build
733
	eval $CMAKE_CMD
734 735 736 737 738 739 740
	compilations \
	    nas_sim_tools usim \
	    usim $dbin/usim
	compilations \
	    nas_sim_tools nvram \
	    nvram $dbin/nvram
	compilations \
741 742
        nas_sim_tools conf2uedata \
        conf2uedata $dbin/conf2uedata
743 744

	# generate USIM data
745 746
	if [ -f $dbin/conf2uedata ]; then
	    install_nas_tools $conf_nvram_path $gen_nvram_path
747 748 749
	else
	    echo_warning "not generated UE NAS files: binaries not found"
	fi
750 751
    else

752 753 754
	compilations \
	    $oaisim_build_dir rb_tool \
	    rb_tool $dbin/rb_tool
Lionel Gauthier's avatar
Lionel Gauthier committed
755

756 757 758 759
	# nasmesh driver compilation
	compilations \
	    $oaisim_build_dir nasmesh \
	    CMakeFiles/nasmesh/nasmesh.ko $dbin/nasmesh.ko
760

761
	#oai_nw_drv
762 763 764
	#compilations \
	#    $oaisim_build_dir oai_nw_drv \
	#    CMakeFiles/oai_nw_drv/oai_nw_drv.ko $dbin/oai_nw_drv.ko
765
    fi
766

767 768 769 770
    if [ "$TP" == "ETHERNET" ] ; then
	compilations \
	    $oaisim_build_dir oai_eth_transpro \
	    liboai_eth_transpro.so $dbin/liboai_eth_transpro.so.$REL
771 772
	ln -sf liboai_eth_transpro.so liboai_transpro.so
	ln -sf $dbin/liboai_eth_transpro.so.$REL $dbin/liboai_transpro.so
773 774 775
	echo_info "liboai_transpro.so is linked with ETHERNET library"	 
    fi
      
776 777
    cmake_file=$DIR/oaisim_mme_build_oai/CMakeLists.txt
    cp $DIR/oaisim_mme_build_oai/CMakeLists.template $cmake_file
778 779
    echo "set ( CMAKE_BUILD_TYPE $CMAKE_BUILD_TYPE )" >> $cmake_file
    echo "set ( XFORMS $XFORMS )" >>  $cmake_file
780 781 782
    if [ "$FLEXRAN_AGENT" = "1" ] ; then
	echo "set ( FLEXRAN_AGENT_SB_IF $FLEXRAN_AGENT_SB_IF )"      >>  $cmake_file
    fi
783 784
    echo "set ( RRC_ASN1_VERSION \"${REL}\")" >>  $cmake_file
    echo "set ( ENABLE_VCD_FIFO $VCD_TIMING )" >>  $cmake_file
785
    echo "set ( T_TRACER $T_TRACER )"        >>  $cmake_file
786
    echo 'include(${CMAKE_CURRENT_SOURCE_DIR}/../CMakeLists.txt)' >> $cmake_file
787 788 789
    #[ "$CLEAN" = "1" ] && rm -rf $DIR/oaisim_mme_build_oai/build
    #mkdir -p $DIR/oaisim_mme_build_oai/build
    #cd $DIR/oaisim_mme_build_oai/build
790
    #eval $CMAKE_CMD
791 792 793
    #compilations \
	#  oaisim_mme_build_oai oaisim_mme \
	#  oaisim_mme $dbin/oaisim_mme.$REL
794 795
  fi

796
  # RRH compilation
797
  #####################
798 799
  if [ "$RRH" = "1" ] ; then

800 801 802 803 804
     rrh_exec=rrh_gw
     rrh_build_dir=rrh_gw
     
     echo_info "Compiling $rrh_exec ..."
    
805 806
     [ "$CLEAN" = "1" ] && rm -rf $DIR/rrh_gw/build 
     mkdir -p $DIR/$rrh_build_dir/build
807 808
     cmake_file=$DIR/$rrh_build_dir/CMakeLists.txt
     echo "cmake_minimum_required(VERSION 2.8)"   >   $cmake_file
809 810 811 812 813 814 815 816
     echo "set ( CMAKE_BUILD_TYPE $CMAKE_BUILD_TYPE )" >> $cmake_file
     echo "set ( ENABLE_VCD_FIFO $VCD_TIMING )"     >>  $cmake_file
     echo "set ( ENABLE_ITTI False )"     		 >>  $cmake_file
     echo "set ( RF_BOARD \"${HW}\")"               >>  $cmake_file
     echo "set ( TRANSP_PRO \"${TP}\")"             >>  $cmake_file
     echo 'set ( PACKAGE_NAME "\"rrh_gw\"")'        >>  $cmake_file
     echo "set ( DEADLINE_SCHEDULER \"${DEADLINE_SCHEDULER_FLAG_USER}\" )"    >>$cmake_file
     echo "set ( CPU_AFFINITY \"${CPU_AFFINITY_FLAG_USER}\" )"    >>$cmake_file
817
     echo "set ( T_TRACER $T_TRACER )"            >>  $cmake_file
818
     echo 'include(${CMAKE_CURRENT_SOURCE_DIR}/../CMakeLists.txt)' >> $cmake_file    
819
     cd $DIR/$rrh_build_dir/build
820
     eval $CMAKE_CMD
821 822 823
     compilations \
	 rrh_gw rrh_gw \
	 rrh_gw $dbin/rrh_gw
Aikaterini's avatar
Aikaterini committed
824

825
  fi
oai's avatar
oai committed
826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841
  # Telnet server compilation
  #####################
  if [ "$BUILD_TELNETSRV" = "1" ] ; then

     telnetsrv_build_dir=telnetsrv
     mkdir -p $DIR/$telnetsrv_build_dir/build
     cd $DIR/$telnetsrv_build_dir/build   
     echo_info "Compiling telnet server library ..."
    
     [ "$CLEAN" = "1" ] && rm -rf $DIR/$telnetsrv_build_dir 
     cmake_file=$OPENAIR_DIR/common/utils/$telnetsrv_build_dir/CMakeLists.txt   
     cd $DIR/$telnetsrv_build_dir/build
     eval  "$CMAKE_CMD $OPENAIR_DIR/common/utils/$telnetsrv_build_dir/"
     make

  fi  
842 843
  # build RF device and transport protocol libraries
  #####################################
Wilson Thong's avatar
Wilson Thong committed
844
  if [ "$eNB" = "1" -o "$UE" = "1" -o  "$RRH" = "1" ] ; then
845

Wilson Thong's avatar
Wilson Thong committed
846
      if [ "$eNB" = "1" -o "$UE" = "1" ] ; then
847 848 849 850 851
	  build_dir=$lte_build_dir	  
      else
	  build_dir=$rrh_build_dir	 
      fi

852
      # build RF device libraries
853
      if [ "$HW" != "None" ] ; then
854
	  rm -f liboai_device.so
855
	  rm -f $dbin/liboai_device.so
856

857
	  # link liboai_device.so with the selected RF device library
858
	  if [ "$HW" == "EXMIMO" ] ; then
859 860 861
	      compilations \
		  $build_dir oai_exmimodevif \
		  liboai_exmimodevif.so $dbin/liboai_exmimodevif.so.$REL
862 863 864

	      ln -sf liboai_exmimodevif.so liboai_device.so
	      ln -sf $dbin/liboai_exmimodevif.so.$REL $dbin/liboai_device.so
865 866
	      echo_info "liboai_device.so is linked to EXMIMO device library"       
	  elif [ "$HW" == "OAI_USRP" ] ; then
867 868 869
              compilations \
                  $build_dir oai_usrpdevif \
                  liboai_usrpdevif.so $dbin/liboai_usrpdevif.so.$REL
870

871 872
	      ln -sf liboai_usrpdevif.so liboai_device.so
	      ln -sf $dbin/liboai_usrpdevif.so.$REL $dbin/liboai_device.so
873 874
	      echo_info "liboai_device.so is linked to USRP device library"        
	  elif [ "$HW" == "OAI_BLADERF" ] ; then
875 876 877 878 879 880
	      if [ -f "/usr/include/libbladeRF.h" ] ; then
		  compilations \
		      $build_dir oai_bladerfdevif \
		      liboai_bladerfdevif.so $dbin/liboai_bladerfdevif.so.$REL
	      fi

881 882
	      ln -sf liboai_bladerfdevif.so liboai_device.so
	      ln -sf $dbin/liboai_bladerfdevif.so.$REL $dbin/liboai_device.so
883
	      echo_info "liboai_device.so is linked to BLADERF device library"	 
884 885 886 887 888 889 890
	  elif [ "$HW" == "OAI_LMSSDR" ] ; then
#	      if [ -f "/usr/include/libbladeRF.h" ] ; then
		  compilations \
		      $build_dir oai_lmssdrdevif \
		      liboai_lmssdrdevif.so $dbin/liboai_lmssdrdevif.so.$REL
#	      fi

891 892
	      ln -sf liboai_lmssdrdevif.so liboai_device.so
	      ln -sf $dbin/liboai_lmssdrdevif.so.$REL $dbin/liboai_device.so
893
	      echo_info "liboai_device.so is linked to LMSSDR device library"	 
894 895 896 897 898 899
	  else 
	      echo_info "liboai_device.so is not linked to any device library"	    
	  fi
      fi
      
      # build trasport protocol libraries (currently only ETHERNET is available)
900
      if [ "$TP" != "None" ] ; then
901
	  rm -f liboai_transpro.so
902 903
	  rm -f $dbin/liboai_transpro.so

904
	  if [ "$TP" == "ETHERNET" ] ; then
905 906 907
	      compilations \
		  $build_dir oai_eth_transpro \
		  liboai_eth_transpro.so $dbin/liboai_eth_transpro.so.$REL
908 909
	      ln -sf liboai_eth_transpro.so liboai_transpro.so
	      ln -sf $dbin/liboai_eth_transpro.so.$REL $dbin/liboai_transpro.so
910 911 912 913 914
	      echo_info "liboai_transpro.so is linked with ETHERNET library"	 
	  fi      
      fi
fi

915

916 917 918 919 920 921 922 923 924 925 926
  # Doxygen Support
  #####################
  if [ "$BUILD_DOXYGEN" = "1" ] ;then
    doxygen_log=$OPENAIR_DIR/cmake_targets/log/doxygen.log
    echo_info "Building doxygen based documentation. The documentation file is located here: $OPENAIR_DIR/targets/DOCS/html/index.html"
    echo_info "Doxygen Generation log is located here: $doxygen_log"
    echo_info "Generating doxygen files....please wait"
    (
    [ "$CLEAN" = "1" ] && rm -rf $OPENAIR_DIR/cmake_targets/doxygen/build
    mkdir -p $OPENAIR_DIR/cmake_targets/doxygen/build
    cd $OPENAIR_DIR/cmake_targets/doxygen/build
927
    eval $CMAKE_CMD
928 929
    make doc
    ) >& $doxygen_log
930 931
  fi

Lionel Gauthier's avatar
Lionel Gauthier committed
932 933 934
  # Auto-tests
  #####################
  if [ "$OAI_TEST" = "1" ]; then
thomasl's avatar
thomasl committed
935
    echo_info "10. Running OAI pre commit tests (pre-ci) ..."
936 937 938 939
    echo_error "These scripts ASSUME that user is in /etc/sudoers and can execute commands without PASSWORD prompt"
    echo_error "Add the following lines in /etc/sudoers file to make your __user_name__ sudo without password prompt"
    echo_error " __your_user_name__ ALL = (ALL:ALL) NOPASSWD: ALL"
    echo_error " __your_user_name__ ALL = (ALL) NOPASSWD: ALL "
940 941
    echo_info "The log file for the autotest script for debugging is located here: $OPENAIR_DIR/cmake_targets/autotests/log/autotests.log "
    echo_info "The results of autotests results is located here: $OPENAIR_DIR/cmake_targets/autotests/log/results_autotests.xml "
942
    echo_info "You can hit CTRL-C any time to terminate the autotests..."
943 944 945
    echo "Current User Name: $USER"
    read -s -p "Enter Password: " mypassword
    echo -e "\n"
946 947
    rm -fr $OPENAIR_DIR/cmake_targets/autotests/log
    mkdir -p $OPENAIR_DIR/cmake_targets/autotests/log
948
    if [ "$RUN_GROUP" -eq "1" ]; then
949
        $OPENAIR_DIR/cmake_targets/autotests/run_exec_autotests.bash -g "$TEST_CASE_GROUP" -p $mypassword >& $OPENAIR_DIR/cmake_targets/autotests/log/autotests.log &
950
    else
951
        $OPENAIR_DIR/cmake_targets/autotests/run_exec_autotests.bash -p $mypassword >& $OPENAIR_DIR/cmake_targets/autotests/log/autotests.log &
952
    fi
953
    wait
Lionel Gauthier's avatar
Lionel Gauthier committed
954
  else
thomasl's avatar
thomasl committed
955
    echo_info "10. Bypassing the Tests ..."
Lionel Gauthier's avatar
Lionel Gauthier committed
956
  fi
957 958 959
}

main "$@"