aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/initrdscripts/dropbear-backdoor_0.1.bb
blob: bbed32b834beddf7776ff7c607c63de774e52b34 (plain)
1
2
3
4
5
6
7
8
9
10
11
DESCRIPTION = "Set of files to open up unlimited access to dropbear daemon - DEBUG ONLY!"
SRC_URI = "file://passwd file://dropbear_rsa_host_key"
PR = "r0"

do_install() {
	install -d ${D}/etc/dropbear
        install -m 0600 ${WORKDIR}/dropbear_rsa_host_key ${D}/etc/dropbear/
        install -m 0644 ${WORKDIR}/passwd ${D}/etc/
}

FILES_${PN} += " /etc/* "