From patchwork Mon Jul 27 09:10:58 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yegor Yefremov X-Patchwork-Id: 500258 X-Patchwork-Delegate: trini@ti.com Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id 93972140134 for ; Mon, 27 Jul 2015 19:11:45 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 356774B616; Mon, 27 Jul 2015 11:11:43 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rJrDEP8GJzWo; Mon, 27 Jul 2015 11:11:42 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 6B9504A033; Mon, 27 Jul 2015 11:11:42 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 0C7324A033 for ; Mon, 27 Jul 2015 11:11:39 +0200 (CEST) Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id p0cJ4fXEsr3Z for ; Mon, 27 Jul 2015 11:11:38 +0200 (CEST) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from mail.visionsystems.de (mail.visionsystems.de [213.209.99.202]) by theia.denx.de (Postfix) with ESMTP id 1F19A4A01C for ; Mon, 27 Jul 2015 11:11:33 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mail.visionsystems.de (Postfix) with ESMTP id D7AB9311687; Mon, 27 Jul 2015 11:11:56 +0200 (CEST) Received: from mail.visionsystems.de ([127.0.0.1]) by localhost (mail.visionsystems.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12868-10; Mon, 27 Jul 2015 11:11:29 +0200 (CEST) Received: from visionsystems.de (kallisto.visionsystems.local [192.168.1.3]) by mail.visionsystems.de (Postfix) with ESMTP id D0752311686; Mon, 27 Jul 2015 11:11:29 +0200 (CEST) Received: from development1.visionsystems.de ([192.168.1.36]) by visionsystems.de with Microsoft SMTPSVC(6.0.3790.4675); Mon, 27 Jul 2015 11:11:02 +0200 From: yegorslists@googlemail.com To: u-boot@lists.denx.de Date: Mon, 27 Jul 2015 11:10:58 +0200 Message-Id: <1437988258-29497-1-git-send-email-yegorslists@googlemail.com> X-Mailer: git-send-email 2.1.4 X-OriginalArrivalTime: 27 Jul 2015 09:11:02.0842 (UTC) FILETIME=[293911A0:01D0C84C] X-Virus-Scanned: amavisd-new at visionsystems.de Cc: trini@konsulko.com Subject: [U-Boot] [PATCH v2] am3517_evm: add FIT support X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 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" From: Yegor Yefremov Enable DTS support (CONFIG_OF_LIBFDT) and select CONFIG_FIT in defconfig. Signed-off-by: Yegor Yefremov Reviewed-by: Tom Rini --- Changes: v2: remove unused ft_board_setup() and CONFIG_OF_BOARD_SETUP configs/am3517_evm_defconfig | 1 + include/configs/am3517_evm.h | 2 ++ 2 files changed, 3 insertions(+) diff --git a/configs/am3517_evm_defconfig b/configs/am3517_evm_defconfig index 4589b30..c72d29e 100644 --- a/configs/am3517_evm_defconfig +++ b/configs/am3517_evm_defconfig @@ -2,6 +2,7 @@ CONFIG_ARM=y CONFIG_OMAP34XX=y CONFIG_TARGET_AM3517_EVM=y CONFIG_SPL=y +CONFIG_FIT=y # CONFIG_CMD_IMI is not set # CONFIG_CMD_IMLS is not set # CONFIG_CMD_FLASH is not set diff --git a/include/configs/am3517_evm.h b/include/configs/am3517_evm.h index b90a60d..e9808a7 100644 --- a/include/configs/am3517_evm.h +++ b/include/configs/am3517_evm.h @@ -42,6 +42,8 @@ #define CONFIG_MISC_INIT_R +#define CONFIG_OF_LIBFDT + #define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */ #define CONFIG_SETUP_MEMORY_TAGS 1 #define CONFIG_INITRD_TAG 1