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-J784S4: Yocto manifest.xml

Part Number: PROCESSOR-SDK-J784S4

Hello!

Our firewall blocks the git protocoll. So i can only download with http or https.

In some recipes it is possible to help with protocol=https parameter.

The ti-tisdk-firmware-1.0-r8 recipe downloads a manifest.xml file with further instructions. 

This fails due firewall restrictions.

Any advice i can solve this problem?

br

Michael

  • Hi Michael,

    I have confirmed that you can use the following change to switch to https protocol. Can you apply this change and see if this help you resolve the issue?

    diff --git a/recipes-tisdk/ti-tisdk-firmware/ti-tisdk-firmware.bb b/recipes-tisdk/ti-tisdk-firmware/ti-tisdk-firmware.bb
    index 26f6182..0753130 100644
    --- a/recipes-tisdk/ti-tisdk-firmware/ti-tisdk-firmware.bb
    +++ b/recipes-tisdk/ti-tisdk-firmware/ti-tisdk-firmware.bb
    @@ -1,7 +1,7 @@
     SUMMARY = "OpenVX Middleware library and compatible PSDK RTOS Firmware"
     DESCRIPTION = "Builds tivision_apps user space library and installs prebuilt PSDK RTOS Firmware"
    
    -PR = "r8"
    +PR = "r11"
    
     LICENSE = "TI-TFL & BSD-2-Clause & BSD-3-Clause & BSD-4-Clause & MIT & Apache-2.0 & Apache-2.0-with-LLVM-exception & \
                Khronos & Hewlett-Packard & Patrick-Powell & FreeType & Zlib & CC0-1.0 & OpenSSL"
    @@ -22,7 +22,7 @@ LIC_FILES_CHKSUM = "file://${COREBASE}/../meta-ti/licenses/TI-TFL;md5=a1b59cb7ba
                         file://${COREBASE}/meta/files/common-licenses/OpenSSL;md5=4eb1764f3e65fafa1a25057f9082f2ae \
                         "
    
    -SRC_URI = "repo://git.ti.com/processor-sdk/psdk_repo_manifests.git;protocol=git;branch=refs/tags/REL.PSDK.JACINTO.08.06.00.08;manifest=vision_apps_yocto.xml"
    +SRC_URI = "repo://git.ti.com/processor-sdk/psdk_repo_manifests.git;protocol=https;branch=refs/tags/REL.PSDK.JACINTO.08.06.00.08;manifest=vision_apps_yocto.xml"
    
     FILES_${PN} += "/opt/*"
     FILES_${PN} += "${nonarch_base_libdir}/firmware"
    

    Regards
    Karthik

  • Hi Karthik,

    to download the xml file via https the source path should be repo://git.ti.com/git/processor-sdk/psdk_repo_manifests.git

    this solves the issue to download the xml file but inside the xml file all fetches are defined to use the git protocoll which fails due to our firewall restrictions.

    regards

    Michael