build_oai 18.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 48 49
VCD_TIMING="False"
REL="Rel10"
HW="EXMIMO"
Lionel Gauthier's avatar
Lionel Gauthier committed
50
EPC=0
51
VERBOSE_COMPILE=0
52
FAPI="False"
thomasl's avatar
thomasl committed
53

54 55 56 57 58 59 60 61
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
62
   Erase all files to make a rebuild from start"
63
-C | --clean-all
Lionel Gauthier's avatar
Lionel Gauthier committed
64
   Erase all files made by previous compilations, installations"
65 66
--clean-kernel
   Erase previously installed features in kernel: iptables, drivers, ...
Lionel Gauthier's avatar
Lionel Gauthier committed
67
-I | --install-external-packages
68 69 70 71 72 73 74 75 76
   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
77
   Makes the LTE softmodem
78
--UE
79
   Makes the UE specific parts (ue_ip, usim, nvram) 
80 81
--EPC
   Makes the EPC (MME-SPGW, HSS)
82 83
--RRH
   Makes the RRH
84
-r | --3gpp-release
Lionel Gauthier's avatar
Lionel Gauthier committed
85
   default is Rel10,
86 87
   Rel8 limits the implementation to 3GPP Release 8 version
-w | --hardware
88
   EXMIMO (Default), USRP, BLADERF, ETHERNET, None
89 90
   Adds this RF board support (in external packages installation and in compilation)
--oaisim
91
   Makes the oaisim simulator. Hardware will be defaulted to "NONE".
92 93 94 95 96 97 98 99 100
--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
-V | --vcd
   Adds a debgging facility to the binary files: GUI with major internal synchronization events
-x | --xforms
101
   Adds a software oscilloscope feature to the produced binaries. If oaisim, then enable PRINT_STATS.
102
--install-system-files
Lionel Gauthier's avatar
Lionel Gauthier committed
103
   Install OpenArInterface required files in Linux system
104
   (will ask root password)
105 106
--noS1 
   Compiles oaisim or lte-softmodem without S1 interface, using direct link to IP instead
107 108
--verbose-compile
   Shows detailed compilation instructions in makefile
109 110
--fapi
   Compiles using the FAPI scheduler
111 112
Usage (first build):
 oaisim (eNB + UE): ./build_oai -I -g --oaisim -x --install-system-files
113
 Eurecom EXMIMO + COTS UE : ./build_oai -I -g --eNB --EPC -x --install-system-files
114 115 116 117 118
 NI/ETTUS B201  + COTS UE : ./build_oai -I -g --eNB --EPC -x --install-system-files -w USRP
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'
119 120 121 122 123 124
}


function main() {
  until [ -z "$1" ]
  do
125
    case "$1" in
126 127 128 129 130
       -c | --clean)
            CLEAN=1
            shift;;
       -C | --clean-all)
            CLEAN_ALL=1
thomasl's avatar
thomasl committed
131
            shift;;
132 133 134
       --clean-kernel)
            clean_kernel
            echo_info "Erased iptables config and removed modules from kernel"
thomasl's avatar
thomasl committed
135
            shift;;
136
       -I | --install-external-packages)
137
            INSTALL_EXTERNAL=1
138
            echo_info "Will install external packages"
thomasl's avatar
thomasl committed
139
            shift;;
140
       --install-optional-packages)
thomasl's avatar
thomasl committed
141 142 143
            INSTALL_OPTIONAL=1
            echo_info "Will install optional packages"
            shift;;
144
       -g | --run-with-gdb)
thomasl's avatar
thomasl committed
145
            GDB=1
146
            echo_info "Will Compile with gdb symbols"
thomasl's avatar
thomasl committed
147
            shift;;
148 149 150 151 152 153 154 155 156 157 158 159
       --eNB)
            eNB=1
            echo_info "Will compile eNB"
            shift;;
       --UE)
            UE=1
            echo_info "Will compile UE"
            shift;;
       --EPC)
            EPC=1
            echo_info "Will compile EPC"
            shift;;
160 161 162 163
       --RRH)
            RRH=1
            echo_info "Will compile RRH"
            shift;;
thomasl's avatar
thomasl committed
164
       -r | --3gpp-release)
Lionel Gauthier's avatar
Lionel Gauthier committed
165
            REL=$2
166
            echo_info "setting release to: $REL"
thomasl's avatar
thomasl committed
167 168 169
            shift 2;;
       -w | --hardware)
            HW="$2" #"${i#*=}"
170
            # Use OAI_USRP  as the key word USRP is used inside UHD driver
171 172 173 174 175 176
            if [ "$HW" == "USRP" ] ; then 
		HW="OAI_USRP"
	    fi 
            if [ "$HW" == "BLADERF" ] ; then 
		HW="OAI_BLADERF"
	    fi 
thomasl's avatar
thomasl committed
177 178
            echo_info "setting hardware to: $HW"
            shift 2;;
179 180 181 182 183
       --oaisim)
            oaisim=1
            echo_info "Will compile oaisim and drivers nasmesh, ..."
            shift;;
       --phy_simulators)
thomasl's avatar
thomasl committed
184
            SIMUS_PHY=1
185 186 187 188 189 190
            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
191 192
       -s | --check)
            OAI_TEST=1
193
            echo_info "Will run auto-tests"
thomasl's avatar
thomasl committed
194
            shift;;
thomasl's avatar
thomasl committed
195
       -V | --vcd)
196
            echo_info "setting gtk-wave output"
thomasl's avatar
thomasl committed
197 198
            VCD_TIMING=1
            EXE_ARGUMENTS="$EXE_ARGUMENTS -V"
thomasl's avatar
thomasl committed
199
            shift;;
thomasl's avatar
thomasl committed
200
       -x | --xforms)
201
            XFORMS="True"
thomasl's avatar
thomasl committed
202
            EXE_ARGUMENTS="$EXE_ARGUMENTS -d"
203
            echo_info "Will generate the software oscilloscope features"
thomasl's avatar
thomasl committed
204
            shift;;
205 206 207 208
       --install-system-files)
            INSTALL_SYSTEM_FILES=1
            echo_info "Will copy OpenAirInterface files in Linux directories"
            shift;;
209 210 211 212
       --noS1)
	    NOS1=1
            echo_info "Will compile without S1 interface"
            shift;;
213 214 215 216
       --fapi)
	    FAPI="True"
            echo_info "Will compile with FAPI scheduler"
            shift;;
217 218 219 220
       --verbose-compile)
	    VERBOSE_COMPILE=1
            echo_info "Will compile with verbose instructions"
            shift;;
thomasl's avatar
thomasl committed
221 222 223
        -h | --help)
            print_help
            exit 1;;
Lionel Gauthier's avatar
Lionel Gauthier committed
224
	*)
225 226
	    print_help
            echo_fatal "Unknown option $1"
thomasl's avatar
thomasl committed
227
            break;;
thomasl's avatar
thomasl committed
228
   esac
229
  done
thomasl's avatar
thomasl committed
230

231 232 233
  ############################################
  # setting and printing OAI envs, we should check here
  ############################################
Lionel Gauthier's avatar
Lionel Gauthier committed
234

235
  echo_info "2. Setting the OAI PATHS ..."
thomasl's avatar
thomasl committed
236

Lionel Gauthier's avatar
Lionel Gauthier committed
237
  set_openair_env
238
  cecho "OPENAIR_DIR    = $OPENAIR_DIR" $green
thomasl's avatar
thomasl committed
239

240 241 242 243 244 245 246 247 248 249
  # 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
250

251

252 253 254 255
  if [ "$CLEAN_ALL" = "1" ] ; then
    clean_all_files
    echo_info "Erased all previously producted files"
  fi
256

257 258 259 260 261 262 263 264 265 266 267 268 269
  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
    echo_info "Making X.509 certificates"
    make_certs eur
    if [ "$HW" == "OAI_USRP" ] ; then
      echo_info "installing packages for USRP support"
      check_install_usrp_uhd_driver
    fi
270 271 272 273 274
    if [ "$HW" == "OAI_BLADERF" ] ; then
      echo_info "installing packages for BALDERF support"
      check_install_bladerf_driver
    fi

275 276 277 278 279 280 281
  fi

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

282 283 284 285 286 287 288 289 290 291
  if [ "$oaisim" = "1" ] ; then
      if [ "$HW" != "ETHERNET" ] ; then 
	  HW="NONE"
      fi 
      if [ "$XFORMS" == "True" ] ; then 
	  PRINT_STATS="True"
      fi 
  fi
  
  
292 293 294
  echo_info "3. building the compilation directives ..."

  DIR=$OPENAIR_DIR/cmake_targets
295 296 297 298 299 300 301
  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
302

303 304
  # first generate the CMakefile in the right directory
  if [ "$eNB" = "1" -o "$UE" = "1" -o "$HW" = "EXMIMO" ] ; then
305

306
    # LTE softmodem compilation
307 308 309 310 311 312 313
    [ "$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
314 315 316 317
    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
318
    echo "set ( FAPI $FAPI )"                  >>  $cmake_file
319
    echo "set(PACKAGE_NAME \"${lte_exec}\")"     >>  $cmake_file
320
    echo 'include(${CMAKE_CURRENT_SOURCE_DIR}/../CMakeLists.txt)' >> $cmake_file
321
    cd  $DIR/$lte_build_dir/build
322
    cmake ..
323 324 325
  fi

  if [ "$eNB" = "1" ] ; then
326
    echo_info "Compiling $lte_exec"
327
    compilations \
328 329 330 331 332 333 334 335 336 337 338 339
	  $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
340
  fi
341

342
  if [ "$UE" = 1 ] ; then
343 344 345
    # ue_ip driver compilation
    echo_info "Compiling UE specific part"
    compilations \
346
      $lte_build_dir ue_ip \
Lionel Gauthier's avatar
Lionel Gauthier committed
347 348 349 350 351 352 353 354
      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
355
    
Lionel Gauthier's avatar
Lionel Gauthier committed
356
    [ "$CLEAN" = "1" ] && rm -rf $DIR/nas_sim_tools/build
357 358
    mkdir -p $DIR/nas_sim_tools/build
    cd $DIR/nas_sim_tools/build
Lionel Gauthier's avatar
Lionel Gauthier committed
359
    
360
    cmake ..
thomasl's avatar
thomasl committed
361
    compilations \
362 363
      nas_sim_tools usim \
      usim $dbin/usim
thomasl's avatar
thomasl committed
364
    compilations \
365 366 367 368 369 370 371 372 373
      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
374
  fi
thomasl's avatar
thomasl committed
375

376
  if [ "$SIMUS_PHY" = "1" -o "$SIMUS_CORE" = "1" ] ; then
377 378 379 380 381 382
    cd $OPENAIR_DIR/cmake_targets/lte-simulators
    [ "$CLEAN" = "1" ] && rm -rf build
    mkdir -p build
    cd build
    rm -f *sim
    cmake ..
383
  fi
384

385 386 387 388 389 390 391 392 393 394
  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
395

Lionel Gauthier's avatar
Lionel Gauthier committed
396
  # Core simulators
397 398 399 400 401 402 403 404 405 406 407
  #############
  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
408

409 410
  # EXMIMO drivers & firmware loader
  ###############
Lionel Gauthier's avatar
Lionel Gauthier committed
411
  if [ "$HW" = "EXMIMO" -a "$EPC" = "0" ] ; then
Lionel Gauthier's avatar
Lionel Gauthier committed
412
    
413 414
    echo_info "Compiling Express MIMO 2 board drivers"
    compilations \
415
        $lte_build_dir openair_rf \
thomasl's avatar
thomasl committed
416
        CMakeFiles/openair_rf/openair_rf.ko $dbin/openair_rf.ko
417
    compilations \
418
	  $lte_build_dir updatefw \
Lionel Gauthier's avatar
Lionel Gauthier committed
419
	  updatefw $dbin/updatefw
420 421 422 423 424 425 426
    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
427
    cp $OPENAIR_DIR/cmake_targets/tools/init_exmimo2 $dbin
428
  fi
thomasl's avatar
thomasl committed
429

430
  if [ "$oaisim" = "1" ] ; then
431
    dconf=$OPENAIR_DIR/targets/bin
432 433 434 435 436 437 438
      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
439
    
440 441 442
    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
443 444 445 446
    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
447
    echo "set ( FAPI $FAPI )"                  >>  $cmake_file
448
    echo 'include(${CMAKE_CURRENT_SOURCE_DIR}/../CMakeLists.txt)' >> $cmake_file
449 450 451
    [ "$CLEAN" = "1" ] && rm -rf $DIR/$oaisim_build_dir/build
    mkdir -p $DIR/$oaisim_build_dir/build
    cd $DIR/$oaisim_build_dir/build
452 453
    cmake ..
    compilations \
454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
	  $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
491 492
    else

493 494 495
	compilations \
	    $oaisim_build_dir rb_tool \
	    rb_tool $dbin/rb_tool
Lionel Gauthier's avatar
Lionel Gauthier committed
496

497 498 499 500
	# nasmesh driver compilation
	compilations \
	    $oaisim_build_dir nasmesh \
	    CMakeFiles/nasmesh/nasmesh.ko $dbin/nasmesh.ko
501

502 503 504 505 506
	#oai_nw_drv
	compilations \
	    $oaisim_build_dir oai_nw_drv \
	    CMakeFiles/oai_nw_drv/oai_nw_drv.ko $dbin/oai_nw_drv.ko
    fi
507

508 509 510 511 512
    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
513
    echo "set ( FAPI $FAPI )"                  >>  $cmake_file
514
    echo 'include(${CMAKE_CURRENT_SOURCE_DIR}/../CMakeLists.txt)' >> $cmake_file
515 516 517 518 519 520 521
    #[ "$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
522 523
  fi

524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
  # RRH compilation
  ##################
  if [ "$RRH" = "1" ] ; then
    echo_info "Compiling RRH"
    if [  $HW == "ETHERNET" ] ; then 
	echo_info "RF frontend for RRH is not defined. This mode is used for testing (loopback)."
    elif [ $HW != "EXMIMO" -a $HW != "OAI_USRP" -a $HW != "OAI_BLADERF" ] ; then 
	echo_fatal "Hardware not defined ($HW)"
    fi
    cmake_file=$DIR/rrh_gw/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(PACKAGE_NAME "\"rrh_gw\"")' >>  $cmake_file
    echo 'include(${CMAKE_CURRENT_SOURCE_DIR}/../CMakeLists.txt)' >> $cmake_file

    [ "$CLEAN" = "1" ] && rm -rf $DIR/rrh_gw/build
    mkdir -p $DIR/rrh_gw/build
    cd $DIR/rrh_gw/build
    cmake ..
    compilations \
      rrh_gw rrh_gw \
      rrh_gw $dbin/rrh_gw
  fi

550 551 552
  # EPC compilation
  ##################
  if [ "$EPC" = "1" ] ; then
553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
      echo_info "Compiling EPC"
      # Example HSS and EPC run on the same host
      if [ "$CLEAN" = "1" ]; then
	  $OPENAIR_DIR/cmake_targets/tools/build_epc --clean --debug --transport-tcp-only --transport-prefer-tcp --s6a-server
	  $OPENAIR_DIR/cmake_targets/tools/build_hss --clean --debug --transport-tcp-only --transport-prefer-tcp --fqdn `hostname --fqdn` --connect-to-mme `hostname --fqdn`
      else
	  $OPENAIR_DIR/cmake_targets/tools/build_epc --debug --transport-tcp-only --transport-prefer-tcp --s6a-server
	  $OPENAIR_DIR/cmake_targets/tools/build_hss --debug --transport-tcp-only --transport-prefer-tcp --fqdn `hostname --fqdn` --connect-to-mme `hostname --fqdn`
      fi
      
      #   if [ "$INSTALL_SYSTEM_FILES" = "1" ] ;then
      #    if [ -f $dbin/hss.conf ] ; then
      #      sed -e 's/ *= */=/' $dbin/hss.conf > $dconf/hss.conf.nospace
      #      source $dconf/hss.conf.nospace
      #      rm -f $dconf/hss.conf.nospace
      #      create_hss_database root linux "$MYSQL_user" "$MYSQL_pass" "$MYSQL_db"
      #    else
      #      echo_warning "not created HSS database: config not found"
      #    fi
      #  fi
  fi
  
Lionel Gauthier's avatar
Lionel Gauthier committed
575 576 577
  # Auto-tests
  #####################
  if [ "$OAI_TEST" = "1" ]; then
thomasl's avatar
thomasl committed
578
    echo_info "10. Running OAI pre commit tests (pre-ci) ..."
579 580
    rm -fr $OPENAIR_DIR/cmake_targets/autotests/log
    mkdir -p $OPENAIR_DIR/cmake_targets/autotests/log
581
    $OPENAIR_DIR/cmake_targets/autotests/run_compilation_autotests.bash
thomasl's avatar
thomasl committed
582
    $OPENAIR_DIR/cmake_targets/autotests/run_exec_autotests.bash
Lionel Gauthier's avatar
Lionel Gauthier committed
583
  else
thomasl's avatar
thomasl committed
584
    echo_info "10. Bypassing the Tests ..."
Lionel Gauthier's avatar
Lionel Gauthier committed
585
  fi
586 587 588
}

main "$@"