- 31 May, 2011 1 commit
-
-
Jean-Baptiste Queru authored
-
- 24 May, 2011 1 commit
-
-
Ying Wang authored
diff: out/target/product/generic/obj/PACKAGING/updater_extensions_intermediates/register.inc.list: No such file or directory Change-Id: I269b1703b6091b343db45b1c5cdd0962c738788b
-
- 03 Nov, 2010 1 commit
-
-
Doug Zongker authored
ECC errors are found by comparing the result of ioctl(ECCGETSTATS) before and after the read. But if an error was found causing us to go to the next block, we'd compare the stats before the *first* read to the stats after the second (third, fourth, etc.) reads, so we'd read to the end of the partition without ever succeeding. Fix logic so we compare the values before and after each read independently. Bug: 3162777 Change-Id: I5a13abd7243d2afd1d21bd98cbb233e5124b2e80
-
- 01 Nov, 2010 1 commit
-
-
Doug Zongker authored
Make ui_init() clear the framebuffer memory it maps in so the user isn't treated to a visible flash of random bits on recovery startup. Call ui_set_background() (to show the installing icon) right after ui_init() to display something while device_recovery_start() is working (which can take a second or two on some devices). Bug: 3145331 Change-Id: I11e7859fab5847370ea4f4932c3fb1558af26c5d
-
- 29 Sep, 2010 1 commit
-
-
Doug Zongker authored
Also, don't lose the start of the log whenever a wipe cache is performed. Change-Id: I29999762854eb36d1ff2bc20b4183c9077b19777
-
- 22 Sep, 2010 2 commits
-
-
Doug Zongker authored
Change-Id: I7bf52b56770c207ba1c8329243991b07ebb65779
-
Doug Zongker authored
-
- 21 Sep, 2010 3 commits
-
-
Doug Zongker authored
Bug: 3009493 Change-Id: I1a7f99fc41a6a7012742e82f8c06a0c75584890a
-
Doug Zongker authored
Change-Id: Iab60665d9c6daef7893896a64b7f319120a5f8ee
-
Doug Zongker authored
Remove the wacky notion of "roots" and "root paths" (those things that look like "FOO:some/path" instead of just "/foo/some/path"). Let each device specify its own table of available partitions and how to mount them (needed for devices that use both MTD/yaffs2 and EMMC/ext4 partitions). Change-Id: I18b0a572a71c5e087e0b7ae11b1774388339bfd1
-
- 17 Sep, 2010 1 commit
-
-
Doug Zongker authored
Recovery itself no longer needs to access all these partitions; manipulation of them is done by the updater binary. This is a small first step towards removing roots entirely. Change-Id: I3fbcada32079a37db4cc097861dfa91e0a08da30
-
- 16 Sep, 2010 1 commit
-
-
Brian Swetland authored
Change-Id: I9d34e491022d7dfed653a861b0728a0a656f1fbe
-
- 15 Sep, 2010 4 commits
-
-
Doug Zongker authored
Let applypatch read and write EMMC partitions as well as MTD ones. This enables incremental updates that include boot image changes, as well as OTA of new recovery partitions. Change-Id: Ib1861219c7ca66dff29ad02d6a0a14e5f03eb4d8
-
Doug Zongker authored
Make the mount and format functions take extra parameters describing the filesystem type and add support for mounting and formatting ext4 filesystems on EMMC. Change recovery to consistently use stdout for status messages instead of mixing stdout and stderr.
-
Doug Zongker authored
Replaces the "install sdcard:update zip" menu option with one that displays a menu of zip files (and subdirs) on the sdcard and lets you pick which one to install. Change-Id: Icff541525f2fdfc8939a91af626ecc386ac9dd07
-
Doug Zongker authored
Close the update package before invoking the binary, to allow the installer to unmount /cache if it wants to. Add a function to allow remounting of a mount as read-only. Change-Id: Idfcc96c3da66083295177f729263560be58034e4
-
- 14 Sep, 2010 1 commit
-
-
Doug Zongker authored
Change-Id: Id1563ca667c50e61cf1bb15d2cf783a50937eece
-
- 12 Sep, 2010 1 commit
-
-
Doug Zongker authored
Change-Id: If49fa6485f66598d16a7e44fce3129de55fab422
-
- 09 Sep, 2010 1 commit
-
-
Doug Zongker authored
Change-Id: I6fc4ce796bc663d05035927c0af0ce7ab6d07218
-
- 03 Sep, 2010 1 commit
-
-
Doug Zongker authored
Change-Id: Ie6c6c920260dfa759fbb15b1f352d6bb0fa7146c
-
- 01 Sep, 2010 1 commit
-
-
Ying Wang authored
Change-Id: I46e4d7fe76e4219207e46f19e50188e38bb932b7
-
- 31 Aug, 2010 1 commit
-
-
Ying Wang authored
Change-Id: I008510bf614606a46a630c7adc39464ce1143ec3
-
- 24 Aug, 2010 1 commit
-
-
Jean-Baptiste Queru authored
Change-Id: I4d56dc0235f3df1306736c42144dccb26b876b74
-
- 13 Aug, 2010 6 commits
-
-
Doug Zongker authored
When restarting a patch from crashing in the middle of a large file, we're not finding the correct patch to apply to the copy saved in cache. Change-Id: I41cb2b87d096bb7a28a10c4cf3902facd45d4c9d
-
Doug Zongker authored
An accidental variable declaration ("int enough_space = ..." instead of "enough_space = " inside a block) shadowing the real one meant we were always using the copy-to-cache path for patching, even when not necessary. Remove it. Enforce an absolute minimum of free space as well, to avoid running into problems patching small files, now that the copy-to-cache path is (inadvertently) well-tested. Change-Id: Idb7d57241a9adcda2e11001fa44f0cd67ce40d19
-
Doug Zongker authored
Merge commit '201cd466' into gingerbread * commit '201cd466': remove shadowed variable declaration
-
Doug Zongker authored
An accidental variable declaration ("int enough_space = ..." instead of "enough_space = " inside a block) shadowing the real one meant we were always using the copy-to-cache path for patching, even when not necessary. Remove it. Enforce an absolute minimum of free space as well, to avoid running into problems patching small files, now that the copy-to-cache path is (inadvertently) well-tested. Change-Id: Idb7d57241a9adcda2e11001fa44f0cd67ce40d19
-
Doug Zongker authored
Merge commit '8cd9e4f3' into gingerbread * commit '8cd9e4f3': fix bug in applying patches
-
Doug Zongker authored
When restarting a patch from crashing in the middle of a large file, we're not finding the correct patch to apply to the copy saved in cache. Change-Id: I41cb2b87d096bb7a28a10c4cf3902facd45d4c9d
-
- 09 Jul, 2010 1 commit
-
-
Doug Zongker authored
Copy a sideloaded package into /tmp, then verify and install the copy, to prevent malicious users from overwriting the package between verification and install. Bug: 2826890 package can be replaced during verification Bug: 2058160 Recovery should copy sideloaded (sd card) update ... Change-Id: I3de148b0f1a671f1974782b6855527caeaefda23
-
- 28 Jun, 2010 2 commits
-
-
Kenny Root authored
Merge commit 'ecc76ba5' into gingerbread * commit 'ecc76ba5': Set adbd to be disabled by default in recovery
-
Kenny Root authored
Change-Id: I74fa6edc4b001247b20be52e8301d18407fede2c
-
- 24 Jun, 2010 1 commit
-
-
Nick Kralevich authored
Fix potential string format bug. Change-Id: Ie05aac53b2c45a48bd68e340b76ccb21edfd28b7
-
- 14 May, 2010 1 commit
-
-
Colin Cross authored
Change-Id: Iad448bc1608f88c5db2108475f35b88ea2877b07
-
- 03 May, 2010 2 commits
-
-
Bruce Beare authored
Merge commit '97ca48e7' into kraken * commit '97ca48e7': generic_x86 support
-
Bruce Beare authored
Add in Makefiles and support files for x86 builds Based on changes by: wonjong.lee <wonjong.lee@windriver.com> Additional changes by: Mark Gross <mark.gross@intel.com> Additional changes by: Bruce Beare <brucex.j.beare@intel.com> Change-Id: I71fcf58f116e4e9047e7d03fdb28e3308553ce5c
-
- 02 Apr, 2010 1 commit
-
-
Oscar Montemayor authored
Encrypted File Systems integration. Recovery changes. Change-Id: I932f73a6f937aac061128e1134eab08c30f0471d
-
- 29 Mar, 2010 1 commit
-
-
Oscar Montemayor authored
am 2654f5aa: (-s ours) DO NOT MERGE Removing unused recovey options. Please refer to Bug#2502219 for more info. Merge commit '2654f5aa' into kraken * commit '2654f5aa': DO NOT MERGE
-
- 26 Mar, 2010 1 commit
-
-
Oscar Montemayor authored
Removing unused recovey options. Please refer to Bug#2502219 for more info. Change-Id: I2fe3cdb0c8b93ed7e1cc4093824fbe181f5f0aea
-
- 09 Mar, 2010 1 commit
-
-
Jean-Baptiste Queru authored
Change-Id: Icd177bd26120e0c8929faa8d1007f6c5bd446cb8
-