569db40574
The structure of the buildroot manual is not always clear. There is a large number of chapters, and some chapters seem to overlap. The distinction between general usage and developer information is not always clear. This patch restructures the manual into four large parts: - getting started - user guide - developer guide - appendix Except for the names of these parts, the section names are not yet changed. Content-wise there are no changes yet either. This will be handled in subsequent patches. In order to achieve the introduction of a new level 'parts' above 'chapters', the section indicators (=, ==, ===, ...) of several sections have to be moved one level down. Additionally, the leveloffset indication to asciidoc has to be removed. Finally, to maintain more or less the same level of detail in the table of contents, the toc.section.depth attribute is reduced as well. Note that for some sections, less detail is visible now. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
26 lines
1.1 KiB
Plaintext
26 lines
1.1 KiB
Plaintext
// -*- mode:doc; -*-
|
|
// vim: set syntax=asciidoc:
|
|
|
|
==== Location of downloaded packages
|
|
|
|
The various tarballs that are downloaded by Buildroot are all stored
|
|
in +BR2_DL_DIR+, which by default is the +dl+ directory. If you want
|
|
to keep a complete version of Buildroot which is known to be working
|
|
with the associated tarballs, you can make a copy of this directory.
|
|
This will allow you to regenerate the toolchain and the target
|
|
filesystem with exactly the same versions.
|
|
|
|
If you maintain several Buildroot trees, it might be better to have a
|
|
shared download location. This can be achieved by pointing the
|
|
+BR2_DL_DIR+ environment variable to a directory. If this is
|
|
set, then the value of +BR2_DL_DIR+ in the Buildroot configuration is
|
|
overridden. The following line should be added to +<~/.bashrc>+.
|
|
|
|
-----------------
|
|
$ export BR2_DL_DIR <shared download location>
|
|
-----------------
|
|
|
|
The download location can also be set in the +.config+ file, with the
|
|
+BR2_DL_DIR+ option. Unlike most options in the .config file, this value
|
|
is overridden by the +BR2_DL_DIR+ environment variable.
|