From patchwork Fri Sep 21 13:02:03 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Otavio Salvador X-Patchwork-Id: 185730 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 3A2E32C0089 for ; Fri, 21 Sep 2012 23:02:33 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 81B5728081; Fri, 21 Sep 2012 15:02:31 +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 VWR2+PF78kg8; Fri, 21 Sep 2012 15:02:30 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 26EE528085; Fri, 21 Sep 2012 15:02:28 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 934FF28085 for ; Fri, 21 Sep 2012 15:02:21 +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 yKIqjDYceSW1 for ; Fri, 21 Sep 2012 15:02:01 +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-gh0-f172.google.com (mail-gh0-f172.google.com [209.85.160.172]) by theia.denx.de (Postfix) with ESMTPS id F371428081 for ; Fri, 21 Sep 2012 15:01:56 +0200 (CEST) Received: by ghbg10 with SMTP id g10so996498ghb.3 for ; Fri, 21 Sep 2012 06:01:54 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:x-mailer; bh=WhUiCk6vT5prGN/2NR03C1zA6t1TxurXXGkBb9EMBEI=; b=x1OcNvGLel9fhdtKGO3kBOW5Ctaidgl+5WzM2El3b5QAsF+nSZ0IEdnyrhqgfuRxZl wpgokdAhCNsES2UBvoV1qBmv5ntjNRZbOjU+5BFXsh1onAgUp2YgoUx4btQMWVie5wBk VUR++4wElQu2mRYzvvAeYUogMUu56F5FyiHZM1AaJw/JyNuk45uwBy7UQkhfkG/1LhlF VpQyMJY4AHaPJ5TX33huUa3DOMKrs4xwge6pkgPb3DwPQ0sMRFFv0NNWN5MbHVnFmFuw jqxIC0hCWVj2ThMOjmz1HCd+FCdN1O2Q8u/5/x8JYVRR19e3TAjMkofAsqlmzUFj+MDS XNVQ== Received: by 10.101.130.12 with SMTP id h12mr1495119ann.80.1348232514121; Fri, 21 Sep 2012 06:01:54 -0700 (PDT) Received: from nano.lab.ossystems.com.br.lab.ossystems.com.br ([177.100.163.15]) by mx.google.com with ESMTPS id x4sm12900319yhh.2.2012.09.21.06.01.51 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 21 Sep 2012 06:01:53 -0700 (PDT) From: Otavio Salvador To: U-Boot Mailing List Date: Fri, 21 Sep 2012 10:02:03 -0300 Message-Id: <1348232523-10284-1-git-send-email-otavio@ossystems.com.br> X-Mailer: git-send-email 1.7.10.4 Cc: Fabio Estevam , Otavio Salvador Subject: [U-Boot] [PATCH] mx28evk: Add missing 'setexpr' command 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 The environment now uses expressions but we missed the setexpr command was not being include. This patch adds it. Signed-off-by: Otavio Salvador --- include/configs/mx28evk.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/mx28evk.h b/include/configs/mx28evk.h index dffb744..7cdbec6 100644 --- a/include/configs/mx28evk.h +++ b/include/configs/mx28evk.h @@ -63,6 +63,7 @@ #define CONFIG_CMD_NET #define CONFIG_CMD_NFS #define CONFIG_CMD_PING +#define CONFIG_CMD_SETEXPR #define CONFIG_CMD_SF #define CONFIG_CMD_SPI #define CONFIG_CMD_USB