From owner-cvs-src@FreeBSD.ORG Thu May 19 23:03:06 2005 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 C4D9716A4CF; Thu, 19 May 2005 23:03:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DF9343DAF; Thu, 19 May 2005 23:03:06 +0000 (GMT) (envelope-from sobomax@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 j4JN32UA077947; Thu, 19 May 2005 23:03:02 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j4JN32MX077946; Thu, 19 May 2005 23:03:02 GMT (envelope-from sobomax) Message-Id: <200505192303.j4JN32MX077946@repoman.freebsd.org> From: Maxim Sobolev Date: Thu, 19 May 2005 23:03:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/common boot.c help.common loader.8 src/sys/boot/forth loader.conf 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: Thu, 19 May 2005 23:03:07 -0000 sobomax 2005-05-19 23:03:02 UTC FreeBSD src repository Modified files: sys/boot/common boot.c help.common loader.8 sys/boot/forth loader.conf Log: Extend `autoboot_delay' handling - is this variable is set to -1 don't allow user to interrupt autoboot process at all. Currently, even when `autoboot_delay' is set to 0, loader(8) still allows autoboot process to be interrupted by pressing any key on the console when the loader reads kernel and modules from the disk. In some cases (i.e. untrusted environment) such behaviour is highly indesirable and user should not be allowed to interfere with the autoboot process at all. Sponsored by: PBXpress Inc. MFC after: 3 days Revision Changes Path 1.31 +33 -28 src/sys/boot/common/boot.c 1.39 +2 -0 src/sys/boot/common/help.common 1.79 +31 -0 src/sys/boot/common/loader.8 1.95 +4 -1 src/sys/boot/forth/loader.conf