elks-enhanced

publicRead
Owner: themasterBranch: masterCommits: 6893Updated: 2026-04-19 00:15
Git CLI clone URL
git clone https://www.xt-emporium.com/git/elks-enhanced.git
Fullscreen desktop URL

Commit diff

Commit 4d4e71c251f47ea2f57808d62d685abb11be4e3
commit 4d4e71c251f47ea2f57808d62d685abb11be4e33
Author: themaster <themaster@xt-emporium.com>
Date:   Sun Apr 19 01:15:25 2026 +0100

    Point extapp fetches at split server repos
---
 README.md   | 4 ++--
 buildext.sh | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index 53572c34..b87fb86c 100644
--- a/README.md
+++ b/README.md
@@ -49,8 +49,8 @@ kernel/userspace socket ABI, and the protocol implementation itself.
 This repository no longer vendors the ELKS BearSSL or Dropbear ports.
 They live in separate repositories and are fetched into `extapps/` when needed:
 
-- `dropbear-elks`
-- `bearssl-elks`
+- `ssh-daemon-project` for the Dropbear ELKS port
+- `bearssl` for the BearSSL ELKS port
 
 Use `./buildext.sh dropbear bearssl` to fetch and build them locally.
 The `menuconfig` entries for these extapps remain in ELKS so images can still
diff --git a/buildext.sh b/buildext.sh
index e1e6b752..0e6e9b10 100755
--- a/buildext.sh
+++ b/buildext.sh
@@ -39,8 +39,8 @@
 set -e
 
 XT_GIT_BASE_URL=${XT_GIT_BASE_URL:-https://www.xt-emporium.com/git}
-DROPBEAR_REPO_URL=${DROPBEAR_REPO_URL:-$XT_GIT_BASE_URL/dropbear-elks.git}
-BEARSSL_REPO_URL=${BEARSSL_REPO_URL:-$XT_GIT_BASE_URL/bearssl-elks.git}
+DROPBEAR_REPO_URL=${DROPBEAR_REPO_URL:-$XT_GIT_BASE_URL/ssh-daemon-project.git}
+BEARSSL_REPO_URL=${BEARSSL_REPO_URL:-$XT_GIT_BASE_URL/bearssl.git}
 
 doexit()
 {