Go to file
Yann E. MORIN e136ca2083 configs/raspberrypi: bump kernel version
Upstream has been playing evil-rebase on their tree, so they now
no longer have the changeset we are currently referencing.

They have now agreed to merge instead of rebasing:
    https://github.com/raspberrypi/linux/issues/584

So, update the raspberrypi_defconfig to use a new changeset that
currently exists right _now_, in the hope it will not disapear in
the future (but we'll catch it pretty fast anyway, so we'll be able
to seriously bug up upstream in that case ;-) ).

Reported-by: Jeremy Rosen <jeremy.rosen@openwide.fr>
Signed-off-by: yann.morin.1998@free.fr
Cc: Jeremy Rosen <jeremy.rosen@openwide.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
2014-05-03 21:21:28 +02:00
arch arch: add support for "corei7" Intel CPU optimisations 2014-05-03 03:39:29 +02:00
board update microblaze qemu boards to 3.14 2014-05-01 23:41:58 +02:00
boot uboot: bump to version 2014.04 2014-04-26 11:27:06 +02:00
configs configs/raspberrypi: bump kernel version 2014-05-03 21:21:28 +02:00
docs manual: fix C++ support in libc case, fix indentation 2014-05-02 14:58:15 +02:00
fs system: add ability to pass additional users tables. 2014-04-21 14:07:31 +02:00
linux update microblaze qemu boards to 3.14 2014-05-01 23:41:58 +02:00
package p11-kit: bump to version 0.20.2 2014-05-03 21:04:26 +02:00
support support: properly check bash is available 2014-04-20 11:13:36 +02:00
system system/Config.in: fix custom skeleton help text 2014-05-02 09:25:02 +02:00
toolchain toolchain: enable internal for aarch64 2014-04-24 15:21:13 +02:00
.defconfig
.gitignore
CHANGES Disable o32 ABI for MIPS64 architectures 2014-03-28 12:51:46 +01:00
Config.in kernel headers: remove deprecated versions 3.6 and 3.7 2014-05-01 23:35:06 +02:00
Config.in.legacy kernel headers: remove deprecated versions 3.6 and 3.7 2014-05-01 23:35:06 +02:00
COPYING
Makefile Makefile: target-purgelocales: fix top-level parallel make support 2014-05-01 23:38:27 +02:00
Makefile.legacy Makefile.legacy: fix recursive invocation with BUILDROOT_DL_DIR and _CONFIG 2014-02-11 08:14:57 +01:00
README docs: Move README file to root 2014-03-03 21:28:39 +01:00

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 sort of
    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!

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@buildroot.org