[android-kernel] Re: How Do I Save My Kernel Configuration As The Default Settings?

2014-10-14 Thread helen.wjt
copy .config into arch/arm/config/some_defconfig. use $ make ARCH=arm some_defconfig. On Friday, October 3, 2014 12:32:36 PM UTC+8, Dave S wrote: > > Hi, > > How do I save my kernel configuration as the default settings when > building a kernel ? I use this: > $ make menuconfig > > >

[android-kernel] Re: How Do I Save My Kernel Configuration As The Default Settings?

2014-10-11 Thread andrew_esh
You can copy .config from your kernel top source directory to a safe backup location. Then copy it back in after "make distclean", or after switching to a new kernel. Then you can "make oldconfig" and the settings you had will be picked back up. Any settings within a new kernel would still be p