-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
34 lines (30 loc) · 1.05 KB
/
README
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
MoltenMotherBoard local manifests
=================================
HOW-TO:
# Prepare the workspace with main code line
/*
* Only for the ones who hasn't already synced the source tree.
* Keep in mind that only the branch used in this manifest are
* are correctly tested.
* This means that we do not guarantee that applying our sources
* on different branches does not break the build.
*/
$ mkdir ~/bin
$ PATH=~/bin:$PATH
$ curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > ~/bin/repo
$ chmod a+x ~/bin/repo
$ mkdir $PROJECT_PATH
$ cd $PROJECT_PATH
$ repo init -u https://android.googlesource.com/platform/manifest -b android-5.1.1_r29
# Apply new sources to the main code line
/*
* We assume that you are in the folder where you have
* configured the workspace in, denoted by the variable PROJECT_PATH
* in the previous paragraph.
*/
$ git clone https://github.com/MoltenMotherBoard/platform_local -b aosp-lp
$ mkdir .repo/local_manifests
$ mv platform_local/local_manifest.xml .repo/local_manifests
$ rm -rf platform_local
$ repo sync
Enjoy!