From patchwork Sat Oct 13 23:14:01 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnout Vandecappelle X-Patchwork-Id: 191318 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id B6D8D2C008A for ; Sun, 14 Oct 2012 10:14:22 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 1235AA050A; Sat, 13 Oct 2012 23:14:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 3cpOYpdw7Lgl; Sat, 13 Oct 2012 23:14:17 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id BC2DBA034C; Sat, 13 Oct 2012 23:14:07 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 733EA8F74A for ; Sat, 13 Oct 2012 23:14:08 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 2D856863F9 for ; Sat, 13 Oct 2012 23:14:05 +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 QgGQPOFXl6rn for ; Sat, 13 Oct 2012 23:14:04 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from viper.mind.be (132.79-246-81.adsl-static.isp.belgacom.be [81.246.79.132]) by whitealder.osuosl.org (Postfix) with ESMTPS id C9DAA8409F for ; Sat, 13 Oct 2012 23:14:03 +0000 (UTC) Received: from [172.16.2.6] (helo=vandecaa-laptop) by viper.mind.be with esmtp (Exim 4.69) (envelope-from ) id 1TNAu9-0004Kn-V7 for buildroot@busybox.net; Sun, 14 Oct 2012 01:14:02 +0200 Received: from localhost ([127.0.0.1]) by vandecaa-laptop with esmtp (Exim 4.80) (envelope-from ) id 1TNAu9-0004Z0-EJ for buildroot@busybox.net; Sun, 14 Oct 2012 01:14:01 +0200 To: buildroot@busybox.net From: "Arnout Vandecappelle \(Essensium/Mind\)" Date: Sun, 14 Oct 2012 01:14:01 +0200 Message-ID: <20121013231401.17317.59831.stgit@localhost> In-Reply-To: <20121013231344.17317.92930.stgit@localhost> References: <20121013231344.17317.92930.stgit@localhost> User-Agent: StGit/0.15 MIME-Version: 1.0 Subject: [Buildroot] [PATCH 03/13] linux: get default paths from BR2_PROJECT_DIR X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 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-bounces@busybox.net From: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Arnout Vandecappelle (Essensium/Mind) --- I'm not very happy with the default name 'linux.dts' for the device tree. However, I haven't got a reasonable alternative. --- linux/Config.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/linux/Config.in b/linux/Config.in index 257f934..cf8352d 100644 --- a/linux/Config.in +++ b/linux/Config.in @@ -121,6 +121,7 @@ config BR2_LINUX_KERNEL_DEFCONFIG config BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE string "Configuration file path" depends on BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG + default "$(PROJECT_DIR)/linux.config" if BR2_PROJECT_DIR != "" help Path to the kernel configuration file @@ -269,6 +270,7 @@ config BR2_LINUX_KERNEL_INTREE_DTS_NAME config BR2_LINUX_KERNEL_CUSTOM_DTS_PATH string "Device Tree Source file path" depends on BR2_LINUX_KERNEL_USE_CUSTOM_DTS + default "$(PROJECT_DIR)/linux.dts" if BR2_PROJECT_DIR != "" help Path to the device tree source file