how many people is using fat as their file system?

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
User avatar
mcheung63
Member
Member
Posts: 175
Joined: Thu Jun 22, 2006 8:33 am
Location: Hong Kong
Contact:

how many people is using fat as their file system?

Post by mcheung63 »

how many people is using fat as their file system? Iook like many

If you can dump the fat fs in bochs GUI, is it good?
AUsername
Member
Member
Posts: 54
Joined: Sun Feb 01, 2009 9:07 pm

Re: how many people is using fat as their file system?

Post by AUsername »

I personally use FAT, I don't understand what you mean by dumping the FAT fsys into Bochs' GUI though.
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Libera.chat IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Re: how many people are using fat as their file system?

Post by Combuster »

*cough*bloatware*cough*

Are you planning on supporting your kitchen sink? :?
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
User avatar
qw
Member
Member
Posts: 792
Joined: Mon Jan 26, 2009 2:48 am

Re: how many people is using fat as their file system?

Post by qw »

I wanted not only to write but also to design everyting from scratch, including the file system. As an exception, my OS supports FAT12 so I can easily access the floppy from Windows. I am still designing my own FS, though.
Grunt
Member
Member
Posts: 37
Joined: Fri Nov 06, 2009 1:05 am

Re: how many people is using fat as their file system?

Post by Grunt »

AUsername wrote:I personally use FAT, I don't understand what you mean by dumping the FAT fsys into Bochs' GUI though.
He means to add support for it in his peter-bochs debugger.

EDIT. There are lots of people that decided to support FAT. I will too (once I get started on the VFS), but it's mainly because I do development on Windows, and it's easy to copy/view files inside the image file I use as a virtual disk.
jal
Member
Member
Posts: 1385
Joined: Wed Oct 31, 2007 9:09 am

Re: how many people is using fat as their file system?

Post by jal »

The number one reason to support FAT is, imho, not those obsolete floppies, but removable USB mass storage devices that come preformatted in FAT (both flash drives and memory cards like the ubiquitous SD drives). FAT32 is the de facto standard for these drives.


JAL
User avatar
Creature
Member
Member
Posts: 548
Joined: Sat Dec 27, 2008 2:34 pm
Location: Belgium

Re: how many people are using fat as their file system?

Post by Creature »

Combuster wrote:*cough*bloatware*cough*

Are you planning on supporting your kitchen sink? :?
I like features, but I guess Combuster is right. It's like the much-used example of the IDE including an e-mail component (shouldn't be in there).

The point is, if you add too much somewhat unrelevant parts, you will eventually have to support too much and you will get distracted from the original goal. Stick to what you wanted to make originally and let other tools take over jobs like this.
When the chance of succeeding is 99%, there is still a 50% chance of that success happening.
User avatar
NickJohnson
Member
Member
Posts: 1249
Joined: Tue Mar 24, 2009 8:11 pm
Location: Sunnyvale, California

Re: how many people are using fat as their file system?

Post by NickJohnson »

@Creature: to state it more elegantly: "Do one thing well."
User avatar
neon
Member
Member
Posts: 1567
Joined: Sun Feb 18, 2007 7:28 pm
Contact:

Re: how many people is using fat as their file system?

Post by neon »

It would be better if you provide the ability of creating plug-ins to display debugging information. This way you are not limiting yourself to one filesystem. You can even provide special functionality through the plug-in API as well. (I can only see something like this being useful for filesystems not supported by the host OS though..)

To answer your question though, I do use FAT as well only because I dont have the need for another filesystem at this time.
OS Development Series | Wiki | os | ncc
char c[2]={"\x90\xC3"};int main(){void(*f)()=(void(__cdecl*)(void))(void*)&c;f();}
User avatar
mcheung63
Member
Member
Posts: 175
Joined: Thu Jun 22, 2006 8:33 am
Location: Hong Kong
Contact:

Re: how many people is using fat as their file system?

Post by mcheung63 »

thanks for comments :)
Post Reply