Hi @ljking
Thanks for your comment.
As you said, I did as Installation guide.
-
proprietary: proprietary_LA.BR.1.2.7-01010-8x16.0_410C_May.tgz
-
PATCH: PATCH_8x16_410c_LA.BR.1.2.7-01010-8x16.0.tar.gz
-
BSP package: linux_android_board_support_package_vla.br_.1.2.7-01010-8x16.0-4.zip
However when I build, it returned error and build process stopped.
Problem I found is line 105 of DB410c_build.sh.
cd $BUILDROOT/$android_project
I modified that as follow;
cd $patch_root_dir/$android_project
Because patches are under the PATH folder.
----------------- modified here -------------------------
proprietary patch adaption is modified from
tar -xzvf ../proprietary_LA.BR.1.2.7-01010-8x16.0_410C_May.tgz -C vendor/qcom/ mv vendor/qcom/proprietary/bootanimation.zip device/qcom/msm8916_64/ mv vendor/qcom/proprietary/WCNSS_qcom_wlan_nv.bin device/qcom/msm8916_64/
to
tar -xzvf ../proprietary_LA.BR.1.2.7-01010-8x16.0_410C_May.tgz -C vendor/qcom/ mv vendor/qcom/proprietary/bootanimation.zip $WORKDIR/device/qcom/msm8916_64/ mv vendor/qcom/proprietary/WCNSS_qcom_wlan_nv.bin $WORKDIR/device/qcom/msm8916_64/
----------------- modified here -------------------------
Although I get a .img files and flashed via fastboot, DB410c cannot boot properly.
It starts repeatedly.
Would you give me an opinion?
Thanks,