I want to modify the configurations of the kernel to add/remove some features to my linux kernel which i need in my board.
I am following the steps described here :
I build the kernel for SAMA5D27_SOM1_EK1 board :
make ARCH=arm sama5_defconfig
I run the menuconfig in order to make modifications and save my changes before exit :
make ARCH=arm menuconfig
I set up the cross compile toolchain and build the linux kernel image :
make ARCH=arm
I have get this successfuly :
Kernel: arch/arm/boot/Image is ready
Kernel: arch/arm/boot/zImage is ready
finally I build the device tree binary :
make ARCH=arm dtbs
I can find now the kernel image under arch/arm/boot/ directory.
But, my modifications did not take place!
I want to know if I am missing some thing ?
Where can I find the old default kernel .config file ?
After setting some modifications from the menuconfig, what should I do to make changes appear in my kernel ?
Where can I find the new .config file after modifications ?
How can I know that my modifications did take place successfully ?
Thank you.