From owner-cvs-user Tue Jan 21 16:16:05 1997 Return-Path: Received: (from root@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id QAA24696 for cvs-user-outgoing; Tue, 21 Jan 1997 16:16:05 -0800 (PST) Received: (from jkh@localhost) by freefall.freebsd.org (8.8.4/8.8.4) id QAA24686; Tue, 21 Jan 1997 16:16:01 -0800 (PST) Date: Tue, 21 Jan 1997 16:16:01 -0800 (PST) From: "Jordan K. Hubbard" Message-Id: <199701220016.QAA24686@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-user Subject: cvs commit: src/release/sysinstall cdrom.c dist.c floppy.c globals.c install.c nfs.c sysinstall.h Sender: owner-cvs-user@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jkh 97/01/21 16:16:01 Modified: release/sysinstall cdrom.c dist.c floppy.c globals.c install.c nfs.c sysinstall.h Log: Argh! Moving the media initialization to before the disk scribbling section was a good thing, since it made it possible to detect media problems *before* the installation started, but it also caused various things to be mounted BEFORE the chroot() call, which definitely messes things up. Fix this by detecting the pre-chroot() case and mounting into a subdir. Revision Changes Path 1.35 +45 -53 src/release/sysinstall/cdrom.c 1.95 +2 -2 src/release/sysinstall/dist.c 1.21 +13 -9 src/release/sysinstall/floppy.c 1.16 +2 -0 src/release/sysinstall/globals.c 1.161 +9 -54 src/release/sysinstall/install.c 1.16 +11 -8 src/release/sysinstall/nfs.c 1.108 +1 -0 src/release/sysinstall/sysinstall.h