how many people is using fat as their file system?
how many people is using fat as their file system?
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?
If you can dump the fat fs in bochs GUI, is it good?
Re: how many people is using fat as their file system?
I personally use FAT, I don't understand what you mean by dumping the FAT fsys into Bochs' GUI though.
- Combuster
- 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?
*cough*bloatware*cough*
Are you planning on supporting your kitchen sink?
Are you planning on supporting your kitchen sink?
Re: how many people is using fat as their file system?
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.
Re: how many people is using fat as their file system?
He means to add support for it in his peter-bochs debugger.AUsername wrote:I personally use FAT, I don't understand what you mean by dumping the FAT fsys into Bochs' GUI though.
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.
Re: how many people is using fat as their file system?
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
JAL
Re: how many people are using fat as their file system?
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).Combuster wrote:*cough*bloatware*cough*
Are you planning on supporting your kitchen sink?
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.
- NickJohnson
- 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?
@Creature: to state it more elegantly: "Do one thing well."
Re: how many people is using fat as their file system?
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.
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();}
char c[2]={"\x90\xC3"};int main(){void(*f)()=(void(__cdecl*)(void))(void*)&c;f();}
Re: how many people is using fat as their file system?
thanks for comments