Bootloader git repository not found

hi,

I’m trying to customize the bootloader while referring to the following.
https://releases.linaro.org/96boards/dragonboard410c/linaro/debian/latest/

But I can’t find git source of “arm-eabi-4.8”.

# git clone https://codeaurora.org/platform/prebuilts/gcc/linux-x86/arm/arm-eabi-4.8.git -b LA.BR.1.1.3.c4-01000-8x16.0
Cloning into 'arm-eabi-4.8'...
fatal: repository 'https://codeaurora.org/platform/prebuilts/gcc/linux-x86/arm/arm-eabi-4.8.git/' not found

Where is the source of “arm-eabi-4.8” that has branche “LA.BR.1.1.3.c4-01000-8x16.0”?

Thank you,
Regards,

Try git instead of https (as indicated in the documentation)

git clone git://codeaurora.org/platform/prebuilts/gcc/linux-x86/arm/arm-eabi-4.8.git -b LA.BR.1.1.3.c4-01000-8x16.0

Can I substitute for https?

I can not use git port (9418) by firewall.

You can use this repo with https:

git clone https://source.codeaurora.org/quic/la/platform/prebuilts/gcc/linux-x86/arm/arm-eabi-4.8 -b LA.BR.1.1.3.c4-01000-8x16.0

hi, Loic

the problem is now solved.
Thanks a lot!