arm-linux-gcc4.4.3编译s3c2410平台linux内核
写在前面:2.6.14版本的内核用arm-linux-gcc4.4.3没有编译成功,下载2.6.37版本的内核用arm-linux-gcc4.4.3编译通过。
一、首先下载linux内核:
linux-2.6.14.tar.bz2 下载地址:http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.14.tar.bz2
二、解压linux-2.6.14.tar.bz2:
tar -jxvf linux-2.6.14.tar.bz2
三、配置Makefile文件:
1、打开源码根目录下的Makefile文件:
gedit Makefile
修改Makefile文件:
ARCH ?= arm
CROSS_COMPILE ?= arm-linux-
2、查看目录结构:
ls -l linux-2.6.14/arch/arm/
drwxrwxr-x 4 mlx mlx 4096 Oct 28 2005 boot
drwxrwxr-x 2 mlx mlx 4096 Oct 28 2005 common
drwxrwxr-x 2 mlx mlx 4096 Oct 28 2005 configs
-rw-rw-r-- 1 mlx mlx 21221 Oct 28 2005 Kconfig
-rw-rw-r-- 1 mlx mlx 3845 Oct 28 2005 Kconfig.debug
drwxrwxr-x 2 mlx mlx 4096 Oct 28 2005 kernel
drwxrwxr-x 2 mlx mlx 4096 Oct 28 2005 lib
... ...
drwxrwxr-x 2 mlx mlx 4096 Oct 28 2005 mach-s3c2410
... ...
可以看到该内核支持s3c2410芯片。
3、查看芯片的默认配置文件:
ls -l linux-2.6.14/arch/arm/configs/
-rw-rw-r-- 1 mlx mlx 18719 Oct 28 2005 rpc_defconfig
-rw-rw-r-- 1 mlx mlx 20543 Oct 28 2005 s3c2410_defconfig
-rw-rw-r-- 1 mlx mlx 16901 Oct 28 2005 shannon_defconfig
-rw-rw-r-- 1 mlx mlx 21104 Oct 28 2005 shark_defconfig
-rw-rw-r-- 1 mlx mlx 18173 Oct 28 2005 simpad_defconfig
-rw-rw-r-- 1 mlx mlx 13382 Oct 28 2005 smdk2410_defconfig
-rw-rw-r-- 1 mlx mlx 28956 Oct 28 2005 spitz_defconfig
-rw-rw-r-- 1 mlx mlx 17936 Oct 28 2005 versatile_defconfig
四、编译内核:
1、拷贝配置文件:
cd linux-2.6.14
cp -f arch/arm/configs/s3c2410_defconfig .config
2、make menuconfig
make menuconfig出错
(1)、Makefile:450: *** mixed implicit and normal rules: deprecated syntax
(2)、make: *** No rule to make target 'menuconfig'. Stop.
针对(1),是由于我的系统的make工具太新,make的旧版规则已经无法兼容新版。按照以下方式,问题得到解决:
在makefile中修改:
config %config: scripts_basic outputmakefile FORCE
改为:
%config: scripts_basic outputmakefile FORCE
修改/ %/: prepare scripts FORCE(错)
为:%/: prepare scripts FORCE(对)
如果正确不做修改
修改后继续make menuconfig,又出现错误:
You must install ncurses-devel in order
>> to use 'make menuconfig'
安装:
sudo apt-get install libncurses5-dev
安装完毕后再次执行make menuconfig即可运行
选择 Load an Alternate Configation File 回车
选择.config
选择 save an Alternate Configation File 回车
此处显示的是我们刚选择的defconfig文件路径,删除掉,改为linux 2.6.26 解压路径下的.config(XXXXXX/.config)
3、出现错误:arch/arm: Is a directory. Stop.
原因:ARCH ?= arm这句话的arm后出现了空格
make zImage 开始编译,编译成功会生成zImage文件
出错
arch/arm/mm/alignment.c: In function 'proc_alignment_write':
arch/arm/mm/alignment.c:119: error: read-only variable '__r2' used as 'asm' output
arch/arm/mm/alignment.c:119: error: read-only variable '__r2' used as 'asm' output
arch/arm/mm/alignment.c:119: error: read-only variable '__r2' used as 'asm' output
arch/arm/mm/alignment.c:119: error: read-only variable '__r2' used as 'asm' output
scripts/Makefile.build:193: recipe for target 'arch/arm/mm/alignment.o' failed
make[1]: *** [arch/arm/mm/alignment.o] Error 1
Makefile:784: recipe for target 'arch/arm/mm' failed
make: *** [arch/arm/mm] Error 2
网上说是因为arm-linux-gcc版本过高导致的,用3.4.1版本。
五、下载2.6.37内核,按照上面的方式重新make:
报错
Can't use 'defined(@array)' (Maybe you should just omit the defined()?) at kernel/timeconst.pl line 373.
/home/mlx/ArmLinux/linux-2.6.37/kernel/Makefile:139: recipe for target 'kernel/timeconst.h' failed
make[1]: *** [kernel/timeconst.h] Error 255
Makefile:914: recipe for target 'kernel' failed
make: *** [kernel] Error 2
解决:将kernel/timeconst.pl中第373行的defined()去掉只留下@val就可以了
继续make,报错:
drivers/leds/leds-h1940.c: In function 'h1940_greenled_set':
drivers/leds/leds-h1940.c:33: error: implicit declaration of function 'h1940_latch_control'
scripts/Makefile.build:250: recipe for target 'drivers/leds/leds-h1940.o' failed
make[2]: *** [drivers/leds/leds-h1940.o] Error 1
scripts/Makefile.build:380: recipe for target 'drivers/leds' failed
make[1]: *** [drivers/leds] Error 2
Makefile:914: recipe for target 'drivers' failed
make: *** [drivers] Error 2
直接把h1940_latch_control()函数注销掉,具体修解决方法还不知道。
继续make,完成后生成了vmlinux。
arm-linux-gcc4.4.3编译s3c2410平台linux内核的更多相关文章
- Linux下编译静态MinGW环境,编译windows平台Qt程序(使用MXE)
参考链接: MXE.>大多数程序都是在windows平台下开发的程序.windows 在现实中也是绕不过的一个系统平台,做为受过几年VC,MFC”虐待”的程序员,在做为一个程序员之前是一位Lin ...
- 驱动开发学习笔记. 0.04 linux 2.6 platform device register 平台设备注册 1/2 共2篇
驱动开发读书笔记. 0.04 linux 2.6 platform device register 平台设备注册 1/2 共2篇下面这段摘自 linux源码里面的文档 : Documentatio ...
- Linux就这个范儿 第16章 谁都可以从头再来--从头开始编译一套Linux系统 nsswitch.conf配置文件
Linux就这个范儿 第16章 谁都可以从头再来--从头开始编译一套Linux系统 nsswitch.conf配置文件 朋友们,今天我对你们说,在此时此刻,我们虽然遭受种种困难和挫折,我仍然有一个梦 ...
- <摘录>Linux 环境下编译 0.11版本内核 kernel
系统环境:Fedora 13 + gcc-4.4.5 最近在看<linux内核0.11完全注释>一书,由于书中涉及汇编语言的地方众多,本人在大学时汇编语言学得一塌糊涂,所以实在看不下去了, ...
- GCC-4.6.3编译linux2.6.32.12内核出现“重复的成员‘page’”错误的解决方法
使用gcc4.6.3编译linux2.6.32.12内核出现错误如下: In file included from drivers/net/igbvf/ethtool.c:36:0: drivers/ ...
- 【转】Linux(ubuntu14.04)上编译Android4.4源码的环境搭建及编译全过程
原文网址:http://jileniao.net/linux-android-building.html sublime text让我伤心.本来很信任sublime text的自动保存功能,之前使用一 ...
- 用VS2013+VELT-0.1.4进行海思平台 Linux内核 的开发
快乐虾 http://blog.csdn.net/lights_joy/(QQ群:Visual EmbedLinux Tools 375515651) 欢迎转载,但请保留作者信息 本文仅适用于vs20 ...
- [转载]Linux 环境下编译 0.11版本内核 kernel
最近在看<.如果Clobber/Modify 为空,则其前面的冒号(:)必须省略. 2.如果Output,Input,Clobber/Modify都为空,Output,Input之前的冒号(:) ...
- linux下使用gcc编译运行C程序
gcc(GNU Compiler Collection)是Linux下最常用的C语言编译器,是GNU项目中符合ANSI C标准的编译系统,能够编译用C.C++和Object C等语言编写的程序. 在 ...
随机推荐
- Oracle 在Drop表时的Cascade Constraints
http://hi.baidu.com/rebooo/item/12b500b130022bf263388e69假设A为主表(既含有某一主键的表),B为从表(即引用了A的主键作为外键).则当删除A表时 ...
- DDR电源硬件设计要点
一.DDR电源简介 1. 电源 DDR的电源可以分为三类: a.主电源VDD和VDDQ,主电源的要求是VDDQ=VDD,VDDQ是给IO buffer供电的电源,VDD是给但是一般的使用中都是把VDD ...
- BC 1.2 模式(Battery Charging Specification 1.2)
转自:http://blog.csdn.net/liglei 转自:http://blog.csdn.net/liglei/article/details/22852755 USB BC1.2有以下三 ...
- keras----resnet-vgg-xception-inception
来源: https://www.pyimagesearch.com/2017/03/20/imagenet-vggnet-resnet-inception-xception-keras/ classi ...
- PHP下最好用的富文本HTML过滤器:HTMLPurifier使用教程
HTMLPurifier是我目前用过最好的PHP富文本HTML过滤器了,采用了白名单机制,有效杜绝了用户提交表单中的非法HTML标签,从而可以防止XSS攻击! HTMLPurifier项目地址:htt ...
- iphone开发之获取网卡的MAC地址和IP地址
本文转载至 http://blog.csdn.net/arthurchenjs/article/details/6358489 这是获取网卡的硬件地址的代码,如果无法编译通过,记得把下面的这几个头文件 ...
- 再看GS接包过程
再看GS接包过程 bool GameServer::ProcessLoop(packet& rPkt) { if(false == m_spDataLayer->Recv(rPkt)) ...
- 几句话搞懂URI、URL、URN之间的关系
1.URI,是uniform resource identifier,统一资源标识符,用来唯一的标识一个资源. 2.RL是uniform resource locator,统一资源定位器,它是一种具体 ...
- 解决集群搭建找不到datanode的问题
解决"no datanode to stop"问题当我停止Hadoop时发现如下信息: no datanode to stop原因:每次namenode format会重新创 ...
- 九度OJ 1045:百鸡问题 (基础题)
时间限制:1 秒 内存限制:32 兆 特殊判题:否 提交:8410 解决:3644 题目描述: 用小于等于n元去买100只鸡,大鸡5元/只,小鸡3元/只,还有1/3元每只的一种小鸡,分别记为x只,y只 ...