On Tue, Jan 4, 2011 at 10:38 PM, Yang, Chengwei <[email protected]> wrote: > I noticed meego using rpmbuild to build kernel-netbook package, and has two > config file: config-generic, config-netbook for building kernel-netbook. > If I want to configure kernel myself, is there any way to translate .config > to config-generic or config-netbook ?
I'm not sure I understand your question... but perhaps this is the answer: $ cd /path/to/kernel-source $ make -f Makefile.config kernel-netbook.config $ mkdir tmp $ cd tmp $ tar xjf ../linux-2.6.35.tar.bz2 $ cd linux-2.6.35 $ cp -i ../../kernel-netbook.config .config $ make menuconfig If you simply open and close menuconfig, your .config will match an "official" .config. -gabriel _______________________________________________ MeeGo-dev mailing list [email protected] http://lists.meego.com/listinfo/meego-dev
