From owner-cvs-all@FreeBSD.ORG Fri Apr 30 14:16:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0ACD816A4CE; Fri, 30 Apr 2004 14:16:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECE8043D1D; Fri, 30 Apr 2004 14:16:52 -0700 (PDT) (envelope-from ambrisko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ULGqGe051015; Fri, 30 Apr 2004 14:16:52 -0700 (PDT) (envelope-from ambrisko@repoman.freebsd.org) Received: (from ambrisko@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ULGqD4051014; Fri, 30 Apr 2004 14:16:52 -0700 (PDT) (envelope-from ambrisko) Message-Id: <200404302116.i3ULGqD4051014@repoman.freebsd.org> From: Doug Ambrisko Date: Fri, 30 Apr 2004 14:16:52 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES options src/share/man/man4 sio.4 src/sys/dev/sio sio.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 30 Apr 2004 21:16:53 -0000 ambrisko 2004/04/30 14:16:52 PDT FreeBSD src repository Modified files: sys/conf NOTES options share/man/man4 sio.4 sys/dev/sio sio.c Log: Some enhancements and bug fix. - Define option FORCECONSPEED to force the serial console to be CONSPEED. I've run into a lot of boards in which the detect for prior speed doesn't work and ends up with broken console since it is at the wrong speed. - If a serial port is marked as a console, but console=vidconsole and if the serial ports doesn't exist it will be probed and attached at a 8250 chip. Then writes to that will freeze the system. - Add an option flags 0x400000 to mark this as a potential comconsole in-case the one flaged with 0x10 does not exist in the system. This makes it easier to deploy on systems with one or two serial ports. Obtained from: IronPort Revision Changes Path 1.51 +2 -0 src/share/man/man4/sio.4 1.1223 +2 -0 src/sys/conf/NOTES 1.446 +1 -0 src/sys/conf/options 1.428 +77 -50 src/sys/dev/sio/sio.c