summaryrefslogtreecommitdiff
path: root/board/mcc200/auto_update.c
Commit message (Collapse)AuthorAgeLines
* Adapt board configuration and fix kernel crash on MCC200 board.Wolfgang Denk2007-08-12-5/+13
| | | | | | | | | | | | | | The update procedure was modified to turn off the USB subsystem before exit for MCC200 and TRAB. This is necessary as otherwise the USB controller continues to write periodically to system memory! MCC200-specific notes: - the patch disables the magic key check for MCC200 - the patch contains the configuration changes made for the new revision of the board. Signed-off-by: Sergei Poselenov <sposelenov@emcraft.com> Signed-off-by: Wolfgang Denk <wd@denx.de>
* board/[j-z]*: Remove lingering references to CFG_CMD_* symbols.Jon Loeliger2007-07-10-1/+1
| | | | | | | | Fixed some broken instances of "#ifdef CMD_CFG_IDE" too. Those always evaluated TRUE, and thus were always compiled even when IDE really wasn't defined/wanted. Signed-off-by: Jon Loeliger <jdl@freescale.com>
* board/[m-p]*: Remove obsolete references to CONFIG_COMMANDSJon Loeliger2007-07-09-1/+1
| | | | Signed-off-by: Jon Loeliger <jdl@freescale.com>
* board/[k-z]*: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).Jon Loeliger2007-07-04-1/+1
| | | | | | | | | | | | | | This is a compatibility step that allows both the older form and the new form to co-exist for a while until the older can be removed entirely. All transformations are of the form: Before: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) After: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) Signed-off-by: Jon Loeliger <jdl@freescale.com>
* MCC200: Fixes for update procedureSergei Poselenov2007-02-28-5/+7
| | | | | | - fix logic error in image type handling - make sure file system images (cramfs etc.) get stored in flash with image header stripped so they can be mounted through MTD
* Minor code cleanup.Wolfgang Denk2007-02-27-4/+4
|
* MCC200 update - add LCD Progress IndicatorSergei Poselenov2007-02-27-6/+69
|
* Merge with git+ssh://sr@pollux.denx.org/home/sr/git/u-boot/denx-merge-srStefan Roese2007-02-21-9/+11
|\
| * MCC200: Software Updater: allow both "ramdisk" and "filesystem" typesWolfgang Denk2007-02-19-9/+11
| | | | | | | | as root file system images.
* | [PATCH 1_4] Merge common get_dev() routines for block devicesGrant Likely2007-02-20-2/+1
|/ | | | | | | Each of the filesystem drivers duplicate the get_dev routine. This change merges them into a single function in part.c Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
* MCC200: Extensions to Software Update MechanismSergei Poselenov2007-02-19-47/+46
| | | | | | | | | | Update / extend Software Update Mechanism for MCC200 board: - Add support for rootfs image added. The environment variables "rootfs_st" and "rootfs_nd" can be used to override the default values of the image start and end. - Remove excessive key check code. - Code cleanup.
* Fix auto_update for MCC200 board.Wolfgang Denk2007-01-10-4/+4
| | | | | | | | | | The invocation of do_auto_update() is moved to the end of the misc_init_r() function, after the flash mappings have been initialized. Please find attached a patch that implements that change. Also correct the decoding of the keypad status. With this update, the key that will trigger the update is Column 2, Row 2.
* Minor code cleanup; update CHANGELOG.Wolfgang Denk2006-12-22-21/+9
|
* automatic update mechanismAndrei Safronov2006-12-08-0/+469