Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
config BR2_PACKAGE_KNOCK
bool "knock"
select BR2_PACKAGE_LIBPCAP
depends on BR2_USE_MMU # fork()
help
A port knocking implementation.
Provides a daemon and a user application. Port knocking can be
used to run an arbitrary application, once the daemon detects
a predefined sequence of incoming TCP/UDP packets on a network
interface. This can be used, e.g. to open up ports in a
firewall.
http://www.zeroflux.org/projects/knock

View File

@@ -0,0 +1,2 @@
# locally computed hash
sha256 940a8de61b4b3530560805c3b9310a077c28c99173c2ccb07ff96720b0e93c58 knock-258a27e5a47809f97c2b9f2751a88c2f94aae891.tar.gz

View File

@@ -0,0 +1,18 @@
################################################################################
#
# knock
#
################################################################################
KNOCK_VERSION = 258a27e5a47809f97c2b9f2751a88c2f94aae891
KNOCK_SITE = $(call github,jvinet,knock,$(KNOCK_VERSION))
KNOCK_AUTORECONF = YES
KNOCK_LICENSE = GPLv2+
KNOCK_LICENSE_FILES = COPYING
KNOCK_DEPENDENCIES = libpcap
ifeq ($(BR2_STATIC_LIBS),y)
KNOCK_CONF_OPTS = LIBS="`$(STAGING_DIR)/usr/bin/pcap-config --static --additional-libs`"
endif
$(eval $(autotools-package))