* [U-Boot] android fastboot support on U-boot @ 2010-08-30 2:28 shulin.zhou 2010-08-30 9:31 ` Detlev Zundel 0 siblings, 1 reply; 8+ messages in thread From: shulin.zhou @ 2010-08-30 2:28 UTC (permalink / raw) To: u-boot hi, Now I working on porting android fastboot protocol to U-boot,does somebody add fastboot protocol patches to U-boot? shulin ^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] android fastboot support on U-boot 2010-08-30 2:28 [U-Boot] android fastboot support on U-boot shulin.zhou @ 2010-08-30 9:31 ` Detlev Zundel [not found] ` <05960c64beb771b9b35ce71bb08d5edb@localhost> 0 siblings, 1 reply; 8+ messages in thread From: Detlev Zundel @ 2010-08-30 9:31 UTC (permalink / raw) To: u-boot Hi shulin, > Now I working on porting android fastboot protocol to U-boot,does > somebody add fastboot protocol patches to U-boot? Can yopu please tell me what the "the android fastboot" protocol is? Cheers Detlev -- Modern technique has made it possible for leisure, within limits, to be not the prerogative of small privileged classes, but a right evenly distributed throughout the community. The morality of work is the morality of slaves, and the modern world has no need of slavery. -- Bertrand Russell -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-40 Fax: (+49)-8142-66989-80 Email: dzu at denx.de ^ permalink raw reply [flat|nested] 8+ messages in thread
[parent not found: <05960c64beb771b9b35ce71bb08d5edb@localhost>]
* [U-Boot] android fastboot support on U-boot [not found] ` <05960c64beb771b9b35ce71bb08d5edb@localhost> @ 2010-08-30 9:57 ` Bas Mevissen 2010-08-30 10:09 ` Detlev Zundel 0 siblings, 1 reply; 8+ messages in thread From: Bas Mevissen @ 2010-08-30 9:57 UTC (permalink / raw) To: u-boot Resend, forgot to copy the list. > On Mon, 30 Aug 2010 11:31:06 +0200, Detlev Zundel <dzu@denx.de> wrote: >> Hi shulin, >> >>> Now I working on porting android fastboot protocol to U-boot,does >>> somebody add fastboot protocol patches to U-boot? >> >> Can yopu please tell me what the "the android fastboot" protocol is? >> > http://android-dls.com/wiki/index.php?title=Fastboot "Fastboot is protocol used to update the flash filesystem in Android devices from a host over USB. It allows flashing of unsigned partition images." I was already wondering how feasible it would be to have a board with USB slave behave like an USB memory stick to flash the firmware by simply copying a file from the host to it. -- Bas ^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] android fastboot support on U-boot 2010-08-30 9:57 ` Bas Mevissen @ 2010-08-30 10:09 ` Detlev Zundel 2010-08-30 10:24 ` Bas Mevissen 0 siblings, 1 reply; 8+ messages in thread From: Detlev Zundel @ 2010-08-30 10:09 UTC (permalink / raw) To: u-boot Hi Bas, >> On Mon, 30 Aug 2010 11:31:06 +0200, Detlev Zundel <dzu@denx.de> wrote: >>> Hi shulin, >>> >>>> Now I working on porting android fastboot protocol to U-boot,does >>>> somebody add fastboot protocol patches to U-boot? >>> >>> Can yopu please tell me what the "the android fastboot" protocol is? >>> >> > > http://android-dls.com/wiki/index.php?title=Fastboot > > "Fastboot is protocol used to update the flash filesystem in Android > devices from a host over USB. It allows flashing of unsigned partition > images." > > I was already wondering how feasible it would be to have a board with > USB slave behave like an USB memory stick to flash the firmware by > simply copying a file from the host to it. Yet another alternative for the problem already solved by DFU[1]? Damn, after some recent activity in this area again I was starting to raise my hopes that more people realize such a thing exists already :( Thanks Detlev [1] http://wiki.openmoko.org/wiki/USB_DFU -- You see, the best way to solve a problem is to rigorously define it in terms of other people's problems, and then run away quickly. -- Roland McGrath -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-40 Fax: (+49)-8142-66989-80 Email: dzu at denx.de ^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] android fastboot support on U-boot 2010-08-30 10:09 ` Detlev Zundel @ 2010-08-30 10:24 ` Bas Mevissen 2010-08-30 11:11 ` Detlev Zundel 0 siblings, 1 reply; 8+ messages in thread From: Bas Mevissen @ 2010-08-30 10:24 UTC (permalink / raw) To: u-boot On Mon, 30 Aug 2010 12:09:48 +0200, Detlev Zundel <dzu@denx.de> wrote: > Yet another alternative for the problem already solved by DFU[1]? Damn, > after some recent activity in this area again I was starting to raise my > hopes that more people realize such a thing exists already :( > OK, there appears to be U-boot support as well. It needs a util on the host, but for development purposes that would be fine. A usb-storage like solution would be more flexible. It could have the option to poke around in a jffs2 image while still in u-boot. Very nice when the firmware doesn't boot or let you log in due to a small mistake in the image. But I guess that jffs2 R/W support in U-Boot is a bridge or two to far :-)) -- Bas ^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] android fastboot support on U-boot 2010-08-30 10:24 ` Bas Mevissen @ 2010-08-30 11:11 ` Detlev Zundel 2010-08-30 11:26 ` Bas Mevissen 0 siblings, 1 reply; 8+ messages in thread From: Detlev Zundel @ 2010-08-30 11:11 UTC (permalink / raw) To: u-boot Hi Bas, > On Mon, 30 Aug 2010 12:09:48 +0200, Detlev Zundel <dzu@denx.de> wrote: > >> Yet another alternative for the problem already solved by DFU[1]? Damn, >> after some recent activity in this area again I was starting to raise my >> hopes that more people realize such a thing exists already :( >> > > OK, there appears to be U-boot support as well. > It needs a util on the host, but for development purposes that would be > fine. > > A usb-storage like solution would be more flexible. It could have the > option to poke around in a jffs2 image while still in u-boot. Very nice > when the firmware doesn't boot or let you log in due to a small mistake > in the image. Is that fastboot usb-storage based? From the wiki-page that you referenced I only see that you also need a separate host tool to use it. So that's not much of a difference, is it? > But I guess that jffs2 R/W support in U-Boot is a bridge or two to far > :-)) And maybe a bridge I would not invest time anymore as UBI+UBIFS seems to be the weapon of choice against the fallability of NAND devices. Cheers Detlev -- "One of my most productive days was throwing away 1000 lines of code." - Ken Thompson. -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: (+49)-8142-66989-40 Fax: (+49)-8142-66989-80 Email: dzu at denx.de ^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] android fastboot support on U-boot 2010-08-30 11:11 ` Detlev Zundel @ 2010-08-30 11:26 ` Bas Mevissen 2010-08-30 13:58 ` John Rigby 0 siblings, 1 reply; 8+ messages in thread From: Bas Mevissen @ 2010-08-30 11:26 UTC (permalink / raw) To: u-boot On Mon, 30 Aug 2010 13:11:38 +0200, Detlev Zundel <dzu@denx.de> wrote: > Is that fastboot usb-storage based? From the wiki-page that you > referenced I only see that you also need a separate host tool to use it. > So that's not much of a difference, is it? > No, the usb-storage based thing was something I had in mind as a solution for easy firmware update and manipulation. -- Bas ^ permalink raw reply [flat|nested] 8+ messages in thread
* [U-Boot] android fastboot support on U-boot 2010-08-30 11:26 ` Bas Mevissen @ 2010-08-30 13:58 ` John Rigby 0 siblings, 0 replies; 8+ messages in thread From: John Rigby @ 2010-08-30 13:58 UTC (permalink / raw) To: u-boot The omapzoom project has a u-boot with fastboot support. http://git.omapzoom.org/?p=repo/u-boot.git;a=shortlog;h=refs/heads/omap4_dev_fastboot Beware, that the u-boot base rev is very old. On Mon, Aug 30, 2010 at 5:26 AM, Bas Mevissen <abuse@basmevissen.nl> wrote: > On Mon, 30 Aug 2010 13:11:38 +0200, Detlev Zundel <dzu@denx.de> wrote: > >> Is that fastboot usb-storage based? ?From the wiki-page that you >> referenced I only see that you also need a separate host tool to use it. >> So that's not much of a difference, is it? >> > > No, the usb-storage based thing was something I had in mind as a > solution for easy firmware update and manipulation. > > -- > Bas > _______________________________________________ > U-Boot mailing list > U-Boot at lists.denx.de > http://lists.denx.de/mailman/listinfo/u-boot > ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2010-08-30 13:58 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-30 2:28 [U-Boot] android fastboot support on U-boot shulin.zhou
2010-08-30 9:31 ` Detlev Zundel
[not found] ` <05960c64beb771b9b35ce71bb08d5edb@localhost>
2010-08-30 9:57 ` Bas Mevissen
2010-08-30 10:09 ` Detlev Zundel
2010-08-30 10:24 ` Bas Mevissen
2010-08-30 11:11 ` Detlev Zundel
2010-08-30 11:26 ` Bas Mevissen
2010-08-30 13:58 ` John Rigby
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox