#!/bin/sh
#Ubuntu内核编译脚本。
#文件夹:"linux-2.6.32.61"。
#命令:sh buildkernel.sh 2.6.32.61
#准备:
# sudo apt-get install build-essential kernel-package libncurses5-dev
cd linux-${1}
make mrproper
cp /boot/config-`uname -r` ./.config
#cp ../.config ./.config
make menuconfig
make -j3
make modules
make modules_install
make install
#修改启动项。
grub-mkconfig -o /boot/grub/grub.cfg
#参考:
#http://forum.ubuntu.org.cn/viewtopic.php?t=134404
#http://blog.csdn.net/htttw/article/details/7217706
Ubuntu内核编译脚本
时间: 2024-11-08 05:04:58