Skip to content

Commit aeb0d4a

Browse files
committed
feat(debos): Include all dtbs
Having all dtbs available makes development easier and board support filtering can happen when generating flashable assets. Signed-off-by: Loïc Minier <[email protected]>
1 parent b84c7ff commit aeb0d4a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -340,11 +340,11 @@ actions:
340340
# only in that new kernel, so use the latest dtbs
341341
latest_kernel="$(
342342
ls -d "$ROOTDIR"/usr/lib/linux-image-* | sort -V | tail -1)"
343-
tar -C "${latest_kernel}" -cvzf "$ARTIFACTDIR/dtbs.tar.gz" \
344-
qcom/qcs6490-rb3gen2.dtb \
345-
qcom/qcs8300-ride.dtb \
346-
qcom/qcs9100-ride-r3.dtb \
347-
qcom/qrb2210-rb1.dtb
343+
tar \
344+
-C "${latest_kernel}" \
345+
--strip-components=1 \
346+
-cvzf "$ARTIFACTDIR/dtbs.tar.gz" \
347+
.
348348
349349
- action: pack
350350
description: Create root filesystem tarball

0 commit comments

Comments
 (0)