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

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

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

跳至解决方案
1,435 次查看
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?

 

标记 (1)
0 项奖励
1 解答
1,344 次查看
jhkim2
Contributor III
0 项奖励
2 回复数
1,345 次查看
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 项奖励
1,358 次查看
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>";

标记 (1)
0 项奖励