From patchwork Sun Nov 20 13:28:36 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: jerry@chordia.co.uk X-Patchwork-Id: 697010 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3tMCHT5ZXkz9sxS for ; Mon, 21 Nov 2016 00:28:53 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 543F32A209; Sun, 20 Nov 2016 13:28:48 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id GOtGME3KhitQ; Sun, 20 Nov 2016 13:28:44 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id CFC2C27E43; Sun, 20 Nov 2016 13:28:43 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 5BF771C0028 for ; Sun, 20 Nov 2016 13:28:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 574C6877AC for ; Sun, 20 Nov 2016 13:28:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vYkRhOhXuAQN for ; Sun, 20 Nov 2016 13:28:41 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from cust-smtp-auth2.fasthosts.net.uk (smtp-out-60.livemail.co.uk [213.171.216.60]) by whitealder.osuosl.org (Postfix) with ESMTP id E06038776E for ; Sun, 20 Nov 2016 13:28:40 +0000 (UTC) Received: from QUAD764 (unknown [81.157.24.79]) by cust-smtp-auth2.fasthosts.net.uk (Postfix) with ESMTPA id C10E6742E16 for ; Sun, 20 Nov 2016 13:28:38 +0000 (GMT) From: To: Date: Sun, 20 Nov 2016 13:28:36 -0000 Message-ID: <193601d24331$ffd8ea30$ff8abe90$@chordia.co.uk> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 14.0 Thread-Index: AdJDMP9Npq8bxcIGQVeLh7gL4yVrTQ== Content-Language: en-gb Subject: [Buildroot] Possible documentation error and a patch X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Greetings. I think the example here http://nightly.buildroot.org/manual.html#outside-br-custom has a couple of typos? The example layout has $BR2_EXTERNAL_BAR_42_DIR instead of $BR2_EXTERNAL_BAR_42_PATH in a couple of places and the source lines in the example config.in are incorrectly quoted. If I've read this correctly please find patch attached. BR, Jerry Signed-off-by: Jerry Evans g4@novadsp.com --- docs/manual/customize-outside-br.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) | `---- diff --git a/docs/manual/customize-outside-br.txt b/docs/manual/customize-outside-br.txt index 70efabe..2ebb447 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)