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.

menuconfig usage

hi ,

i m working on AMSK335x and i m trying to edit my kernel configuration .. like explained on this Site :

http://processors.wiki.ti.com/index.php/AMSDK_Linux_User%27s_Guide i do :

1) make clean    (from TOP of SDK )

2) make linux_clean       (from TOP of SDK )

3) make ARCH=arm CROSS_COMPILE=arm-arago-linux-gnueabi- menuconfig     ( from psp )

--> it creates me a mconf in /scripts/kconfig

4) make linux  (from TOP of SDK )

--> it creates me another conf in  /scripts/kconfig  using tisdk_am-335x_defconfig from  /arch/arm/configs   !!! ( MAKEFILE )!!!!!

i m a little bit confused  if my changes in menuconfig now are working , i guess no,.. or how do i compile linux with this configuration of menuconfig ??

  • Hello,

    It seems you are not first loading a defconfig before running menuconfig.

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

    make ARCH=arm CROSS_COMPILE=arm-arago-linux-gnueabi- tisdk_am335x-evm_defconfig

    make ARCH=arm CROSS_COMPILE=arm-arago-linux-gnueabi- menuconfig

    make ARCH=arm CROSS_COMPILE=arm-arago-linux-gnueabi- uImage

    If you do this then your changes in menuconfig will be present in the kernel you build.

    Regards,

    Dave