-
Notifications
You must be signed in to change notification settings - Fork 52
/
build.sh
executable file
·96 lines (79 loc) · 2.4 KB
/
build.sh
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
#!/bin/bash
# get current path
reldir=`dirname $0`
cd $reldir
DIR=`pwd`
# Colorize and add text parameters
red=$(tput setaf 1) # red
grn=$(tput setaf 2) # green
cya=$(tput setaf 6) # cyan
txtbld=$(tput bold) # Bold
bldred=${txtbld}$(tput setaf 1) # red
bldgrn=${txtbld}$(tput setaf 2) # green
bldblu=${txtbld}$(tput setaf 4) # blue
bldcya=${txtbld}$(tput setaf 6) # cyan
txtrst=$(tput sgr0) # Reset
THREADS="16"
DEVICE="$1"
EXTRAS="$2"
# get current version
MAJOR=$(cat $DIR/vendor/pa/config/pa_common.mk | grep 'PA_VERSION_MAJOR = *' | sed 's/PA_VERSION_MAJOR = //g')
MINOR=$(cat $DIR/vendor/pa/config/pa_common.mk | grep 'PA_VERSION_MINOR = *' | sed 's/PA_VERSION_MINOR = //g')
MAINTENANCE=$(cat $DIR/vendor/pa/config/pa_common.mk | grep 'PA_VERSION_MAINTENANCE = *' | sed 's/PA_VERSION_MAINTENANCE = //g')
VERSION=$MAJOR.$MINOR$MAINTENANCE
# if we have not extras, reduce parameter index by 1
if [ "$EXTRAS" == "true" ] || [ "$EXTRAS" == "false" ]
then
SYNC="$2"
UPLOAD="$3"
else
SYNC="$3"
UPLOAD="$4"
fi
# get time of startup
res1=$(date +%s.%N)
# we don't allow scrollback buffer
echo -e '\0033\0143'
clear
echo -e "${cya}Building ${bldcya}ParanoidAndroid v$VERSION ${txtrst}";
echo -e "${cya}"
./vendor/pa/tools/getdevicetree.py $DEVICE
echo -e "${txtrst}"
# decide what command to execute
case "$EXTRAS" in
threads)
echo -e "${bldblu}Please write desired threads followed by [ENTER] ${txtrst}"
read threads
THREADS=$threads;;
clean)
echo -e ""
echo -e "${bldblu}Cleaning intermediates and output files ${txtrst}"
make clean > /dev/null;;
esac
# sync with latest sources
echo -e ""
if [ "$SYNC" == "true" ]
then
echo -e "${bldblu}Fetching latest sources ${txtrst}"
repo sync -j"$THREADS"
echo -e ""
fi
# java setup
# echo -e "${bldblu}Setting up java ${txtrst}"
# . vendor/pa/tools/setupjava.sh
# echo -e ""
# setup environment
echo -e "${bldblu}Setting up environment ${txtrst}"
. build/envsetup.sh
# lunch device
echo -e ""
echo -e "${bldblu}Lunching device ${txtrst}"
lunch "pa_$DEVICE-userdebug";
echo -e ""
echo -e "${bldblu}Starting compilation ${txtrst}"
# start compilation
mka bacon
echo -e ""
# finished? get elapsed time
res2=$(date +%s.%N)
echo "${bldgrn}Total time elapsed: ${txtrst}${grn}$(echo "($res2 - $res1) / 60"|bc ) minutes ($(echo "$res2 - $res1"|bc ) seconds) ${txtrst}"