cloning submodels - lwip failed

C programming, build, interpreter/VM.
Target audience: MicroPython Developers.
Post Reply
redminx
Posts: 2
Joined: Tue May 09, 2017 8:19 pm

cloning submodels - lwip failed

Post by redminx » Tue May 09, 2017 9:03 pm

Hi,

I'm new to micropython and git. I'm trying to clone the repository using the --recursive command to get all the submodules but I keep getting this error for lwip

fatal: unable to access 'http://git.savannah.gnu.org/r/lwip.git/': The requested URL returned error: 403

fatal: clone of 'http://git.savannah.gnu.org/r/lwip.git' into submodule path

same error happens using ' git submodule update --init --recursive'

Any ideas what I'm doing wrong?

Thanks,
Red

User avatar
dhylands
Posts: 3821
Joined: Mon Jan 06, 2014 6:08 pm
Location: Peachland, BC, Canada
Contact:

Re: cloning submodels - lwip failed

Post by dhylands » Tue May 09, 2017 10:17 pm

Try again later?

It looks like there was probably a temporary server issue, which seems to have been resolved. I was able to do a recursive clone and it worked fine:

Code: Select all

514 >git clone --recursive https://github.com/micropython/micropython remove-me
Cloning into 'remove-me'...
remote: Counting objects: 52954, done.
remote: Compressing objects: 100% (86/86), done.
remote: Total 52954 (delta 43), reused 1 (delta 1), pack-reused 52867
Receiving objects: 100% (52954/52954), 30.47 MiB | 2.86 MiB/s, done.
Resolving deltas: 100% (38169/38169), done.
Checking connectivity... done.
Submodule 'lib/axtls' (https://github.com/pfalcon/axtls) registered for path 'lib/axtls'
Submodule 'lib/berkeley-db-1.xx' (https://github.com/pfalcon/berkeley-db-1.xx) registered for path 'lib/berkeley-db-1.xx'
Submodule 'lib/libffi' (https://github.com/atgreen/libffi) registered for path 'lib/libffi'
Submodule 'lib/lwip' (http://git.savannah.gnu.org/r/lwip.git) registered for path 'lib/lwip'
Cloning into 'lib/axtls'...
remote: Counting objects: 2774, done.
remote: Total 2774 (delta 0), reused 0 (delta 0), pack-reused 2774
Receiving objects: 100% (2774/2774), 3.47 MiB | 1.24 MiB/s, done.
Resolving deltas: 100% (2087/2087), done.
Checking connectivity... done.
Submodule path 'lib/axtls': checked out '67d27df4b5d097e146599fc4fb160a2adcbf5632'
Cloning into 'lib/berkeley-db-1.xx'...
remote: Counting objects: 262, done.
remote: Compressing objects: 100% (121/121), done.
remote: Total 262 (delta 121), reused 262 (delta 121), pack-reused 0
Receiving objects: 100% (262/262), 331.56 KiB | 0 bytes/s, done.
Resolving deltas: 100% (121/121), done.
Checking connectivity... done.
Submodule path 'lib/berkeley-db-1.xx': checked out 'dab957dacddcbf6cbc85d42df62e189e4877bb72'
Cloning into 'lib/libffi'...
remote: Counting objects: 10934, done.
remote: Compressing objects: 100% (2/2), done.
remote: Total 10934 (delta 0), reused 0 (delta 0), pack-reused 10932
Receiving objects: 100% (10934/10934), 6.83 MiB | 1.75 MiB/s, done.
Resolving deltas: 100% (6804/6804), done.
Checking connectivity... done.
Submodule path 'lib/libffi': checked out 'e9de7e35f2339598b16cbb375f9992643ed81209'
Cloning into 'lib/lwip'...
remote: Counting objects: 43830, done.
remote: Compressing objects: 100% (10425/10425), done.
remote: Total 43830 (delta 32962), reused 43735 (delta 32899)
Receiving objects: 100% (43830/43830), 8.16 MiB | 2.14 MiB/s, done.
Resolving deltas: 100% (32962/32962), done.
Checking connectivity... done.
Submodule path 'lib/lwip': checked out '5b8b5d459e7dd890724515bbfad86c705234f9ec'

redminx
Posts: 2
Joined: Tue May 09, 2017 8:19 pm

Re: cloning submodels - lwip failed

Post by redminx » Wed May 10, 2017 8:09 pm

Thanks, seems that was it. Cloning and Compiling just fine now

User avatar
RWLTOK
Posts: 53
Joined: Thu Dec 14, 2017 7:24 pm

Re: cloning submodels - lwip failed

Post by RWLTOK » Thu Jan 18, 2018 6:47 pm

fatal: clone of 'http://git.savannah.gnu.org/r/lwip.git': Could not resolve host: git.savannah.gnu.org failed

A ping of the server indicates "Ping request could not find git.savannah.gnu.org. Please check the name and try again."

Thoughts?

User avatar
dhylands
Posts: 3821
Joined: Mon Jan 06, 2014 6:08 pm
Location: Peachland, BC, Canada
Contact:

Re: cloning submodels - lwip failed

Post by dhylands » Thu Jan 18, 2018 8:01 pm

Seems to be back up now.

Post Reply