|
@@ -4,7 +4,7 @@
|
|
#
|
|
#
|
|
#############################################################
|
|
#############################################################
|
|
|
|
|
|
-DROPBEAR_VERSION = 0.52
|
|
|
|
|
|
+DROPBEAR_VERSION = 0.53.1
|
|
DROPBEAR_SOURCE = dropbear-$(DROPBEAR_VERSION).tar.gz
|
|
DROPBEAR_SOURCE = dropbear-$(DROPBEAR_VERSION).tar.gz
|
|
DROPBEAR_SITE = http://matt.ucc.asn.au/dropbear/releases
|
|
DROPBEAR_SITE = http://matt.ucc.asn.au/dropbear/releases
|
|
DROPBEAR_DEPENDENCIES = zlib
|
|
DROPBEAR_DEPENDENCIES = zlib
|
|
@@ -27,10 +27,25 @@ define DROPBEAR_DISABLE_REVERSE_DNS
|
|
$(SED) 's,^#define DO_HOST_LOOKUP.*,/* #define DO_HOST_LOOKUP */,' $(@D)/options.h
|
|
$(SED) 's,^#define DO_HOST_LOOKUP.*,/* #define DO_HOST_LOOKUP */,' $(@D)/options.h
|
|
endef
|
|
endef
|
|
|
|
|
|
|
|
+define DROPBEAR_BUILD_SMALL
|
|
|
|
+ echo "#define DROPBEAR_SMALL_CODE" >>$(@D)/options.h
|
|
|
|
+ echo "#define NO_FAST_EXPTMOD" >>$(@D)/options.h
|
|
|
|
+endef
|
|
|
|
+
|
|
|
|
+define DROPBEAR_BUILD_FEATURED
|
|
|
|
+ echo "#define DROPBEAR_BLOWFISH" >>$(@D)/options.h
|
|
|
|
+endef
|
|
|
|
+
|
|
ifeq ($(BR2_PACKAGE_DROPBEAR_DISABLE_REVERSEDNS),y)
|
|
ifeq ($(BR2_PACKAGE_DROPBEAR_DISABLE_REVERSEDNS),y)
|
|
DROPBEAR_POST_EXTRACT_HOOKS += DROPBEAR_DISABLE_REVERSE_DNS
|
|
DROPBEAR_POST_EXTRACT_HOOKS += DROPBEAR_DISABLE_REVERSE_DNS
|
|
endif
|
|
endif
|
|
|
|
|
|
|
|
+ifeq ($(BR2_PACKAGE_DROPBEAR_SMALL),y)
|
|
|
|
+DROPBEAR_POST_EXTRACT_HOOKS += DROPBEAR_BUILD_SMALL
|
|
|
|
+else
|
|
|
|
+DROPBEAR_POST_EXTRACT_HOOKS += DROPBEAR_BUILD_FEATURED
|
|
|
|
+endif
|
|
|
|
+
|
|
define DROPBEAR_INSTALL_TARGET_CMDS
|
|
define DROPBEAR_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -m 755 $(@D)/dropbearmulti $(TARGET_DIR)/usr/sbin/dropbear
|
|
$(INSTALL) -m 755 $(@D)/dropbearmulti $(TARGET_DIR)/usr/sbin/dropbear
|
|
for f in $(DROPBEAR_TARGET_BINS); do \
|
|
for f in $(DROPBEAR_TARGET_BINS); do \
|