



全文预览已结束
下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
编译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. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 关于文明礼貌的演讲稿范文
- 2025年凝血因子VIII、IX项目发展计划
- 2025民航博物馆面向社会招聘应届毕业生2人考前自测高频考点模拟试题及答案详解(各地真题)
- 2025甘肃科源电力有限公司高校毕业生招聘40人考前自测高频考点模拟试题及答案详解一套
- 2025年度南阳开元学校高中部招聘教师10人模拟试卷及答案详解(名师系列)
- 2025年3月湖北东津国投集团及子公司社会招聘拟聘用人员模拟试卷附答案详解(模拟题)
- 2025年陕西国网三批招聘已发布(59人)考前自测高频考点模拟试题及答案详解(夺冠)
- 2025年广西南宁市考试招聘中小学教师笔试有关事项模拟试卷及一套答案详解
- 农村私人土地转让协议2篇
- 2025春季中国太平实习生招聘模拟试卷及答案详解(名校卷)
- 红十字协会AED课件
- 汽车产品安全管理制度
- 企业风险防控制度汇编与实施指南
- 全国自考2025年4月03708中国近代史纲要真题及答案
- 2025-2026学年冀人版(2024)小学科学二年级上册(全册)教学设计(附教材目录 )
- 2025-2030年中国农机行业市场深度调研及前景趋势与投资研究报告
- 皮线光缆施工规范
- 安全生产法律法规、标准和其他要求清单
- 共享单车进校园项目计划书
- 先进自动化生产线整体采购及售后服务协议
- 中国健康管理与健康产业发展报告(2025)解读
评论
0/150
提交评论