Tool/software:
Was wondering if TI has the source code for the Matrix application already bundled in the AM64x Linux SDK bundle or is it available on git.ti.com ?
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.
Tool/software:
Was wondering if TI has the source code for the Matrix application already bundled in the AM64x Linux SDK bundle or is it available on git.ti.com ?
Was wondering if TI has the source code for the Matrix application already bundled in the AM64x Linux SDK bundle or is it available on git.ti.com ?
Usually the easiest way to see where the source is for something that's part of the SDK is just by searching the Yocto source tree for the associated Bitbake recipe...
a0797059@dasso:~/tisdk/am64xx-evm/sources (dev) $ find . -name 'matrix*bb' <...> ./meta-arago/meta-arago-demos/recipes-core/matrix/matrix-gui_2.0.bb <...>
...and taking relevant references from there such as URI, branches, and Git commit IDs (and any patches that are applied on top)...
a0797059@dasso:~/tisdk/am64xx-evm/sources (dev) $ cat ./meta-arago/meta-arago-demos/recipes-core/matrix/matrix-gui_2.0.bb DESCRIPTION = "Matrix GUI Application launcher" <...> BRANCH ?= "master" SRCREV = "9a2d12590102fefc5c29fc9e8d346ce6b0198468" MATRIX_INITSCRIPT = "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'init', 'init.eglfs', d)}" SRC_URI = "git://git.ti.com/git/matrix-gui-v2/matrix-gui-v2.git;protocol=https;branch=${BRANCH} \ file://${MATRIX_INITSCRIPT} \ file://php.ini \ file://matrix-gui-2.0.service \ ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', \ 'file://0001-execute_command-workaround-for-GUI-apps-with-weston.patch', \ 'file://0001-execute_command-Stop-matrix-when-running-a-GUI-demo.patch', d)} \ " <...>
Then based on this in case of the Matrix GUI the respective Git repository is here:
https://git.ti.com/cgit/matrix-gui-v2/matrix-gui-v2/tree/
Regards, Andreas