633 words in total, 2 minutes required. OpenWRT Buildroot是一个autotools,或者叫buildsystem,用于构建OpenWRT版本系统,这个工具可以运行在Linux,BSD和MacOSX之上。Buildroot对于字母大小写有着严格的要求,所以windows下的cygwin不能支持它。 1. 关于OpenWRT BuildrootOpenWRT Buildroot是由一系列Makefiles和patches文件组成的,它允许用户方便地生成一个交叉编译工具链toochain和根文件系统rfs。OpenWRT Buildroot是根据Buildroot修改二来的,其中,交叉编译工具链使用的是uClibc,这是一个C标准库。 交叉编译器的概念同传统的编译器的区别就在于主机和目标机的关系上 传统的编译器是运行在主机上,而生成代码也是可以跑在主机上的。例如,在一个x86架构的Linux上,编译工具链使用一个C标准库来编译代码,编译后的代码也是运行在x86的处理器上的。 那么交叉编译器可以这么认为,编译工具链是运行在host system上,然而生成的代码确实提供给target system使用,包括处理器的指令集也是target system的。例如,交叉编译器跑在x86的Linux系统上,编译后的文件是可以在MIPS32架构的某个嵌入式系统上运行的。 另外,OpenWRT的Makefile有自己的特定语法,与Linux上的Makefile存在区别,OpenWRT Makefile定义package的meta infomation,去哪下载这个package,如何便利,把编译后的二进制文件放到哪儿等等。 2. OpenWRT Buildroot特性 安装软件非常简单 使用Linux Kernel Menuconfig进行功能配置 提供集成的交叉编译工具链,如gcc,ld等 提供autotools(automake,autoconf),cmake,scons的抽象化 处理标准化的下载,补丁,配置,编译等 提供一定数量的坏包修复功能 3. Buildroot的交叉编译工具链交叉编译工具链(cross-compilation toolchain)包括三个部分: 一个编译器,gcc binary utils比如汇编器、连接器 一个C标准库:uClibc or GNU Libc or dietilbc 4. Buildroot的build序列 tools – automake, autoconf, sed, cmake toolchain/binutils – as, ld, … toolchain/gcc – gcc, g++, cpp, … target/linux – kernel modules package – core and feed packages target/linux – kernel image target/linux/image – firmware image file generation 5. 安装需要ca. 200 MB of hard disk space for OpenWrt Buildrootca. 300 MB of hard disk space for OpenWrt Buildroot + OpenWrt Feedsca. 2.1 GB of hard disk space for source packages downloaded during build from OpenWrt Feedsca. 3-4 GB of available hard disk space to build (i.e. cross-compile) OpenWrt and generate the firmware fileca. 1-4 GB of RAM to build Openwrt.(build x86’s img need 4GB RAM) ← Previous Post Next Post→ Table of Contents 1. 关于OpenWRT Buildroot2. OpenWRT Buildroot特性3. Buildroot的交叉编译工具链4. Buildroot的build序列5. 安装需要