[Buildroot] [PATCHv5 5/9] Revert "core/download: drop the SSH command"

Thomas De Schampheleire patrickdepinguin at gmail.com
Tue Feb 19 10:38:35 UTC 2019


From: Thomas De Schampheleire <thomas.de_schampheleire at nokia.com>

This reverts commit db9473bf6cd7bd12aa1f9faad0a917c973c33827.

The SSH command will again be needed to support source-check for the 'scp'
download backend.

Signed-off-by: Thomas De Schampheleire <thomas.de_schampheleire at nokia.com>
---
 Config.in               | 4 ++++
 package/pkg-download.mk | 1 +
 2 files changed, 5 insertions(+)

v5: use 'git revert' instead
v4: no changes
v3: no changes

diff --git a/Config.in b/Config.in
index d58d8dc04a..91d56907fe 100644
--- a/Config.in
+++ b/Config.in
@@ -136,6 +136,10 @@ config BR2_SCP
 	string "Secure copy (scp) command"
 	default "scp"
 
+config BR2_SSH
+	string "Secure shell (ssh) command"
+	default "ssh"
+
 config BR2_HG
 	string "Mercurial (hg) command"
 	default "hg"
diff --git a/package/pkg-download.mk b/package/pkg-download.mk
index 5384fc2af4..dfc4460c6a 100644
--- a/package/pkg-download.mk
+++ b/package/pkg-download.mk
@@ -15,6 +15,7 @@ export BZR := $(call qstrip,$(BR2_BZR))
 export GIT := $(call qstrip,$(BR2_GIT))
 export HG := $(call qstrip,$(BR2_HG))
 export SCP := $(call qstrip,$(BR2_SCP))
+SSH := $(call qstrip,$(BR2_SSH))
 export LOCALFILES := $(call qstrip,$(BR2_LOCALFILES))
 
 DL_WRAPPER = support/download/dl-wrapper
-- 
2.19.2




More information about the buildroot mailing list