Compare commits

..

2 Commits

Author SHA1 Message Date
Oliver Smith 50d981d600 dropbear: add sftp-server to rdepends
Related: SYS#6403
Change-Id: I4044a19d172c9617eecabd083cfbc04832591e6a
2023-05-02 13:43:17 +02:00
Oliver Smith e2224e84e9 sftp-server: new package
Package OpenSSH's sftp-server program, so we can install it as
dependency of dropbear in a future patch. Once sftp-server is installed,
the scp tool from OpenSSH can be used with the SFTP protocol, without
enabling the legacy flag for the legacy SCP protocol.

After packaging this, I realized that we could also have used
the openssh-sftp-server package from poky, a subpackage that gets built
from openssh:
https://gitea.sysmocom.de/sysmo-bts/generic-poky/src/branch/pyro/meta/recipes-connectivity/openssh

But let's use this extra package now, it uses the most recent OpenSSH
source and doesn't build the rest of OpenSSH which we don't need.

Related: SYS#6403
Change-Id: I376bc31413935f7a560afd916a623228550dc6fe
2023-05-02 13:33:20 +02:00
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ do_compile() {
do_install() {
install -Dm755 "${B}"/sftp-server \
-t "${D}"/usr/lib
-t "${D}"/usr/libexec/
}
FILES_${PN} = "/usr/lib/sftp-server"