diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2024-04-04 13:44:07 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2024-04-04 13:44:07 +0000 |
commit | cd2f9cce420ea9328d08ace958dc706cc2141ae3 (patch) | |
tree | bf0b58046b746b2929c561978d7a61c938c53f5d | |
parent | c152fe514655a94d45b200e5801d4178ebf6bf1c (diff) | |
download | lh-bootstrap-cd2f9cce420ea9328d08ace958dc706cc2141ae3.tar.xz |
Update dropbear to 2024.84
Signed-off-by: Laurent Bercot <ska@appnovation.com>
-rw-r--r-- | sub/dropbear/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sub/dropbear/Makefile b/sub/dropbear/Makefile index 0bbf81c..93f2a39 100644 --- a/sub/dropbear/Makefile +++ b/sub/dropbear/Makefile @@ -1,6 +1,8 @@ -# DROPBEAR_VERSION ?= 2022.83 # buggy with inetd_mode + disable_syslog -DROPBEAR_VERSION ?= 2020.81 +# DROPBEAR_VERSION ?= 2024.84 +# DROPBEAR_VERSION ?= 2020.81 # previous working version +DROPBEAR_SITE := https://mirror.dropbear.nl/mirror/releases +# DROPBEAR_SITE := https://matt.ucc.asn.au/dropbear/releases DROPBEAR_CONF_STATIC := $(if $(filter true,$(TARGET_STATIC)),--enable-static,) DROPBEAR_MAKE_STATIC := $(if $(filter true,$(TARGET_STATIC)),-static,) @@ -9,7 +11,7 @@ clean-dropbear: $(OUTPUT)/sources/dropbear-$(DROPBEAR_VERSION).tar.bz2: | $(OUTPUT)/tmp/.lh_prepared $(OUTPUT)/build-build/.lh_skarnet_installed - exec setuidgid $(NORMALUSER) cd $(OUTPUT)/sources wget https://matt.ucc.asn.au/dropbear/releases/dropbear-$(DROPBEAR_VERSION).tar.bz2 + exec setuidgid $(NORMALUSER) cd $(OUTPUT)/sources wget $(DROPBEAR_SITE)/dropbear-$(DROPBEAR_VERSION).tar.bz2 $(OUTPUT)/build-$(TRIPLE)/.lh_dropbear_dled: $(OUTPUT)/sources/dropbear-$(DROPBEAR_VERSION).tar.bz2 | $(OUTPUT)/build-build/.lh_skarnet_installed exec setuidgid $(NORMALUSER) s6-touch $@ |