From patchwork Mon Apr 1 11:11:27 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefano Babic X-Patchwork-Id: 1072651 X-Patchwork-Delegate: sbabic@denx.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=denx.de Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 44XqRS38zYz9sRJ for ; Mon, 1 Apr 2019 22:11:46 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 8B5FAC21E12; Mon, 1 Apr 2019 11:11:41 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 23A55C21D65; Mon, 1 Apr 2019 11:11:39 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 77C35C21D65; Mon, 1 Apr 2019 11:11:37 +0000 (UTC) Received: from mail-out.m-online.net (mail-out.m-online.net [212.18.0.9]) by lists.denx.de (Postfix) with ESMTPS id 229B1C21D4A for ; Mon, 1 Apr 2019 11:11:37 +0000 (UTC) Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 44XqRD6n8sz1rJhV; Mon, 1 Apr 2019 13:11:36 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.70]) by mail.m-online.net (Postfix) with ESMTP id 44XqRD6Swvz1rVwQ; Mon, 1 Apr 2019 13:11:36 +0200 (CEST) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.70]) (amavisd-new, port 10024) with ESMTP id BRXDEzFivDwm; Mon, 1 Apr 2019 13:11:36 +0200 (CEST) Received: from babic.homelinux.org (host-88-217-136-221.customer.m-online.net [88.217.136.221]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPS; Mon, 1 Apr 2019 13:11:36 +0200 (CEST) Received: from localhost (mail.babic.homelinux.org [127.0.0.1]) by babic.homelinux.org (Postfix) with ESMTP id 92E08454040B; Mon, 1 Apr 2019 13:11:35 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at babic.homelinux.org Received: from babic.homelinux.org ([127.0.0.1]) by localhost (mail.babic.homelinux.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rHTcUe_NyAjK; Mon, 1 Apr 2019 13:11:33 +0200 (CEST) Received: from papero.fritz.box (papero.fritz.box [192.168.178.132]) by babic.homelinux.org (Postfix) with ESMTP id CFD43454037E; Mon, 1 Apr 2019 13:11:32 +0200 (CEST) From: Stefano Babic To: u-boot@lists.denx.de Date: Mon, 1 Apr 2019 13:11:27 +0200 Message-Id: <20190401111127.4359-1-sbabic@denx.de> X-Mailer: git-send-email 2.17.1 Cc: Marcel Ziswiler Subject: [U-Boot] [PATCH] mx6: colibri: fix build due to missing DTB X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" This fix colibri (imx6) build due to: Device Tree Source is not correctly specified. Please define 'CONFIG_DEFAULT_DEVICE_TREE' or build with 'DEVICE_TREE=' argument CONFIG_DEFAULT_DEVICE_TREE is set in default config, but it is not built because the target is missing in dts/Makefile Signed-off-by: Stefano Babic CC: Marcel Ziswiler --- I got build error after rebasing on current Tom's master - colibri-imx6.dtb is missing from dts/Makefile. This is to fix -next on u-boot-imx. arch/arm/dts/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile index e67b3bd767..0b39721dbc 100644 --- a/arch/arm/dts/Makefile +++ b/arch/arm/dts/Makefile @@ -500,6 +500,9 @@ dtb-$(CONFIG_MX6Q) += \ imx6q-display5.dtb \ imx6q-logicpd.dtb +dtb-$(CONFIG_TARGET_COLIBRI_IMX6) += \ + imx6-colibri.dtb + dtb-$(CONFIG_MX6QDL) += \ imx6dl-icore.dtb \ imx6dl-icore-mipi.dtb \