From patchwork Fri Mar 11 02:20:42 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [08/12] task-poky-ssh.bb: new task for ssh services Date: Fri, 11 Mar 2011 02:20:42 -0000 From: Saul Wold X-Patchwork-Id: 1271 Message-Id: <7977bfd5b70973eefdba38ae9dd44373aa0d8b94.1299809859.git.sgw@linux.intel.com> To: poky@yoctoproject.org,openembedded-core@lists.openembedded.org Cc: Bruce Ashfield , Paul Eggleton From: Scott Garman This task can then be used in image recipes to include a configurable ssh server. Currently dropbear and openssh are supported. Signed-off-by: Scott Garman --- meta/recipes-core/tasks/task-poky-ssh.bb | 22 ++++++++++++++++++++++ 1 files changed, 22 insertions(+), 0 deletions(-) create mode 100644 meta/recipes-core/tasks/task-poky-ssh.bb diff --git a/meta/recipes-core/tasks/task-poky-ssh.bb b/meta/recipes-core/tasks/task-poky-ssh.bb new file mode 100644 index 0000000..37a0241 --- /dev/null +++ b/meta/recipes-core/tasks/task-poky-ssh.bb @@ -0,0 +1,22 @@ +DESCRIPTION = "SSH tasks for Poky" +LICENSE = "MIT" +LIC_FILES_CHKSUM = "file://${POKYBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \ + file://${POKYBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" +PR = "r0" + +PACKAGES = "\ + task-poky-ssh-server \ + task-poky-ssh-server-dbg \ + task-poky-ssh-server-dev \ + " + +ALLOW_EMPTY = "1" + +# Default to dropbear for historical reasons +IMAGE_SSH_PROVIDER ?= "dropbear" + +RDEPENDS_task-poky-ssh-server = "${IMAGE_SSH_PROVIDER}" + +RDEPENDS_task-poky-ssh-server-dbg = "${IMAGE_SSH_PROVIDER}-dbg" + +RDEPENDS_task-poky-ssh-server-dev = "${IMAGE_SSH_PROVIDER}-dev"