diff options
author | Arnout Vandecappelle <arnout@mind.be> | 2014-02-04 16:18:51 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-02-09 11:02:42 +0100 |
commit | 6768021c930fe5f7753f274436506792f87ce4da (patch) | |
tree | 67ceb57f888c5432b4f5dfd7a9f84c5e6f80f02c /docs/manual | |
parent | 674fd4f83464a1449a0db8bb4e2584b7b6f6a051 (diff) | |
download | buildroot-6768021c930fe5f7753f274436506792f87ce4da.tar.gz buildroot-6768021c930fe5f7753f274436506792f87ce4da.zip |
infra: replace BUILDROOT_DL_DIR with BR2_DL_DIR.
To make the naming consistent (all user-visible options should be
prefixed BR2_).
An entry is added to Makefile.legacy to warn users who have set
BUILDROOT_DL_DIR but not BR2_DL_DIR.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'docs/manual')
-rw-r--r-- | docs/manual/common-usage.txt | 2 | ||||
-rw-r--r-- | docs/manual/download-location.txt | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/docs/manual/common-usage.txt b/docs/manual/common-usage.txt index 1d15c050ec..127060dc35 100644 --- a/docs/manual/common-usage.txt +++ b/docs/manual/common-usage.txt @@ -80,7 +80,7 @@ to +make+ or set in the environment: configuration interface, so through the Buildroot +.config+ file; this is the recommended way of setting it. + -* +BUILDROOT_DL_DIR+ to override the directory in which +* +BR2_DL_DIR+ to override the directory in which Buildroot stores/retrieves downloaded files + Note that the Buildroot download directory can also be set from the diff --git a/docs/manual/download-location.txt b/docs/manual/download-location.txt index 4aa8cead3e..db00449617 100644 --- a/docs/manual/download-location.txt +++ b/docs/manual/download-location.txt @@ -13,14 +13,14 @@ 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 -+BUILDROOT_DL_DIR+ environment variable to a directory. If this is ++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 BUILDROOT_DL_DIR <shared download location> + $ export BR2_DL_DIR <shared download location> ----------------- The download location can also be set in the +.config+ file, with the -+BR2_DL_DIR+ option. This value is overridden by the +BUILDROOT_DL_DIR+ -environment variable. ++BR2_DL_DIR+ option. Unlike most options in the .config file, this value +is overridden by the +BR2_DL_DIR+ environment variable. |