View Single Post
  #4   (View Single Post)  
Old 23rd May 2009
BSDKaffee's Avatar
BSDKaffee BSDKaffee is offline
Real Name: Jason Hale
Coffee Addict
 
Join Date: May 2008
Location: Wintersville, Ohio
Posts: 212
Default

Quote:
Originally Posted by Har_Don View Post
statfs ibcs2
Is this something I must compile into the kernel or as a module?
Code:
>> ~/build/mp3fs-0.13 find /* -name "*statfs.h*" -print
/usr/src/sys/i386/ibcs2/ibcs2_statfs.h
Seems like I might have to try that, and see what happens.
The statfs method needs to be converted from struct statfs <sys/statfs.h> (Linux) to struct statvfs <sys/statvfs.h> (POSIX). You may want to look at this site: http://fuse4bsd.creo.hu/doc/html_chu...uickstart.html. Long story short...looks like some porting is required.

Last edited by BSDKaffee; 23rd May 2009 at 08:44 AM.
Reply With Quote