全文预览已结束
下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
编译busybox的组合:busybox-1.0.0 arm-linux-gcc-2.95.3 (AT91rm9200开发板)经典参考:/downloads/ 下载busybox/balloon/releases/v0.7/roots/ 文件系统制作移植基本过程:1. 到/downloads/busybox-1.7.3.tar.bz2下载busybox;2. 解压busybox1.7.3 tar jxvf busybox-1.7.3.tar.bz23. make defconfig4. make menuconfig 在build options中选择Build busybox as a static binary 主要是C库的连接方式,安装目录等。5. make6. 创建rootfs目录7. make install编译过程可能出现以下错误,解决方法如下:可能会出现的错误:1. 出现如下错误 CC miscutils/taskset.omiscutils/taskset.c:17: error: parse error before * tokenmiscutils/taskset.c:18: warning: function declaration isnt a prototypemiscutils/taskset.c: In function _from_cpuset:miscutils/taskset.c:22: error: CPU_SETSIZE undeclared (first use in this function)miscutils/taskset.c:22: error: (Each undeclared identifier is reported only oncemiscutils/taskset.c:22: error: for each function it appears in.)miscutils/taskset.c:26: warning: implicit declaration of function CPU_ISSETmiscutils/taskset.c:26: error: mask undeclared (first use in this function)miscutils/taskset.c: In function taskset_main:miscutils/taskset.c:47: error: cpu_set_t undeclared (first use in this function)miscutils/taskset.c:47: error: parse error before maskmiscutils/taskset.c:68: warning: implicit declaration of function CPU_ZEROmiscutils/taskset.c:68: error: new_mask undeclared (first use in this function)miscutils/taskset.c:69: error: CPU_SETSIZE undeclared (first use in this function)miscutils/taskset.c:71: warning: implicit declaration of function CPU_SETmiscutils/taskset.c:78: error: mask undeclared (first use in this function)make1: * miscutils/taskset.o Error 1make: * miscutils Error 2make menuconfig找到Miscellaneous Utilities,去掉task set2. 如下错误:time.clibbb/time.c:20: error: CLOCK_MONOTONIC undeclared (first use in this function)make menuconfig去掉Busybox Settings-Busybox Library Tuning-Use clock_gettie(CLOCK_MONOTONIC) syscall3.出现如下错误:In file included from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/fs.h:12, from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/capability.h:17, from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/binfmts.h:5, from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/sched.h:9, from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/net/inetpeer.h:14, from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/net/route.h:28, from /busybox-1.01/networking/route.c:42:/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/wait.h:4: warning: WNOHANG redefined/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/bits/waitflags.h:26: warning:this is the location of the previous definition/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/wait.h:5: warning: WUNTRACED redefined/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/bits/waitflags.h:27: warning:this is the location of the previous definitionIn file included from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/sched.h:77, from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/net/inetpeer.h:14, from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/net/route.h:28, from /busybox-1.01/networking/route.c:42:/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/time.h:108: warning: FD_SET redefined/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/sys/select.h:83: warning: this is the location of the previous definition/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/time.h:109: warning: FD_CLR redefined/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/sys/select.h:84: warning: this is the location of the previous definition/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/time.h:110: warning: FD_ISSET redefined/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/sys/select.h:85: warning: this is the location of the previous definition/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/linux/time.h:111: warning: FD_ZERO redefined/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/sys/select.h:86: warning: this is the location of the previous definitionIn file included from /busybox-1.01/networking/route.c:42:/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/net/route.h:34: warning: #warning This file is not supposed to be used outside of kernel.In file included from /usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/netdb.h:38, from /busybox-1.01/include/libbb.h:36, from /busybox-1.01/include/busybox.h:54, from /busybox-1.01/networking/route.c:44:/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/bits/siginfo.h:34: redefinition of union sigval/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/bits/siginfo.h:37: warning: redefinition of sigval_t/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/asm/siginfo.h:11: warning: sigval_t previously declared here/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/bits/siginfo.h:274: redefinition of struct sigevent/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/bits/siginfo.h:289: warning: redefinition of sigevent_t/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/sys-include/asm/siginfo.h:211: warning: sigevent_t previously declared here/usr/local/arm/2.95.3/lib/gcc-lib/arm-linux/2.95.3/././././arm-linux/include/bits/siginfo.h:298: parse error before 0In file included from /busybox-1.01/include/busybox.h:54, from /busybox-1.01/networking/route.c:44:/busybox-1.01/include/libbb.h:112: warning: declaration of flags shadows global declaration/busybox-1.01/include/libbb.h:113: warning: declaration of flags shadows global declaration/busybox-1.01/include/libbb.h:135: warning: declaration of flags shadows global declaration/busybox-1.01/include/libbb.h:251: warning: declaration of flags shadows global declaration/busybox-1.01/include/libbb.h:256: redefinition of struct sysinfo/busybox-1.01/include/libbb.h:272: warning: declaration of info shadows global declaration/busybox-1.01/include/libbb.h:309: warning: declaration of flags shadows global declaration/busybox-1.01/include/libbb.h:440: warning: declaration of flags shadows global declaration/busybox-
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 如何在众多候选人中脱颖而出如何准备AI面试问题
- 广告公司年度客户开发及创意策划方案
- 库尔勒求职面试实战指南
- (完整版)苏教六年级下册期末数学试卷(比较难)解析
- 2025年新加坡保险面试题及答案
- 工程管理基础手册施工管理技术详解
- 2025重庆荣昌区锐德科技集团有限公司招聘5人笔试历年参考题库附带答案详解
- 2025秋季江苏宿迁市钟吾大数据发展集团有限公司招聘笔试工作笔试历年参考题库附带答案详解
- 2025甘肃省医盛健康产业发展有限公司招聘笔试历年参考题库附带答案详解
- 2025浙江绍兴市智慧城市集团有限公司下属绍兴市城发应急科技有限公司第一批人员招聘笔试及人员笔试历年参考题库附带答案详解
- 幼儿园安全跳绳课件大班
- 公司廉洁管理制度模板
- 苏晋能源控股有限公司招聘笔试题库2025
- 出租车全国题库题库(500道)
- 临床试验监查核心要点培训
- 性病艾滋病培训课件
- 2025单证员工作总结
- 安全管理制度(敬老院)
- 2025年及未来5年中国氙气行业市场发展数据监测及投资战略规划研究报告
- 焊工技术水平提升计划
- 2025年广西公需科目试题1卷
评论
0/150
提交评论