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.

Linux: How to rebuild Linux SDK for OMAP-L138

Other Parts Discussed in Thread: OMAP-L138, PROCESSOR-SDK-OMAPL138

Tool/software: Linux

Hi there, I have notice there is new version of the SDK for OMAP-L138. I am trying to install that on Linux Host machine. 

I have download " " on the Linux Host and manage to run through the setup-sh script

Next thing it says to do is rebuilding the SDK.

On the root level of the SDK I have tried make all.. but I got the following error: 

TISDK setup completed!
Please continue reading the Software Developer's Guide for more information on
how to develop software on the EVM
-------------------------------------------------------------------------------
miteshhiran@ubuntu:/opt/ti-processor-sdk-linux-omapl138-lcdk-04.00.00.04$ make all
make: *** No rule to make target 'linux-dtbs', needed by 'linux'. Stop.
miteshhiran@ubuntu:/opt/ti-processor-sdk-linux-omapl138-lcdk-04.00.00.04$ make linux
make: *** No rule to make target 'linux-dtbs', needed by 'linux'. Stop.
miteshhiran@ubuntu:/opt/ti-processor-sdk-linux-omapl138-lcdk-04.00.00.04$

  • Hello,

    What are the steps that you are executing? What is the OS that you are using?
    Have you tried:
    1.Download PSDK;
    2. sudo ./ti-processor-sdk-linux-omapl138-lcdk-04.00.00.04-Linux-x86-Install.bin
    notice that this is 64 bit binary.
    3.cd ti-processor-sdk-linux-...
    4. make all

    BR
    Margarita
  • Hi Margarita,

    I have downloaded the "sudo ./ti-processor-sdk-linux-omapl138-lcdk-04.00.00.04-Linux-x86-Install.bin" and after installation did cd in to the directory and tried make all. 

    I am using Linux Host Ubuntu 16.02 LTS 64-Bit (Virtual Machine)

    Got the following Error:

    miteshhiran@ubuntu:/opt/ti-processor-sdk-linux-omapl138-lcdk-04.00.00.04$ make all
    make: *** No rule to make target 'linux-dtbs', needed by 'linux'. Stop.

  • Hello, any idea which this is not working ?
  • Mitesh Hiran said:
    Hello, any idea which this is not working ?

    The only way I could build was to comment out some of the kernel build targets in the Makefile.
    These are linux-dtbs and linux-dtbs_install. Just add a # in front of these names (lines 9 and 17)
    This gets everything to build as required, using make linux and make linux_install.
    Im assuming this will be fixed on a future release...