From 77ebe8b8cc3219f798ad716d942d6a82286572ce Mon Sep 17 00:00:00 2001 From: Ross Burton Date: Mon, 22 Apr 2024 13:37:35 +0000 Subject: [PATCH] ci/testimage: don't :append to IMAGE_FEATURES Some BSPs use a proper initramfs and putting a SSH server into them via this :append isn't ideal. Adding using += should be sufficient. Signed-off-by: Ross Burton Signed-off-by: Jon Mason --- ci/testimage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/testimage.yml b/ci/testimage.yml index a0e90250..4b71a5e1 100644 --- a/ci/testimage.yml +++ b/ci/testimage.yml @@ -12,7 +12,7 @@ local_conf_header: slirp: | TEST_RUNQEMUPARAMS = "slirp" sshd: | - IMAGE_FEATURES:append = " ssh-server-dropbear" + IMAGE_FEATURES += "ssh-server-dropbear" sshkeys: | CORE_IMAGE_EXTRA_INSTALL += "ssh-pregen-hostkeys" universally_failing_tests: |