From owner-freebsd-geom@FreeBSD.ORG Mon May 3 01:58:13 2004 Return-Path: Delivered-To: freebsd-geom@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D865216A4CE for ; Mon, 3 May 2004 01:58:13 -0700 (PDT) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E85143D31 for ; Mon, 3 May 2004 01:58:13 -0700 (PDT) (envelope-from nork@FreeBSD.org) Received: from melfina.ninth-nine.com ([IPv6:2002:d312:f91e::1]) (authenticated bits=0) by sakura.ninth-nine.com (8.12.11/8.12.11/NinthNine) with ESMTP id i438wBSB051631 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 3 May 2004 17:58:12 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Mon, 3 May 2004 17:58:10 +0900 From: Norikatsu Shigemura To: freebsd-geom@FreeBSD.org Message-Id: <20040503175810.62d3f0fb.nork@FreeBSD.org> X-Mailer: Sylpheed version 0.9.9-gtk2-20040229 (GTK+ 2.4.0; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: new GEOM feature - geom_vol_msdosfs X-BeenThere: freebsd-geom@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GEOM-specific discussions and implementations List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 03 May 2004 08:58:14 -0000 I made a geom_vol_msdosfs GEOM module. It provides a feature like geom_vol_ffs. Its own targets are USB memories, USB Digital Cameras, and USB/IEEE1394 strorages formated MS-DOS (FAT16/FAT32) File System as typical embeded filesystem. By using it, we can get a fixed mount pointing like /dev/vol/VOLUMELABEL. So we can write following to /etc/fstab. /dev/vol/VOLUMELABEL /mnt/VOLUMELABEL msdosfs rw,noauto 0 0 I tested my md1 (newfs_msdos -L -f 1440), FAT32 formated by WindowsXP, and XOSL (Extended Operationg System Loader) Dedicated partition(slice?). Sorry, I have no external eripheral equipments. Please test in these(avobe targets) environments. And I hope to commit to FreeBSD source tree:-).