ChinaUnix.net
相关文章推荐:

buildroot

Buildroot的用法和文档由Thomas Petazzoni提供,文稿由Karsten Kruse、Ned Ludd、Martin Herren等整理。 最后修改时间:2007-09-19 02:08:10 -0700 (Wed, 19 Sep 2007) l 关于Buildroot l 获取Buildroot l 使用Buildroot l 定制目标文件系统 l 定制Busybox的配置 l 定制uClibc的配置 l Buildroot运行方式 l 使用uClibc 工具链 l 在Buildroot外部使用 uClibc 工具链 l 被下载包的...

by coolcoolrain - Linux文档专区 - 2010-01-10 14:54:33 阅读(3499) 回复(0)

相关讨论

Buildroot From GumstixDocsWiki Jump to: navigation , search +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Customers using Gumstix OpenEmbedded should go to gumstix.net and the related user wiki +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ For customers ...

by steprun - Linux文档专区 - 2008-08-11 16:43:13 阅读(1320) 回复(0)

用更多软件扩充buildroot 一。Package目录首先在package目录下,添加软件目录。如foo. 二。Config.in 文件然后,创建一个名为Config.in 的文件。它基本上包括: config BR2_PACKAGE_FOO bool "foo" help This is a comment that explains what foo is. http://foosoftware.org/foo/ 最后,你必须添加新foo/Config.in到package/Config.in 。 if !BR2_PACKAGE_BUSYBOX_HIDE_OTHERS source "package/procps/Config...

by abcdefgl123 - Linux文档专区 - 2009-07-29 14:18:20 阅读(1625) 回复(0)

我用buildroot-2009.02在redhat9.0 (x86) 下 编译PowerPC下的交叉编译环境, dl目录文件为: gcc-4.3.2.tar.bz2 gmp-4.2.2.tar.bz2 linux-2.6.28.4.tar.bz2 mpfr-2.3.2.tar.bz2 uClibc-0.9.30.tar.bz2 #make menuconfig ........ #make 当编译到gcc-4.3.2时出现错误,找不到libgcc.a ............. make[1]: Entering directory `/home/dyt/buildroot-2009.02/toolchain_build_powerpc/uClibc-0.9.30' GEN ...

by nflx - 嵌入式开发 - 2009-03-18 11:12:46 阅读(2924) 回复(1)

openwrt 包结构 如果要修改文件 系统 中的etc/rc.d/rcS文件 那么要按照一下步骤进行 最终的文件系统位置: build_mips/root/etc/rc.d/rcS 实际的修改位置 /package/base-files/default/etc/rc.d/rcS 修改后重新编译前要把下面的目录删除 rm -fr build_mips/linux-2.6-ar91xx/base-files 重新编译: make 重新配置kernel并编译 修改kernel的配置文件,位于: ap81-openwrt/target/linux/ar91xx-2.6/config 然后将下面的目录删除 rm...

by hddnwpu - Linux文档专区 - 2008-10-29 18:18:32 阅读(871) 回复(0)

Buildroot on Ubuntu Getting a Linux machine configured to build the Buildroot isn't that hard. The key is knowing what the package manager of your particular Linux distro calls the various packages required to build software. On Ubuntu 6.06, Here's the list of packages that you need to fetch and install: Contents [hide] 1 To Build the Buildroot 2 Pre-build requirements 3 Post-build requirements 4 ...

by JordonWu - Linux文档专区 - 2007-08-09 19:16:39 阅读(763) 回复(0)

http://buildroot.uclibc.org/downloads/snapshots/buildroot-snapshot.tar.bz2 我下载 buildroot-snapshot.tar.bz2 在解压 cd buildroot make menuconfig // 设定方式照 http://opencsl.openfoundry.org/Lab01_intro.rst.html make 不过编译很久编译出来并没有出现上面网址所说的 在 build_arm/staging_dir/usr/bin 编译完没有出现 build_arm 文件夹 还有想知道制作 toolchain 还有什么比较好用方法?

by shihyu - 嵌入式开发 - 2010-01-25 09:20:21 阅读(1843) 回复(2)

buildroot编译环境 它其实就是一个脚本和补丁的集合,它是一个针对uClibc的交叉编译环境,里面集成了gtk,directFB,Qt embedded,jpeg库等 ,对于每个包,包括Config.in和 .mk文件。 对于每一个包,Makefile的流程是下载 ,解压 ,patch ,configure , make , install 。 这里面最主要的是patch和Config.in,patch解决了source在交叉编译环境下所需要的修改,Congin.in解决了依赖关系。 Buildroot的目录结构如下: package : 各...

by lawrencekang - Linux文档专区 - 2009-10-31 11:21:54 阅读(4676) 回复(0)

大家好,我用buildroot做了个小系统,但启动到这就没反应了.有谁知道原因吗?谢谢了,我很菜:emn28: .................................................................................. TCP established hash table entries: 8192 (order: 4, 65536 bytes) TCP bind hash table entries: 8192 (order: 3, 32768 bytes) TCP Hash tables configured (established 8192 bind 8192) TCP reno registered Unpacking initramfs...<6>S...

by abcdefgl123 - 内核源码 - 2007-07-21 15:46:18 阅读(2439) 回复(2)

我用的是buildroot-0.9.27.tar.gz,编辑器是gcc-4.0 root@jiaxiao:~/buildroot# make menuconfig make -C package/config ncurses conf mconf make[1]: Entering directory `/root/buildroot/package/config' make[1]: “conf”是最新的。 gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DCURSES_LOC="" -I. -c mconf.c -o mconf.o mconf.c:104: 错误:对 ‘current_menu’ 的静态声明出现在非静态声明之后...

by 一个小角色 - 内核/嵌入技术 - 2006-03-15 14:13:06 阅读(1863) 回复(1)

我用的是buildroot-0.9.27.tar.gz,编辑器是gcc-4.0 root@jiaxiao:~/buildroot# make menuconfig make -C package/config ncurses conf mconf make[1]: Entering directory `/root/buildroot/package/config' make[1]: “conf”是最新的。 gcc -Wall -Wstrict-prototypes -O2 -fomit-frame-pointer -DCURSES_LOC="" -I. -c mconf.c -o mconf.o mconf.c:104: 错误:对 ‘current_menu’ 的静态声明出现在非静态声明之后...

by 一个小角色 - 内核源码 - 2006-03-15 14:13:06 阅读(1443) 回复(1)