From owner-cvs-all Fri Sep 25 18:31:20 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id SAA27795 for cvs-all-outgoing; Fri, 25 Sep 1998 18:31:20 -0700 (PDT) (envelope-from owner-cvs-all) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id SAA27780; Fri, 25 Sep 1998 18:31:14 -0700 (PDT) (envelope-from msmith@FreeBSD.org) From: Michael Smith Received: (from msmith@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id SAA24739; Fri, 25 Sep 1998 18:31:10 -0700 (PDT) Date: Fri, 25 Sep 1998 18:31:10 -0700 (PDT) Message-Id: <199809260131.SAA24739@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: cvs commit: src/sys/boot/common console.c isapnp.c ls.c panic.c pnp.c src/sys/boot/i386/libi386 Makefile biosdisk.c devicename.c src/sys/boot/i386/loader Makefile main.c Sender: owner-cvs-all@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk msmith 1998/09/25 18:31:10 PDT Modified files: sys/boot/common console.c isapnp.c ls.c panic.c pnp.c Log: console.c Allow the MI code to override the preferred console (eg. so that an RB_SERIAL flag from the i386 boot2 can override the default first active console) isapnp.c Use the standard format for ISA PnP IDs. pnp.c Allow trailing comments on lines, be less picky about line contents. ls.c Cosmetic error message fix. panic.c Print the right arguments. Revision Changes Path 1.2 +18 -6 src/sys/boot/common/console.c 1.2 +14 -11 src/sys/boot/common/isapnp.c 1.3 +7 -1 src/sys/boot/common/ls.c 1.4 +3 -3 src/sys/boot/common/panic.c 1.3 +9 -4 src/sys/boot/common/pnp.c Modified files: sys/boot/i386/libi386 Makefile biosdisk.c devicename.c Log: The BIOS can't perform a floppy operation where the destination crosses a physical 64k boundary. Allocate a bounce buffer for such a transaction. Revision Changes Path 1.5 +2 -2 src/sys/boot/i386/libi386/Makefile 1.6 +72 -18 src/sys/boot/i386/libi386/biosdisk.c 1.2 +2 -2 src/sys/boot/i386/libi386/devicename.c Modified files: sys/boot/i386/loader Makefile main.c Log: Recover the arguments passed in from the previous load stage, use them to set the default console. Print malloc stats from the new libstand allocator. Revision Changes Path 1.7 +6 -1 src/sys/boot/i386/loader/Makefile 1.7 +25 -2 src/sys/boot/i386/loader/main.c