From patchwork Fri Oct 4 17:44:07 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: egbert.eich@gmail.com X-Patchwork-Id: 280686 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 27FEF2C00AC for ; Sat, 5 Oct 2013 03:45:00 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id D92BC4A092; Fri, 4 Oct 2013 19:44:58 +0200 (CEST) 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 IGbOqVxj8gwf; Fri, 4 Oct 2013 19:44:58 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 08BBE4A09E; Fri, 4 Oct 2013 19:44:54 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id C62844A09E for ; Fri, 4 Oct 2013 19:44:44 +0200 (CEST) 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 v4lCAMsV4CNV for ; Fri, 4 Oct 2013 19:44:40 +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-ee0-f47.google.com (mail-ee0-f47.google.com [74.125.83.47]) by theia.denx.de (Postfix) with ESMTPS id 14BA24A092 for ; Fri, 4 Oct 2013 19:44:33 +0200 (CEST) Received: by mail-ee0-f47.google.com with SMTP id d49so1939686eek.6 for ; Fri, 04 Oct 2013 10:44:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=rWfkwD9RbAR7g5VTPNDoQx7SfMSxJroy0q8DsNowikw=; b=guMmTU4CalVEnUWvSkOAtBZ0R58K1vLdZJGUMyJqIZv+swEAtZu5Cw4Ghf5xmNqIsF xWcekaD6snKp/GAiVuKeMj0U7bJHIN4EyMBbM5vjo/wRurZM6j4YT/CWGHv+9NoMEbOD LdJmwCZECJYxvPiTHgjON++AlZSPFucJm7V1qM5T4sT/kEaJ5Q5Wuow5e44ArWwifYn8 2eiMmU5emJmIbfKX8rGsoosO8s3WrH8H+oFMyfhmIIIP4cI3RpkakdyIheRtfckjOVfq gDdju4hf9mE56/Xl8SZpP+amwRZgIfxAH5uvizSaClcLKYzTXes10axBUe96CK8xyKjW O0zw== X-Received: by 10.15.83.2 with SMTP id b2mr23576996eez.28.1380908672839; Fri, 04 Oct 2013 10:44:32 -0700 (PDT) Received: from debian (p5DCF3734.dip0.t-ipconnect.de. [93.207.55.52]) by mx.google.com with ESMTPSA id j7sm30372044eeo.15.1969.12.31.16.00.00 (version=TLSv1 cipher=RC4-SHA bits=128/128); Fri, 04 Oct 2013 10:44:32 -0700 (PDT) Received: from sles11.fritz.box (sles11.fritz.box [192.168.178.22]) by debian (Postfix) with ESMTP id EFA5047EB; Fri, 4 Oct 2013 19:44:30 +0200 (CEST) From: Egbert Eich To: u-boot@lists.denx.de Date: Fri, 4 Oct 2013 19:44:07 +0200 Message-Id: <1380908647-21890-1-git-send-email-egbert.eich@gmail.com> X-Mailer: git-send-email 1.8.1.4 Cc: Tom Rini , Piotr Wilczek , Egbert Eich , Egbert Eich Subject: [U-Boot] [PATCH] config/sandbox: Add EFI and GPT support 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 From: Egbert Eich Signed-off-by: Egbert Eich --- include/configs/sandbox.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/configs/sandbox.h b/include/configs/sandbox.h index 4027030..b18cafb 100644 --- a/include/configs/sandbox.h +++ b/include/configs/sandbox.h @@ -44,6 +44,10 @@ #define CONFIG_SANDBOX_GPIO #define CONFIG_SANDBOX_GPIO_COUNT 20 +#define CONFIG_CMD_GPT +#define CONFIG_PARTITION_UUIDS +#define CONFIG_EFI_PARTITION + /* * Size of malloc() pool, although we don't actually use this yet. */