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>
This commit is contained in:
Jerry Evans 2016-11-20 13:28:36 +00:00 committed by Thomas Petazzoni
parent 592188e34b
commit d082d20a8a

View File

@ -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)
| `----