Re: [U-Boot] [PATCH v2 2/4] ubifs: Add functions for generic fs use

2015-09-14 Thread Hans de Goede
Hi, On 01-09-15 21:57, Stephen Warren wrote: On 08/22/2015 11:04 AM, Hans de Goede wrote: Implement the necessary functions for implementing generic fs support for ubifs. diff --git a/fs/ubifs/ubifs.c b/fs/ubifs/ubifs.c +int ubifs_set_blk_dev(block_dev_desc_t *rbdd, disk_partition_t

Re: [U-Boot] [PATCH v2 2/4] ubifs: Add functions for generic fs use

2015-09-01 Thread Stephen Warren
On 08/22/2015 11:04 AM, Hans de Goede wrote: > Implement the necessary functions for implementing generic fs support > for ubifs. > diff --git a/fs/ubifs/ubifs.c b/fs/ubifs/ubifs.c > +int ubifs_set_blk_dev(block_dev_desc_t *rbdd, disk_partition_t *info) > +{ > + /* Check that ubifs is

Re: [U-Boot] [PATCH v2 2/4] ubifs: Add functions for generic fs use

2015-09-01 Thread Michael Trimarchi
Hi On Sep 1, 2015 9:57 PM, "Stephen Warren" wrote: > > On 08/22/2015 11:04 AM, Hans de Goede wrote: > > Implement the necessary functions for implementing generic fs support > > for ubifs. > > > diff --git a/fs/ubifs/ubifs.c b/fs/ubifs/ubifs.c > > > +int

Re: [U-Boot] [PATCH v2 2/4] ubifs: Add functions for generic fs use

2015-08-25 Thread Heiko Schocher
Hello Hans, Am 22.08.2015 um 20:04 schrieb Hans de Goede: Implement the necessary functions for implementing generic fs support for ubifs. Signed-off-by: Hans de Goede hdego...@redhat.com --- fs/ubifs/ubifs.c | 62 +++

[U-Boot] [PATCH v2 2/4] ubifs: Add functions for generic fs use

2015-08-22 Thread Hans de Goede
Implement the necessary functions for implementing generic fs support for ubifs. Signed-off-by: Hans de Goede hdego...@redhat.com --- fs/ubifs/ubifs.c | 62 +++ include/ubifs_uboot.h | 4 2 files changed, 66 insertions(+) diff --git