我有一个关于改变内核频率的问题。
我使用以下方法编译内核:
make menuconfig(do some changes in config)
(under Processor type and features->Timer frequency to change frequency)
1.fakeroot make-kpkg --initrd --append-to-version=-mm kernel-image kernel-headers
2.export CONCURRENCY_LEVEL=3
3.sudo dpkg -i linux-image-3.2.14-mm_3.2.14-mm-10.00.Custom_amd64.deb
4.sudo dpkg -i linux-headers-3.2.14-mm_3.2.14-mm-10.00.Custom_amd64.deb
然后说如果我想改变内核的频率,
我所做的是:
I replaced .config file with my own config file
(since I want to do this automatically without opening make menuconfig ui)
然后我再次重复步骤1,2,3,4
反正我不需要重复上述4个步骤吗?
非常感谢!!!!