Can't use "https protocol" instead of "git protocol"

I try to download source code using under command in my company network environment.

$ git clone -n git://nv-tegra.nvidia.com/3rdparty/u-boot.git

I set git proxy as follows.

[http]
proxy = http://user:password@proxyserver:port
[https]
proxy = http://user:password@proxyserver:port

Under error show up

Cloning into 'u-boot'...
fatal: unable to connect to nv-tegra.nvidia.com:
nv-tegra.nvidia.com[0: 216.228.121.37]: errno=Connection timed out

My company inhibits git protol, so I try using https protocol as follows.

git clone -n https://nv-tegra.nvidia.com/3rdparty/u-boot.git/

Under error show up
fatal: unable to access ‘https://nv-tegra.nvidia.com/3rdparty/u-boot.git/’: gnutls_handshake() failed: Illegal parameter
My question is that “nv-tegra.nvidia.com” supports to access with https protocol?
Sorry error message is mistake.
Below message is show up.
$ git clone -n https://nv-tegra.nvidia.com/3rdparty/u-boot.git
Cloning into ‘u-boot’…
fatal: repository ‘https://nv-tegra.nvidia.com/3rdparty/u-boot.git/’ not found

1 Like

Hi naoki.yoshida,

Sorry for the late reply, have you resolved the source code download problem?

Thanks

Thank you for reply.
I have not solved this problem yet, and I’m waiting for someone’s feedback or advice.

Hello kayccc & naoki.yoshida,

I’m having the same problem. My org blocks git://, but I don’t seem to be able to use https://

$ git clone https://nv-tegra.nvidia.com/3rdparty/u-boot.git
Cloning into ‘u-boot’…
fatal: repository ‘https://nv-tegra.nvidia.com/3rdparty/u-boot.git/’ not found

Thanks,
Gavin

Hi,

We have no http access support on nv-tegra now.
Could you work out this with your it guys? Or you can download the source via from the download center (e.g. https://developer.nvidia.com/embedded/dlc/l4t-sources-28-2 )

1 Like

Hello vickyy,

OK, I understood. I will download the source from download center, but I would like nv-tegra to support http access later.

Hi, I get the same following error when using source_sync.sh. Any advice to handle it?
Thanks.

–Stuart

stuart-Studio-XPS-9100:~/nvidia/nvidia_sdk/JetPack_4.3_Linux_P3448/Linux_for_Tegra$ ./source_sync.sh
Downloading default kernel/kernel-4.9 source…
Cloning into ‘/home/stuartx/nvidia/nvidia_sdk/JetPack_4.3_Linux_P3448/Linux_for_Tegra/sources/kernel/kernel-4.9’…
fatal: unable to connect to nv-tegra.nvidia.com:
nv-tegra.nvidia.com[0: 216.228.121.37]: errno=Connection timed out

/home/stuartx/nvidia/nvidia_sdk/JetPack_4.3_Linux_P3448/Linux_for_Tegra/sources/kernel/kernel-4.9 source sync failed!

Downloading default kernel/nvgpu source…
Cloning into ‘/home/stuartx/nvidia/nvidia_sdk/JetPack_4.3_Linux_P3448/Linux_for_Tegra/sources/kernel/nvgpu’…
fatal: unable to connect to nv-tegra.nvidia.com:
nv-tegra.nvidia.com[0: 216.228.121.37]: errno=Connection timed out

/home/stuartx/nvidia/nvidia_sdk/JetPack_4.3_Linux_P3448/Linux_for_Tegra/sources/kernel/nvgpu source sync failed!

Hey Stuart - I ended up using git protocol instead of https.

Gavin

Hi Gavin,

Thanks for the response. Should I modify the source_sync.sh script or should I change the system configuration?

–Stuart

Hi Gavin,

In other words, how to make it (the source_sync.sh script) work? Please provide the details.
Thanks,

–Stuart

1 Like