summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJerry Evans <g4@novadsp.com>2016-11-20 13:28:36 +0000
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2016-11-20 15:55:22 +0100
commitd082d20a8ae3afd0638627fba662aaba7319ec69 (patch)
tree1775e1e22dab2f3f8e0655597fc43225d07ae9ae /docs
parent592188e34b8790ecdb249803318270857dab1d13 (diff)
docs/manual: fix documentation about BR2_EXTERNAL_<name>_PATH variable
The BR2_EXTERNAL documentation improperly tells to use the BR2_EXTERNAL_<name>_DIR variable to reference the location of the BR2_EXTERNAL directory. But in fact the variable is named BR2_EXTERNAL_<name>_PATH. In addition, some closing double quotes were missing. This commit fixes both of those issues. Signed-off-by: Jerry Evans <g4@novadsp.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/manual/customize-outside-br.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/manual/customize-outside-br.txt b/docs/manual/customize-outside-br.txt
index 70efabe22..2ebb44724 100644
--- a/docs/manual/customize-outside-br.txt
+++ b/docs/manual/customize-outside-br.txt
@@ -217,8 +217,8 @@ illustration, of course):
| `----
|
|- Config.in
- | |source "$BR2_EXTERNAL_BAR_42_DIR/package/pkg-1/Config.in
- | |source "$BR2_EXTERNAL_BAR_42_DIR/package/pkg-2/Config.in
+ | |source "$BR2_EXTERNAL_BAR_42_PATH/package/pkg-1/Config.in"
+ | |source "$BR2_EXTERNAL_BAR_42_PATH/package/pkg-2/Config.in"
| |
| |config BAR_42_FLASH_ADDR
| | hex "my-board flash address"
@@ -229,7 +229,7 @@ illustration, of course):
| |include $(sort $(wildcard $(BR2_EXTERNAL_BAR_42_PATH)/package/*/*.mk))
| |
| |flash-my-board:
- | | $(BR2_EXTERNAL_BAR_42_DIR)/board/my-board/flash-image \
+ | | $(BR2_EXTERNAL_BAR_42_PATH)/board/my-board/flash-image \
| | --image $(BINARIES_DIR)/image.bin \
| | --address $(BAR_42_FLASH_ADDR)
| `----