From patchwork Sat Mar 31 20:47:45 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fabio Estevam X-Patchwork-Id: 149887 X-Patchwork-Delegate: agust@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 0C14DB6EEB for ; Sun, 1 Apr 2012 06:48:10 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id E31E02815D; Sat, 31 Mar 2012 22:48:06 +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 vjx6gYEc4PgT; Sat, 31 Mar 2012 22:48:06 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id E766928165; Sat, 31 Mar 2012 22:48:03 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id F2C3828165 for ; Sat, 31 Mar 2012 22:48:00 +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 0qos4vnDkg72 for ; Sat, 31 Mar 2012 22:48:00 +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-gx0-f172.google.com (mail-gx0-f172.google.com [209.85.161.172]) by theia.denx.de (Postfix) with ESMTPS id 26A5D2815D for ; Sat, 31 Mar 2012 22:47:58 +0200 (CEST) Received: by ggmi1 with SMTP id i1so798914ggm.3 for ; Sat, 31 Mar 2012 13:47:56 -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:x-mailer; bh=KTMAkGsDLO9sZImagIQaCQ85Yn46WdgiNsoRZIenhSY=; b=xgvMbnfuGKDNVdpByWVXS7fweHlAW/xKyl9n+2hnYllupa29ZB0NDITLlw/MTNo8IZ RAoeGp8C2drRD9EBLfngdssX590KUMh3/fESop4dyppf+TMnpCHkG2BQJJFQweF6K84F anPACIkJJmKl+ELz0uX0+PgrpUktEyFX83o5SyRd6K0VcHAypnpi99c4nShSZ30yZzub JAP+QN2N+x3Cfy8j4aoTutbzHB4oBhRQanDadPl1I7ziYStN+An4iJl6ujAH5JIOVceb Q6OAnvnLGfmqoVBTvZRQtQX4WFkSnGkN6qs1Jq5fXLS6UEQ4Xi5StF19AvdMvxApUpoF HTiQ== Received: by 10.236.161.72 with SMTP id v48mr2517321yhk.76.1333226876875; Sat, 31 Mar 2012 13:47:56 -0700 (PDT) Received: from localhost.localdomain ([189.101.132.121]) by mx.google.com with ESMTPS id z27sm35957854yhh.8.2012.03.31.13.47.54 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 31 Mar 2012 13:47:56 -0700 (PDT) From: Fabio Estevam To: u-boot@lists.denx.de Date: Sat, 31 Mar 2012 17:47:45 -0300 Message-Id: <1333226865-10197-1-git-send-email-festevam@gmail.com> X-Mailer: git-send-email 1.7.1 Cc: Fabio Estevam , Jason.jin@freescale.com, tsicliew@gmail.com Subject: [U-Boot] [PATCH v2] configs: EB+MCF-EV123.h: Fix typo on CONFIG_SYS_HUSH_PARSER 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 Fix typo on CONFIG_SYS_HUSH_PARSER and also add CONFIG_SYS_PROMPT_HUSH_PS2 to avoid build error. Signed-off-by: Fabio Estevam --- Changes since v1: - Also add CONFIG_SYS_PROMPT_HUSH_PS2 definition include/configs/EB+MCF-EV123.h | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/include/configs/EB+MCF-EV123.h b/include/configs/EB+MCF-EV123.h index 1f774a9..346b49c 100644 --- a/include/configs/EB+MCF-EV123.h +++ b/include/configs/EB+MCF-EV123.h @@ -90,7 +90,8 @@ #define CONFIG_BOOTDELAY 5 -#define CONFIG_HUSH_PARSER +#define CONFIG_SYS_HUSH_PARSER +#define CONFIG_SYS_PROMPT_HUSH_PS2 "> " #define CONFIG_SYS_PROMPT "\nEV123 U-Boot> " #define CONFIG_SYS_LONGHELP 1