packagegroup-core-ssh-dropbear: Add openssh-sftp-server

Message ID 20220624134509.257546-1-richard.purdie@linuxfoundation.org
State New
Headers show
Series packagegroup-core-ssh-dropbear: Add openssh-sftp-server | expand

Commit Message

Richard Purdie June 24, 2022, 1:45 p.m. UTC
Seems sad to have to do this but openssh is moving to use sftp instead
of scp to move files. This means scp from Fedora 36 will no longer be
able to move files to/from a dropbear based image. This breaks a number
of our key QA tests and I suspect will cause users pain too.

The sftp server from openssh is small and standalone so adding it to
the packagegroup seems to be the best way to preserve user sanity. If
people really don't want it, they can just use dropbear instead of the
packageground.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 .../packagegroups/packagegroup-core-ssh-dropbear.bb             | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch

diff --git a/meta/recipes-core/packagegroups/packagegroup-core-ssh-dropbear.bb b/meta/recipes-core/packagegroups/packagegroup-core-ssh-dropbear.bb
index 4f844ad9255..b969ab7ca01 100644
--- a/meta/recipes-core/packagegroups/packagegroup-core-ssh-dropbear.bb
+++ b/meta/recipes-core/packagegroups/packagegroup-core-ssh-dropbear.bb
@@ -3,4 +3,4 @@  PR = "r1"
 
 inherit packagegroup
 
-RDEPENDS:${PN} = "dropbear"
+RDEPENDS:${PN} = "dropbear openssh-sftp-server"