Skip to content

Commit d1156ae

Browse files
committed
feat: debos: Add support for IQ-6 Beta EVK
Also known as QCS615 Ride ADP Signed-off-by: Loïc Minier <[email protected]>
1 parent c57ea0d commit d1156ae

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

debos-recipes/qualcomm-linux-debian-flash.yaml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
{{- $build_qcs615 := or .build_qcs615 "true" }}
12
{{- $build_qcm6490 := or .build_qcm6490 "true" }}
23
{{- $build_qcs8300 := or .build_qcs8300 "true" }}
34
{{- $build_qcs9100 := or .build_qcs9100 "true" }}
@@ -17,6 +18,31 @@ actions:
1718
unpack: true
1819

1920
{{- $boards := list }}
21+
{{- if eq $build_qcs615 "true" }}
22+
{{- $boards = append $boards (dict
23+
"name" "qcs615-adp-air-sa6155p"
24+
"silicon_family" "qcs615"
25+
"platform" "qcs615-adp-air"
26+
"boot_binaries_download" (dict
27+
"description" "QCS615 boot binaries"
28+
"url" "https://softwarecenter.qualcomm.com/download/software/chip/qualcomm_linux-spf-1-0/qualcomm-linux-spf-1-0_test_device_public/r1.0_00095.0/qcs615-le-1-0/common/build/common/bin/QCS615_bootbinaries.zip"
29+
"name" "qcs615_boot-binaries"
30+
"filename" "qcs615_boot-binaries.zip"
31+
"sha256sum" "c9b0332873feda447b32491dcbbc96255c3cf88da1868d89ac5113b01cb42f75"
32+
)
33+
"cdt_download" (dict
34+
"description" "QCS615 Ride CDT"
35+
"url" "https://artifacts.codelinaro.org/artifactory/codelinaro-le/Qualcomm_Linux/QCS615/cdt/ADP_AIR_SA6155P.zip"
36+
"name" "qcs615-adp-air_cdt"
37+
"filename" "qcs615-adp-air_cdt.zip"
38+
"sha256sum" "a5a98cbe1c2caa0e35d2fe0a78d56c36ea3e61a43cff9ce98c2567887454bb7f"
39+
)
40+
"cdt_filename" "adp_3_1.0.bin"
41+
"cdt_strip_toplevel" "true"
42+
"dtb" "qcom/qcs615-ride.dtb"
43+
"disk_image_type" "ufs"
44+
)}}
45+
{{- end }}
2046
{{- if eq $build_qcm6490 "true" }}
2147
{{- $boards = append $boards (dict
2248
"name" "qcs6490-rb3gen2-vision-kit"

debos-recipes/qualcomm-linux-debian-rootfs.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,7 @@ actions:
312312
latest_kernel="$(
313313
ls -d "$ROOTDIR"/usr/lib/linux-image-* | sort -V | tail -1)"
314314
tar -C "${latest_kernel}" -cvzf "$ARTIFACTDIR/dtbs.tar.gz" \
315+
qcom/qcs615-ride.dtb \
315316
qcom/qcs6490-rb3gen2.dtb \
316317
qcom/qcs8300-ride.dtb \
317318
qcom/qcs9100-ride-r3.dtb \

0 commit comments

Comments
 (0)