Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 3 Jan 2012 09:50:11 GMT
From:      Garrett Cooper <yanegomi@gmail.com>
To:        freebsd-fs@FreeBSD.org
Subject:   Re: conf/116931: lack of fsck_cd9660 prevents mounting iso images with mdconfig_md%d (with workaround)
Message-ID:  <201201030950.q039oBvC095944@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR conf/116931; it has been noted by GNATS.

From: Garrett Cooper <yanegomi@gmail.com>
To: bug-followup@FreeBSD.org, phk@critter.freebsd.dk
Cc:  
Subject: Re: conf/116931: lack of fsck_cd9660 prevents mounting iso images
 with mdconfig_md%d (with workaround)
Date: Tue, 3 Jan 2012 01:41:28 -0800

     The attached patch looks ok. The only suggestion that I have is
 that since you're grabbing the fs field from /etc/fstab, instead of
 keeping a blacklist, I would just use command -v; example:
 
 $ command -v fsck_ufs; echo $?
 /sbin/fsck_ufs
 0
 $ command -v fsck_cd9660; echo $?
 1
 $
 
     This would reduce the number of needed special cases in the mdconfig script.
 Thanks!
 -Garrett



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201201030950.q039oBvC095944>