Skip to content

Commit 5aa44b8

Browse files
image_types_qcom: include soccp.bin and qsahara_device_programmer.xml (#1899)
Kaanapali uses qsahara_device_programmer.xml as device programmer while flashing, and soccp.bin file is flashed in soccp_a/b partiiton. Including these files in the qcomflash directory.
2 parents 37a5ef3 + 689c890 commit 5aa44b8

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

classes-recipe/image_types_qcom.bbclass

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ create_qcomflash_pkg() {
100100
-name '*.fv' -o \
101101
-name 'cdt_*.bin' -o \
102102
-name 'logfs_*.bin' -o \
103-
-name 'sec.dat'` ; do
103+
-name 'qsahara_*.xml' -o \
104+
-name 'sec.dat' -o \
105+
-name 'soccp*.bin'` ; do
104106
install -m 0644 ${bfw} .
105107
done
106108

recipes-bsp/firmware-boot/firmware-qcom-boot-common.inc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ do_deploy() {
2121
find "${S}" -maxdepth 1 -name '*.lzma' -exec install -m 0644 {} ${DEPLOYDIR}/${QCOM_BOOT_IMG_SUBDIR} \;
2222
find "${S}" -maxdepth 1 -name '*.mbn' -exec install -m 0644 {} ${DEPLOYDIR}/${QCOM_BOOT_IMG_SUBDIR} \;
2323
find "${S}" -maxdepth 1 -name '*.melf' -exec install -m 0644 {} ${DEPLOYDIR}/${QCOM_BOOT_IMG_SUBDIR} \;
24+
find "${S}" -maxdepth 1 -name 'qsahara_*.xml' -exec install -m 0644 {} ${DEPLOYDIR}/${QCOM_BOOT_IMG_SUBDIR} \;
2425
find "${S}" -maxdepth 1 -name '*.xz' -exec install -m 0644 {} ${DEPLOYDIR}/${QCOM_BOOT_IMG_SUBDIR} \;
2526

2627
find "${UNPACKDIR}" -iname '*cdt*.bin' -exec install -m 0644 {} ${DEPLOYDIR}/${QCOM_BOOT_IMG_SUBDIR} \;

0 commit comments

Comments
 (0)