From owner-cvs-src@FreeBSD.ORG Fri May 27 19:31:00 2005 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0F1816A41C; Fri, 27 May 2005 19:31:00 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DFAF43D1F; Fri, 27 May 2005 19:31:00 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j4RJV0Ui018112; Fri, 27 May 2005 19:31:00 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j4RJV0nN018111; Fri, 27 May 2005 19:31:00 GMT (envelope-from jhb) Message-Id: <200505271931.j4RJV0nN018111@repoman.freebsd.org> From: John Baldwin Date: Fri, 27 May 2005 19:31:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/boot/common console.c loader.8 src/sys/boot/i386/libi386 bootinfo.c src/sys/boot/i386/loader main.c src/sys/boot/pc98/loader main.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 27 May 2005 19:31:00 -0000 jhb 2005-05-27 19:31:00 UTC FreeBSD src repository Modified files: sys/boot/common console.c loader.8 sys/boot/i386/libi386 bootinfo.c sys/boot/i386/loader main.c sys/boot/pc98/loader main.c Log: - Add support to the loader for multiple consoles. - Teach the i386 and pc98 loaders to honor multiple console requests from their respective boot2 binaries so that the same console(s) are used in both boot2 and the loader. - Since the kernel doesn't support multiple consoles, whichever console is listed first is treated as the "primary" console and is passed to the kernel in the boot_howto flags. PR: kern/66425 Submitted by: Gavin Atkinson gavin at ury dot york dot ac dot uk MFC after: 1 week Revision Changes Path 1.7 +93 -39 src/sys/boot/common/console.c 1.80 +6 -1 src/sys/boot/common/loader.8 1.37 +31 -5 src/sys/boot/i386/libi386/bootinfo.c 1.31 +8 -4 src/sys/boot/i386/loader/main.c 1.20 +8 -4 src/sys/boot/pc98/loader/main.c