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.

Building EZSDK for TI814x

Hi,

I have sources and pre-built binaries of TI814x EZSDK.

When i run the pre-built images all the applications are working fine.

But when i run the binaries after compiling the sources. the EZSDK is not working.

What is the procedure to copy the compiled binaries from INSTALL directory in to the SDK card.?

Regards

Pradeep

  • Hello, Pradeep Kumar1

    There is no strict procedure how to make things happen, but you can try something like that:

        $ cd <EZSDK_home>
        $ make clean
        $ make all
        $ make install
        $ cd <install_folder>                            (default is ~/install/dm814x-evm/)
        

                $ sudo cp -r * /media/ROOTFS                  (where /media/ROOTFS is the socond partition of the already flashed SD card)
                    or
                $ sudo cp -r * /home/users/<user_name>/targetfs                    (default for NFS)



    This should replace the pre-builds with your stuff. Then boot your system. I hope this helps. If you still have problems, please, write some details. "the EZSDK is not working" - What error is printed?

    BR