From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eduardo Pereira Habkost Subject: [PATCH 4/5] Splitting Tommy's big patch Date: Fri, 28 May 2004 18:30:44 -0300 Sender: linux-8086-owner@vger.kernel.org Message-ID: <20040528213044.GN21172@duckman.distro.conectiva> References: <20040528202212.49840.qmail@web51306.mail.yahoo.com> Mime-Version: 1.0 Return-path: Content-Disposition: inline In-Reply-To: <20040528202212.49840.qmail@web51306.mail.yahoo.com> List-Id: Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-8086@vger.kernel.org Use tty0, not tty1 as system console. Should check if that works and boot --- elks/init/main.c 2004-05-28 16:01:50.000000000 -0400 +++ elks/init/main.c 2004-05-09 11:05:45.000000000 -0400 @@ -106,7 +106,7 @@ #ifdef CONFIG_CONSOLE_SERIAL num = sys_open("/dev/ttyS0", 2, 0); #else - num = sys_open("/dev/tty1", 2, 0); + num = sys_open("/dev/tty0", 2, 0); #endif if (num < 0)