This is a cache of https://discuss.96boards.org/t/bootloader-git-repository-not-found/5212. It is a snapshot of the page at 2024-09-20T08:52:16.748+0000.
Bootloader git repository not found - DragonBoard410c - 96Boards Forum

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!