Chinaunix首页 | 论坛 | 博客
  • 博客访问: 15498529
  • 博文数量: 2005
  • 博客积分: 11986
  • 博客等级: 上将
  • 技术积分: 22535
  • 用 户 组: 普通用户
  • 注册时间: 2007-05-17 13:56
文章分类

全部博文(2005)

文章存档

2014年(2)

2013年(2)

2012年(16)

2011年(66)

2010年(368)

2009年(743)

2008年(491)

2007年(317)

分类: LINUX

2007-05-17 16:23:11

嵌入式Linux开发:之1-内核编译(作者:gliethttp)

1.解压内核
  [root@gliethttp root]# tar zxvf linux-2.4.19-rmk7.tar.gz
2.编译
  <1>修改Makefile文件
     ARCH :=arm ;表示目标板为arm
     CROSS_COMPILE=交叉编译工具的地址
     设置交叉编译工具的地址,例如CROSS_COMPILE= /usr/local/arm/2.95.3/bin/arm-linux-
  <2>清理
  [root@gliethttp root]# make mrproper
  <3>配置默认
  [root@gliethttp root]# make at91rm9200dk_config
  [root@gliethttp root]# make oldconfig
  [root@gliethttp root]# make menuconfig
  [root@gliethttp root]# make clean
  [root@gliethttp root]# make dep
  [root@gliethttp root]# make Image
  [root@gliethttp root]# /usr/local/arm/2.95.3/bin/arm-linux-objcopy -O binary -S vmlinux linux.bin
  [root@gliethttp root]# gzip linux.bin
  [root@gliethttp root]# mkimage -A arm -O linux -C gzip -a 0x20008000 -e 0x20008000 -d linux.bin.gz uImage
  [root@gliethttp root]# cp uImage /tftpboot

阅读(843) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~