From patchwork Mon Jul 18 13:51:10 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yegor Yefremov X-Patchwork-Id: 105283 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 D443EB6F76 for ; Mon, 18 Jul 2011 23:51:25 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 94009281E2; Mon, 18 Jul 2011 15:51:24 +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 nO456CHkSjY3; Mon, 18 Jul 2011 15:51:24 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 8FEAB281E6; Mon, 18 Jul 2011 15:51:22 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 4507C281E6 for ; Mon, 18 Jul 2011 15:51: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 i0uJtOSbdaXZ for ; Mon, 18 Jul 2011 15:51:20 +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.visionsystems.de (hhlx01.vscom.de [62.145.30.242]) by theia.denx.de (Postfix) with ESMTP id 72D14281E2 for ; Mon, 18 Jul 2011 15:51:18 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by mail.visionsystems.de (Postfix) with ESMTP id 8E512283706; Mon, 18 Jul 2011 15:51:19 +0200 (CEST) Received: from mail.visionsystems.de ([127.0.0.1]) by localhost (mail.visionsystems.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 15722-07; Mon, 18 Jul 2011 15:51:12 +0200 (CEST) Received: from visionsystems.de (kallisto.visionsystems.local [192.168.1.3]) by mail.visionsystems.de (Postfix) with ESMTP id 2A521283705; Mon, 18 Jul 2011 15:51:12 +0200 (CEST) Received: from [192.168.1.38] ([192.168.1.38]) by visionsystems.de with Microsoft SMTPSVC(6.0.3790.4675); Mon, 18 Jul 2011 15:51:10 +0200 Message-ID: <4E243A4E.9070904@visionsystems.de> Date: Mon, 18 Jul 2011 15:51:10 +0200 From: Yegor Yefremov User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.8.1.24) Gecko/20100228 Lightning/0.9 Thunderbird/2.0.0.24 Mnenhy/0.7.6.666 MIME-Version: 1.0 To: Vaibhav Hiremath X-OriginalArrivalTime: 18 Jul 2011 13:51:10.0633 (UTC) FILETIME=[C035F190:01CC4551] X-Virus-Scanned: amavisd-new at visionsystems.de Cc: u-boot@lists.denx.de Subject: [U-Boot] [PATCH] am3517evm: remove rootfstype kernel parameter for MMC boot device X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list Reply-To: yegor_sub1@visionsystems.de List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de From 53afd3a38abbaed8890ca1ba36439e0c93b69969 Mon Sep 17 00:00:00 2001 From: Yegor Yefremov Date: Mon, 18 Jul 2011 15:44:42 +0200 Subject: [PATCH] am3517evm: remove rootfstype kernel parameter for MMC boot device it is not necessary to define rootfstype for mass storage devices. Kernel detects it automatically. Signed-off-by: Yegor Yefremov --- include/configs/am3517_evm.h | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/include/configs/am3517_evm.h b/include/configs/am3517_evm.h index 18aaadf..8b8c80b 100644 --- a/include/configs/am3517_evm.h +++ b/include/configs/am3517_evm.h @@ -192,8 +192,7 @@ "loadaddr=0x82000000\0" \ "console=ttyO2,115200n8\0" \ "mmcargs=setenv bootargs console=${console} " \ - "root=/dev/mmcblk0p2 rw " \ - "rootfstype=ext3 rootwait\0" \ + "root=/dev/mmcblk0p2 rw rootwait\0" \ "nandargs=setenv bootargs console=${console} " \ "root=/dev/mtdblock4 rw " \ "rootfstype=jffs2\0" \