From owner-cvs-sys Sun Jun 8 22:11:31 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id WAA04939 for cvs-sys-outgoing; Sun, 8 Jun 1997 22:11:31 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id WAA04916; Sun, 8 Jun 1997 22:11:04 -0700 (PDT) From: Bruce Evans Received: (from bde@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id WAA07325; Sun, 8 Jun 1997 22:10:57 -0700 (PDT) Date: Sun, 8 Jun 1997 22:10:57 -0700 (PDT) Message-Id: <199706090510.WAA07325@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/boot/biosboot Makefile README.serial boot.c boot.h io.c probe_keyboard.c serial.S sys.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 1997/06/08 22:10:57 PDT Modified files: sys/i386/boot/biosboot Makefile README.serial boot.c boot.h io.c probe_keyboard.c serial.S sys.c Log: - Added support for "dual" internal/serial consoles (-D flag). If -D is set, then all i/o from the boot blocks is to and from both the internal console and the serial console. -D has no effect on the kernel (-h decides the kernel serial console as usual). -D should normally be set in /boot.config. - Get help messages from /boot.help. You should copy boot.help from the biosboot directory to the root directory on the boot drive when you install new boot blocks. - New, less invasive keyboard probe. Enable keyboard probe dynamically (-P flag). Should probably never be used (use -h instead). - Fixed/improved initialization from boot.config. It didn't interact correctly with the NAMEBLOCK option, and the initialization of the drive/unit/partition didn't stick when a non-default kernel name was entered. - Don't reset or forget the default drive/unit/... or kernel name so often. - Set the default kernel name to something unbootable after `?'. - Display the defaults better. - Removed PROBE_KEYBOARD_LOCK option (use -h instead)., - Removed BOOT_FORCE_COMCONSOLE option (use device flag 0x20 instead). - Removed -a (RB_HALT) flag. This flag is only used for reboots. Submitted by: about 2/3 by yokota Revision Changes Path 1.57 +1 -16 src/sys/i386/boot/biosboot/Makefile 1.8 +95 -63 src/sys/i386/boot/biosboot/README.serial 1.66 +71 -69 src/sys/i386/boot/biosboot/boot.c 1.19 +4 -1 src/sys/i386/boot/biosboot/boot.h 1.23 +23 -13 src/sys/i386/boot/biosboot/io.c 1.13 +77 -85 src/sys/i386/boot/biosboot/probe_keyboard.c 1.8 +12 -3 src/sys/i386/boot/biosboot/serial.S 1.21 +8 -3 src/sys/i386/boot/biosboot/sys.c