• Home
Name Date Size #Lines LOC

..--

applypatch/07-May-2024-4,1622,785

edify/07-May-2024-1,375975

etc/07-May-2024-11488

fonts/07-May-2024-10179

minadbd/07-May-2024-381217

minui/07-May-2024-2,5251,889

minzip/07-May-2024-2,9671,757

mtdutils/07-May-2024-994717

otafault/07-May-2024-456253

res-560dpi/images/07-May-2024-

res-hdpi/images/07-May-2024-

res-mdpi/images/07-May-2024-

res-xhdpi/images/07-May-2024-

res-xxhdpi/images/07-May-2024-

res-xxxhdpi/images/07-May-2024-

tests/07-May-2024-1,155899

tools/07-May-2024-1,6361,296

uncrypt/07-May-2024-801529

update_verifier/07-May-2024-10737

updater/07-May-2024-3,9642,831

Android.mkD07-May-20243.9 KiB154112

CleanSpec.mkD07-May-20242.4 KiB522

NOTICED07-May-202410.4 KiB191158

README.mdD07-May-2024841 3022

adb_install.cppD07-May-20244.1 KiB14598

adb_install.hD07-May-2024774 255

asn1_decoder.cppD07-May-20244.8 KiB192152

asn1_decoder.hD07-May-20241.3 KiB3715

bootloader.cppD07-May-20247 KiB219172

bootloader.hD07-May-20242.6 KiB7213

common.hD07-May-20241.4 KiB5023

default_device.cppD07-May-2024734 235

device.cppD07-May-20242 KiB7750

device.hD07-May-20244.4 KiB11636

error_code.hD07-May-20241.1 KiB4727

fuse_sdcard_provider.cppD07-May-20242.5 KiB8956

fuse_sdcard_provider.hD07-May-2024738 234

fuse_sideload.cppD07-May-202417 KiB526349

fuse_sideload.hD07-May-20241.4 KiB3914

install.cppD07-May-202413.2 KiB390265

install.hD07-May-20241.2 KiB3914

interlace-frames.pyD07-May-20243.5 KiB11569

print_sha1.hD07-May-20241.4 KiB4824

recovery-persist.cppD07-May-20246.2 KiB206120

recovery-persist.rcD07-May-2024116 43

recovery-refresh.cppD07-May-20244.2 KiB12971

recovery-refresh.rcD07-May-202465 32

recovery.cppD07-May-202454.6 KiB1,5851,162

roots.cppD07-May-20249.4 KiB304243

roots.hD07-May-20241.9 KiB5512

screen_ui.cppD07-May-202424.4 KiB803632

screen_ui.hD07-May-20244.6 KiB17199

ui.cppD07-May-20249.9 KiB340257

ui.hD07-May-20245.8 KiB16870

unique_fd.hD07-May-20241.3 KiB6333

verifier.cppD07-May-202418.9 KiB557359

verifier.hD07-May-20242 KiB7541

wear_touch.cppD07-May-20244.5 KiB178131

wear_touch.hD07-May-20241.4 KiB5930

wear_ui.cppD07-May-202417.8 KiB615499

wear_ui.hD07-May-20243.4 KiB12668

README.md

1The Recovery Image
2==================
3
4Quick 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
14Running 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