From: Bartlomiej Sieka <tur@semihalf.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] Automatic software updates in U-Boot -- version 2
Date: Tue, 14 Oct 2008 14:42:44 +0200 [thread overview]
Message-ID: <48F493C4.30404@semihalf.com> (raw)
In-Reply-To: <20081013225748.CB87685EDBE7@gemini.denx.de>
Wolfgang Denk wrote:
> Dear Bartek,
>
> in message <1222867592-58285-1-git-send-email-tur@semihalf.com> you wrote:
>> This is the second version of the patch series adding support for automatic
>> software updates from a TFTP server. V2 adds millisecond granularity of the
>> TFTP timeouts and addresses comments posted to the ML for the first version.
>>
>> First three patches make some general changes required by the new feature,
>> first one in the Flash subsystem, second and third in the networking code.
>> Then follows a minor clean-up, with the feature proper in fifth patch. Last
>> patch provides minor enhancements to the iminfo output that can become handy
>> when using the new feature.
>>
>> Please see newly added doc/README.update for more details.
>>
>> Code has been compile-tested on several ppc, arm and mips targets. The feature
>> itself has been tested on TQM8555 and MPC8555CDS and trab boards.
>
> All patches have been checked in into the "next" branch of the U-Boot
> repository. Can you please check if everything is correct in place and
> working as expected?
Hi Wolfgang,
Seems that the bulk of the feature didn't make it into the 'next'
branch. Commit 'Automatic software update from TFTP server' on the
branch (b830abed) shows only the following files modified:
common/Makefile
Whereas the patch posted to the list ('[PATCH v2 5/6] Automatic software
update from TFTP server') has the following diffstat:
README | 12 ++
common/Makefile | 1 +
common/main.c | 7 +
common/update.c | 315
+++++++++++++++++++++++++++++++++++++++
doc/README.update | 90 +++++++++++
doc/uImage.FIT/update3.its | 41 +++++
doc/uImage.FIT/update_uboot.its | 21 +++
7 files changed, 487 insertions(+), 0 deletions(-)
create mode 100644 common/update.c
create mode 100644 doc/README.update
create mode 100644 doc/uImage.FIT/update3.its
create mode 100644 doc/uImage.FIT/update_uboot.its
The above changes and newly added files associated with the feature are
not present in the tree.
Other commits needed for the auto-update feature are present on the
'next' branch and look OK.
Regards,
Bartlomiej Sieka
next prev parent reply other threads:[~2008-10-14 12:42 UTC|newest]
Thread overview: 51+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-09-18 15:03 [U-Boot] Automatic software updates in U-Boot Bartlomiej Sieka
2008-09-18 15:03 ` [U-Boot] [PATCH 1/3] net: Make TFTP server timeout configurable Bartlomiej Sieka
2008-09-18 15:17 ` Jerry Van Baren
2008-09-18 21:54 ` Graeme Russ
2008-09-19 1:37 ` Jerry Van Baren
2008-09-19 5:52 ` Bartlomiej Sieka
2008-09-22 20:42 ` Wolfgang Denk
2008-09-25 6:17 ` Bartlomiej Sieka
2008-09-18 15:03 ` [U-Boot] [PATCH 2/3] Automatic software update from TFTP server Bartlomiej Sieka
2008-09-22 21:03 ` Wolfgang Denk
2008-09-25 8:16 ` Bartlomiej Sieka
2008-09-25 8:55 ` Wolfgang Denk
2008-09-25 9:49 ` Bartlomiej Sieka
2008-09-25 10:01 ` Wolfgang Denk
2008-09-26 8:46 ` Detlev Zundel
2008-09-25 15:33 ` Andrew Dyer
2008-09-25 16:28 ` Kim Phillips
2008-09-25 16:24 ` Jerry Van Baren
2008-09-25 18:17 ` Wolfgang Denk
2008-09-25 19:21 ` Kim Phillips
2008-09-26 8:08 ` Bartlomiej Sieka
2008-09-26 8:29 ` Wolfgang Denk
2008-09-26 8:29 ` Bartlomiej Sieka
2008-09-18 15:03 ` [U-Boot] [PATCH 3/3] FIT: output image load address for type 'firmware', fix debug msg while there Bartlomiej Sieka
2008-10-01 13:26 ` [U-Boot] Automatic software updates in U-Boot -- version 2 Bartlomiej Sieka
2008-10-13 22:57 ` Wolfgang Denk
2008-10-14 12:42 ` Bartlomiej Sieka [this message]
2008-10-14 13:47 ` Wolfgang Denk
2008-10-14 20:07 ` Wolfgang Denk
2008-10-15 9:45 ` Bartlomiej Sieka
2008-10-01 13:26 ` [U-Boot] [PATCH v2 1/6] flash: factor out adjusting of Flash address to the end of sector Bartlomiej Sieka
2008-10-08 7:39 ` Bartlomiej Sieka
2008-10-08 7:47 ` Stefan Roese
2008-10-08 8:05 ` Bartlomiej Sieka
2008-10-08 8:16 ` Wolfgang Denk
2008-10-08 12:02 ` Stefan Roese
2008-10-13 22:28 ` Wolfgang Denk
2008-10-08 17:38 ` Ben Warren
2008-10-13 22:30 ` Wolfgang Denk
2008-10-01 13:26 ` [U-Boot] [PATCH v2 2/6] net: express the first argument to NetSetTimeout() in milliseconds Bartlomiej Sieka
2008-10-06 5:13 ` Ben Warren
2008-10-01 13:26 ` [U-Boot] [PATCH v2 3/6] net: Make TFTP server timeout configurable Bartlomiej Sieka
2008-10-06 5:13 ` Ben Warren
2008-10-01 13:26 ` [U-Boot] [PATCH v2 4/6] Restore alphabetic ordering in common/Makefile Bartlomiej Sieka
2008-10-08 12:29 ` Jean-Christophe PLAGNIOL-VILLARD
2008-10-08 12:58 ` Bartlomiej Sieka
2008-10-08 14:50 ` Jean-Christophe PLAGNIOL-VILLARD
2008-10-09 8:40 ` Bartlomiej Sieka
2008-10-01 13:26 ` [U-Boot] [PATCH v2 5/6] Automatic software update from TFTP server Bartlomiej Sieka
2008-10-13 22:37 ` Wolfgang Denk
2008-10-01 13:26 ` [U-Boot] [PATCH v2 6/6] FIT: output image load address for type 'firmware', fix message while there Bartlomiej Sieka
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=48F493C4.30404@semihalf.com \
--to=tur@semihalf.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox