mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-08-02 16:07:42 +00:00
crosstool-ng: add patch to use wget instead of curl
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
33b8c556af
commit
0d2a03cc5a
@ -0,0 +1,52 @@
|
|||||||
|
Use wget instead of curl
|
||||||
|
|
||||||
|
While crosstool-NG did support either curl or wget in the past, it now
|
||||||
|
only supports curl. Unfortunately, Buildroot uses wget for all its
|
||||||
|
downloads, so wget is a hard dependency of Buildroot, while curl
|
||||||
|
isn't.
|
||||||
|
|
||||||
|
Instead of adding curl as a new Buildroot dependency, or building curl
|
||||||
|
for the host, we simply tweak crosstool-NG to use wget instead of
|
||||||
|
curl.
|
||||||
|
|
||||||
|
The script/functions change has been provided by Yann E. Morin.
|
||||||
|
|
||||||
|
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
|
||||||
|
|
||||||
|
Index: crosstool-ng-1.13.0/configure
|
||||||
|
===================================================================
|
||||||
|
--- crosstool-ng-1.13.0.orig/configure
|
||||||
|
+++ crosstool-ng-1.13.0/configure
|
||||||
|
@@ -496,7 +496,7 @@
|
||||||
|
ver='\(GNU libtool.*\) (2[[:digit:]]*\.|1\.6[[:digit:]]*\.|1\.5\.[2-9][[:digit:]]+)' \
|
||||||
|
err="'libtoolize' 1.5.26 or above was not found"
|
||||||
|
has_or_abort prog=stat
|
||||||
|
-has_or_abort prog="curl"
|
||||||
|
+has_or_abort prog="wget"
|
||||||
|
has_or_abort prog=patch
|
||||||
|
has_or_abort prog=tar
|
||||||
|
has_or_abort prog=gzip
|
||||||
|
Index: crosstool-ng-1.13.0/scripts/functions
|
||||||
|
===================================================================
|
||||||
|
--- crosstool-ng-1.13.0.orig/scripts/functions
|
||||||
|
+++ crosstool-ng-1.13.0/scripts/functions
|
||||||
|
@@ -456,13 +456,12 @@
|
||||||
|
# Some company networks have firewalls to connect to the internet, but it's
|
||||||
|
# not easy to detect them, so force a global ${CT_CONNECT_TIMEOUT}-second
|
||||||
|
# timeout.
|
||||||
|
- # For curl, no good progress indicator is available. So, be silent.
|
||||||
|
- if CT_DoExecLog ALL curl --ftp-pasv \
|
||||||
|
- --retry 3 \
|
||||||
|
- --connect-timeout ${CT_CONNECT_TIMEOUT} \
|
||||||
|
- --location --fail --silent \
|
||||||
|
- --output "${tmp}" \
|
||||||
|
- "${url}"
|
||||||
|
+ if CT_DoExecLog ALL wget --passive-ftp --tries=3 -nc \
|
||||||
|
+ -T ${CT_CONNECT_TIMEOUT} \
|
||||||
|
+ -O "${tmp}" \
|
||||||
|
+ "${url}"
|
||||||
|
+
|
||||||
|
+
|
||||||
|
then
|
||||||
|
# Success, we got it, good!
|
||||||
|
mv "${tmp}" "${dest}"
|
Loading…
x
Reference in New Issue
Block a user