[LSDK20.04] Cannot get linux source code from flex-builder

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

[LSDK20.04] Cannot get linux source code from flex-builder

Jump to solution
1,412 Views
jhkim2
Contributor III

Hi,

I cannot get linux source code by flex-builder through network several days.

When I execute command in LSDK20.04:

flex-builder -c linux

it ends with "fatal: The remote end hung up unexpectedly"
How can I solve this problem?  Is it network problem?

 

Tags (1)
0 Kudos
1 Solution
1,321 Views
jhkim2
Contributor III
0 Kudos
2 Replies
1,322 Views
jhkim2
Contributor III

I changed the download site of linux package to  https://portland.source.codeaurora.org/external/qoriq/qoriq-components/linux.git

It helped me.

0 Kudos
1,335 Views
yipingwang
NXP TechSupport
NXP TechSupport

This is network problem. 

How to set HTTP proxy in Ubuntu
If your Linux host machine is in a subnet that needs HTTP(s) proxy to access external Internet, please set environment variable
http_proxy and https_proxy as below:
1. Set proxy in ~/.bashrc (for current user) or in /etc/profile.d/proxy.sh (for global users), then run "source ~/.bashrc" or
"source /etc/profile.d/proxy.sh" to validate the settings.
export http_proxy="http://<account>:<password>@<domain>:<port>"
export https_proxy="https://<account>:<password>@<domain>:<port>"
2. Set proxy in /etc/apt/apt.conf
Acquire::http::Proxy "http://<account>:<password>@<domain>:<port>";
Acquire::https::Proxy "https://<account>:<password>@<domain>:<port>";

Tags (1)
0 Kudos