From owner-cvs-src@FreeBSD.ORG Sat Nov 15 02:04:06 2003 Return-Path: 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 DE45116A4CE; Sat, 15 Nov 2003 02:04:06 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 675C343FF7; Sat, 15 Nov 2003 02:04:06 -0800 (PST) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.9/8.12.9) with ESMTP id hAFA46XJ038371; Sat, 15 Nov 2003 02:04:06 -0800 (PST) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id hAFA46Ip038370; Sat, 15 Nov 2003 02:04:06 -0800 (PST) (envelope-from bde) Message-Id: <200311151004.hAFA46Ip038370@repoman.freebsd.org> From: Bruce Evans Date: Sat, 15 Nov 2003 02:04:06 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys reboot.h src/sys/boot/i386/boot2 boot2.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 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: Sat, 15 Nov 2003 10:04:07 -0000 bde 2003/11/15 02:04:06 PST FreeBSD src repository Modified files: sys/sys reboot.h sys/boot/i386/boot2 boot2.c Log: Changed the RB_PAUSE flag from 0x40000 to 0x100000 and marked the old value as reserved for internal use in boot blocks, because RB_PAUSE broke binary compatibility by usurping the RB_DUAL flag. Probably no one except me has boot blocks for which this matters, since most boot blocks based on biosboot including pc98's boot2 can't boot elf kernels, and /boot/loader doesn't properly pass flags set by the previous stage. reboot.h: Also mark the historical RB_PROBEKBD flag (0x80000) as reserved for internal use in boot blocks. boot2.c: Added comments to inhibit usurping of other flags. Approved by: guido, imp MFC after: 1 week Revision Changes Path 1.67 +13 -2 src/sys/boot/i386/boot2/boot2.c 1.23 +4 -2 src/sys/sys/reboot.h