This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AM6548: Your uboot git is down

Part Number: AM6548

Tool/software:

Hi Ti,

From 6/20 2025, I cannot use git to clone your uboot code.

Is is under maintenance or the git path has changed?

Eric

  • Hi Eric,

    From 6/20 2025, I cannot use git to clone your uboot code.

    Is is under maintenance or the git path has changed?

    Looks like some changes on the TI Git server side (disabling of support for the old "git transport" protocol in favor of the new industry-standard "https transport" protocol) broke some recipes in that SDK. Note that this is a transition that didn't only affect the TI servers but also Github and others (and actually earlier than the TI server transitioned).

    The solution to that is to manually update the Git URLs in the failing recipes. Please have a look a the below commit. You might be able to cherry-pick it, but if not, you can manually incorporate the changes that are made.

    https://git.ti.com/cgit/arago-project/meta-ti/commit/?id=8adeecdc49d6c2c46dbb1970f48be464bb89d10c

    commit 8adeecdc49d6c2c46dbb1970f48be464bb89d10c
    Author: Ryan Eatmon <reatmon@ti.com>
    Date:   Fri Nov 4 22:46:20 2022 +0000
    
        all: Stop using git://git.ti.com
    
        Stop using un-encrypted git:// protocol to access TI repositories.
    
        This is inline with the same arguments as made by github in
        https://github.blog/2021-09-01-improving-git-protocol-security-github/
    
        Signed-off-by: Nishanth Menon <nm@ti.com>
        Signed-off-by: Ryan Eatmon <reatmon@ti.com>
        Signed-off-by: Denys Dmytriyenko <denys@konsulko.com>
        Signed-off-by: Ryan Eatmon <reatmon@ti.com>

    Regards, Andreas