From patchwork Tue Feb 19 21:18:17 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Rini X-Patchwork-Id: 221897 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 CB2412C0079 for ; Wed, 20 Feb 2013 08:18:53 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 1D4D74A1CE; Tue, 19 Feb 2013 22:18:51 +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 uDKVhL6TVUuG; Tue, 19 Feb 2013 22:18:50 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id E7D054A1A4; Tue, 19 Feb 2013 22:18:41 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 976234A180 for ; Tue, 19 Feb 2013 22:18:35 +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 B4tW4-AdXFbM for ; Tue, 19 Feb 2013 22:18:34 +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 mail-ye0-f180.google.com (mail-ye0-f180.google.com [209.85.213.180]) by theia.denx.de (Postfix) with ESMTPS id 5820D4A17F for ; Tue, 19 Feb 2013 22:18:29 +0100 (CET) Received: by mail-ye0-f180.google.com with SMTP id r14so1341745yen.11 for ; Tue, 19 Feb 2013 13:18:28 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:from:to:subject:date:message-id:x-mailer :in-reply-to:references; bh=Snu/bM8ZTCRzW5K1BSGM1PdoRpCKhRKS3Lkv+G0Q5aU=; b=wrswH0AOzsD27a5gH0FCLJEyBgw7ZhU1dNHeaeGfWycwddWDscnaaTgAjjsnIdNXhQ EG9SiUXbcriaICeZeBaIJn63HKHgzHnrsR9IbkyDMr0BFVqHKRCcO7trLi6sXcS3aS9z DgW1SgUJ5wonoyD90M+begLzAT8yIZmRr4OCM1LBsujL8qv+N38d1eCINZIQioiFzaHb BUPv76Pgs/RRaQqCDBZ/23YgCqpc70vBpnd2itiyj1bfQhd92etqo7B0CbjBGO57Hhr5 Q5roHb6zEAvFLncsaVUyzZyooXPWlHmXKIRpgIOOmA3n7yncf38U0nFAQwkKwWoScYjX PMQA== X-Received: by 10.236.144.36 with SMTP id m24mr31157969yhj.104.1361308708372; Tue, 19 Feb 2013 13:18:28 -0800 (PST) Received: from localhost.localdomain (cpe-065-184-250-089.ec.res.rr.com. [65.184.250.89]) by mx.google.com with ESMTPS id d80sm99116268yhg.4.2013.02.19.13.18.26 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 19 Feb 2013 13:18:26 -0800 (PST) From: Tom Rini To: u-boot@lists.denx.de Date: Tue, 19 Feb 2013 16:18:17 -0500 Message-Id: <1361308698-31041-3-git-send-email-trini@ti.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1361308698-31041-1-git-send-email-trini@ti.com> References: <1361308698-31041-1-git-send-email-trini@ti.com> Subject: [U-Boot] [PATCH 3/4] omap3_beagle: Enable CONFIG_CMD_BOOTZ X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 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 With v3.9 and later of the Linux Kernel defaulting to multi-platform images with omap2plus_defconfig, uImage isn't builtable anymore by default. Add CONFIG_CMD_BOOTZ so that we can still boot something the kernel spits out. Signed-off-by: Tom Rini --- include/configs/omap3_beagle.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 59255c4..48ce4c0 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -53,7 +53,8 @@ #define CONFIG_MISC_INIT_R -#define CONFIG_OF_LIBFDT 1 +#define CONFIG_OF_LIBFDT +#define CONFIG_CMD_BOOTZ #define CONFIG_CMDLINE_TAG 1 /* enable passing of ATAGs */ #define CONFIG_SETUP_MEMORY_TAGS 1