Re: [U-Boot] [PATCH 13/17] fs: fat: support mkdir

2018-07-23 Thread AKASHI Takahiro
On Fri, Jul 20, 2018 at 07:14:21PM +0200, Heinrich Schuchardt wrote: > On 07/20/2018 04:57 AM, AKASHI Takahiro wrote: > > In this patch, mkdir support is added to FAT file system. > > A newly created directory contains only "." and ".." entries. > > > > Signed-off-by: AKASHI Takahiro > > The pat

Re: [U-Boot] [PATCH 13/17] fs: fat: support mkdir

2018-07-20 Thread Heinrich Schuchardt
On 07/20/2018 04:57 AM, AKASHI Takahiro wrote: > In this patch, mkdir support is added to FAT file system. > A newly created directory contains only "." and ".." entries. > > Signed-off-by: AKASHI Takahiro The patch does set the creation date of the directory according to the real time clock but

[U-Boot] [PATCH 13/17] fs: fat: support mkdir

2018-07-19 Thread AKASHI Takahiro
In this patch, mkdir support is added to FAT file system. A newly created directory contains only "." and ".." entries. Signed-off-by: AKASHI Takahiro --- fs/fat/fat_write.c | 138 + fs/fs.c| 3 +- include/fat.h | 1 + 3 files chan