From patchwork Fri Nov 19 18:54:02 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stephan Linz X-Patchwork-Id: 72290 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 E1C6BB70FE for ; Sat, 20 Nov 2010 05:54:20 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 892D62836F; Fri, 19 Nov 2010 19:54:17 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 834DY+DuqtNe; Fri, 19 Nov 2010 19:54:17 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id A3C7A28322; Fri, 19 Nov 2010 19:54:14 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 7E6BD28336 for ; Fri, 19 Nov 2010 19:54:09 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de 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 nCXqQcDUEqmd for ; Fri, 19 Nov 2010 19:54:07 +0100 (CET) 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 mo-p00-ob.rzone.de (mo-p00-ob.rzone.de [81.169.146.161]) by theia.denx.de (Postfix) with ESMTPS id 0ED9228311 for ; Fri, 19 Nov 2010 19:54:05 +0100 (CET) X-RZG-AUTH: :IGUKb2CkcrLHmZv+FHarxbxlXmJO7WRQLa+vsyW+4B7AQuz+obYpyW44Op8x X-RZG-CLASS-ID: mo00 Received: from localhost.localdomain ([94.134.219.129]) by post.strato.de (klopstock mo12) (RZmta 24.6) with ESMTP id N05dc9mAJGxrSX ; Fri, 19 Nov 2010 19:54:03 +0100 (MET) From: Stephan Linz To: u-boot@lists.denx.de Date: Fri, 19 Nov 2010 19:54:02 +0100 Message-Id: <065bf5678e3fe33022eac6c743b3728eca61b6b9.1290192584.git.linz@li-pro.net> X-Mailer: git-send-email 1.6.0.4 Cc: Stephan Linz Subject: [U-Boot] [PATCH 1/1] microblaze: generic: enable FDT support X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Signed-off-by: Stephan Linz --- include/configs/microblaze-generic.h | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/include/configs/microblaze-generic.h b/include/configs/microblaze-generic.h index 15544a1..009a253 100644 --- a/include/configs/microblaze-generic.h +++ b/include/configs/microblaze-generic.h @@ -327,4 +327,8 @@ # define CONFIG_SYS_PROMPT_HUSH_PS2 "> " #endif +/* pass open firmware flat tree */ +#define CONFIG_FIT 1 +#define CONFIG_OF_LIBFDT 1 + #endif /* __CONFIG_H */