blob: ea815f2a0ecbdecff5429ed9b02f5dc52d97a56b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
DESCRIPTION = "Allow to start dropbear soon after boot, depending on kernel command line option."
SECTION = "devel"
RDEPENDS_${PN} = "dropbear"
PR = "r4"
SRC_URI = "file://dropbear-early"
inherit update-rc.d
do_install() {
install -d ${D}${sysconfdir}/init.d
install -m 0755 ${WORKDIR}/${INITSCRIPT_NAME} ${D}${sysconfdir}/init.d/
}
PACKAGE_ARCH = "all"
INITSCRIPT_NAME = "dropbear-early"
INITSCRIPT_PARAMS = "start 00 S ."
|