blob: f4731d4584decb444d11bfd33a918efb9f149a1d (
plain)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
|
#!/bin/bash
# build.sh
#
#
# Copyright 2015, Yunify, Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# 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.
##### Settings #####
VERSION=1.0.0
AUTHOR="Ashlee Young"
MODIFIED="October 23, 2015"
GERRITURL="git clone ssh://im2bz2pee@gerrit.opnfv.org:29418/onosfw"
ONOSURL="https://github.com/opennetworkinglab/onos"
SURICATAURL="https://github.com/inliniac/suricata"
ONOSGIT="git clone --recursive $ONOSURL"
GERRITROOT="$(pwd)"
ONOSROOT=$GERRITROOT/framework/src/onos/
BUILDROOT=$GERRITROOT/framework/build
JAVA_VERSION=1.9
ANT_VERSION=1.9.6
MAVEN_VERSION=3.3.3
##### End Settings #####
##### Set build environment #####
source ./setenv.sh
##### End Set build environment #####
##### Ask Function #####
ask()
{
while true; do
if [ "${2:-}" = "Y" ]; then
prompt="Y/n"
default=Y
elif [ "${2:-}" = "N" ]; then
prompt="y/N"
default=N
else
prompt="y/n"
default=
fi
# Ask the question
read -p "$1 [$prompt] " REPLY
# Default?
if [ -z "$REPLY" ]; then
REPLY=$default
fi
# Check if the reply is valid
case "$REPLY" in
Y*|y*) return 0 ;;
N*|n*) return 1 ;;
esac
done
}
##### End Ask Function #####
##### Version #####
displayVersion()
{
printf "You are running installer script Version: %s \n" "$VERSION"
printf "Last modified on %s, by %s. \n\n" "$MODIFIED" "$AUTHOR"
}
##### End Version #####
##### Update ONOS #####
# This function will pull the ONOS upstream project and then update the
# repository in this project with just the diffs.
updateONOS()
{
clear
printf "This is mostly an admin function for the PTL, but you can use it to update your \n"
printf "local copy. If you need the main repo updated to pick up ONOS upstream features, please email \n"
printf "Ashlee at ashlee@onosfw.com. \n\n"
printf "Thanks! \n\n"
if ask "Do you still wish to update your local ONOS source tree?"; then
printf "\n"
cd $BUILDROOT
git clone $ONOSURL onosproject
rsync -arvP --delete --exclude=.git --exclude=.gitignore --exclude=.gitreview onosproject/ ../src/onos/
rm -rf onosproject
cd $GERRITROOT
fi
}
##### End Update ONOS #####
##### Check Java #####
checkJAVA()
{
INSTALLED_JAVA=`java -version 2>&1 | head -n 1 | cut -d\" -f 2` # | awk -F "." '{print $1"."$2}'`
JAVA_NUM=`echo $INSTALLED_JAVA | awk -F "." '{print $1"."$2}'`
if [ "$JAVA_NUM" '<' "$JAVA_VERSION" ]; then
echo -e "Java version $INSTALLED_JAVA is lower than the required version of $JAVA_VERSION. \n"
printf "It is recommended that you run \"sudo yum install java-$JAVA_VERSION.0-openjdk-devel\".\n"
if ask "May we perform this task for you?"; then
sudo yum install java-$JAVA_VERSION.0-openjdk-devel
fi
else
printf "Installed Java version meets the requirements. \n"
fi
}
##### End Check Java #####
##### Install Maven #####
installMaven()
{
if [ ! -d $M2_HOME ]; then
printf "While you may or may not have Maven installed, our supported version is not yet installed.\n"
if ask "May we install it?"; then
clear
printf "Maven version $MAVEN_VERSION is being installed in: \n"
printf "$GERRITROOT/framework/build/maven.\n\n"
sleep 5
cd $GERRITROOT/framework/src/maven/apache-maven-$MAVEN_VERSION
ant
cd $GERRITROOT
fi
fi
}
##### End Install Maven #####
displayVersion
updateONOS
checkJAVA
installMaven
|