From patchwork Wed May 4 14:38:29 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Carlos Santos X-Patchwork-Id: 618486 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 3r0LJT1xJCz9t3v for ; Thu, 5 May 2016 00:38:49 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 1BAD18B17D; Wed, 4 May 2016 14:38:48 +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 wtbjnWrli0Ek; Wed, 4 May 2016 14:38:46 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 32DDD8B0C5; Wed, 4 May 2016 14:38:46 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 3A49E1C150E for ; Wed, 4 May 2016 14:38:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 345B230F87 for ; Wed, 4 May 2016 14:38:45 +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 6nvLf1xT-t32 for ; Wed, 4 May 2016 14:38:43 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.datacom.ind.br (mx.datacom.ind.br [177.66.5.10]) by silver.osuosl.org (Postfix) with ESMTPS id 5FB1E30F9B for ; Wed, 4 May 2016 14:38:43 +0000 (UTC) Received: from mail.datacom.ind.br (localhost [127.0.0.1]) by mail.datacom.ind.br (Postfix) with ESMTPS id BAAEE15F185A for ; Wed, 4 May 2016 11:38:40 -0300 (BRT) Received: from localhost (localhost [127.0.0.1]) by mail.datacom.ind.br (Postfix) with ESMTP id AC49115F1845 for ; Wed, 4 May 2016 11:38:40 -0300 (BRT) Received: from mail.datacom.ind.br ([127.0.0.1]) by localhost (mail.datacom.ind.br [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id IvcGuXc1UQ9e for ; Wed, 4 May 2016 11:38:40 -0300 (BRT) Received: from PEDELD048.datacom.net (pedeld048.datacom.net [10.0.120.146]) by mail.datacom.ind.br (Postfix) with ESMTPSA id 893D515F1817 for ; Wed, 4 May 2016 11:38:40 -0300 (BRT) From: Carlos Santos To: buildroot@buildroot.org Date: Wed, 4 May 2016 11:38:29 -0300 Message-Id: <1462372709-24828-1-git-send-email-casantos@datacom.ind.br> X-Mailer: git-send-email 2.5.5 Subject: [Buildroot] [PATCH 1/1] uboot-tools: add missing dependency on host-dtc for the host package 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: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" The mkimage utility needs dtc when the input is in Flat Image Trees (FIT) format. If dtc is not available mkimage fails. Example: $ mkimage -f firmware.its firmware.im sh: dtc: command not found Signed-off-by: Carlos Santos --- package/uboot-tools/Config.in.host | 1 + package/uboot-tools/uboot-tools.mk | 2 ++ 2 files changed, 3 insertions(+) diff --git a/package/uboot-tools/Config.in.host b/package/uboot-tools/Config.in.host index b5a42d9..5c44eaf 100644 --- a/package/uboot-tools/Config.in.host +++ b/package/uboot-tools/Config.in.host @@ -1,5 +1,6 @@ config BR2_PACKAGE_HOST_UBOOT_TOOLS bool "host u-boot tools" + select BR2_PACKAGE_HOST_DTC help Companion tools for Das U-Boot bootloader. diff --git a/package/uboot-tools/uboot-tools.mk b/package/uboot-tools/uboot-tools.mk index f47b3db..a07fbfa 100644 --- a/package/uboot-tools/uboot-tools.mk +++ b/package/uboot-tools/uboot-tools.mk @@ -65,6 +65,8 @@ define UBOOT_TOOLS_INSTALL_TARGET_CMDS $(UBOOT_TOOLS_INSTALL_DUMPIMAGE) endef +HOST_UBOOT_TOOLS_DEPENDENCIES += host-dtc + ifeq ($(BR2_PACKAGE_HOST_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT),y) HOST_UBOOT_TOOLS_DEPENDENCIES += host-openssl endif