DeckerSU / idol4_6055k_device_tree

Alcatel Idol 4 6055K device tree for TWRP
2 stars 3 forks source link

History of changes

This TWRP builds and works fine, except decryption of userdata partition.

Initially probles with decryption was described here: http://forum.xda-developers.com/showpost.php?p=68618351&postcount=2257 And here all needed logs (included dmesg, logcat, and recovery logs): http://forum.xda-developers.com/showpost.php?p=68621748&postcount=2262

Thx to steadfasterX and celoxocis for advices.

Some notes for myself:

How to add local manifest with CM13 device/qcom/common sources?

Add to .repo/local_manifests/idol4_6055k.xml:

<?xml version="1.0" encoding="UTF-8"?>
<manifest>
  <project name="android_device_qcom_sepolicy" path="device/qcom/sepolicy" remote="omnirom" revision="android-6.0" />
  <project name="CyanogenMod/android_device_qcom_common" path="device/qcom/common" remote="github" revision="cm-13.0" />
</manifest>

Then run repo sync to check it out.


its easy just go into your android/system folder. there is a folder named ".repo" go into there and in its subfolder "local_manifest". create a file called "manifest.xml" and include the following: Code:

<?xml version="1.0" encoding="UTF-8"?>

Note: you can remove the past two lines if you want to stick with TWRP on android-6.0 tree. Go back into your "android/system" folder. do a "repo sync --force-sync -f"


How to push github commit?

git add . git commit -m "comment" git push -u origin master


Useful topics