From patchwork Wed Sep 24 18:21:58 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Estevam X-Patchwork-Id: 393053 X-Patchwork-Delegate: sbabic@denx.de 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 8D49814009E for ; Thu, 25 Sep 2014 04:22:38 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id A616B4B5D3; Wed, 24 Sep 2014 20:22:35 +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 s9M5SdHl5wB0; Wed, 24 Sep 2014 20:22:35 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B17214B5D5; Wed, 24 Sep 2014 20:22:31 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 110754B5D5 for ; Wed, 24 Sep 2014 20:22:27 +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 5uFpFB23a5aZ for ; Wed, 24 Sep 2014 20:22:23 +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-yk0-f177.google.com (mail-yk0-f177.google.com [209.85.160.177]) by theia.denx.de (Postfix) with ESMTPS id A2BE04B5D3 for ; Wed, 24 Sep 2014 20:22:19 +0200 (CEST) Received: by mail-yk0-f177.google.com with SMTP id 9so2924093ykp.22 for ; Wed, 24 Sep 2014 11:22:18 -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=XuPLLWAA3ltG7QEE/CoHR943Y38geEcE60MTqpo08aA=; b=B91ztAZz9+N7ELfwLssWsZozrfwvPn4MthtVouyP9Rm6xjggK1RzwfG+2iGRESB+AJ XCSWKW3K93unwJKp/qQJhhP+lBGoWYsO7IlROk3ixzAFe9JZl6wj5uJ6zbZ6vlU6gMJl TB1wNhmAMwtZBlwHkpg/bzHUGtu8KYwhtJYycYYR4kLGjIjEzMPeUJq1hQEmT5MCB6QZ XXSZ/d+jQ+br+qbm9RCpUtG+xOyaf1pM73csFExR/3t2rx+odZWFArMIQyGjUsWFD+bJ 3/P/bkqwG4RGwu0cLxoKK6CCFHQOBejNPtKs6T1miXBgJlmVStKcgueQLAoCrZogmAOe hzWQ== X-Received: by 10.236.231.39 with SMTP id k37mr9275075yhq.32.1411582938013; Wed, 24 Sep 2014 11:22:18 -0700 (PDT) Received: from localhost.localdomain ([201.82.52.106]) by mx.google.com with ESMTPSA id o38sm7310yhp.34.2014.09.24.11.22.15 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Wed, 24 Sep 2014 11:22:17 -0700 (PDT) From: Fabio Estevam To: sbabic@denx.de Date: Wed, 24 Sep 2014 15:21:58 -0300 Message-Id: <1411582918-16913-1-git-send-email-festevam@gmail.com> X-Mailer: git-send-email 1.9.1 Cc: Fabio Estevam , u-boot@lists.denx.de Subject: [U-Boot] [PATCH] wandboard: Select CONFIG_CMD_FUSE 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: Fabio Estevam Select CONFIG_CMD_FUSE so that the fuse API commands can be used. Signed-off-by: Fabio Estevam --- include/configs/wandboard.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/include/configs/wandboard.h b/include/configs/wandboard.h index 7d96908..9fb501a 100644 --- a/include/configs/wandboard.h +++ b/include/configs/wandboard.h @@ -110,6 +110,11 @@ #define CONFIG_IMX_HDMI #define CONFIG_IMX_VIDEO_SKIP +#define CONFIG_CMD_FUSE +#ifdef CONFIG_CMD_FUSE +#define CONFIG_MXC_OCOTP +#endif + #if defined(CONFIG_MX6DL) || defined(CONFIG_MX6S) #define CONFIG_DEFAULT_FDT_FILE "imx6dl-wandboard.dtb" #elif defined(CONFIG_MX6Q)