码迷,mamicode.com
首页 > 其他好文 > 详细

Ubuntu内核编译脚本

时间:2014-07-24 22:03:12      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:blog   http   文件   art   for   c   linux   ar   

#!/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内核编译脚本,布布扣,bubuko.com

Ubuntu内核编译脚本

标签:blog   http   文件   art   for   c   linux   ar   

原文地址:http://www.cnblogs.com/zhangshaojian/p/3866175.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!