From patchwork Mon Sep 19 08:43:58 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Weber X-Patchwork-Id: 115303 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 23DADB70B9 for ; Mon, 19 Sep 2011 18:49:45 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id EE2372820C; Mon, 19 Sep 2011 10:49:42 +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 ounJmCANJrQy; Mon, 19 Sep 2011 10:49:42 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 9203D28210; Mon, 19 Sep 2011 10:49:40 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 5D3B928210 for ; Mon, 19 Sep 2011 10:49:38 +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 oT9k2s+H+zNO for ; Mon, 19 Sep 2011 10:49:37 +0200 (CEST) X-Greylist: delayed 306 seconds by postgrey-1.27 at theia; Mon, 19 Sep 2011 10:49:35 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 moutng.kundenserver.de (moutng.kundenserver.de [212.227.17.10]) by theia.denx.de (Postfix) with ESMTP id 7B90D2820C for ; Mon, 19 Sep 2011 10:49:35 +0200 (CEST) Received: from corscience.de (DSL01.212.114.252.242.ip-pool.NEFkom.net [212.114.252.242]) by mrelayeu.kundenserver.de (node=mrbap3) with ESMTP (Nemesis) id 0Lr24R-1RZhYV0mSB-00eB3g; Mon, 19 Sep 2011 10:44:28 +0200 Received: from lupus.er.corscience.de (lupus.2og.er.corscience.de [192.168.102.101]) by corscience.de (Postfix) with ESMTP id B0F1A51FFD; Mon, 19 Sep 2011 10:44:27 +0200 (CEST) From: Thomas Weber To: u-boot@lists.denx.de Date: Mon, 19 Sep 2011 10:43:58 +0200 Message-Id: <1316421838-32235-1-git-send-email-weber@corscience.de> X-Mailer: git-send-email 1.7.6.1 X-Provags-ID: V02:K0:RrKWIZZsohIjULWrV+ew99/nBRcviYKMqACAN372+6M NHq0drhB53cWp/nWV9DEHccy9ay85upIxM21aN4vqZ1uVBnL+8 kzMKRqpDhC7KEgjIwbC47gNrY/rvcvGhcM/0BaqnpqyWo9d5YO DeQXnIDB4pV/43AXvtknHOgLSGLwF1uDoTPihHgJcFNqyd2qHS 9DtE07QHB8f4QPacoflC6thSfCnwWZZxzziMU4Px06tSECPOUR oUBEodt/7izzFn2mwGEAzjws7SJqYEgklWAk/nYCIivdOTrcdH TWKRZ2TzE6iG5rHiytm1DB6Nkcz37NIC2bGnqJ/izMO7pO1L4V zTZOg2iKlY+klAsMPvxlcKe7Hyn8qvpgLuDTJ2qw1pLjRbQnN6 qVsYjmz+sWj+A== Cc: Thomas Weber Subject: [U-Boot] [PATCH] Devkit8000: Change 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 The omap serial names have changed from ttySx to ttyOx, so the console should be also changed to support this. Signed-off-by: Thomas Weber --- include/configs/devkit8000.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/devkit8000.h b/include/configs/devkit8000.h index 710092d..3479740 100644 --- a/include/configs/devkit8000.h +++ b/include/configs/devkit8000.h @@ -181,7 +181,7 @@ #define CONFIG_EXTRA_ENV_SETTINGS \ "loadaddr=0x82000000\0" \ - "console=ttyS2,115200n8\0" \ + "console=ttyO2,115200n8\0" \ "mmcdev=0\0" \ "vram=12M\0" \ "dvimode=1024x768MR-16@60\0" \