From owner-cvs-src@FreeBSD.ORG Tue Dec 16 09:58:26 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 F23B216A4CE; Tue, 16 Dec 2003 09:58:25 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FB6343D46; Tue, 16 Dec 2003 09:58:25 -0800 (PST) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id hBGHwP0B021708; Tue, 16 Dec 2003 09:58:25 -0800 (PST) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id hBGHwPGe021707; Tue, 16 Dec 2003 09:58:25 -0800 (PST) (envelope-from scottl) Message-Id: <200312161758.hBGHwPGe021707@repoman.freebsd.org> From: Scott Long Date: Tue, 16 Dec 2003 09:58:24 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/sysinstall dist.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: Tue, 16 Dec 2003 17:58:26 -0000 scottl 2003/12/16 09:58:24 PST FreeBSD src repository Modified files: usr.sbin/sysinstall dist.c Log: Once upon a time, DEVFS was optional, major numbers where static, and /dev needed to be statically populated with device nodes. The first two are no longer true, which makes the third pretty moot. In fact, we don't seem to put device node bits into the distribution archives at all anymore. So..... remove the god-aweful nasty hack that force unmounted devfs during installation so that static device nodes could land in /dev. Now that the vnode cleaner handles this case better this isn't strictly needed, but axeing code in sysinstall is almost always benficial. Thanks to Don Lewis for pointing out this attribute of sysinstall. Revision Changes Path 1.227 +1 -22 src/usr.sbin/sysinstall/dist.c