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.

CONFIG_MACH_FLASHBOARD Define File

Other Parts Discussed in Thread: AM3517

Hi,

         I want to set the CONFIG_MACH_FLASHBOARD to FALSE. Which files is located this define? I don't know where it is.

 

Thanks and Best Regards

Eric

 

  • Hi Eric,

    You can disable flashboard from kernel menuconfig.

    Location:

       -> System Type

          -> TI OMAP2/3/4 Specific Features

               -> DM37X Flash Board

    Disable DM37X Flash Board this will set CONFIG_MACH_FLASHBOARD to FALSE.

    Regards,

    Pankaj Bharadiya

  • Hi, Pankaj,

                Thank you for your reply.

                 Actually, I want to port the LCD panel into Beagleboard. There are some control flag called CONFIG_MACH_FLASHBOARD. And then set it to FALSE. How to set it to FALSE?

                Also I have one question. If I finish the selection of kernel menuconfig. I need to rebuild the uImage. I am using the following command to build the uImage:

    Execute the following commands to the kernel sources

      #> make ARCH=arm CROSS_COMPILE=arm-eabi- distclean

      #> make ARCH=arm CROSS_COMPILE=arm-eabi- omap3_beagle_android_defconfig

     Where default config is

        omap3_evm_android_defconfig         : For OMAP35x, AM37x, DM37x EVM
        am3517_evm_android_defconfig        : For AM35x EVM
        omap3_beagle_android_defconfig      : For Beagleboard Rev Cx, XM

      #> make ARCH=arm CROSS_COMPILE=arm-eabi- uImage

     Use this omap3_beagle_android_defconfig to build or other config define?

     

    Thanks

    Eric

     

     

  • If you need to customise your kernel image then your steps become:

    1. $ make ARCH=arm CROSS_COMPILE=aem-eabi-   distclean

    2. $ make ARCH=arm CROSS_COMPILE=aem-eabi-   omap3_beagle_android_defconfig

    3. $ make ARCH=arm CROSS_COMPILE=aem-eabi-   menuconfig

    Here you can do your custom settings. Remember to save your kernel config after exiting the menuconfig.

    4. make ARCH=arm CROSS_COMPILE=aem-eabi-   uImage

     

    In case you need to change the source code and Kconfig or Makefiles are modified, then perform steps 3 and 4 again.