repo.or.cz
/
mytuuics.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
修改拨动开关
[mytuuics.git]
/
target_build
blob
8af973725a31fa7bd17283c39f01ab7cd513b1c8
1
#!/bin/bash
2
function
get_type
()
3
{
4
grep
"^\s*ro.build.type\s*="
out
/
target
/
product
/
baoxue
/
system
/
build.prop|
sed
"s/^\s*ro.build.type\s*=\s*//"
5
}
6
7
if
[
`get_type`
==
'user'
];
then
8
echo
"目前为user版本,不能编译eng版本"
9
exit
1
10
fi
11
.
/
mk
-t
baoxue $
*
12