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

2015-03-11 Thread jpa
> Just overwrite .config to arch/arm/config/(xxx_defconfig) > copy .config into arch/arm/config/some_defconfig. Don't. Use make savedefconfig and copy its output (./defconfig) to the arch/$ARCH/config/xxx_defconfig The reason being that a .config contain all the values including defaults, and

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

2015-03-11 Thread Allan Park
make distclean command means clean everything even .config Also, I think your build scripts do make xxx_defconfig (overwrite your .config) during build the boot.img. Just overwrite .config to arch/arm/config/(xxx_defconfig) Sincerely On Sun, Oct 12, 2014 at 3:34 AM, Satya vara prasad wrote: >

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

2014-10-11 Thread Satya vara prasad
All you need to do after saving your configuration there will be .config generated you need to copy that .config to arch/arm/configs/*somename_defconfig* then next time use your *somename_defconfig* for configuring kernel i.e like #make ARCH=arm *somename_defconfig* if you do this new .config file

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

2014-10-10 Thread Dave S
Hi, How do I save my kernel configuration as the default settings when building a kernel ? I use this: $ make menuconfig I save the settings when asked, but how do I make them t