From patchwork Fri Feb 18 08:37:57 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alexander Holler X-Patchwork-Id: 83540 X-Patchwork-Delegate: s-paulraj@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 15E4AB70E5 for ; Fri, 18 Feb 2011 19:38:43 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id A32D728087; Fri, 18 Feb 2011 09:38:40 +0100 (CET) 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 KMnVXOV4cGq3; Fri, 18 Feb 2011 09:38:40 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id E4D0D28082; Fri, 18 Feb 2011 09:38:38 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 1E9A128082 for ; Fri, 18 Feb 2011 09:38:36 +0100 (CET) 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 ZargFl6gqgIA for ; Fri, 18 Feb 2011 09:38:34 +0100 (CET) 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.ahsoftware.de (h1047321.serverkompetenz.net [85.214.67.163]) by theia.denx.de (Postfix) with ESMTPS id 1166428081 for ; Fri, 18 Feb 2011 09:38:32 +0100 (CET) Received: by mail.ahsoftware.de (Postfix, from userid 65534) id C4C8F9C14F; Fri, 18 Feb 2011 09:38:31 +0100 (CET) Received: from eiche.ahsoftware (p57B20422.dip0.t-ipconnect.de [87.178.4.34]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.ahsoftware.de (Postfix) with ESMTP id CCBA79C14E; Fri, 18 Feb 2011 09:38:28 +0100 (CET) Received: from krabat.ahsoftware (krabat.ahsoftware [192.168.207.2]) by eiche.ahsoftware (Postfix) with ESMTP id AF6533FC74; Fri, 18 Feb 2011 09:38:26 +0100 (CET) From: Alexander Holler To: u-boot@lists.denx.de Date: Fri, 18 Feb 2011 09:37:57 +0100 Message-Id: <1298018277-7436-1-git-send-email-holler@ahsoftware.de> X-Mailer: git-send-email 1.7.3.4 Subject: [U-Boot] [PATCH] omap3_beagle: Switch default console 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: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Linux kernels >= 2.6.36 are using ttyOn instead ttySn for the serials on OMAPs. Signed-off-by: Alexander Holler Acked-by: Dirk Behme --- include/configs/omap3_beagle.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 5cfa4cb..e442e5b 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_beagle.h @@ -189,7 +189,7 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ "loadaddr=0x82000000\0" \ "usbtty=cdc_acm\0" \ - "console=ttyS2,115200n8\0" \ + "console=ttyO2,115200n8\0" \ "mpurate=500\0" \ "vram=12M\0" \ "dvimode=1024x768MR-16@60\0" \