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.

PROCESSOR-SDK-AM57X: repository for meta-processor-sdk fails on a simple clone

Part Number: PROCESSOR-SDK-AM57X


Tool/software:

I am trying to do a yocto build using the 6.03 SDK. I am having trouble with the meta-processor-sdk. The line in the configs file to load the repository is:

meta-processor-sdk,git.ti.com/.../meta-processor-sdk,master,56d9d47f18eeec31a1086ca29e54b5956c46de84,layers=

And this fails to clone the repository. The error messages look something like:

[2025-09-22T13:24:58.210Z] Cloning into '/work/sources/meta-processor-sdk'...
[2025-09-22T13:25:00.105Z] warning: redirecting to https://git.ti.com/cgit/processor-sdk/meta-processor-sdk/
[2025-09-22T13:25:14.961Z] error: HTTP request failed (curl_result = 22, http_code = 503, sha1 = 5ee3f2ba2cc80870afa21f1b0dd68bcc1717bacc)
[2025-09-22T13:25:15.218Z] error: Unable to find 5ee3f2ba2cc80870afa21f1b0dd68bcc1717bacc under https://git.ti.com/cgit/processor-sdk/meta-processor-sdk
[2025-09-22T13:25:15.218Z] Cannot obtain needed tree 5ee3f2ba2cc80870afa21f1b0dd68bcc1717bacc
[2025-09-22T13:25:15.218Z] while processing commit b0a7b924b9b518e5790fd5bb0a668d424be0d378.
[2025-09-22T13:25:15.218Z] error: fetch failed.

A manual clone also fails:

$ git clone https://git.ti.com/processor-sdk/meta-processor-sdk
Cloning into 'meta-processor-sdk'...
warning: redirecting to https://git.ti.com/cgit/processor-sdk/meta-processor-sdk/
error: The requested URL returned error: 503 (curl_result = 22, http_code = 503, sha1 = 05eb0dd4ca59646a403e5e732ca638083b8a49d0)
error: Unable to find d145b971078f683faaa98d592afd80196e81645c under https://git.ti.com/cgit/processor-sdk/meta-processor-sdk
Fetching objects: 52, done.
Cannot obtain needed tree d145b971078f683faaa98d592afd80196e81645c
while processing commit 2005e3725272a477332f5d6f0573c19e97e47268.
error: fetch failed.

The details of the error messages are different but the failure is similar.

Doing a manual clone and specifying the branch seems to work:

git clone --single-branch --branch master https://git.ti.com/processor-sdk/meta-processor-sdk

In short, the repository seems like it might be broken. The manual clone specifying the branch might be a work-around.

  • Hi ,

    I am unable to recreate your issue. Do you have any proxy settings or firewalls that may be blocking the link?

    $ git clone https://git.ti.com/git/processor-sdk/meta-processor-sdk.git
    Cloning into 'meta-processor-sdk'...
    remote: Enumerating objects: 17954, done.
    remote: Counting objects: 100% (17954/17954), done.
    remote: Compressing objects: 100% (8513/8513), done.
    remote: Total 17954 (delta 9541), reused 15798 (delta 8356), pack-reused 0
    Receiving objects: 100% (17954/17954), 38.52 MiB | 42.37 MiB/s, done.
    Resolving deltas: 100% (9541/9541), done.

    Best,
    Jared

  • I do not believe there are any firewalls or proxies that would have interfered. But something obviously changed since yesterday when I was having this issue. Today, I tried the command again and it worked ok for me just like it did for you.

    Thanks for trying to reproduce the issue.