From patchwork Wed Mar 27 23:01:15 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Reuben Dowle X-Patchwork-Id: 231856 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 6C6A22C0097 for ; Thu, 28 Mar 2013 10:00:39 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 7B0CE31796; Wed, 27 Mar 2013 23:00:37 +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 d29XR3IrgVMC; Wed, 27 Mar 2013 23:00:35 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 4FFD0317A2; Wed, 27 Mar 2013 23:00:35 +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 842F88F7A6 for ; Wed, 27 Mar 2013 23:00:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D42DD8AAF8 for ; Wed, 27 Mar 2013 23:00:33 +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 AVPqo4FKX8sU for ; Wed, 27 Mar 2013 23:00:31 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from smtp.4rf.com (smtp.4rf.com [125.236.56.214]) by whitealder.osuosl.org (Postfix) with ESMTPS id 113D88C2A5 for ; Wed, 27 Mar 2013 23:00:30 +0000 (UTC) Received: from 4RF-NZ-ORION.local.4rf.com (192.168.0.124) by 4RF-NZ-ALNITAK.local.4rf.com (192.168.0.123) with Microsoft SMTP Server (TLS) id 14.1.438.0; Thu, 28 Mar 2013 12:04:09 +1300 Received: from 4RF-NZ-ORION.local.4rf.com ([fe80::a9c8:d719:63ae:cd9]) by 4rf-nz-orion.local.4rf.com ([fe80::a9c8:d719:63ae:cd9%12]) with mapi id 14.01.0438.000; Thu, 28 Mar 2013 12:01:16 +1300 From: Reuben Dowle To: "buildroot@busybox.net" Thread-Topic: [PATCH] Install DTB as part of images install command Thread-Index: Ac4rPwsz+eO2utplRWGoscXpb7cNdw== Date: Wed, 27 Mar 2013 23:01:15 +0000 Message-ID: <069B5A25F9844945B625ADE7258AC94C06204FCC@4rf-nz-orion.local.4rf.com> Accept-Language: en-NZ, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [2002:7dec:38db:8000:0:5efe:192.168.0.31] MIME-Version: 1.0 Subject: [Buildroot] [PATCH] Install DTB as part of images install command 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: Reuben Dowle When installing DTB to the images directory, do this as part of the image install commands rather than the target install commands. Signed-off-by: Reuben Dowle Acked-by: Maxime Ripard --- linux/linux.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 1.7.10.4 The information in this email communication (inclusive of attachments) is confidential to 4RF Limited and the intended recipient(s). If you are not the intended recipient(s), please note that any use, disclosure, distribution or copying of this information or any part thereof is strictly prohibited and that the author accepts no liability for the consequences of any action taken on the basis of the information provided. If you have received this email in error, please notify the sender immediately by return email and then delete all instances of this email from your system. 4RF Limited will not accept responsibility for any consequences associated with the use of this email (including, but not limited to, damages sustained as a result of any viruses and/or any action or lack of action taken in reliance on it). diff --git a/linux/linux.mk b/linux/linux.mk index 8a73767..f0d793b 100644 --- a/linux/linux.mk +++ b/linux/linux.mk @@ -261,11 +261,11 @@ endef define LINUX_INSTALL_IMAGES_CMDS cp $(LINUX_IMAGE_PATH) $(BINARIES_DIR) + $(LINUX_INSTALL_DTB) endef define LINUX_INSTALL_TARGET_CMDS $(LINUX_INSTALL_KERNEL_IMAGE_TO_TARGET) - $(LINUX_INSTALL_DTB) # Install modules and remove symbolic links pointing to build # directories, not relevant on the target @if grep -q "CONFIG_MODULES=y" $(@D)/.config; then \