diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2011-10-10 10:46:39 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-10-25 09:46:01 +0200 |
commit | 41c1cb44cd60819f8ba20024e23e431c00b279d7 (patch) | |
tree | 8ec316f1602e4e9a8fff272aeeb1a2a36eb5fdd1 /docs/manual/board-support.txt | |
parent | e55af699b5cb3d9286e19e19c8aaeb14bcdf0a38 (diff) |
manual: convert existing documentation to the asciidoc format
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Acked-by: Luca Ceresoli <luca@lucaceresoli.net>
Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Reviewed-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'docs/manual/board-support.txt')
-rw-r--r-- | docs/manual/board-support.txt | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/docs/manual/board-support.txt b/docs/manual/board-support.txt new file mode 100644 index 000000000..d1d9d6380 --- /dev/null +++ b/docs/manual/board-support.txt @@ -0,0 +1,35 @@ +Creating your own board support +=============================== + +Creating your own board support in Buildroot allows users of a +particular hardware platform to easily build a system that is known to +work. + +To do so, you need to create a normal Buildroot configuration that +builds a basic system for the hardware: toolchain, kernel, bootloader, +filesystem and a simple Busybox-only userspace. No specific package +should be selected: the configuration should be as minimal as +possible, and should only build a working basic Busybox system for the +target platform. You can of course use more complicated configurations +for your internal projects, but the Buildroot project will only +integrate basic board configurations. This is because package +selections are highly application-specific. + +Once you have a known working configuration, run +make +savedefconfig+. This will generate a minimal +defconfig+ file at the +root of the Buildroot source tree. Move this file into the +configs/+ +directory, and rename it +MYBOARD_defconfig+. + +It is recommended to use as much as possible upstream versions of the +Linux kernel and bootloaders, and to use as much as possible default +kernel and bootloader configurations. If they are incorrect for your +platform, we encourage you to send fixes to the corresponding upstream +projects. + +However, in the mean time, you may want to store kernel or bootloader +configuration or patches specific to your target platform. To do so, +create a directory +board/MANUFACTURER+ and a subdirectory ++board/MANUFACTURER/BOARDNAME+ (after replacing, of course, +MANUFACTURER and BOARDNAME with the appropriate values, in lower case +letters). You can then store your patches and configurations in these +directories, and reference them from the main Buildroot configuration. |