All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] doc: Move fastboot protocol doc to android dir
@ 2019-07-02 18:14 Sam Protsenko
  2019-07-18 23:57 ` Tom Rini
  0 siblings, 1 reply; 6+ messages in thread
From: Sam Protsenko @ 2019-07-02 18:14 UTC (permalink / raw)
  To: u-boot

Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
---
 .../fastboot-protocol.txt}                                    | 0
 doc/android/fastboot.txt                                      | 4 ++--
 2 files changed, 2 insertions(+), 2 deletions(-)
 rename doc/{README.android-fastboot-protocol => android/fastboot-protocol.txt} (100%)

diff --git a/doc/README.android-fastboot-protocol b/doc/android/fastboot-protocol.txt
similarity index 100%
rename from doc/README.android-fastboot-protocol
rename to doc/android/fastboot-protocol.txt
diff --git a/doc/android/fastboot.txt b/doc/android/fastboot.txt
index ce852a4fd1..e774c66f56 100644
--- a/doc/android/fastboot.txt
+++ b/doc/android/fastboot.txt
@@ -5,8 +5,8 @@ Android Fastboot
 Overview
 ========
 
-The protocol that is used over USB and UDP is described in the
-``README.android-fastboot-protocol`` file in the same directory.
+The protocol that is used over USB and UDP is described in
+``doc/android/fastboot-protocol.txt``.
 
 The current implementation supports the following standard commands:
 
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH] doc: Move fastboot protocol doc to android dir
  2019-07-02 18:14 [U-Boot] [PATCH] doc: Move fastboot protocol doc to android dir Sam Protsenko
@ 2019-07-18 23:57 ` Tom Rini
  2019-07-19  9:11   ` Eugeniu Rosca
  0 siblings, 1 reply; 6+ messages in thread
From: Tom Rini @ 2019-07-18 23:57 UTC (permalink / raw)
  To: u-boot

On Tue, Jul 02, 2019 at 09:14:57PM +0300, Sam Protsenko wrote:

> Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190718/2a08abe0/attachment.sig>

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH] doc: Move fastboot protocol doc to android dir
  2019-07-18 23:57 ` Tom Rini
@ 2019-07-19  9:11   ` Eugeniu Rosca
  2019-07-19 14:36     ` Sam Protsenko
  0 siblings, 1 reply; 6+ messages in thread
From: Eugeniu Rosca @ 2019-07-19  9:11 UTC (permalink / raw)
  To: u-boot

Hi Sam,

On Thu, Jul 18, 2019 at 07:57:45PM -0400, Tom Rini wrote:
> On Tue, Jul 02, 2019 at 09:14:57PM +0300, Sam Protsenko wrote:
> 
> > Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
> 
> Applied to u-boot/master, thanks!

This recent merge introduced a conflict when applying [1] to master.
Are you aware of any other patches which would conflict with [1]?
If not, I would proceed with sending a v3. TIA.

[1] https://patchwork.ozlabs.org/cover/1131356/ 
   ("[U-Boot,v2,0/5] Fixes and improvements in BCB and Android docs")
-- 
Best Regards,
Eugeniu.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH] doc: Move fastboot protocol doc to android dir
  2019-07-19  9:11   ` Eugeniu Rosca
@ 2019-07-19 14:36     ` Sam Protsenko
  2019-07-19 21:45       ` Eugeniu Rosca
  0 siblings, 1 reply; 6+ messages in thread
From: Sam Protsenko @ 2019-07-19 14:36 UTC (permalink / raw)
  To: u-boot

Hi Eugeniu,

On Fri, Jul 19, 2019 at 12:12 PM Eugeniu Rosca <roscaeugeniu@gmail.com> wrote:
>
> Hi Sam,
>
> On Thu, Jul 18, 2019 at 07:57:45PM -0400, Tom Rini wrote:
> > On Tue, Jul 02, 2019 at 09:14:57PM +0300, Sam Protsenko wrote:
> >
> > > Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
> >
> > Applied to u-boot/master, thanks!
>
> This recent merge introduced a conflict when applying [1] to master.
> Are you aware of any other patches which would conflict with [1]?
> If not, I would proceed with sending a v3. TIA.
>

Yeah, I forgot about it, sorry. No other conflicting patches pending.
You can check my android-next branch [1] to check all patches I
collected for sending (and my current work on top of it).

[1] https://github.com/joe-skb7/u-boot-misc/commits/android-next

> [1] https://patchwork.ozlabs.org/cover/1131356/
>    ("[U-Boot,v2,0/5] Fixes and improvements in BCB and Android docs")
> --
> Best Regards,
> Eugeniu.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH] doc: Move fastboot protocol doc to android dir
  2019-07-19 14:36     ` Sam Protsenko
@ 2019-07-19 21:45       ` Eugeniu Rosca
  2019-07-20 22:36         ` Sam Protsenko
  0 siblings, 1 reply; 6+ messages in thread
From: Eugeniu Rosca @ 2019-07-19 21:45 UTC (permalink / raw)
  To: u-boot

On Fri, Jul 19, 2019 at 05:36:14PM +0300, Sam Protsenko wrote:

> You can check my android-next branch [1] to check all patches I
> collected for sending (and my current work on top of it).
> 
> [1] https://github.com/joe-skb7/u-boot-misc/commits/android-next

It looks like we'll be able to dump the contents and fetch the
meta-information of boot.img in the nearest future. Very cool. Thanks
for the efforts.

-- 
Best Regards,
Eugeniu.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [U-Boot] [PATCH] doc: Move fastboot protocol doc to android dir
  2019-07-19 21:45       ` Eugeniu Rosca
@ 2019-07-20 22:36         ` Sam Protsenko
  0 siblings, 0 replies; 6+ messages in thread
From: Sam Protsenko @ 2019-07-20 22:36 UTC (permalink / raw)
  To: u-boot

On Sat, Jul 20, 2019 at 12:45 AM Eugeniu Rosca <roscaeugeniu@gmail.com> wrote:
>
> On Fri, Jul 19, 2019 at 05:36:14PM +0300, Sam Protsenko wrote:
>
> > You can check my android-next branch [1] to check all patches I
> > collected for sending (and my current work on top of it).
> >
> > [1] https://github.com/joe-skb7/u-boot-misc/commits/android-next
>
> It looks like we'll be able to dump the contents and fetch the
> meta-information of boot.img in the nearest future. Very cool. Thanks
> for the efforts.
>

Actually we are already able to dump the contents of image using
"iminfo" command (once boot image is loaded to $loadaddr). But yeah,
I'm basically trying to implement new boot scheme, for Android Boot
Image v2. Not sure if I'll be in time before merge window closes,
though. So it will be probably posted for next merge window, along
with other boot flow stuff.

> --
> Best Regards,
> Eugeniu.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-07-20 22:36 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-02 18:14 [U-Boot] [PATCH] doc: Move fastboot protocol doc to android dir Sam Protsenko
2019-07-18 23:57 ` Tom Rini
2019-07-19  9:11   ` Eugeniu Rosca
2019-07-19 14:36     ` Sam Protsenko
2019-07-19 21:45       ` Eugeniu Rosca
2019-07-20 22:36         ` Sam Protsenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.