



全文预览已结束
下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
编译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-2030中国热灸贴行业发展态势与供需平衡预测报告
- 2025-2030中国煤矸石市场深度调查与项目建设动向研究报告
- 2025-2030中国焖烧罐行业现状调查与投资营销模式风险报告
- 2025党政领导干部拟任县处级资格考试题及答案
- 2025临床执业医师资格考试模拟试题及答案解析
- 建筑施工合同签订前的合同主体资格审查与合规性审查
- 个人租房合同模板:带租赁保险条款的租赁协议
- 环保自主验收意见模板编制与审核流程合同
- 离婚协议书翻译与跨国离婚法律程序指导合同
- 离婚房产分割与共同财产分割及子女抚养权协议
- 输液并发症静脉炎课件
- 综艺脱口秀节目创意策划及实施方案
- 浪浪山小妖怪-2025~2026学年美术开学第一课《浪浪山小妖怪》
- (2025年标准)盆景购销协议书
- 设计合同结算协议书范本
- 2025广东湛江市廉江市政协办公室等7个单位招聘政府雇员9人笔试参考题库附答案解析
- (2025年标准)婚后债务分离协议书
- 2025广东河源紫金县殡仪馆招聘编外人员2人笔试参考题库附答案解析
- 2025四川南充营山县医疗卫生辅助岗招募39人考试参考题库附答案解析
- 看守所巡控岗位课件
- AIGC艺术设计 课件全套 第1-8章 艺术设计的新语境:AI的介入 -AIGC艺术设计的思考与展望
评论
0/150
提交评论