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

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

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

ソリューションへジャンプ
1,451件の閲覧回数
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,360件の閲覧回数
jhkim2
Contributor III
0 件の賞賛
2 返答(返信)
1,361件の閲覧回数
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,374件の閲覧回数
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 件の賞賛