-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathREADME
More file actions
76 lines (50 loc) · 1.63 KB
/
README
File metadata and controls
76 lines (50 loc) · 1.63 KB
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
#################
## CronMod-ICS ##
#################
Sources
------------
-CyanogenMod
-CronMod
-CronicCorey
------------
Supported devices
-----------------
-HTC Bravo
-HTC Bravoc
-----------------
How to sync
-----------------------------------------------------------------------------------
To sync with CronMod, you'll need to get
familiar with [Git and Repo](http://source.android.com/download/using-repo).
To initialize your local repository using the CronMod manifest, open a terminal and
use the commands below:
- mkdir ~/bin && mkdir -p ~/android/system
- curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo
- chmod a+x ~/bin/repo
Reboot your pc then continue:
- cd ~/android/system
- repo init -u git://github.com/CronMod/android.git -b ics
Then to sync up:
(This will take a little bit)
- repo sync -j16
Download Prebuilts needed by the build:
- ~/android/system/vendor/cm/get-prebuilts
-----------------------------------------------------------------------------------
Building
--------------------------------------------------------------------
First, check for updates in the source:
- cd ~/android/system && repo sync
Second, configure the environment for the build process:
- . build/envsetup.sh
Third, build it:
GSM:
- brunch bravo
CDMA:
- brunch bravoc
The finished rom will be located at:
GSM:
~/android/system/out/target/product/bravo/cm-X.X.X-bravo-XX.zip
CDMA:
~/android/system/out/target/product/bravoc/cm-X.X.X-bravoc-XX.zip
*Please do not release builds of this rom without proper permission*
--------------------------------------------------------------------