summaryrefslogtreecommitdiffstats
path: root/recovery_ui.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2009-11-13eclair snapshotJean-Baptiste Queru1-0/+76
2009-07-23fix compile warnings in recovery, change imagesDoug Zongker1-2/+2
gcc 4.4 complains about some of the recovery ui functions not being declared. To include the header, we have to fix the 'volatile' declaration (otherwise there's a compiler error). Move the dream-specific images to vendor/htc/dream, make the default images a generic phone.
2009-06-19add function for device-specific wipe data featuresDoug Zongker1-0/+8
Some devices want to do special things when recovery wipes data (eg, wipe data in their baseband processor as well). Add a hook in the device-specific recovery library that gets called when data is wiped. Also add an amend root for the "mbm" partition.
2009-06-11split out device-specific recovery UI code into vendor directoriesDoug Zongker1-0/+68
Take some device-specific details of the recovery UI (eg, what keys to press to bring up the interface and perform actions, exact text of the menu, etc.) and split them out into separate C functions. Arrange to take implementations of those functions from the appropriate vendor directory at build time. Provide a default implementation in case no vendor-specific one is available.