build_oai 23.8 KB
Newer Older
thomasl's avatar
thomasl committed
1 2 3
#!/bin/bash
################################################################################
#
4 5
# Copyright (c) 2015, EURECOM (www.eurecom.fr)
# All rights reserved.
thomasl's avatar
thomasl committed
6
#
7 8
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
thomasl's avatar
thomasl committed
9
#
10 11 12 13 14
# 1. Redistributions of source code must retain the above copyright notice, this
#    list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice,
#    this list of conditions and the following disclaimer in the documentation
#    and/or other materials provided with the distribution.
thomasl's avatar
thomasl committed
15
#
16 17 18 19 20 21 22 23 24 25
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
# ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
thomasl's avatar
thomasl committed
26
#
27 28 29
# The views and conclusions contained in the software and documentation are those
# of the authors and should not be interpreted as representing official policies,
# either expressed or implied, of the FreeBSD Project.
thomasl's avatar
thomasl committed
30 31
#
################################################################################
32
# file build_oai
thomasl's avatar
thomasl committed
33 34 35 36 37 38 39
# brief OAI automated build tool that can be used to install, compile, run OAI.
# author  Navid Nikaein, Lionel GAUTHIER, Laurent Thomas


################################
# include helper functions
################################
thomasl's avatar
thomasl committed
40
ORIGIN_PATH=$PWD
thomasl's avatar
thomasl committed
41
THIS_SCRIPT_PATH=$(dirname $(readlink -f $0))
42
source $THIS_SCRIPT_PATH/tools/build_helper
thomasl's avatar
thomasl committed
43

44
MSC_GEN="False"
thomasl's avatar
thomasl committed
45
XFORMS="False"
46
PRINT_STATS="False"
thomasl's avatar
thomasl committed
47
VCD_TIMING="False"
48
LOWLATENCY_FLAG_USER="False"
49
FORCE_LOWLATENCY_FLAG_USER=""
thomasl's avatar
thomasl committed
50 51
REL="Rel10"
HW="EXMIMO"
52
TP="NO_VALUE"
Florian Kaltenberger's avatar
Florian Kaltenberger committed
53
NOS1=0
Lionel Gauthier's avatar
Lionel Gauthier committed
54
EPC=0
55
VERBOSE_COMPILE=0
56
CFLAGS_PROCESSOR_USER=""
57 58
RUN_GROUP=0
TEST_CASE_GROUP=""
thomasl's avatar
thomasl committed
59

60 61
trap handle_ctrl_c INT

62 63 64 65 66 67 68 69
function print_help() {
  echo_info '
This program installs OpenAirInterface Software
You should have ubuntu 14.xx, updated, and the Linux kernel >= 3.14
Options
-h
   This help
-c | --clean
Lionel Gauthier's avatar
Lionel Gauthier committed
70
   Erase all files to make a rebuild from start"
71
-C | --clean-all
Lionel Gauthier's avatar
Lionel Gauthier committed
72
   Erase all files made by previous compilations, installations"
73 74
--clean-kernel
   Erase previously installed features in kernel: iptables, drivers, ...
Lionel Gauthier's avatar
Lionel Gauthier committed
75
-I | --install-external-packages
76 77 78 79 80 81 82 83 84
   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
   Add debugging symbols to compilation directives
-h | --help
   Print this help
--eNB
85
   Makes the LTE softmodem
86
--UE
87
   Makes the UE specific parts (ue_ip, usim, nvram) 
88 89
--RRH
   Makes the RRH
90
-r | --3gpp-release
Lionel Gauthier's avatar
Lionel Gauthier committed
91
   default is Rel10,
92 93
   Rel8 limits the implementation to 3GPP Release 8 version
-w | --hardware
Aikaterini's avatar
Aikaterini committed
94
   EXMIMO (Default), USRP, BLADERF, None
95
   Adds this RF board support (in external packages installation and in compilation)
96 97 98
-t | --transport protocol
   ETHERNET , None
   Adds this trasport protocol support in compilation
99
--oaisim
100
   Makes the oaisim simulator. Hardware will be defaulted to "NO_VALUE".
101 102 103 104 105 106
--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
107 108
--run-group 
   runs only specified test cases specified here. This flag is only valid with -s
109 110 111
-V | --vcd
   Adds a debgging facility to the binary files: GUI with major internal synchronization events
-x | --xforms
112
   Adds a software oscilloscope feature to the produced binaries. If oaisim, then enable PRINT_STATS.
113
--install-system-files
Lionel Gauthier's avatar
Lionel Gauthier committed
114
   Install OpenArInterface required files in Linux system
115
   (will ask root password)
116 117
--noS1 
   Compiles oaisim or lte-softmodem without S1 interface, using direct link to IP instead
118 119
--verbose-compile
   Shows detailed compilation instructions in makefile
120 121
--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
122
--disable-deadline
123 124 125
   Disables deadline scheduler of Linux kernel (>=3.14.x).
--enable-deadline
   Disables deadline scheduler of Linux kernel (>=3.14.x). 
126 127
Usage (first build):
 oaisim (eNB + UE): ./build_oai -I -g --oaisim -x --install-system-files
128 129
 Eurecom EXMIMO + COTS UE : ./build_oai -I -g --eNB -x --install-system-files
 NI/ETTUS B201  + COTS UE : ./build_oai -I -g --eNB -x --install-system-files -w USRP
130 131 132 133
Usage (Regular):
 oaisim : ./build_oai --oaisim -x 
 Eurecom EXMIMO + OAI ENB : ./build_oai --eNB -x 
 NI/ETTUS B201  + OAI ENB : ./build_oai --eNB -x -w USRP'
134 135 136 137 138 139
}


function main() {
  until [ -z "$1" ]
  do
140
    case "$1" in
141 142 143 144 145
       -c | --clean)
            CLEAN=1
            shift;;
       -C | --clean-all)
            CLEAN_ALL=1
thomasl's avatar
thomasl committed
146
            shift;;
147 148 149
       --clean-kernel)
            clean_kernel
            echo_info "Erased iptables config and removed modules from kernel"
thomasl's avatar
thomasl committed
150
            shift;;
151
       -I | --install-external-packages)
152
            INSTALL_EXTERNAL=1
153
            echo_info "Will install external packages"
thomasl's avatar
thomasl committed
154
            shift;;
155
       --install-optional-packages)
thomasl's avatar
thomasl committed
156 157 158
            INSTALL_OPTIONAL=1
            echo_info "Will install optional packages"
            shift;;
159
       -g | --run-with-gdb)
thomasl's avatar
thomasl committed
160
            GDB=1
161
            echo_info "Will Compile with gdb symbols"
thomasl's avatar
thomasl committed
162
            shift;;
163 164 165 166 167 168 169 170
       --eNB)
            eNB=1
            echo_info "Will compile eNB"
            shift;;
       --UE)
            UE=1
            echo_info "Will compile UE"
            shift;;
171 172 173 174
       --RRH)
            RRH=1
            echo_info "Will compile RRH"
            shift;;
thomasl's avatar
thomasl committed
175
       -r | --3gpp-release)
Lionel Gauthier's avatar
Lionel Gauthier committed
176
            REL=$2
177
            echo_info "Setting release to: $REL"
thomasl's avatar
thomasl committed
178 179 180
            shift 2;;
       -w | --hardware)
            HW="$2" #"${i#*=}"
181
            # Use OAI_USRP  as the key word USRP is used inside UHD driver
182 183 184 185 186 187
            if [ "$HW" == "USRP" ] ; then 
		HW="OAI_USRP"
	    fi 
            if [ "$HW" == "BLADERF" ] ; then 
		HW="OAI_BLADERF"
	    fi 
188 189 190 191 192
            echo_info "Setting hardware to: $HW"
            shift 2;;
	-t | --transport_protocol)
            TP="$2" #"${i#*=}"
            echo_info "Setting transport protocol to: $TP"
thomasl's avatar
thomasl committed
193
            shift 2;;
194 195 196 197 198
       --oaisim)
            oaisim=1
            echo_info "Will compile oaisim and drivers nasmesh, ..."
            shift;;
       --phy_simulators)
thomasl's avatar
thomasl committed
199
            SIMUS_PHY=1
200 201 202 203 204 205
            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
206 207
       -s | --check)
            OAI_TEST=1
208
            echo_info "Will run auto-tests"
thomasl's avatar
thomasl committed
209
            shift;;
210 211 212 213 214
       --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
215
       -V | --vcd)
216
            echo_info "Setting gtk-wave output"
thomasl's avatar
thomasl committed
217 218
            VCD_TIMING=1
            EXE_ARGUMENTS="$EXE_ARGUMENTS -V"
thomasl's avatar
thomasl committed
219
            shift;;
thomasl's avatar
thomasl committed
220
       -x | --xforms)
221
            XFORMS="True"
thomasl's avatar
thomasl committed
222
            EXE_ARGUMENTS="$EXE_ARGUMENTS -d"
223
            echo_info "Will generate the software oscilloscope features"
thomasl's avatar
thomasl committed
224
            shift;;
225 226 227 228
       --install-system-files)
            INSTALL_SYSTEM_FILES=1
            echo_info "Will copy OpenAirInterface files in Linux directories"
            shift;;
229 230 231 232
       --noS1)
	    NOS1=1
            echo_info "Will compile without S1 interface"
            shift;;
233 234 235 236
       --verbose-compile)
	    VERBOSE_COMPILE=1
            echo_info "Will compile with verbose instructions"
            shift;;
237 238
       --cflags_processor)
            CFLAGS_PROCESSOR_USER=$2
239
            echo_info "Setting CPU FLAGS from USER to: $CFLAGS_PROCESSOR_USER"
240
            shift 2;;
241
       --disable-deadline)
242
            FORCE_LOWLATENCY_FLAG_USER="False"
243 244
            echo_info "Disabling the usage of deadline scheduler"
            shift 1;;
245
       --enable-deadline)
246
            FORCE_LOWLATENCY_FLAG_USER="True"
247 248 249
            echo_info "Enabling the usage of deadline scheduler"
            shift 1;;

thomasl's avatar
thomasl committed
250 251 252
        -h | --help)
            print_help
            exit 1;;
Lionel Gauthier's avatar
Lionel Gauthier committed
253
	*)
254 255
	    print_help
            echo_fatal "Unknown option $1"
thomasl's avatar
thomasl committed
256
            break;;
thomasl's avatar
thomasl committed
257
   esac
258
  done
259 260 261 262
  
  ############################################
  # check validity of HW and TP parameters for RRH and eNB
  #############################################
Aikaterini's avatar
Aikaterini committed
263
  # to be discussed
264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
  if [ "$eNB" = "1" ] ; then
      if [ "$HW" = "NO_VALUE" -a  "$TP" = "NO_VALUE" ] ; then
	  echo_fatal "A hardware target or a transport protocol must be defined!!"
      fi
      if [ "$HW" != "NO_VALUE" -a  "$TP" != "NO_VALUE" ] ; then
	  echo_fatal "Currentlt lte-softmodem can not support simultaniously local and remote RF heads!!"
      fi      
      if [ "$HW" = "NO_VALUE" ] ; then 
	  echo_info "No RF device has been selected: (HW=$HW)"	
      fi
      if [ "$TP" = "NO_VALUE" ] ; then
	  echo_info "No transport protocol has been selected: (TP=$TP)"	
      fi
  fi
  
  if [ "$RRH" = "1" ] ; then
      if [ "$TP" = "NO_VALUE" ] ; then
	  echo_fatal "A transport protocol must be defined!!"
      fi
      if [ "$HW" = "NO_VALUE" ] ; then
	  echo_info "No RF device has been selected: (HW=$HW)"	
      fi
  fi

288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
  #Now we set flags to enable deadline scheduler settings
  #By default: USRP: disable, 
  #By default: BLADERF: enable,
  #By default: EXMIMO: enable
  if [ "$FORCE_LOWLATENCY_FLAG_USER" = "" ]; then
     if [ "$HW" = "EXMIMO" ] ; then 
        LOWLATENCY_FLAG_USER="True"
     elif [ "$HW" = "ETHERNET" ] ; then 
        LOWLATENCY_FLAG_USER="True"
     elif [ "$HW" = "OAI_USRP" ] ; then 
        LOWLATENCY_FLAG_USER="False"
     elif [ "$HW" = "OAI_BLADERF" ] ; then 
        LOWLATENCY_FLAG_USER="False"
     elif [ "$HW" = "None" ] ; then 
        LOWLATENCY_FLAG_USER="False"
     else 
        echo_error "Unknown HW type $HW. Exiting now..."
        exit 
     fi
  else
     LOWLATENCY_FLAG_USER=$FORCE_LOWLATENCY_FLAG_USER
309
  fi
310 311 312

  echo_info "Flags for Deadline scheduler: $LOWLATENCY_FLAG_USER"

Aikaterini's avatar
Aikaterini committed
313

314 315 316
  ############################################
  # setting and printing OAI envs, we should check here
  ############################################
Lionel Gauthier's avatar
Lionel Gauthier committed
317

318
  echo_info "2. Setting the OAI PATHS ..."
thomasl's avatar
thomasl committed
319

Lionel Gauthier's avatar
Lionel Gauthier committed
320
  set_openair_env
321
  cecho "OPENAIR_DIR    = $OPENAIR_DIR" $green
thomasl's avatar
thomasl committed
322

323 324 325 326 327 328 329 330 331 332
  # 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
333

334

335 336 337 338
  if [ "$CLEAN_ALL" = "1" ] ; then
    clean_all_files
    echo_info "Erased all previously producted files"
  fi
339

340 341 342 343 344 345 346
  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
347 348 349 350 351
    if [ "$HW" == "OAI_USRP" ] ; then
      echo_info "installing packages for USRP support"
      check_install_usrp_uhd_driver
    fi 
    if [ "$HW" == "OAI_BLADERF" ] ; then
352
      echo_info "installing packages for BLADERF support"
353 354
      check_install_bladerf_driver
    fi
355 356 357 358 359 360 361
  fi

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

362
  if [ "$oaisim" = "1" ] ; then
Aikaterini's avatar
Aikaterini committed
363 364 365 366 367
  #to be discussed
  # there is no RF device and no transport protocol 
     HW="NO_VALUE" 
     TP="NO_VALUE"
  
368 369 370 371 372 373
      if [ "$XFORMS" == "True" ] ; then 
	  PRINT_STATS="True"
      fi 
  fi
  
  
374
  echo_info "3. building the compilation directives ..."
375 376

  DIR=$OPENAIR_DIR/cmake_targets
377 378 379 380 381 382 383
  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
384

385 386
  # first generate the CMakefile in the right directory
  if [ "$eNB" = "1" -o "$UE" = "1" -o "$HW" = "EXMIMO" ] ; then
387

388
    # LTE softmodem compilation
389 390 391 392 393 394 395
    [ "$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
396
    echo "set ( CFLAGS_PROCESSOR_USER \"$CFLAGS_PROCESSOR_USER\" )" >>  $cmake_file
397 398 399 400
    echo "set ( XFORMS $XFORMS )"                  >>  $cmake_file
    echo "set ( RRC_ASN1_VERSION \"${REL}\")"      >>  $cmake_file
    echo "set ( ENABLE_VCD_FIFO $VCD_TIMING )"     >>  $cmake_file
    echo "set ( RF_BOARD \"${HW}\")"               >>  $cmake_file
401 402
    echo "set ( TRANSP_PRO \"${TP}\")"             >>  $cmake_file
    echo "set(PACKAGE_NAME \"${lte_exec}\")"       >>  $cmake_file
403
    echo "set (LOWLATENCY \"${LOWLATENCY_FLAG_USER}\" )"    >>$cmake_file
404
    echo 'include(${CMAKE_CURRENT_SOURCE_DIR}/../CMakeLists.txt)' >> $cmake_file
405
    cd  $DIR/$lte_build_dir/build
406
    cmake ..
407 408
  fi

Florian Kaltenberger's avatar
Florian Kaltenberger committed
409
  if [ "$eNB" = "1" -o "$UE" = "1" ] ; then
410
    echo_info "Compiling $lte_exec"
411
    compilations \
412 413 414 415 416 417 418 419 420 421 422 423
	  $lte_build_dir $lte_exec \
	  $lte_exec $dbin/$lte_exec.$REL

    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
424
  fi
425

Florian Kaltenberger's avatar
Florian Kaltenberger committed
426
  if [ "$UE" = 1 -a "$NOS1" = "0" ] ; then
427 428 429
    # ue_ip driver compilation
    echo_info "Compiling UE specific part"
    compilations \
430
      $lte_build_dir ue_ip \
Lionel Gauthier's avatar
Lionel Gauthier committed
431 432 433 434 435 436 437 438
      CMakeFiles/ue_ip/ue_ip.ko $dbin/ue_ip.ko
      
#    mkdir -p $DIR/at_commands/build
#    cd $DIR/at_commands/build
#    cmake ..
#    compilations \
#      at_commands at_nas_ue \
#      at_nas_ue $dbin/at_nas_ue
439
    
Lionel Gauthier's avatar
Lionel Gauthier committed
440
    [ "$CLEAN" = "1" ] && rm -rf $DIR/nas_sim_tools/build
441 442
    mkdir -p $DIR/nas_sim_tools/build
    cd $DIR/nas_sim_tools/build
Lionel Gauthier's avatar
Lionel Gauthier committed
443
    
444
    cmake ..
thomasl's avatar
thomasl committed
445
    compilations \
446 447
      nas_sim_tools usim \
      usim $dbin/usim
thomasl's avatar
thomasl committed
448
    compilations \
449 450 451 452 453 454 455 456 457
      nas_sim_tools nvram \
      nvram $dbin/nvram

    # generate USIM data
    if [ -f $dbin/nvram ]; then
      install_nas_tools $dbin $dconf
    else
      echo_warning "not generated UE NAS files: binaries not found"
    fi
458
  fi
thomasl's avatar
thomasl committed
459

460
  if [ "$SIMUS_PHY" = "1" -o "$SIMUS_CORE" = "1" ] ; then
461 462 463 464 465 466
    cd $OPENAIR_DIR/cmake_targets/lte-simulators
    [ "$CLEAN" = "1" ] && rm -rf build
    mkdir -p build
    cd build
    rm -f *sim
    cmake ..
467
  fi
468

469 470 471 472 473 474 475 476 477 478
  if [ "$SIMUS_PHY" = "1" ] ; then
    # lte unitary simulators compilation
    echo_info "Compiling unitary tests simulators"
    simlist="dlsim ulsim pucchsim prachsim pdcchsim pbchsim mbmssim"
    for f in $simlist ; do
      compilations \
      lte-simulators $f \
	  $f $dbin/$f.$REL
    done
  fi
thomasl's avatar
thomasl committed
479

Lionel Gauthier's avatar
Lionel Gauthier committed
480
  # Core simulators
481 482 483 484 485 486 487 488 489 490 491
  #############
  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
492

493 494
  # EXMIMO drivers & firmware loader
  ###############
495
  if [ "$HW" = "EXMIMO" ] ; then
Lionel Gauthier's avatar
Lionel Gauthier committed
496
    
497 498
    echo_info "Compiling Express MIMO 2 board drivers"
    compilations \
499
        $lte_build_dir openair_rf \
thomasl's avatar
thomasl committed
500
        CMakeFiles/openair_rf/openair_rf.ko $dbin/openair_rf.ko
501
    compilations \
502
	  $lte_build_dir updatefw \
Lionel Gauthier's avatar
Lionel Gauthier committed
503
	  updatefw $dbin/updatefw
504 505 506 507 508 509 510
    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
511
    cp $OPENAIR_DIR/cmake_targets/tools/init_exmimo2 $dbin
512
  fi
thomasl's avatar
thomasl committed
513

514
  if [ "$oaisim" = "1" ] ; then
515
    dconf=$OPENAIR_DIR/targets/bin
516 517 518 519 520 521 522
      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
523
    
524 525 526
    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
527
    echo "set ( CFLAGS_PROCESSOR_USER \"$CFLAGS_PROCESSOR_USER\" )" >>  $cmake_file
528 529 530 531
    echo "set ( XFORMS $XFORMS )" >>  $cmake_file
    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
532
    echo 'include(${CMAKE_CURRENT_SOURCE_DIR}/../CMakeLists.txt)' >> $cmake_file
533 534 535
    [ "$CLEAN" = "1" ] && rm -rf $DIR/$oaisim_build_dir/build
    mkdir -p $DIR/$oaisim_build_dir/build
    cd $DIR/$oaisim_build_dir/build
536 537
    cmake ..
    compilations \
538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
	  $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
	cmake ..
	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
	cmake ..
	compilations \
	    nas_sim_tools usim \
	    usim $dbin/usim
	compilations \
	    nas_sim_tools nvram \
	    nvram $dbin/nvram

	# generate USIM data
	if [ -f $dbin/nvram ]; then
	    install_nas_tools $dbin $dconf
	else
	    echo_warning "not generated UE NAS files: binaries not found"
	fi
575 576
    else

577 578 579
	compilations \
	    $oaisim_build_dir rb_tool \
	    rb_tool $dbin/rb_tool
Lionel Gauthier's avatar
Lionel Gauthier committed
580

581 582 583 584
	# nasmesh driver compilation
	compilations \
	    $oaisim_build_dir nasmesh \
	    CMakeFiles/nasmesh/nasmesh.ko $dbin/nasmesh.ko
585

586 587 588 589 590
	#oai_nw_drv
	compilations \
	    $oaisim_build_dir oai_nw_drv \
	    CMakeFiles/oai_nw_drv/oai_nw_drv.ko $dbin/oai_nw_drv.ko
    fi
591

592 593 594 595 596 597
    cmake_file=$DIR/oaisim_mme_build_oai/CMakeLists.txt
    cp $DIR/oaisim_mme_build_oai/CMakeLists.template $cmake_file
    echo "set(XFORMS $XFORMS )" >>  $cmake_file
    echo "set(RRC_ASN1_VERSION \"${REL}\")" >>  $cmake_file
    echo "set(ENABLE_VCD_FIFO $VCD_TIMING )" >>  $cmake_file
    echo 'include(${CMAKE_CURRENT_SOURCE_DIR}/../CMakeLists.txt)' >> $cmake_file
598 599 600 601 602 603 604
    #[ "$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
    #cmake ..
    #compilations \
	#  oaisim_mme_build_oai oaisim_mme \
	#  oaisim_mme $dbin/oaisim_mme.$REL
605 606
  fi

607
  # RRH compilation
608
  #####################
609 610
  if [ "$RRH" = "1" ] ; then

611 612 613 614 615
     rrh_exec=rrh_gw
     rrh_build_dir=rrh_gw
     
     echo_info "Compiling $rrh_exec ..."
    
616 617
     [ "$CLEAN" = "1" ] && rm -rf $DIR/rrh_gw/build 
     mkdir -p $DIR/$rrh_build_dir/build
618 619 620 621 622 623 624
     cmake_file=$DIR/$rrh_build_dir/CMakeLists.txt
     echo "cmake_minimum_required(VERSION 2.8)"   >   $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
625
     echo 'include(${CMAKE_CURRENT_SOURCE_DIR}/../CMakeLists.txt)' >> $cmake_file    
626 627 628 629 630
     cd $DIR/$rrh_build_dir/build
     cmake ..
     compilations \
	 rrh_gw rrh_gw \
	 rrh_gw $dbin/rrh_gw
Aikaterini's avatar
Aikaterini committed
631

632
  fi
633 634 635 636 637 638 639 640 641 642 643 644 645 646
  
  # build RF device and transport protocol libraries
  #####################################
  if [ "$eNB" = "1" -o  "$RRH" = "1" ] ; then

      if [ "$eNB" = "1" ] ; then
	  build_dir=$lte_build_dir	  
      else
	  build_dir=$rrh_build_dir	 
      fi

      # build RF device libraries (currently EXMIMO is not complied with the rest of HW targets)
      if [ "$HW" != "NO_VALUE" ] ; then
	  rm -f liboai_device.so
647
	  rm -f $dbin/liboai_device.so
648 649 650 651 652 653 654 655 656 657 658 659 660 661
	  if [ -d "/usr/include/uhd" ] ; then
	      compilations \
		  $build_dir oai_usrpdevif \
		  liboai_usrpdevif.so $dbin/liboai_usrpdevif.so.$REL
	  fi
	  if [ -f "/usr/include/libbladeRF.h" ] ; then
	      compilations \
		  $build_dir oai_bladerfdevif \
		  liboai_bladerfdevif.so $dbin/liboai_bladerfdevif.so.$REL
	  fi

	  #add exmimo compilation


662
	  # link liboai_device.so with the selected RF device library
663 664
	  if [ "$HW" == "EXMIMO" ] ; then
	      ln -s liboai_exmimodevif.so liboai_device.so
665
	      ln -s $dbin/liboai_exmimodevif.so.$REL $dbin/liboai_device.so
666 667 668
	      echo_info "liboai_device.so is linked to EXMIMO device library"       
	  elif [ "$HW" == "OAI_USRP" ] ; then
	      ln -s liboai_usrpdevif.so liboai_device.so
669
	      ln -s $dbin/liboai_usrpdevif.so.$REL $dbin/liboai_device.so
670 671 672
	      echo_info "liboai_device.so is linked to USRP device library"        
	  elif [ "$HW" == "OAI_BLADERF" ] ; then
	      ln -s liboai_bladerfdevif.so liboai_device.so
673
	      ln -s $dbin/liboai_bladerfdevif.so.$REL $dbin/liboai_device.so
674 675 676 677 678 679 680 681 682
	      echo_info "liboai_device.so is linked to BLADERF device library"	 
	  else 
	      echo_info "liboai_device.so is not linked to any device library"	    
	  fi
      fi
      
      # build trasport protocol libraries (currently only ETHERNET is available)
      if [ "$TP" != "NO_VALUE" ] ; then
	  rm -f liboai_transpro.so
683 684
	  rm -f $dbin/liboai_transpro.so

685 686 687 688 689
	  compilations \
              $build_dir oai_eth_transpro \
              liboai_eth_transpro.so $dbin/liboai_eth_transpro.so.$REL
	  if [ "$TP" == "ETHERNET" ] ; then
	      ln -s liboai_eth_transpro.so liboai_transpro.so
690
	      ln -s $dbin/liboai_eth_transpro.so.$REL $dbin/liboai_transpro.so
691 692 693 694 695
	      echo_info "liboai_transpro.so is linked with ETHERNET library"	 
	  fi      
      fi
fi

696

697
  
Lionel Gauthier's avatar
Lionel Gauthier committed
698 699 700
  # Auto-tests
  #####################
  if [ "$OAI_TEST" = "1" ]; then
thomasl's avatar
thomasl committed
701
    echo_info "10. Running OAI pre commit tests (pre-ci) ..."
702 703 704 705
    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 "
706 707
    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 "
708
    echo_info "You can hit CTRL-C any time to terminate the autotests..."
709 710 711
    echo "Current User Name: $USER"
    read -s -p "Enter Password: " mypassword
    echo -e "\n"
712 713
    rm -fr $OPENAIR_DIR/cmake_targets/autotests/log
    mkdir -p $OPENAIR_DIR/cmake_targets/autotests/log
714
    if [ "$RUN_GROUP" -eq "1" ]; then
715
        $OPENAIR_DIR/cmake_targets/autotests/run_exec_autotests.bash -g "$TEST_CASE_GROUP" -p '$mypassword' >& $OPENAIR_DIR/cmake_targets/autotests/log/autotests.log &
716
    else
717
        $OPENAIR_DIR/cmake_targets/autotests/run_exec_autotests.bash -p '$mypassword' >& $OPENAIR_DIR/cmake_targets/autotests/log/autotests.log &
718
    fi
719
    wait
Lionel Gauthier's avatar
Lionel Gauthier committed
720
  else
thomasl's avatar
thomasl committed
721
    echo_info "10. Bypassing the Tests ..."
Lionel Gauthier's avatar
Lionel Gauthier committed
722
  fi
723 724 725
}

main "$@"