--- /dev/null
+DESCRIPTION = "ssh private & public key packages"
+HOMEPAGE = "http://www.yoctoproject.org"
+BUGTRACKER = "http://bugzilla.pokylinux.org"
+
+PR = "somdevices.0"
+MAINTAINER = "SomDevices <somdevices@somdevices.com>"
+
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://id_rsa.pub;beginline=0;endline=1;md5=8966b3435a5d9868248612695062af72"
+
+#Note: The keys populated here are just as an example,
+# These keys are no more private.
+# Do not use same keys for your project
+# You are expected to create user own ssh keys to replace these sample keys.
+
+SRC_URI = "file://id_rsa.pub \
+ "
+S = "${WORKDIR}"
+
+USER="root"
+
+do_install() {
+ install -d ${D}/home/${USER}/.ssh/
+ install -m 0755 ${S}/id_rsa.pub ${D}/home/${USER}/.ssh/authorized_keys
+}
+
+FILES_${PN} += " /home/${USER}/.ssh/"