blob: c947cf0e747c9c5b4237f3712718ba70e6bccd72 (
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 = "dropbear"
PR = "r3"
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 ."
|