we have build Android from sources and it looks good on our device. Currently we need to make own OTA process, but we dont know how.
We try to implement FSLOTa (https://
I dont know about FSLOTa nor do I know about the device you are working on. But If you want to implement your own OTA process you could try the following (Just a short draft since your question is very broad):
update.zip
to /cache/
/cache/recovery/command
and writes --update_package=path_to_your_file
in it. (For more commands see /bootable/recovery.cpp)recovery
Update: I quickly checked the app you linked. I would check these things:
RecoverySystem.installPackage()
is called ? (https://github.com/embest-tech/android_packages_apps_fsl_imx_demo/blob/master/FSLOta/src/com/fsl/android/ota/OTAServerManager.java#L282)RecoverySystem
that it is going to reboot? (maybe you have a permission problem and your app is not allowed to force "reboot recovery")