linux内核配置、编译

环境

系统:Ubuntu 16.04

内核:Linux 2.6.35.7

 

配置和编译

1.修改Makefile

(1)修改交叉编译工具链

CROSS_COMPILE	?= /home/linuxwei/toolchain/arm-2009q3/bin/arm-none-linux-gnueabi-

(2)修改架构

ARCH		?= arm

2.配置

第一步:执行make x210ii_qt_defconfig

第二步:执行make menuconfig

注:执行两步配置是为了得到.config文件

3.编译

执行make

注1:清空用make distclean。

注2:编译完成后生成的内核镜像不在源码树的根目录下,在arch/arm/boot目录下,得到的镜像名是zImage。

 

问题记录

1.在make menuconfig时报

         *** Unable to find the ncurses libraries or the
         *** required header files.
         *** 'make menuconfig' requires the ncurses libraries.
         *** 
         *** Install ncurses (ncurses-devel) and try again.
         *** 
这个错误。

解决:sudo apt-get install ncurses-dev

原因:没有安装ncurses库

2.在make时报

        Can't use 'defined(@array)' (Maybe you should just omit the defined()?) at kernel/timeconst.pl line 373.

错误

解决:将kernel/timeconst.pl目录下的第373行

 if (!defined(@val)) { 

去掉defined(),改为

if (!@val) {

后,重新编译成功。

原因:查了一下更新,发现其中有一项是perl版本升级到了 v5.22.1,然后查了perl官方文档,发现官网因为一个bug,该版本将defined(@array)去掉了。可以直接使用数组判断非空。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值