Re: [U-Boot] [PATCH v3 10/26] fs: fat: support write with non-zero offset

2018-11-05 Thread Clément Péron
Hi, On Thu, 1 Nov 2018 at 06:08, AKASHI Takahiro wrote: > > On Wed, Oct 31, 2018 at 09:54:14PM +0100, Heinrich Schuchardt wrote: > > On 10/31/2018 01:22 PM, Alexander Graf wrote: > > > On 10/31/2018 11:00 AM, Clément Péron wrote: > > >> Hi, > > >> > > >> Trying to rebuild my SoCFPGA Cyclone V boa

Re: [U-Boot] [PATCH v3 10/26] fs: fat: support write with non-zero offset

2018-10-31 Thread AKASHI Takahiro
On Wed, Oct 31, 2018 at 09:54:14PM +0100, Heinrich Schuchardt wrote: > On 10/31/2018 01:22 PM, Alexander Graf wrote: > > On 10/31/2018 11:00 AM, Clément Péron wrote: > >> Hi, > >> > >> Trying to rebuild my SoCFPGA Cyclone V board and got this error : > >> > >> fs/built-in.o: In function `set_conten

Re: [U-Boot] [PATCH v3 10/26] fs: fat: support write with non-zero offset

2018-10-31 Thread Heinrich Schuchardt
On 10/31/2018 01:22 PM, Alexander Graf wrote: > On 10/31/2018 11:00 AM, Clément Péron wrote: >> Hi, >> >> Trying to rebuild my SoCFPGA Cyclone V board and got this error : >> >> fs/built-in.o: In function `set_contents': >> /home/cperon/u-boot/fs/fat/fat_write.c:831: undefined reference to >> `__ae

Re: [U-Boot] [PATCH v3 10/26] fs: fat: support write with non-zero offset

2018-09-11 Thread Alexander Graf
On 12.09.18 04:14, Akashi, Takahiro wrote: > On Tue, Sep 11, 2018 at 01:09:43PM +0200, Alexander Graf wrote: >> >> >> On 11.09.18 08:59, Akashi, Takahiro wrote: >>> From: AKASHI Takahiro >>> >>> In this patch, all the necessary code for allowing for a file offset >>> at write is implemented. Wha

Re: [U-Boot] [PATCH v3 10/26] fs: fat: support write with non-zero offset

2018-09-11 Thread Akashi, Takahiro
On Tue, Sep 11, 2018 at 01:09:43PM +0200, Alexander Graf wrote: > > > On 11.09.18 08:59, Akashi, Takahiro wrote: > > From: AKASHI Takahiro > > > > In this patch, all the necessary code for allowing for a file offset > > at write is implemented. What plays a major roll here is get_set_cluster(),

Re: [U-Boot] [PATCH v3 10/26] fs: fat: support write with non-zero offset

2018-09-11 Thread Alexander Graf
On 11.09.18 08:59, Akashi, Takahiro wrote: > From: AKASHI Takahiro > > In this patch, all the necessary code for allowing for a file offset > at write is implemented. What plays a major roll here is get_set_cluster(), > which, in contrast to its counterpart, set_cluster(), only operates on > al

[U-Boot] [PATCH v3 10/26] fs: fat: support write with non-zero offset

2018-09-11 Thread Akashi, Takahiro
From: AKASHI Takahiro In this patch, all the necessary code for allowing for a file offset at write is implemented. What plays a major roll here is get_set_cluster(), which, in contrast to its counterpart, set_cluster(), only operates on already-allocated clusters, overwriting with data. So, wit