• Home
Name Date Size #Lines LOC

..--

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

bootloader_message/03-May-2024-307180

edify/03-May-2024-1,375975

etc/03-May-2024-11488

fonts/03-May-2024-10179

minadbd/03-May-2024-381217

minui/03-May-2024-2,5511,907

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

mtdutils/03-May-2024-994717

otafault/03-May-2024-456253

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

res-hdpi/images/03-May-2024-

res-mdpi/images/03-May-2024-

res-xhdpi/images/03-May-2024-

res-xxhdpi/images/03-May-2024-

res-xxxhdpi/images/03-May-2024-

tests/03-May-2024-1,155899

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

uncrypt/03-May-2024-699469

update_verifier/03-May-2024-218131

updater/03-May-2024-3,9912,852

Android.mkD03-May-20244.1 KiB160117

CleanSpec.mkD03-May-20242.4 KiB522

NOTICED03-May-202410.4 KiB191158

README.mdD03-May-2024841 3022

adb_install.cppD03-May-20244.1 KiB14598

adb_install.hD03-May-2024774 255

asn1_decoder.cppD03-May-20244.8 KiB192152

asn1_decoder.hD03-May-20241.3 KiB3715

bootloader.hD03-May-2024775 191

common.hD03-May-20241.4 KiB5023

default_device.cppD03-May-2024734 235

device.cppD03-May-20242.3 KiB8758

device.hD03-May-20244.4 KiB11636

error_code.hD03-May-20241.7 KiB7049

fuse_sdcard_provider.cppD03-May-20242.5 KiB8956

fuse_sdcard_provider.hD03-May-2024738 234

fuse_sideload.cppD03-May-202417 KiB526349

fuse_sideload.hD03-May-20241.4 KiB3914

install.cppD03-May-202420.6 KiB590426

install.hD03-May-20241.6 KiB4212

interlace-frames.pyD03-May-20243.5 KiB11569

print_sha1.hD03-May-20241.4 KiB4824

recovery-persist.cppD03-May-20246.2 KiB206120

recovery-persist.rcD03-May-2024116 43

recovery-refresh.cppD03-May-20244.2 KiB12971

recovery-refresh.rcD03-May-202465 32

recovery.cppD03-May-202462 KiB1,7931,337

roots.cppD03-May-20249.4 KiB304243

roots.hD03-May-20241.9 KiB5512

screen_ui.cppD03-May-202425.5 KiB829653

screen_ui.hD03-May-20244.7 KiB174100

ui.cppD03-May-20249.9 KiB340257

ui.hD03-May-20245.8 KiB16870

unique_fd.hD03-May-20241.3 KiB6333

verifier.cppD03-May-202419.1 KiB563364

verifier.hD03-May-20242 KiB7541

wear_touch.cppD03-May-20244.5 KiB178131

wear_touch.hD03-May-20241.4 KiB5930

wear_ui.cppD03-May-202412.2 KiB409317

wear_ui.hD03-May-20242.3 KiB8438

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