Re: How to sync a dos file system externally

2018-10-05 Thread Christian Mauderer
-- > From: Chris Johns > > Sent: Tuesday, October 02, 2018 6:32 PM > To: Cliff Geschke; > Subject: Re: How to sync a dos file system externally > >   > > On 03/10/2018 04:56, Cliff Geschke wrote: > >> I have implemented a dos file system (msdos_*) on a

RE: How to sync a dos file system externally

2018-10-05 Thread Cliff Geschke
to sync a dos file system externally On 03/10/2018 04:56, Cliff Geschke wrote: > I have implemented a dos file system (msdos_*) on a flash device. Is the flash device a chip you have direct access too? The reason I ask is if possible using JFFS2 (a journaling file system) or even YA

Re: How to sync a dos file system externally

2018-10-03 Thread Sebastian Huber
Hello Cliff, in case you expect a certain behaviour from the FAT file system implementation, then I would write a self-contained test case and add it to the RTEMS testsuite. We can then change the implementation accordingly if it makes sense. -- Sebastian Huber, embedded brains GmbH Address

RE: How to sync a dos file system externally

2018-10-03 Thread Cliff Geschke
02, 2018 6:32 PM To: Cliff Geschke; Subject: Re: How to sync a dos file system externally On 03/10/2018 04:56, Cliff Geschke wrote: > I have implemented a dos file system (msdos_*) on a flash device. Is the flash device a chip you have direct access too? The reason I ask is if possible usi

Re: How to sync a dos file system externally

2018-10-02 Thread Ian Caddy
On 3/10/2018 7:32 AM, Chris Johns wrote: On 03/10/2018 04:56, Cliff Geschke wrote: I have implemented a dos file system (msdos_*) on a flash device. Is the flash device a chip you have direct access too? The reason I ask is if possible using JFFS2 (a journaling file system) or even YAFFS (com

Re: How to sync a dos file system externally

2018-10-02 Thread Chris Johns
On 03/10/2018 04:56, Cliff Geschke wrote: > I have implemented a dos file system (msdos_*) on a flash device. Is the flash device a chip you have direct access too? The reason I ask is if possible using JFFS2 (a journaling file system) or even YAFFS (commercial license maybe needed) is a better so

How to sync a dos file system externally

2018-10-02 Thread Cliff Geschke
I have implemented a dos file system (msdos_*) on a flash device. Because it is possible for the user to power down the system unexpectedly, I want to sync the file system to the flash device after a 3 second idle time. How do I externally force a sync on msdos from another thread? A relate