From owner-cvs-src@FreeBSD.ORG Sat Oct 11 01:10:34 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 8E0FA16A4B3; Sat, 11 Oct 2003 01:10:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8E8643F75; Sat, 11 Oct 2003 01:10:33 -0700 (PDT) (envelope-from matusita@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 h9B8AXXJ080572; Sat, 11 Oct 2003 01:10:33 -0700 (PDT) (envelope-from matusita@repoman.freebsd.org) Received: (from matusita@localhost) by repoman.freebsd.org (8.12.9/8.12.9/Submit) id h9B8AXCW080563; Sat, 11 Oct 2003 01:10:33 -0700 (PDT) (envelope-from matusita) Message-Id: <200310110810.h9B8AXCW080563@repoman.freebsd.org> From: Makoto Matsushita Date: Sat, 11 Oct 2003 01:10:33 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release Makefile src/release/sysinstall modules.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, 11 Oct 2003 08:10:34 -0000 matusita 2003/10/11 01:10:33 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) release Makefile release/sysinstall modules.c Log: Fix (one of) 4.9-RELEASE release breaker, "Loading kernel modules while installation phase sometimes causes an error" bug. It also includes "there's an error while loading firewire modules" bug. Since the results of readdir(3)'s whims, either sbp.ko or if_fwe.ko is picked up for load BEFORE firewire.ko. Unfortunately module_path is not properly set, kldload(2) cannot find kernel modules, firewire.ko, which is required to load sbp.ko/if_fwe.ko. This is why you'll see "loading failed" message. Actually these are mostly comes from following commits on the HEAD: src/release/Makefile rev 1.721 src/usr.sbin/sysinstall/modules.c rev 1.5 Approved by: murray (as of re@, pre-approved) Revision Changes Path 1.536.2.111 +3 -2 src/release/Makefile 1.2.2.5 +2 -2 src/release/sysinstall/modules.c