forked from vtwireless/cornet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
default_config.bash
64 lines (45 loc) · 1.92 KB
/
default_config.bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# This file gets sourced by other bash files.
# Copy this file to config.bash and then edit config.bash,
# then run ./Install
# If you wish to add a configuration variable that is accessible in all
# stage scripts, just add it here, and that's it. Add it here with
# "export" and use it in your stage script. stage*.bash scripts run in
# the numbered order. The number of the stage script is determines the
# order in which it runs.
# To change the versions of node JS, UHD, and GNUradio make changes to the
# CRTS code at https://github.com/vtwireless/crts . Ya, since CRTS is
# very dependent on UHD and GNUradio, and UHD and GNUradio are changing
# often, we keep that information in CRTS,
# https://github.com/vtwireless/crts
##########################################################################
# Things to configure
##########################################################################
# The default HTTPS port used for the CRTS web server when it is run using
# the wrapper script "run_web_server" in this package.
#
# This you will likely need to change if you will run the web server.
#
export DEFAULT_HTTPS_PORT=9090
# Version of CRTS to download and install
#
export CRTS_TAG=master
##########################################################################
# Things to configure, but maybe not so much.
##########################################################################
# Where is the base directory of the encap system. Where files get
# installed.
#
export PREPREFIX=/usr/local
# where to put the top CRTS source directory
#
export CRTS_BUILDDIR=crts-$CRTS_TAG
# Where CRTS is installed
#
export CRTS_PREFIX=$PREPREFIX/encap/crts-$CRTS_TAG
# Where Stuff in this package is installed
#
export CORNET_PREFIX=$PREPREFIX/encap/cornet
# The installer user that is own of this source directory and who
# is the owner of the encap directory $PREPREFIX/encap/
#
export INST_USER="$(stat --printf='%U' README.md)"