From patchwork Wed Jun 22 08:33:23 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yegor Yefremov X-Patchwork-Id: 101407 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 D31B1B6FCF for ; Wed, 22 Jun 2011 18:33:34 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 264F9280E1; Wed, 22 Jun 2011 10:33:33 +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 uXFLcMaLVVjQ; Wed, 22 Jun 2011 10:33:32 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id AFED4280D1; Wed, 22 Jun 2011 10:33:30 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 853D6280D4 for ; Wed, 22 Jun 2011 10:33:28 +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 1zQpmhxfmmNt for ; Wed, 22 Jun 2011 10:33:27 +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-gw0-f44.google.com (mail-gw0-f44.google.com [74.125.83.44]) by theia.denx.de (Postfix) with ESMTPS id 6E90D280D1 for ; Wed, 22 Jun 2011 10:33:25 +0200 (CEST) Received: by gwb20 with SMTP id 20so256511gwb.3 for ; Wed, 22 Jun 2011 01:33:23 -0700 (PDT) MIME-Version: 1.0 Received: by 10.236.26.42 with SMTP id b30mr696071yha.278.1308731603178; Wed, 22 Jun 2011 01:33:23 -0700 (PDT) Received: by 10.236.157.69 with HTTP; Wed, 22 Jun 2011 01:33:23 -0700 (PDT) Date: Wed, 22 Jun 2011 10:33:23 +0200 Message-ID: From: Yegor Yefremov To: u-boot@lists.denx.de Subject: [U-Boot] [PATCH] am3517evm: change console device from ttyS2 to ttyO2 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: , Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de the serial device names have been changed from ttySx to ttyOx, so the console device name should be also changed to support the latest kernel versions. Signed-off-by: Yegor Yefremov --- include/configs/am3517_evm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: b/include/configs/am3517_evm.h =================================================================== --- a/include/configs/am3517_evm.h +++ b/include/configs/am3517_evm.h @@ -190,7 +190,7 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ "loadaddr=0x82000000\0" \ - "console=ttyS2,115200n8\0" \ + "console=ttyO2,115200n8\0" \ "mmcargs=setenv bootargs console=${console} " \ "root=/dev/mmcblk0p2 rw " \ "rootfstype=ext3 rootwait\0" \