diff options
author | Thomas De Schampheleire <patrickdepinguin+buildroot@gmail.com> | 2011-10-19 09:25:40 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-11-27 22:37:25 +0100 |
commit | c61788f097670acd7643288c21fb86c2cc34d28a (patch) | |
tree | 0677d0076d7242f7905f2cf0bde044c5a394c374 /Config.in | |
parent | 1d7299194c7107fa295c4fdbc6aef96324700aa5 (diff) |
GENTARGETS: add support for scp://
This patch adds support for scp:// both for use in the package Makefiles, as for
the BR2_PRIMARY_SITE variable.
This patch was based on the work of Richard Guy Briggs
(see https://bugs.busybox.net/show_bug.cgi?id=3343).
[Peter: small whitespace fixes]
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'Config.in')
-rw-r--r-- | Config.in | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -36,6 +36,14 @@ config BR2_LOCALFILES string "Local files retrieval command" default "cp" +config BR2_SCP + string "Secure copy (scp) command" + default "scp" + +config BR2_SSH + string "Secure shell (ssh) command" + default "ssh" + config BR2_ZCAT string "zcat command" default "gzip -d -c" @@ -102,7 +110,10 @@ config BR2_PRIMARY_SITE Primary site to download from. If this option is set then buildroot will try to download package source first from this site and try the default if the file is not found. - NOTE: This only works for packages using the Makefile.autotools.in + Valid URIs are URIs recognized by $(WGET) and scp URIs of the form + scp://[user@]host:path. + NOTE: This works for all packages using the central package + infrastructure (generic, autotools, cmake, ...) config BR2_BACKUP_SITE string "Backup download site" |