-
Notifications
You must be signed in to change notification settings - Fork 9
/
build_prepare.sh
executable file
·283 lines (250 loc) · 6.54 KB
/
build_prepare.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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
#!/bin/bash
TOPDIR=$PWD
SCRIPTDIR=$TOPDIR
ANDROIDDIR=$TOPDIR/android
KERNELDIR=$TOPDIR/linux-kernel
MALIDIR=$TOPDIR/mali
PLATFORMDIR=$TOPDIR/phoenix
BOOTCODEDIR=$TOPDIR/bootcode
IMAGEDIR=$TOPDIR/image_file_creator
RTKSRC=$TOPDIR/software_Phoenix_RTK
OPENWRTDIR=$SCRIPTDIR/Openwrt
TOOLCHAINDIR=$PLATFORMDIR/toolchain
CONFIG_MAGIC=CONFIG_
CONFIG_FILE=$TOPDIR/.build_config
OPENWRTKERNELDIR=$OPENWRTDIR/linux-4.1.7
NCPU=`grep processor /proc/cpuinfo | wc -l`
MULTI=`expr $NCPU + 2`
function build_cmd()
{
$@
ERR=$?
printf "$* "
if [ "$ERR" != "0" ]; then
echo -e "\033[47;31m [ERROR] $ERR \033[0m"
exit 1
else
echo "[OK]"
fi
}
# case 1. config_set TEST
# case 2. config_set TEST {force data}
function config_set()
{
item=$1
config_item=${CONFIG_MAGIC}${item}
config_data=${!item}
if [ "$2" != "" ]; then
shift 1
config_data=$@
fi
config_data=`echo $config_data|awk '{
{printf "%s",$1}
if (NF>1) {
for (i=2; i <= NF; i++) { printf " %s",$i}
}
{printf "\n"}}'`
[ -e $CONFIG_FILE ] &&
FIND=`cat $CONFIG_FILE | grep $config_item | wc -l` || FIND=0
[ "$FIND" != "0" ] && sed -i "/${config_item}/d" $CONFIG_FILE
echo ${config_item} ${config_data} >> $CONFIG_FILE
if [ "${config_data}" != "" ]; then
export ${item}="${config_data}"
echo -e "export \033[0;33m${item}=${config_data}\033[0m"
fi
}
# case 1. config_get TEST
# case 2. config_get TEST {default value}
# case 3. config_get TEST $TEST
function config_get()
{
item=$1
config_item=${CONFIG_MAGIC}${item}
#config_data=${!item}
config_data=
[ -e $CONFIG_FILE ] &&
FIND=`cat $CONFIG_FILE | grep $config_item | wc -l` || FIND=0
if [ "$FIND" = "1" ]; then
#config_data=`cat $CONFIG_FILE | grep $config_item | awk '{print $2}'`
config_data=`cat $CONFIG_FILE | grep $config_item |\
awk '{
for (i=2; i <= NF; i++) {
if (i==2) {printf $i}
else {printf " "$i}
}}'`
ret=0
elif [ "$FIND" = "0" ]; then
# NOT FIND
if [ "$config_data" = "" ] && [ "$2" != "" ]; then
config_data=$2
fi
ret=1
else
ret=2
cat $CONFIG_FILE | grep $config_item
echo -e "\033[47;31m [ERROR] $ret \033[0m"
exit $ret
fi
#config_set ${item} ${config_data}
[ "$config_data" != "" ] && export ${item}="${config_data}"
return $ret
}
function config_menu()
{
echo "-------------------------------------------------"
i=0
item=$1
list=${!2}
def_item=$3
ERR=1
for b in $list
do
if [ "$b" = "$def_item" ]; then
echo -e " $i\t: \033[1;36m$b\033[0m"
else
echo -e " $i\t: $b"
fi
i=`expr $i + 1`
done
if [ "$def_item" != "" ]; then
read -p "select the $item (default $def_item) : " id
else
read -p "select the $item : " id
fi
if [ "$id" = "" ] && [ "$def_item" != "" ]; then
id=$def_item
fi
echo $id
i=0
for b in $list
do
if [ "$id" = "$i" ] || [ "$id" = "$b" ]; then
config_set $item $b
ERR=0
break
fi
i=`expr $i + 1`
done
if [ "$ERR" != "0" ]; then
echo -e "\033[47;31m [ERROR] $ERR \033[0m"
echo "config_menu [item] $item [list] $list [default] $def_item"
exit 1
fi
return 0
}
function config_get_list_menu()
{
config_get $1 && return 0
item=$1
from_list=${!2}
bak=0
while [ "$bak" = "0" ]
do
item_list=${!item}
i=0
for fl in $from_list
do
match=0
printf " $i "
for il in $item_list
do
if [ "$fl" = "$il" ]; then
match=1
break
fi
done
[ "$match" = "0" ] && printf "[ ]" || printf "[*]"
printf " $fl\n"
i=`expr $i + 1`
done
read -p "select the $item : " id
if [ "$id" = "" ]; then
bak=1
break
fi
i=0
for fl in $from_list
do
if [ "$id" = "$fl" ] || [ "$id" = "$i" ]; then
match=0
for il in $item_list
do
if [ "$fl" = "$il" ]; then
match=1
break
fi
done
[ "$match" = "1" ] && list_del $item $fl || list_add $item $fl
break
fi
i=`expr $i + 1`
done
done
config_set $item
}
function config_get_menu()
{
config_get $1 || config_menu $@
}
function config_get_bool()
{
def_select=$2
config_get $1
if [ "$?" != "0" ]; then
case "$def_select" in
[Yy] | [Yy]es | YES | 1 | [Tt]rue | TRUE )
printf "$1 [\033[1;36mY\033[0m/n] : " && read select
[ "$select" = "" ] && select="YES"
;;
*)
printf "$1 [y/\033[1;36mN\033[0m] : " && read select
[ "$select" = "" ] && select="NO"
;;
esac
#printf "\n"
case "$select" in
[Yy] | [Yy]es | YES | 1 | [Tt]rue | TRUE )
data="true"
;;
*)
data="false"
;;
esac
config_set $1 $data
fi
if [ "${!1}" = "true" ]; then
ret=0
else
ret=1
fi
return $ret
}
function config_get_true()
{
config_get $1 || return 1
[ "`echo ${!1} | awk '{print $1}'`" = "true" ] && return 0 || return 1
}
function config_get_false()
{
config_get $1 || return 0
[ "`echo ${!1} | awk '{print $1}'`" = "true" ] && return 1 || return 0
}
function config_show()
{
echo "-----------------------------------------------------------------------------"
echo " Config File : $CONFIG_FILE "
echo
cat $CONFIG_FILE |\
cut -c `echo $CONFIG_MAGIC | wc -c`-|\
awk '{
for (i=1; i <= NF; i++) {
if (i==1) {printf "\t\033[1;32m%-25s \t",$i}
else if ($i=="true") {printf "\033[1;34m %s ",$i}
else if ($i=="false") {printf "\033[1;31m %s ",$i}
else {printf "\033[1;33m %s ",$i}
}
printf "\033[0m \n"}'
echo
echo "-----------------------------------------------------------------------------"
return 0
}