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/download-location.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/download-location.txt')
-rw-r--r-- | docs/manual/download-location.txt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/docs/manual/download-location.txt b/docs/manual/download-location.txt new file mode 100644 index 000000000..cb6147f2b --- /dev/null +++ b/docs/manual/download-location.txt @@ -0,0 +1,26 @@ +Location of downloaded packages +=============================== + +It might be useful to know that the various tarballs that are +downloaded by the Makefiles are all stored in the +DL_DIR+ which by +default is the +dl+ directory. It's useful, for example, if you want +to keep a complete version of Buildroot which is known to be working +with the associated tarballs. 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 accessed by creating a symbolic +link from the +dl+ directory to the shared download location: + +----------------- + $ ln -s <shared download location> dl +----------------- + +Another way of accessing a shared download location is to create the ++BUILDROOT_DL_DIR+ environment variable. If this is set, then the +value of DL_DIR in the project is overridden. The following line +should be added to +<~/.bashrc>+. + +----------------- + $ export BUILDROOT_DL_DIR <shared download location> +----------------- |