From patchwork Tue Feb 19 21:18:15 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tom Rini X-Patchwork-Id: 221894 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 922382C0079 for ; Wed, 20 Feb 2013 08:18:33 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 5B4CD4A18A; Tue, 19 Feb 2013 22:18:31 +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 tAe+8hSRgEe0; Tue, 19 Feb 2013 22:18:31 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 794174A180; Tue, 19 Feb 2013 22:18:30 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 7260E4A17F for ; Tue, 19 Feb 2013 22:18:28 +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 N+UwWDkuV4NJ for ; Tue, 19 Feb 2013 22:18:27 +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-gg0-f173.google.com (mail-gg0-f173.google.com [209.85.161.173]) by theia.denx.de (Postfix) with ESMTPS id 2F7FA4A17E for ; Tue, 19 Feb 2013 22:18:25 +0100 (CET) Received: by mail-gg0-f173.google.com with SMTP id b6so884941ggm.18 for ; Tue, 19 Feb 2013 13:18:24 -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; bh=NICVrbSzr000SsJnOTg+m1vzdWVM+DgZnq4+74pblAk=; b=ufHURzOaIppUJWe2tvop3ckyg9GMqAxhHBgmuF+8HZsuKjMLPhYyYDHUlID/mgfxR+ oFnr8tLEhC9VAMwKbVXVbGupaSOauiLeercxIif74xKNZWfFPx09YHzQP2wLD/0dDmye oqlKGwJPX3DpAxNNNkDjfPu/py/eLJED5zVEHBo+b+aj6v1z78I8NxrNfA1MJo77/CX1 p9Zv9B+enGarCDiD3FEwdah/r1b/WTQNnrXnBOuDe+eID5TaCxqFP5TIZOSckKFu6gvz 3GMD8CfU6fEbaujNvRXBqJxqtpLc0TJtEdX+LKOTvY0HMloE0eM58yb3wkFzePJXyGKw tDfg== X-Received: by 10.236.92.134 with SMTP id j6mr31260386yhf.44.1361308703911; Tue, 19 Feb 2013 13:18:23 -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.21 (version=TLSv1.1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 19 Feb 2013 13:18:22 -0800 (PST) From: Tom Rini To: u-boot@lists.denx.de Date: Tue, 19 Feb 2013 16:18:15 -0500 Message-Id: <1361308698-31041-1-git-send-email-trini@ti.com> X-Mailer: git-send-email 1.7.9.5 Subject: [U-Boot] [PATCH 1/4] am335x_evm: 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 Acked-by: Peter Korsgaard --- include/configs/am335x_evm.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/am335x_evm.h b/include/configs/am335x_evm.h index 33ee2c4..11ebd5c 100644 --- a/include/configs/am335x_evm.h +++ b/include/configs/am335x_evm.h @@ -35,6 +35,7 @@ #define CONFIG_MACH_TYPE MACH_TYPE_TIAM335EVM #define CONFIG_OF_LIBFDT +#define CONFIG_CMD_BOOTZ #define CONFIG_CMDLINE_TAG /* enable passing of ATAGs */ #define CONFIG_SETUP_MEMORY_TAGS #define CONFIG_INITRD_TAG