diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-04-29 19:17:02 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-04-29 19:17:02 +0000 |
commit | 514a8356736e87653c36d1bfc2e0c24afa123153 (patch) | |
tree | 23b1bb63b742d27e0a3ea195390efe7896d590a2 /dropbear | |
parent | 3a3b487404e68d1f625c2992cac049b837177336 (diff) |
add /etc/init.d/dropbear - patch courtesy pb_.
BKrev: 409154aeSICV76plZAbk2vPt5Mf-Ow
Diffstat (limited to 'dropbear')
-rw-r--r-- | dropbear/dropbear_0.41.oe | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/dropbear/dropbear_0.41.oe b/dropbear/dropbear_0.41.oe index b6d6d52020..7c9edc387a 100644 --- a/dropbear/dropbear_0.41.oe +++ b/dropbear/dropbear_0.41.oe @@ -1,6 +1,7 @@ DESCRIPTION = "Dropbear SSH Implementation" LICENSE = "MIT" DEPENDS = "virtual/libc zlib ncurses" +PR = "r1" SRC_URI = "http://matt.ucc.asn.au/dropbear/releases/dropbear-${PV}.tar.bz2 \ file://${FILESDIR}/configure.patch;patch=1" @@ -14,5 +15,6 @@ INITSCRIPT_PARAMS = "defaults 10" CFLAGS_prepend = "-I. " LD = "${CC}" do_install_prepend () { - install -d ${D}${sbindir} ${D}${bindir} + install -d ${D}${sbindir} ${D}${bindir} ${D}${sysconfdir}/init.d + install -m 0755 debian/dropbear.init ${D}${sysconfdir}/init.d/dropbear } |