Re: [U-Boot] [PATCH v2 3/7] dfu: DFU backend implementation

2012-07-27 Thread Lukasz Majewski
Dear Wolfgang Denk, > Correct. And adaption for other devices (say, NAND or USB mass > storage) should be trivial as well. USB Mass Storage is also under development. It is supposed to be a function (f_ums.c) for g_dnl.c composite gadget. I will postpone posting it to ML until we agree for the

Re: [U-Boot] [PATCH v2 3/7] dfu: DFU backend implementation

2012-07-27 Thread Wolfgang Denk
Dear Lukasz, In message <20120727151523.41406989@amdc308.digital.local> you wrote: > > Some clarification is needed. I've divided DFU support (PATCH v2) to > three separate parts: > 1. DFU transmission handling (via USB) ... > 2. Generic DFU functions ./drivers/dfu/dfu.c - which try to abstract >

Re: [U-Boot] [PATCH v2 3/7] dfu: DFU backend implementation

2012-07-27 Thread Lukasz Majewski
Dear Wolfgang Denk, > Dear Lukasz Majewski, > > In message <1341416922-13792-4-git-send-email-l.majew...@samsung.com> > you wrote: > > New, separate driver at ./drivers/dfu has been added. It allows > > platform and storage independent operation of DFU. > > Sorry for a probably stupid question,

Re: [U-Boot] [PATCH v2 3/7] dfu: DFU backend implementation

2012-07-27 Thread Wolfgang Denk
Dear Lukasz Majewski, In message <1341416922-13792-4-git-send-email-l.majew...@samsung.com> you wrote: > New, separate driver at ./drivers/dfu has been added. It allows platform > and storage independent operation of DFU. Sorry for a probably stupid question, but I know basicly zero about DFU.

Re: [U-Boot] [PATCH v2 3/7] dfu: DFU backend implementation

2012-07-09 Thread Marek Vasut
Dear Lukasz Majewski, > New, separate driver at ./drivers/dfu has been added. It allows platform > and storage independent operation of DFU. > > Signed-off-by: Lukasz Majewski > Signed-off-by: Kyungmin Park > Cc: Marek Vasut > [...] > +char *dfu_extract_token(char** e, int *n) > +{ > +

[U-Boot] [PATCH v2 3/7] dfu: DFU backend implementation

2012-07-04 Thread Lukasz Majewski
New, separate driver at ./drivers/dfu has been added. It allows platform and storage independent operation of DFU. Signed-off-by: Lukasz Majewski Signed-off-by: Kyungmin Park Cc: Marek Vasut --- Changes for v2: - None --- Makefile |1 + drivers/dfu/Makefile | 43 dr