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.

ti-sdk-beagle-05.05.01.00 build uImage fails on mpr.fw.gen.S

Hi,

I have VirtualBox on Windows 7  with Ubuntu 12.04.  Downloaded ti-sdk-beagle-05.05.01.00-Linux-x86-Install  and installed and did the below set of commands

  1.  cd to  ti-sdk-beagle-05.05.01.00/board-support/linux-3.3.7-r115

  2.  make ARCH-arm CROSS_COMPILE=arm-arago-linux-gnueabi- mrproper

                 this worked

  3.  make oldconfig

  4.  make

          This completed with no error -- assuming that this built tje Kernel and looked for uImage and could not located then

     

  5.  make ARCH-arm CROSS_COMPILE=arm-arago-linux-gnueabi- uIamge

        This fails a at firmware/keyspan/mpr.fw.gen.S: Assembler messages:

                       firmware/keyspan/mpr.fw.gen.S:11: Error: junk at end of line, first unrecognized character is ','

   I do not know to how to move forward with this error.

 

Please help.

Thanks,

Asha

 

 

  • Hi Asha,

    I would recommend this sequence of steps to build uImage:

    1. export <SDK PATH>/linux-devkit/bin:$PATH
    2. cd <SDK PATH>/board-support/linux-3.3.7-r115
    3. make ARCH=arm CROSS_COMPILE=arm-arago-linux-gnueabi- mrproper
    4. make ARCH=arm CROSS_COMPILE=arm-arago-linux-gnueabi- tisdk_beagleboard_defconfig
    5. make ARCH=arm CROSS_COMPILE=arm-arago-linux-gnueabi- uImage
    Running make with mrproper will delete any configuration that is in the current source tree so you will need to specify a default configuration to use, which is done with  tisdk_beagleboard_config. This is the default configuration for the beagleboard and should build without issue.
    Regards,
    Dave
  • Hi Dave,

    I finally was able to complete the build.

    Thanks for all your help.

    Asha