Home | History | Annotate | only in /bootable/recovery
Up to higher level directory
NameDateSize
adb_install.cpp24-Aug-20164.1K
adb_install.h24-Aug-2016774
Android.mk24-Aug-20163.9K
applypatch/24-Aug-2016
asn1_decoder.cpp24-Aug-20164.8K
asn1_decoder.h24-Aug-20161.3K
bootloader.cpp24-Aug-20167K
bootloader.h24-Aug-20162.6K
CleanSpec.mk24-Aug-20162.4K
common.h24-Aug-20161.4K
default_device.cpp24-Aug-2016734
device.cpp24-Aug-20162K
device.h24-Aug-20164.4K
edify/24-Aug-2016
error_code.h24-Aug-20161.1K
etc/24-Aug-2016
fonts/24-Aug-2016
fuse_sdcard_provider.cpp24-Aug-20162.5K
fuse_sdcard_provider.h24-Aug-2016738
fuse_sideload.cpp24-Aug-201617K
fuse_sideload.h24-Aug-20161.4K
install.cpp24-Aug-201613.2K
install.h24-Aug-20161.2K
interlace-frames.py24-Aug-20163.5K
minadbd/24-Aug-2016
minui/24-Aug-2016
minzip/24-Aug-2016
mtdutils/24-Aug-2016
NOTICE24-Aug-201610.4K
otafault/24-Aug-2016
print_sha1.h24-Aug-20161.4K
README.md24-Aug-2016841
recovery-persist.cpp24-Aug-20166.2K
recovery-persist.rc24-Aug-2016116
recovery-refresh.cpp24-Aug-20164.2K
recovery-refresh.rc24-Aug-201665
recovery.cpp24-Aug-201654.6K
res-560dpi/24-Aug-2016
res-hdpi/24-Aug-2016
res-mdpi/24-Aug-2016
res-xhdpi/24-Aug-2016
res-xxhdpi/24-Aug-2016
res-xxxhdpi/24-Aug-2016
roots.cpp24-Aug-20169.4K
roots.h24-Aug-20161.9K
screen_ui.cpp24-Aug-201624.4K
screen_ui.h24-Aug-20164.6K
tests/24-Aug-2016
tools/24-Aug-2016
ui.cpp24-Aug-20169.9K
ui.h24-Aug-20165.8K
uncrypt/24-Aug-2016
unique_fd.h24-Aug-20161.3K
update_verifier/24-Aug-2016
updater/24-Aug-2016
verifier.cpp24-Aug-201618.9K
verifier.h24-Aug-20162K
wear_touch.cpp24-Aug-20164.5K
wear_touch.h24-Aug-20161.4K
wear_ui.cpp24-Aug-201617.8K
wear_ui.h24-Aug-20163.4K

README.md

      1 The Recovery Image
      2 ==================
      3 
      4 Quick turn-around testing
      5 -------------------------
      6 
      7     mm -j && m ramdisk-nodeps && m recoveryimage-nodeps
      8 
      9     # To boot into the new recovery image
     10     # without flashing the recovery partition:
     11     adb reboot bootloader
     12     fastboot boot $ANDROID_PRODUCT_OUT/recovery.img
     13 
     14 Running the tests
     15 -----------------
     16     # After setting up environment and lunch.
     17     mmma -j bootable/recovery
     18 
     19     # Running the tests on device.
     20     adb root
     21     adb sync data
     22 
     23     # 32-bit device
     24     adb shell /data/nativetest/recovery_unit_test/recovery_unit_test
     25     adb shell /data/nativetest/recovery_component_test/recovery_component_test
     26 
     27     # Or 64-bit device
     28     adb shell /data/nativetest64/recovery_unit_test/recovery_unit_test
     29     adb shell /data/nativetest64/recovery_component_test/recovery_component_test
     30