From owner-cvs-all Mon Dec 2 12:19:24 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E30237B401; Mon, 2 Dec 2002 12:19:23 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D383043E9C; Mon, 2 Dec 2002 12:19:22 -0800 (PST) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id gB2KFGmV070049; Mon, 2 Dec 2002 12:15:16 -0800 (PST) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id gB2KFGau070048; Mon, 2 Dec 2002 12:15:16 -0800 (PST) Message-Id: <200212022015.gB2KFGau070048@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 2 Dec 2002 12:15:16 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/sysinstall install.c misc.c sysinstall.h X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG marcel 2002/12/02 12:15:16 PST Modified files: usr.sbin/sysinstall install.c misc.c sysinstall.h Log: ia64 specific. o Mount the EFI file system as msdosfs and not ufs as it's a FAT file system. Introduce Mount_msdos() for this to go side-by-side with Mount(). o Also, since mounting is performed as a command (which means it's queued, sorted, lost, found and executed), we cannot create a directory on the file system by calling mkdir. We must make sure the mkdir happens after the mount. Introduce Mkdir_command() to allow mkdir operations to be queued, sorted, lost, found and executed as well. Approved by: re (jhb, rwatson) Revision Changes Path 1.336 +6 -3 src/usr.sbin/sysinstall/install.c 1.42 +46 -1 src/usr.sbin/sysinstall/misc.c 1.235 +2 -0 src/usr.sbin/sysinstall/sysinstall.h To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message