Go to file
Thomas Petazzoni c5a195e403 imagemagick: add patch to fix libxml2 issue and remove useless patch
The patch imagemagick-6.6.4-add-errno-h-if-argz-h-does-not-exist.patch
was not applied anymore due to a difference in the version number, and
it didn't prevent imagemagick to be built. It was introduced several
years ago together with the ImageMagick package itself, so presumably
it is no longer needed.

The new patch allows ImageMagick to use the correct xml2-config script
to get the proper location for XML2 headers and libraries. Otherwise,
-I/usr/include/libxml2 is found in the compile flags.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
2010-12-22 22:14:36 +01:00
board board: Add a Qemu mipsel Malta board 2010-12-17 16:54:51 +01:00
boot u-boot: add CROSS_COMPILE/ARCH when building host tools 2010-12-16 15:06:45 +01:00
configs board: Add a Qemu mipsel Malta board 2010-12-17 16:54:51 +01:00
docs documentation: Update to explain how board support works 2010-12-16 14:35:21 +01:00
fs Add network scripting folders to fs/skeleton 2010-12-16 15:16:31 +01:00
linux linux: fix linux-% shortcut targets 2010-12-19 21:16:37 +01:00
package imagemagick: add patch to fix libxml2 issue and remove useless patch 2010-12-22 22:14:36 +01:00
scripts scripts: get rid of outdated buildall script 2010-10-04 11:44:08 +02:00
target xtensa: remove unused and useless skeleton patch 2010-12-17 16:51:41 +01:00
toolchain toolchain: fix multilib symlink for external toolchains 2010-12-21 13:57:11 +01:00
.defconfig
.gitignore .gitignore: ignore more patch related files 2010-11-18 12:07:23 +01:00
CHANGES qt: fix mysql module build 2010-12-22 22:08:42 +01:00
Config.in Re-add target/generic/Config.in options to menuconfig 2010-12-16 12:19:25 +01:00
COPYING
Makefile toolchain: add support for external toolchain profiles and download 2010-12-13 21:56:49 +01:00
TODO

To build and use the buildroot stuff, do the following:

1) run 'make menuconfig'
2) select the packages you wish to compile
3) run 'make'
4) wait while it compiles
5) Use your shiny new root filesystem.  Depending on which sortof
    root filesystem you selected, you may want to loop mount it,
    chroot into it, nfs mount it on your target device, burn it
    to flash, or whatever is appropriate for your target system.

You do not need to be root to build or run buildroot.  Have fun!

 -Erik

Offline build:
==============

In order to do an offline-build (not connected to the net), fetch all
selected source by issuing a
$ make source

before you disconnect.
If your build-host is never connected, then you have to copy buildroot
and your toplevel .config to a machine that has an internet-connection
and issue "make source" there, then copy the content of your dl/ dir to
the build-host.

Building out-of-tree:
=====================

Buildroot supports building out of tree with a syntax similar
to the Linux kernel. To use it, add O=<directory> to the
make command line, E.G.:

$ make O=/tmp/build

And all the output files (including .config) will be located under /tmp/build.

More finegrained configuration:
===============================

You can specify a config-file for uClibc:
$ make UCLIBC_CONFIG_FILE=/my/uClibc.config

And you can specify a config-file for busybox:
$ make BUSYBOX_CONFIG_FILE=/my/busybox.config

To use a non-standard host-compiler (if you do not have 'gcc'),
make sure that the compiler is in your PATH and that the library paths are
setup properly, if your compiler is built dynamically:
$ make HOSTCC=gcc-4.3.orig HOSTCXX=gcc-4.3-mine

Depending on your configuration, there are some targets you can use to
use menuconfig of certain packages. This includes:
$ make HOSTCC=gcc-4.3 linux-menuconfig
$ make HOSTCC=gcc-4.3 uclibc-menuconfig
$ make HOSTCC=gcc-4.3 busybox-menuconfig

Please feed suggestions, bug reports, insults, and bribes back to the
buildroot mailing list: buildroot@uclibc.org