Go to file
Jeremy Kerr 8fb574fdc8 package/busybox: Add facility for DHCP hooks
The (u)dhcpc hook installed by the busybox package configures the
network and exits. If we want to do anything further with a DHCP lease,
we'd have to replace the script entirely.

This change introduces a .d directory for hooks (based on the script
filename), which are executed after the interface configuration. This
allows packages to drop a script file in the .d directory to perform
actions on DHCP events.

We'll use this in a later change to notify petitboot of DHCP boot
information.

[Thomas: update to latest Buildroot, fix indentation.]

Signed-off-by: Jeremy Kerr <jk@ozlabs.org>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2015-01-02 19:24:57 +01:00
arch Turn the static lib option into a choice with more options 2014-12-12 00:09:02 +01:00
board defconfigs: bump minnowboard-max kernel to 3.18.1 2015-01-02 00:02:23 +01:00
boot boot/uboot: bump to version 2014.10 2014-12-21 23:24:09 +01:00
configs defconfigs: bump sheevaplug kernel to 3.18.1 2015-01-02 00:02:23 +01:00
docs docs/manual: document LIBFOO_INSTALL_IMAGES 2015-01-01 22:26:58 +01:00
fs
linux linux: change Device Tree prompt 2015-01-02 14:44:15 +01:00
package package/busybox: Add facility for DHCP hooks 2015-01-02 19:24:57 +01:00
support support/libtool: add patch for newer versions 2014-12-21 13:21:56 +01:00
system
toolchain toolchain-external: add hashes for Blackfin toolchains 2014-12-28 22:41:04 +01:00
.defconfig
.gitignore
CHANGES
Config.in Build shared libraries only as the default 2014-12-12 00:09:41 +01:00
Config.in.legacy package/xbmc-addon-xvdr: rename to kodi-addon-xvdr 2014-12-27 19:58:29 +01:00
COPYING
Makefile Makefile: improve detection of make "-s" flag 2015-01-02 16:34:15 +01:00
Makefile.legacy
README

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