diff --git a/thirdparty/dropbear/CMakeLists.txt b/thirdparty/dropbear/CMakeLists.txt index 91dc15e46..df1adebf7 100644 --- a/thirdparty/dropbear/CMakeLists.txt +++ b/thirdparty/dropbear/CMakeLists.txt @@ -30,6 +30,7 @@ endif() set(DSS_PRIV_FILENAME "settings/SSH/dropbear_dss_host_key") set(RSA_PRIV_FILENAME "settings/SSH/dropbear_rsa_host_key") set(ECDSA_PRIV_FILENAME "settings/SSH/dropbear_ecdsa_host_key") +set(ED25519_PRIV_FILENAME "settings/SSH/dropbear_ed25519_host_key") configure_file(localoptions.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/localoptions.h ESCAPE_QUOTES) set_property(DIRECTORY APPEND PROPERTY CMAKE_CONFIGURE_DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/localoptions.h) diff --git a/thirdparty/dropbear/localoptions.h.cmake b/thirdparty/dropbear/localoptions.h.cmake index 232e14eeb..0d1f926eb 100644 --- a/thirdparty/dropbear/localoptions.h.cmake +++ b/thirdparty/dropbear/localoptions.h.cmake @@ -13,5 +13,6 @@ #cmakedefine DSS_PRIV_FILENAME "@DSS_PRIV_FILENAME@" #cmakedefine RSA_PRIV_FILENAME "@RSA_PRIV_FILENAME@" #cmakedefine ECDSA_PRIV_FILENAME "@ECDSA_PRIV_FILENAME@" +#cmakedefine ED25519_PRIV_FILENAME "@ED25519_PRIV_FILENAME@" // Extra part of the SSH server identification string. #define IDENT_VERSION_PART "_" DROPBEAR_VERSION " (KOReader)"