Skip to content

Commit c9e89c2

Browse files
committed
fix: debos: Avoid debos APT action for kernel
Kernel packages from CI currently have a plus sign; this seems to cause issues with debos' apt action, so use a run action instead. Signed-off-by: Loïc Minier <[email protected]>
1 parent 04aed4c commit c9e89c2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -210,13 +210,13 @@ actions:
210210
- kmod
211211
- linux-base
212212

213-
- action: apt
213+
- action: run
214214
description: Install kernel and firmware packages
215-
recommends: true
216-
packages:
217-
- firmware-atheros
218-
- firmware-qcom-soc
219-
- {{$kernelpackage}}
215+
chroot: true
216+
command: |
217+
set -eux
218+
apt update
219+
apt -y install '{{$kernelpackage}}' firmware-atheros firmware-qcom-soc
220220
221221
# XXX this is a workaround until firmware-non-free migrates to testing; it
222222
# might make sense to have a generic mechanism to do this

0 commit comments

Comments
 (0)