I am trying to put android on top of existing android which came with the board.
I downloaded linux_android_board_support_package_vla.br_.1.2.4-01810-8×16.0-3.zip and compiled it(by running DB410c_build.sh). The build failed saying "No rule to make target out/target/common/obj/JAVA_LIBRARIES/WfdCommon_intermediates/classes.jar’, needed by
out/target/common/obj/PACKAGING/boot-jars-package-check_intermediates/stamp’ ", so I added following patch for msm8916_64.mk.
-PRODUCT_BOOT_JARS += qcmediaplayer \
-
WfdCommon \
-
qcom.fmradio \
-
oem-services
+PRODUCT_BOOT_JARS += qcmediaplayer
PRODUCT_BOOT_JARS += vcard
PRODUCT_BOOT_JARS += tcmiface
+ifneq ($(strip $(QCPATH)),)
+PRODUCT_BOOT_JARS += WfdCommon
+PRODUCT_BOOT_JARS += qcom.fmradio
+PRODUCT_BOOT_JARS += security-bridge
+PRODUCT_BOOT_JARS += qsb-port
+PRODUCT_BOOT_JARS += oem-services
+endif
When I try to boot from the built images, the board does not boot. I installed boot, recovery and system images from my build. Should I install any other images along with these?
P.S: When I installed 15.06 version from https://builds.96Boards.org/releases/dragonboard410c/qualcomm/android/15.06/ through SD card, the board came up.