From patchwork Tue May 3 14:13:12 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Valentin Longchamp X-Patchwork-Id: 93800 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 4EA72B6EED for ; Wed, 4 May 2011 00:14:23 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 9593A28121; Tue, 3 May 2011 16:13:54 +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 77r0wfrAJ9mr; Tue, 3 May 2011 16:13:54 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id AB8A028130; Tue, 3 May 2011 16:13:38 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id E0AFA28146 for ; Tue, 3 May 2011 16:13: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 1hYsZ1ejcxqb for ; Tue, 3 May 2011 16:13:35 +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.ch.keymile.com (mail.ch.keymile.com [193.17.201.103]) by theia.denx.de (Postfix) with SMTP id F11902812C for ; Tue, 3 May 2011 16:13:28 +0200 (CEST) Received: from SRVCHBER1212.ch.keymile.net ([172.31.32.9]) by eSafe SMTP Relay 1297237168; Tue, 03 May 2011 16:01:18 +0100 Received: from localhost.localdomain ([172.31.32.134]) by SRVCHBER1212.ch.keymile.net with Microsoft SMTPSVC(6.0.3790.4675); Tue, 3 May 2011 16:13:28 +0200 From: Valentin Longchamp To: u-boot@lists.denx.de Date: Tue, 3 May 2011 16:13:12 +0200 Message-Id: <1304431996-24058-5-git-send-email-valentin.longchamp@keymile.com> X-Mailer: git-send-email 1.7.0.5 In-Reply-To: <1304431996-24058-1-git-send-email-valentin.longchamp@keymile.com> References: <1304431996-24058-1-git-send-email-valentin.longchamp@keymile.com> X-OriginalArrivalTime: 03 May 2011 14:13:28.0458 (UTC) FILETIME=[4638D6A0:01CC099C] X-ESAFE-STATUS: Mail allowed X-ESAFE-DETAILS: Cc: Valentin Longchamp , Detlev@theia.denx.de, holger.brunck@keymile.com Subject: [U-Boot] [PATCH v2 4/8] arm/km: disable ls (through jffs2 support) X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 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 This is not supported on our km-arm boards since we have defined CONFIG_SYS_NO_FLASH for our NAND Flash chip. With CONFIG_CMD_JFFS2, the ls command is present and works very badly on our km-arm boards. Signed-off-by: Valentin Longchamp Signed-off-by: Holger Brunck Acked-by: Heiko Schocher cc: Prafulla Wadaskar cc: Wolfgang Denk cc: Detlev Zundel Acked-by: Prafulla Wadaskar --- Changes for v2: - split up first large patch series to three independent smaller patch series include/configs/km_arm.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/km_arm.h b/include/configs/km_arm.h index 89f9d35..a8a4d77 100644 --- a/include/configs/km_arm.h +++ b/include/configs/km_arm.h @@ -248,6 +248,7 @@ int get_scl (void); #if defined(CONFIG_SYS_NO_FLASH) #define CONFIG_KM_UBI_PARTITION_NAME "ubi0" #undef CONFIG_FLASH_CFI_MTD +#undef CONFIG_CMD_JFFS2 #undef CONFIG_JFFS2_CMDLINE #endif