Skip to content

Commit

Permalink
projects: lkft: devices: if DEPLOY_OS is debian set ROOTFS_URL_COMP t…
Browse files Browse the repository at this point in the history
…o 'xz'

This has been done for the other devices, and should have been done for
qemu_* too.
If debian rootfs default the compression to 'xz'.

Reported-by: Walid Ghoggali <[email protected]>
Signed-off-by: Anders Roxell <[email protected]>
  • Loading branch information
roxell committed Jan 10, 2024
1 parent 85d77f0 commit 326d8a8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lava_test_plans/projects/lkft/devices/qemu_arm64
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{% if DEPLOY_OS == "debian" %}
{% set ROOTFS_URL_COMP = ROOTFS_URL_COMP|default("xz") %}
{% endif %}

{% extends "devices/qemu_arm64" %}

{% set ROOTFS_URL_FORMAT = ROOTFS_URL_FORMAT|default("ext4") %}
Expand Down
4 changes: 4 additions & 0 deletions lava_test_plans/projects/lkft/devices/qemu_i386
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{% if DEPLOY_OS == "debian" %}
{% set ROOTFS_URL_COMP = ROOTFS_URL_COMP|default("xz") %}
{% endif %}

{% extends "devices/qemu_i386" %}

{% set ROOTFS_URL_FORMAT = ROOTFS_URL_FORMAT|default("ext4") %}
Expand Down
4 changes: 4 additions & 0 deletions lava_test_plans/projects/lkft/devices/qemu_x86_64
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{% if DEPLOY_OS == "debian" %}
{% set ROOTFS_URL_COMP = ROOTFS_URL_COMP|default("xz") %}
{% endif %}

{% extends "devices/qemu_x86_64" %}

{% set ROOTFS_URL_FORMAT = ROOTFS_URL_FORMAT|default("ext4") %}
Expand Down

0 comments on commit 326d8a8

Please sign in to comment.