Finding and obtaining CAF code - YOCAP/documentation GitHub Wiki
How to find the CAF code you want:
- Go to: https://www.codeaurora.org/
- Look for the project you're interested in. For us it's"Android for MSM": https://www.codeaurora.org/projects/android-for-msm
- Access the wiki: https://wiki.codeaurora.org/xwiki/bin/QAEP/
- Look for the branch called "release" and go there: https://wiki.codeaurora.org/xwiki/bin/QAEP/release
- Look for the msm version of interest to you, and the android version. For us it's msm8998 and 10, which gives us a tag of "LA.UM.8.4.r1-05200-8x98.0" and a manifest of "LA.UM.8.4.r1-05200-8x98.0.xml" (At the time of writing this at least).
- You can now use this information to initialize and sync a "repo" with the initial CAF code base:
repo init -u git://codeaurora.org/platform/manifest.git -b release -m LA.UM.8.4.r1-05200-8x98.0.xml
repo sync -c --no-tags --no-clone-bundle -j$(nproc --all)