|
在ML上编译2.4.22:
1、进入/usr/src,运行rm -f linux-2.4;将2.4.22源码解压至此目录,重建链接:ln -s linux-2.4.22 linux-2.4;
2、cd linux-2.4.20-1.1,直接运行:make xconfig,不是要编译,而是将现有的编译好的内核保存为文件,所以,选择菜单的最后一项:store configuration to file,就可以保存在/usr/src下,比如文件名:2.4.20config;
3、cd linux-2.4,make mrproper , make xconfig 后,先选择菜单上的:load configuration from file,导入刚才保存的设置文件2.4.20config,记得输入具体路径。开始正式编译,我只不过编译了一下ACPI支持,其它一概未动,编译后别忘了保存;接下来就是常规动作:make dep , make clean, make bzImage,make modules,make modules_install,make install, 最后:reboot. |
|