Home | History | Annotate | only in /bootable/recovery
Up to higher level directory
NameDateSize
adb_install.cpp21-Oct-20164.1K
adb_install.h21-Oct-2016774
Android.mk21-Oct-20164.1K
applypatch/21-Oct-2016
asn1_decoder.cpp21-Oct-20164.8K
asn1_decoder.h21-Oct-20161.3K
bootloader.h21-Oct-2016775
bootloader_message/21-Oct-2016
CleanSpec.mk21-Oct-20162.4K
common.h21-Oct-20161.4K
default_device.cpp21-Oct-2016734
device.cpp21-Oct-20162.3K
device.h21-Oct-20164.4K
edify/21-Oct-2016
error_code.h21-Oct-20161.2K
etc/21-Oct-2016
fonts/21-Oct-2016
fuse_sdcard_provider.cpp21-Oct-20162.5K
fuse_sdcard_provider.h21-Oct-2016738
fuse_sideload.cpp21-Oct-201617K
fuse_sideload.h21-Oct-20161.4K
install.cpp21-Oct-201619.8K
install.h21-Oct-20161.6K
interlace-frames.py21-Oct-20163.5K
minadbd/21-Oct-2016
minui/21-Oct-2016
minzip/21-Oct-2016
mtdutils/21-Oct-2016
NOTICE21-Oct-201610.4K
otafault/21-Oct-2016
print_sha1.h21-Oct-20161.4K
README.md21-Oct-2016841
recovery-persist.cpp21-Oct-20166.2K
recovery-persist.rc21-Oct-2016116
recovery-refresh.cpp21-Oct-20164.2K
recovery-refresh.rc21-Oct-201665
recovery.cpp21-Oct-201661.9K
res-560dpi/21-Oct-2016
res-hdpi/21-Oct-2016
res-mdpi/21-Oct-2016
res-xhdpi/21-Oct-2016
res-xxhdpi/21-Oct-2016
res-xxxhdpi/21-Oct-2016
roots.cpp21-Oct-20169.4K
roots.h21-Oct-20161.9K
screen_ui.cpp21-Oct-201625.2K
screen_ui.h21-Oct-20164.6K
tests/21-Oct-2016
tools/21-Oct-2016
ui.cpp21-Oct-20169.9K
ui.h21-Oct-20165.8K
uncrypt/21-Oct-2016
unique_fd.h21-Oct-20161.3K
update_verifier/21-Oct-2016
updater/21-Oct-2016
verifier.cpp21-Oct-201618.9K
verifier.h21-Oct-20162K
wear_touch.cpp21-Oct-20164.5K
wear_touch.h21-Oct-20161.4K
wear_ui.cpp21-Oct-201617.8K
wear_ui.h21-Oct-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