autossh: new package

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Gustavo Zacarias 2013-10-14 10:46:11 -03:00 committed by Peter Korsgaard
parent b6c0b3b42a
commit 05d59aa268
3 changed files with 26 additions and 0 deletions

View File

@ -760,6 +760,7 @@ source "package/aiccu/Config.in"
source "package/aircrack-ng/Config.in"
source "package/argus/Config.in"
source "package/arptables/Config.in"
source "package/autossh/Config.in"
source "package/avahi/Config.in"
source "package/axel/Config.in"
source "package/bcusdk/Config.in"

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_AUTOSSH
bool "autossh"
depends on BR2_USE_MMU # fork()
help
autossh is a program to start a copy of ssh and monitor it,
restarting it as necessary should it die or stop passing traffic.
http://www.harding.motd.ca/autossh/

View File

@ -0,0 +1,17 @@
################################################################################
#
# autossh
#
################################################################################
AUTOSSH_VERSION = 1.4c
AUTOSSH_SITE = http://www.harding.motd.ca/autossh
AUTOSSH_SOURCE = autossh-$(AUTOSSH_VERSION).tgz
AUTOSSH_LICENSE = Modified BSD
AUTOSSH_LICENSE_FILES = autossh.c
define AUTOSSH_INSTALL_TARGET_CMDS
$(INSTALL) -m 755 -D $(@D)/autossh $(TARGET_DIR)/usr/bin/autossh
endef
$(eval $(autotools-package))