├── .gitignore ├── Android.mk ├── CleanSpec.mk ├── NOTICE ├── README.md ├── adb_install.cpp ├── adb_install.h ├── applypatch ├── Android.mk ├── NOTICE ├── applypatch.c ├── applypatch.h ├── applypatch.sh ├── bsdiff.c ├── bspatch.c ├── freecache.c ├── imgdiff.c ├── imgdiff.h ├── imgdiff_test.sh ├── imgpatch.c ├── main.c ├── testdata │ ├── new.file │ ├── old.file │ └── patch.bsdiff ├── utils.c └── utils.h ├── bmlutils ├── Android.mk ├── bmlutils.c └── bmlutils.h ├── bootloader.cpp ├── bootloader.h ├── common.h ├── crypto ├── cryptfs │ ├── Android.mk │ └── cryptfs.c ├── cryptsettings │ ├── Android.mk │ └── cryptsettings.c ├── crypttools │ ├── Android.mk │ └── getfooter.c ├── fs_mgr │ ├── Android.mk │ ├── fs_mgr.c │ ├── fs_mgr_main.c │ ├── fs_mgr_priv.h │ ├── fs_mgr_priv_verity.h │ ├── fs_mgr_verity.c │ └── include │ │ └── fs_mgr.h ├── ics │ ├── Android.mk │ ├── cryptfs.c │ └── cryptfs.h ├── jb │ ├── Android.mk │ ├── cryptfs.c │ └── cryptfs.h ├── libcrypt_samsung │ ├── Android.mk │ ├── include │ │ └── libcrypt_samsung.h │ └── libcrypt_samsung.c ├── logwrapper │ ├── Android.mk │ ├── NOTICE │ ├── include │ │ └── logwrap │ │ │ └── logwrap.h │ ├── logwrap.c │ └── logwrapper.c └── scrypt │ ├── Android.mk │ ├── MODULE_LICENSE_BSD_LIKE │ ├── NOTICE │ ├── Scrypt-config.mk │ ├── Scrypt.mk │ ├── android-config.mk │ ├── build-config.mk │ ├── config.h │ ├── import_scrypt.sh │ ├── lib │ ├── README │ ├── crypto │ │ ├── crypto_scrypt-neon-salsa208.h │ │ ├── crypto_scrypt-neon.c │ │ ├── crypto_scrypt-ref.c │ │ ├── crypto_scrypt-sse.c │ │ └── crypto_scrypt.h │ └── util │ │ └── sysendian.h │ ├── patches │ ├── README │ ├── arm-neon.patch │ └── use_openssl_pbkdf2.patch │ ├── scrypt.config │ ├── scrypt.version │ ├── scrypt_platform.h │ └── tests │ ├── Android.mk │ └── scrypt_test.cpp ├── data.cpp ├── data.h ├── data.hpp ├── default_device.cpp ├── device.h ├── digest ├── md5.c └── md5.h ├── dosfstools ├── Android.mk ├── COPYING ├── ChangeLog ├── Makefile ├── bin │ └── Nindent ├── doc │ ├── ANNOUNCE.mkdosfs │ ├── ChangeLog.dosfsck │ ├── ChangeLog.dosfstools-2.x │ ├── ChangeLog.mkdosfs │ ├── README.dosfsck │ ├── README.dosfstools-2.x │ ├── README.mkdosfs │ └── TODO.dosfstools-2.x ├── man │ ├── dosfsck.8 │ ├── dosfslabel.8 │ └── mkdosfs.8 └── src │ ├── boot.c │ ├── boot.h │ ├── check.c │ ├── check.h │ ├── common.c │ ├── common.h │ ├── dosfsck.c │ ├── dosfsck.h │ ├── dosfslabel.c │ ├── fat.c │ ├── fat.h │ ├── file.c │ ├── file.h │ ├── io.c │ ├── io.h │ ├── lfn.c │ ├── lfn.h │ ├── mkdosfs.c │ └── version.h ├── edify ├── Android.mk ├── README ├── expr.c ├── expr.h ├── lexer.l ├── main.c ├── parser.y └── yydefs.h ├── etc ├── META-INF │ └── com │ │ └── google │ │ └── android │ │ └── update-script └── init.rc ├── exfat ├── COPYING ├── ChangeLog ├── dump │ ├── dumpexfat.8 │ └── main.c ├── exfat-fuse │ ├── Android.mk │ ├── main.c │ └── mount.exfat-fuse.8 ├── fsck │ ├── exfatfsck │ ├── exfatfsck.8 │ └── main.c ├── label │ ├── exfatlabel.8 │ └── main.c ├── libexfat │ ├── Android.mk │ ├── COPYING │ ├── byteorder.h │ ├── cluster.c │ ├── compiler.h │ ├── exfat.h │ ├── exfatfs.h │ ├── io.c │ ├── log.c │ ├── lookup.c │ ├── mount.c │ ├── node.c │ ├── platform.h │ ├── time.c │ ├── utf.c │ ├── utils.c │ └── version.h └── mkfs │ ├── Android.mk │ ├── cbm.c │ ├── cbm.h │ ├── fat.c │ ├── fat.h │ ├── main.c │ ├── mkexfat.c │ ├── mkexfat.h │ ├── mkexfatfs.8 │ ├── rootdir.c │ ├── rootdir.h │ ├── uct.c │ ├── uct.h │ ├── uctc.c │ ├── uctc.h │ ├── vbr.c │ └── vbr.h ├── fb2png ├── .gitignore ├── Android.mk ├── AndroidManifest.xml ├── COPYING ├── Makefile ├── adb_screenshoot.c ├── ascreenshooter.py ├── fb.c ├── fb.h ├── fb2png-jni.c ├── fb2png.c ├── fb2png.h ├── img_process.c ├── img_process.h ├── jni │ └── Application.mk ├── libpng │ ├── include │ │ ├── png.h │ │ ├── pngconf.h │ │ └── pnglibconf.h │ └── lib │ │ └── libpng.a ├── log.h ├── main.c ├── run.sh └── view888 ├── find_file.cpp ├── find_file.hpp ├── fixPermissions.cpp ├── fixPermissions.hpp ├── flashutils ├── Android.mk ├── dump_image.c ├── erase_image.c ├── flash_image.c ├── flashutils.c └── flashutils.h ├── fonts ├── 12x22.png ├── 18x32.png ├── OFL.txt └── README ├── fuse ├── Android.mk ├── README ├── buffer.c ├── cuse_lowlevel.c ├── fuse.c ├── fuse_i.h ├── fuse_kern_chan.c ├── fuse_loop.c ├── fuse_loop_mt.c ├── fuse_lowlevel.c ├── fuse_misc.h ├── fuse_mt.c ├── fuse_opt.c ├── fuse_session.c ├── fuse_signals.c ├── fusexmp.c ├── helper.c ├── include │ ├── Makefile │ ├── Makefile.am │ ├── Makefile.in │ ├── config.h │ ├── config.h.in │ ├── cuse_lowlevel.h │ ├── fuse.h │ ├── fuse_common.h │ ├── fuse_common_compat.h │ ├── fuse_compat.h │ ├── fuse_kernel.h │ ├── fuse_lowlevel.h │ ├── fuse_lowlevel_compat.h │ ├── fuse_opt.h │ ├── old │ │ └── fuse.h │ ├── stamp-h1 │ ├── sys │ │ └── statvfs.h │ └── ulockmgr.h ├── mount.c ├── mount_bsd.c ├── mount_util.c ├── mount_util.h └── ulockmgr.c ├── gui ├── Android.mk ├── action.cpp ├── action_safestrap.cpp ├── animation.cpp ├── blanktimer.cpp ├── blanktimer.hpp ├── button.cpp ├── checkbox.cpp ├── console.cpp ├── devices │ ├── 1024x600 │ │ └── res │ │ │ ├── fonts │ │ │ └── Roboto-Regular-20.dat │ │ │ ├── images │ │ │ ├── back-icon.png │ │ │ ├── background.jpg │ │ │ ├── button.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_empty.png │ │ │ ├── console-icon.png │ │ │ ├── console-toggle.png │ │ │ ├── cursor.png │ │ │ ├── curtain.jpg │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── home-icon.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── keyboard1.png │ │ │ ├── keyboard2.png │ │ │ ├── keyboard3.png │ │ │ ├── keyboard4.png │ │ │ ├── medium-button.png │ │ │ ├── mediumwide-button.png │ │ │ ├── minus-button.png │ │ │ ├── plus-button.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_empty.png │ │ │ ├── radio_selected.png │ │ │ ├── slider-touch.png │ │ │ ├── slider-used.png │ │ │ ├── slider.png │ │ │ ├── sort-button.png │ │ │ └── unlock.png │ │ │ └── ui.xml │ ├── 1024x768 │ │ └── res │ │ │ ├── fonts │ │ │ └── Roboto-Regular-20.dat │ │ │ ├── images │ │ │ ├── back-icon.png │ │ │ ├── background.jpg │ │ │ ├── button.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_empty.png │ │ │ ├── console-icon.png │ │ │ ├── console-toggle.png │ │ │ ├── cursor.png │ │ │ ├── curtain.jpg │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── home-icon.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── keyboard1.png │ │ │ ├── keyboard2.png │ │ │ ├── keyboard3.png │ │ │ ├── keyboard4.png │ │ │ ├── medium-button.png │ │ │ ├── mediumwide-button.png │ │ │ ├── minus-button.png │ │ │ ├── plus-button.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_empty.png │ │ │ ├── radio_selected.png │ │ │ ├── slider-touch.png │ │ │ ├── slider-used.png │ │ │ ├── slider.png │ │ │ ├── sort-button.png │ │ │ └── unlock.png │ │ │ └── ui.xml │ ├── 1080x1920 │ │ └── res │ │ │ ├── fonts │ │ │ └── Roboto-Condensed-40.dat │ │ │ ├── images │ │ │ ├── back-icon.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_empty.png │ │ │ ├── cursor.png │ │ │ ├── curtain.jpg │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── home-icon.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── keyboard1.png │ │ │ ├── keyboard2.png │ │ │ ├── keyboard3.png │ │ │ ├── keyboard4.png │ │ │ ├── medium-button.png │ │ │ ├── menu-button.png │ │ │ ├── minus-button.png │ │ │ ├── plus-button.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_empty.png │ │ │ ├── radio_selected.png │ │ │ ├── slideout.png │ │ │ ├── slider-touch.png │ │ │ ├── slider-used.png │ │ │ ├── slider.png │ │ │ ├── sort-button.png │ │ │ ├── top-bar.jpg │ │ │ └── unlock.png │ │ │ └── ui.xml │ ├── 1200x1920 │ │ └── res │ │ │ ├── fonts │ │ │ └── Roboto-Condensed-40.dat │ │ │ ├── images │ │ │ ├── back-icon.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_empty.png │ │ │ ├── cursor.png │ │ │ ├── curtain.jpg │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── home-icon.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── keyboard1.png │ │ │ ├── keyboard2.png │ │ │ ├── keyboard3.png │ │ │ ├── keyboard4.png │ │ │ ├── medium-button.png │ │ │ ├── menu-button.png │ │ │ ├── minus-button.png │ │ │ ├── plus-button.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_empty.png │ │ │ ├── radio_selected.png │ │ │ ├── slideout.png │ │ │ ├── slider-touch.png │ │ │ ├── slider-used.png │ │ │ ├── slider.png │ │ │ ├── sort-button.png │ │ │ ├── top-bar.jpg │ │ │ └── unlock.png │ │ │ └── ui.xml │ ├── 1280x800 │ │ └── res │ │ │ ├── fonts │ │ │ └── Roboto-Regular-20.dat │ │ │ ├── images │ │ │ ├── back-icon.png │ │ │ ├── background.jpg │ │ │ ├── button.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_empty.png │ │ │ ├── console-icon.png │ │ │ ├── console-toggle.png │ │ │ ├── cursor.png │ │ │ ├── curtain.jpg │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── home-icon.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── keyboard1.png │ │ │ ├── keyboard2.png │ │ │ ├── keyboard3.png │ │ │ ├── keyboard4.png │ │ │ ├── medium-button.png │ │ │ ├── mediumwide-button.png │ │ │ ├── minus-button.png │ │ │ ├── plus-button.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_empty.png │ │ │ ├── radio_selected.png │ │ │ ├── slider-touch.png │ │ │ ├── slider-used.png │ │ │ ├── slider.png │ │ │ ├── sort-button.png │ │ │ └── unlock.png │ │ │ └── ui.xml │ ├── 1600x2560 │ │ └── res │ │ │ ├── fonts │ │ │ └── Roboto-Condensed-40.dat │ │ │ ├── images │ │ │ ├── back-icon.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_empty.png │ │ │ ├── cursor.png │ │ │ ├── curtain.jpg │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── home-icon.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── keyboard1.png │ │ │ ├── keyboard2.png │ │ │ ├── keyboard3.png │ │ │ ├── keyboard4.png │ │ │ ├── medium-button.png │ │ │ ├── menu-button.png │ │ │ ├── minus-button.png │ │ │ ├── plus-button.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_empty.png │ │ │ ├── radio_selected.png │ │ │ ├── slideout.png │ │ │ ├── slider-touch.png │ │ │ ├── slider-used.png │ │ │ ├── slider.png │ │ │ ├── sort-button.png │ │ │ ├── top-bar.jpg │ │ │ └── unlock.png │ │ │ └── ui.xml │ ├── 1920x1200 │ │ └── res │ │ │ ├── fonts │ │ │ └── Roboto-Regular-30.dat │ │ │ ├── images │ │ │ ├── back-icon.png │ │ │ ├── background.jpg │ │ │ ├── button.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_empty.png │ │ │ ├── console-icon.png │ │ │ ├── console-toggle.png │ │ │ ├── cursor.png │ │ │ ├── curtain.jpg │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── home-icon.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── keyboard1.png │ │ │ ├── keyboard2.png │ │ │ ├── keyboard3.png │ │ │ ├── keyboard4.png │ │ │ ├── medium-button.png │ │ │ ├── mediumwide-button.png │ │ │ ├── minus-button.png │ │ │ ├── plus-button.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_empty.png │ │ │ ├── radio_selected.png │ │ │ ├── slider-touch.png │ │ │ ├── slider-used.png │ │ │ ├── slider.png │ │ │ ├── sort-button.png │ │ │ └── unlock.png │ │ │ └── ui.xml │ ├── 240x240 │ │ └── res │ │ │ ├── fonts │ │ │ └── Roboto-Condensed-12.dat │ │ │ ├── images │ │ │ ├── android.png │ │ │ ├── back-icon.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_empty.png │ │ │ ├── curtain.jpg │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── home-icon.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── keyboard1.png │ │ │ ├── keyboard2.png │ │ │ ├── keyboard3.png │ │ │ ├── keyboard4.png │ │ │ ├── menu-button.png │ │ │ ├── minus-button.png │ │ │ ├── plus-button.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_empty.png │ │ │ ├── radio_selected.png │ │ │ ├── slideout.png │ │ │ ├── slider-touch.png │ │ │ ├── slider-used.png │ │ │ ├── slider.png │ │ │ ├── sort-button.png │ │ │ ├── top-bar.jpg │ │ │ └── unlock.png │ │ │ └── ui.xml │ ├── 2560x1600 │ │ └── res │ │ │ ├── fonts │ │ │ └── Roboto-Regular-40.dat │ │ │ ├── images │ │ │ ├── back-icon.png │ │ │ ├── background.jpg │ │ │ ├── button.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_empty.png │ │ │ ├── console-icon.png │ │ │ ├── console-toggle.png │ │ │ ├── cursor.png │ │ │ ├── curtain.jpg │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── home-icon.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── keyboard1.png │ │ │ ├── keyboard2.png │ │ │ ├── keyboard3.png │ │ │ ├── keyboard4.png │ │ │ ├── medium-button.png │ │ │ ├── mediumwide-button.png │ │ │ ├── minus-button.png │ │ │ ├── plus-button.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_empty.png │ │ │ ├── radio_selected.png │ │ │ ├── slider-touch.png │ │ │ ├── slider-used.png │ │ │ ├── slider.png │ │ │ ├── sort-button.png │ │ │ └── unlock.png │ │ │ └── ui.xml │ ├── 320x480 │ │ └── res │ │ │ ├── fonts │ │ │ ├── Roboto-Condensed-14.dat │ │ │ └── Roboto-Condensed-16.dat │ │ │ ├── images │ │ │ ├── android.png │ │ │ ├── back-icon.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_empty.png │ │ │ ├── cursor.png │ │ │ ├── curtain.jpg │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── hdpi-medium-button.png │ │ │ ├── hdpi-menu-button.png │ │ │ ├── hdpi-minus-button.png │ │ │ ├── hdpi-plus-button.png │ │ │ ├── hdpi-small-button.png │ │ │ ├── hdpi-sort-button.png │ │ │ ├── home-icon.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── keyboard1.png │ │ │ ├── keyboard2.png │ │ │ ├── keyboard3.png │ │ │ ├── keyboard4.png │ │ │ ├── medium-button.png │ │ │ ├── menu-button.png │ │ │ ├── minus-button.png │ │ │ ├── plus-button.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_empty.png │ │ │ ├── radio_selected.png │ │ │ ├── slideout.png │ │ │ ├── slider-touch.png │ │ │ ├── slider-used.png │ │ │ ├── slider.png │ │ │ ├── sort-button.png │ │ │ ├── top-bar.jpg │ │ │ ├── top-bar.png │ │ │ └── unlock.png │ │ │ └── ui.xml │ ├── 480x800 │ │ └── res │ │ │ ├── fonts │ │ │ └── Roboto-Regular-20.dat │ │ │ ├── images │ │ │ ├── back-icon.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_empty.png │ │ │ ├── cursor.png │ │ │ ├── curtain.jpg │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── home-icon.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── keyboard1.png │ │ │ ├── keyboard2.png │ │ │ ├── keyboard3.png │ │ │ ├── keyboard4.png │ │ │ ├── medium-button.png │ │ │ ├── menu-button.png │ │ │ ├── minus-button.png │ │ │ ├── plus-button.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_empty.png │ │ │ ├── radio_selected.png │ │ │ ├── slideout.png │ │ │ ├── slider-touch.png │ │ │ ├── slider-used.png │ │ │ ├── slider.png │ │ │ ├── sort-button.png │ │ │ ├── top-bar.jpg │ │ │ └── unlock.png │ │ │ └── ui.xml │ ├── 480x854 │ │ └── res │ │ │ ├── fonts │ │ │ ├── Roboto-Regular-20.dat │ │ │ └── Roboto-Regular-40.dat │ │ │ ├── images │ │ │ ├── back-icon.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_empty.png │ │ │ ├── cursor.png │ │ │ ├── curtain.jpg │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── home-icon.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── keyboard1.png │ │ │ ├── keyboard2.png │ │ │ ├── keyboard3.png │ │ │ ├── keyboard4.png │ │ │ ├── medium-button.png │ │ │ ├── menu-button.png │ │ │ ├── minus-button.png │ │ │ ├── plus-button.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_empty.png │ │ │ ├── radio_selected.png │ │ │ ├── slideout.png │ │ │ ├── slider-touch.png │ │ │ ├── slider-used.png │ │ │ ├── slider.png │ │ │ ├── sort-button.png │ │ │ ├── top-bar.jpg │ │ │ └── unlock.png │ │ │ └── ui.xml │ ├── 540x960 │ │ └── res │ │ │ ├── fonts │ │ │ ├── Roboto-Regular-20.dat │ │ │ ├── Roboto-Regular-25.dat │ │ │ └── Roboto-Regular-40.dat │ │ │ ├── images │ │ │ ├── .BridgeSort │ │ │ ├── back-icon.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_empty.png │ │ │ ├── cursor.png │ │ │ ├── curtain.jpg │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── home-icon.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── keyboard1.png │ │ │ ├── keyboard2.png │ │ │ ├── keyboard3.png │ │ │ ├── keyboard4.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── qhd-medium-button.png │ │ │ ├── qhd-menu-button.png │ │ │ ├── qhd-minus-button.png │ │ │ ├── qhd-plus-button.png │ │ │ ├── qhd-small-button.png │ │ │ ├── qhd-sort-button.png │ │ │ ├── radio_empty.png │ │ │ ├── radio_selected.png │ │ │ ├── slideout.png │ │ │ ├── slider-touch.png │ │ │ ├── slider-used.png │ │ │ ├── slider.png │ │ │ ├── top-bar.jpg │ │ │ └── unlock.png │ │ │ └── ui.xml │ ├── 720x1280 │ │ └── res │ │ │ ├── fonts │ │ │ └── Roboto-Condensed-30.dat │ │ │ ├── images │ │ │ ├── back-icon.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_empty.png │ │ │ ├── cursor.png │ │ │ ├── curtain.jpg │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── home-icon.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── keyboard1.png │ │ │ ├── keyboard2.png │ │ │ ├── keyboard3.png │ │ │ ├── keyboard4.png │ │ │ ├── medium-button.png │ │ │ ├── menu-button.png │ │ │ ├── minus-button.png │ │ │ ├── plus-button.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_empty.png │ │ │ ├── radio_selected.png │ │ │ ├── slideout.png │ │ │ ├── slider-touch.png │ │ │ ├── slider-used.png │ │ │ ├── slider.png │ │ │ ├── sort-button.png │ │ │ ├── top-bar.jpg │ │ │ └── unlock.png │ │ │ └── ui.xml │ ├── 800x1280 │ │ └── res │ │ │ ├── fonts │ │ │ └── Roboto-Condensed-30.dat │ │ │ ├── images │ │ │ ├── back-icon.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_empty.png │ │ │ ├── cursor.png │ │ │ ├── curtain.jpg │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── home-icon.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── keyboard1.png │ │ │ ├── keyboard2.png │ │ │ ├── keyboard3.png │ │ │ ├── keyboard4.png │ │ │ ├── medium-button.png │ │ │ ├── menu-button.png │ │ │ ├── minus-button.png │ │ │ ├── plus-button.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_empty.png │ │ │ ├── radio_selected.png │ │ │ ├── slideout.png │ │ │ ├── slider-touch.png │ │ │ ├── slider-used.png │ │ │ ├── slider.png │ │ │ ├── sort-button.png │ │ │ ├── top-bar.jpg │ │ │ └── unlock.png │ │ │ └── ui.xml │ ├── 800x480 │ │ └── res │ │ │ ├── fonts │ │ │ └── Roboto-Condensed-16.dat │ │ │ ├── images │ │ │ ├── back-icon.png │ │ │ ├── background.jpg │ │ │ ├── button.png │ │ │ ├── checkbox_checked.png │ │ │ ├── checkbox_empty.png │ │ │ ├── console-icon.png │ │ │ ├── console-toggle.png │ │ │ ├── cursor.png │ │ │ ├── curtain.jpg │ │ │ ├── file.png │ │ │ ├── folder.png │ │ │ ├── home-icon.png │ │ │ ├── indeterminate001.png │ │ │ ├── indeterminate002.png │ │ │ ├── indeterminate003.png │ │ │ ├── indeterminate004.png │ │ │ ├── indeterminate005.png │ │ │ ├── indeterminate006.png │ │ │ ├── keyboard1.png │ │ │ ├── keyboard2.png │ │ │ ├── keyboard3.png │ │ │ ├── keyboard4.png │ │ │ ├── medium-button.png │ │ │ ├── mediumwide-button.png │ │ │ ├── minus-button.png │ │ │ ├── plus-button.png │ │ │ ├── progress_empty.png │ │ │ ├── progress_fill.png │ │ │ ├── radio_empty.png │ │ │ ├── radio_selected.png │ │ │ ├── slider-touch.png │ │ │ ├── slider-used.png │ │ │ ├── slider.png │ │ │ ├── sort-button.png │ │ │ └── unlock.png │ │ │ └── ui.xml │ ├── common │ │ └── res │ │ │ └── images │ │ │ ├── progress_empty.png │ │ │ └── progress_fill.png │ └── resources │ │ └── fonts │ │ ├── Roboto-Condensed-10.dat │ │ ├── Roboto-Condensed-12.dat │ │ ├── Roboto-Condensed-14.dat │ │ ├── Roboto-Condensed-16.dat │ │ ├── Roboto-Condensed-20.dat │ │ ├── Roboto-Condensed-25.dat │ │ ├── Roboto-Condensed-30.dat │ │ ├── Roboto-Condensed-40.dat │ │ ├── Roboto-Condensed-50.dat │ │ ├── Roboto-Condensed-60.dat │ │ ├── Roboto-Regular-10.dat │ │ ├── Roboto-Regular-12.dat │ │ ├── Roboto-Regular-14.dat │ │ ├── Roboto-Regular-16.dat │ │ ├── Roboto-Regular-20.dat │ │ ├── Roboto-Regular-25.dat │ │ ├── Roboto-Regular-30.dat │ │ ├── Roboto-Regular-40.dat │ │ ├── Roboto-Regular-50.dat │ │ └── Roboto-Regular-60.dat ├── fileselector.cpp ├── fill.cpp ├── gui.cpp ├── gui.h ├── hardwarekeyboard.cpp ├── image.cpp ├── input.cpp ├── keyboard.cpp ├── listbox.cpp ├── mousecursor.cpp ├── object.cpp ├── objects.hpp ├── objects_action_safestrap.hpp ├── pages.cpp ├── pages.h ├── pages.hpp ├── partitionlist.cpp ├── progressbar.cpp ├── rapidxml.hpp ├── remaining.txt ├── resources.cpp ├── resources.hpp ├── slider.cpp ├── slidervalue.cpp ├── text.cpp └── twrp ├── htcdumlock ├── Android.mk └── htcdumlock.c ├── injecttwrp ├── Android.mk └── injecttwrp.c ├── install.cpp ├── install.h ├── legacy_properties.h ├── legacy_property_service.c ├── legacy_property_service.h ├── libblkid ├── Android.mk ├── adaptec_raid.c ├── aix.c ├── aix.h ├── all-io.h ├── at.c ├── at.h ├── befs.c ├── bfs.c ├── bitops.h ├── blkdev.c ├── blkdev.h ├── blkid.h ├── blkidP.h ├── blkid_parttypes.h ├── bsd.c ├── btrfs.c ├── c.h ├── cache.c ├── canonicalize.c ├── canonicalize.h ├── carefulputc.h ├── closestream.h ├── colors.c ├── colors.h ├── config.c ├── config.h ├── cpuset.c ├── cpuset.h ├── cramfs.c ├── crc32.c ├── crc32.h ├── ddf_raid.c ├── dev.c ├── devname.c ├── devno.c ├── dm.c ├── dos.c ├── dos.h ├── drbd.c ├── drbdproxy_datalog.c ├── encode.c ├── env.c ├── env.h ├── evaluate.c ├── evms.c ├── exec_shell.c ├── exec_shell.h ├── exfat.c ├── exitcodes.h ├── ext.c ├── f2fs.c ├── fileutils.c ├── fileutils.h ├── getsize.c ├── gfs.c ├── gpt.c ├── hfs.c ├── highpoint_raid.c ├── hpfs.c ├── ioctl.c ├── ismounted.c ├── ismounted.h ├── iso9660.c ├── iso9660.h ├── isw_raid.c ├── jfs.c ├── jmicron_raid.c ├── langinfo.c ├── linux_raid.c ├── linux_reboot.h ├── linux_version.c ├── linux_version.h ├── list.h ├── llseek.c ├── log ├── loopdev.c ├── loopdev.h ├── lsi_raid.c ├── luks.c ├── lvm1.c ├── lvm2.c ├── mac.c ├── mangle.c ├── mangle.h ├── match.c ├── match.h ├── mbsalign.c ├── mbsalign.h ├── md.c ├── md5.c ├── md5.h ├── minix.h ├── minix1.c ├── minix2.c ├── namespace.h ├── netware.c ├── nilfs.c ├── nls.h ├── ntfs.c ├── nvidia_raid.c ├── ocfs.c ├── optutils.h ├── pager.c ├── pager.h ├── pamfail.h ├── partitions.c ├── partitions.h ├── path.c ├── path.h ├── pathnames.h ├── probe.c ├── procutils.c ├── procutils.h ├── promise_raid.c ├── randutils.c ├── randutils.h ├── read.c ├── reiserfs.c ├── resolve.c ├── romfs.c ├── rpmatch.h ├── save.c ├── setproctitle.c ├── setproctitle.h ├── sgi.c ├── silicon_raid.c ├── solaris_x86.c ├── squashfs.c ├── strutils.c ├── strutils.h ├── sun.c ├── superblocks.c ├── superblocks.h ├── swap.c ├── swapheader.h ├── sysfs.h ├── sysfs1.c ├── sysfs2.c ├── sysv.c ├── tag.c ├── topology.c ├── topology.h ├── tt.c ├── tt.h ├── ttyutils.c ├── ttyutils.h ├── ubifs.c ├── udf.c ├── ufs.c ├── ultrix.c ├── unixware.c ├── verify.c ├── version.c ├── vfat.c ├── via_raid.c ├── vmfs.c ├── vxfs.c ├── wholedisk.c ├── wholedisk.h ├── widechar.h ├── xalloc.h ├── xfs.c ├── xgetpass.c ├── xgetpass.h └── zfs.c ├── libcrecovery ├── Android.mk ├── common.h ├── defines.h ├── popen.c └── system.c ├── libmincrypt ├── Android.mk ├── NOTICE ├── includes │ └── mincrypt │ │ ├── hash-internal.h │ │ ├── rsa.h │ │ ├── sha.h │ │ └── sha256.h ├── rsa.c ├── sha.c └── sha256.c ├── libtar ├── Android.mk ├── COPYRIGHT ├── ChangeLog ├── ChangeLog-1.0.x ├── INSTALL ├── README ├── TODO ├── append.c ├── basename.c ├── block.c ├── compat.h ├── config.h ├── decode.c ├── dirname.c ├── encode.c ├── extract.c ├── fnmatch.c ├── gethostbyname_r.c ├── gethostname.c ├── getservbyname_r.c ├── glob.c ├── handle.c ├── inet_aton.c ├── internal.h ├── libtar.h ├── libtar_hash.c ├── libtar_list.c ├── libtar_listhash.h ├── output.c ├── snprintf.c ├── strdup.c ├── strlcat.c ├── strlcpy.c ├── strmode.c ├── strrstr.c ├── strsep.c ├── tar.h ├── util.c └── wrapper.c ├── make-overlay.py ├── minadbd ├── Android.mk ├── README.txt ├── adb.c ├── adb.h ├── fdevent.c ├── fdevent.h ├── mutex_list.h ├── services.c ├── sockets.c ├── sysdeps.h ├── transport.c ├── transport.h ├── transport_usb.c ├── usb_linux_client.c ├── utils.c └── utils.h ├── minelf ├── Android.mk ├── Retouch.c └── Retouch.h ├── minui ├── Android.mk ├── events.c ├── font_10x18.h ├── graphics.c ├── graphics_overlay.c ├── include │ └── linux │ │ ├── msm_ion.h │ │ └── msm_mdp.h ├── minui.h ├── mkfont.c └── resources.c ├── minuitwrp ├── Android.mk ├── events.c ├── font_10x18.h ├── font_7x16.h ├── graphics.c ├── graphics_overlay.c ├── include │ └── linux │ │ ├── msm_ion.h │ │ └── msm_mdp.h ├── minui.h ├── mkfont.c ├── resources.c ├── roboto_10x18.h ├── roboto_15x24.h └── roboto_23x41.h ├── minzip ├── Android.mk ├── Bits.h ├── DirUtil.c ├── DirUtil.h ├── Hash.c ├── Hash.h ├── Inlines.c ├── Log.h ├── SysUtil.c ├── SysUtil.h ├── Zip.c ├── Zip.h └── inline_magic.h ├── minzipold ├── Android.mk ├── Bits.h ├── DirUtil.c ├── DirUtil.h ├── Hash.c ├── Hash.h ├── Inlines.c ├── Log.h ├── SysUtil.c ├── SysUtil.h ├── Zip.c ├── Zip.h └── inline_magic.h ├── mmcutils ├── Android.mk ├── mmcutils.c └── mmcutils.h ├── mounts.c ├── mounts.h ├── mtdutils ├── Android.mk ├── bml_over_mtd.c ├── flash_image.c ├── mounts.c ├── mounts.h ├── mtdutils.c ├── mtdutils.h ├── rk30hack.c └── rk30hack.h ├── openaes ├── Android.mk ├── CHANGELOG ├── CMakeLists.txt ├── LICENSE ├── README ├── VERSION ├── inc │ ├── oaes_config.h │ └── oaes_lib.h ├── src │ ├── isaac │ │ ├── rand.c │ │ ├── rand.h │ │ └── standard.h │ ├── oaes.c │ └── oaes_lib.c └── test │ ├── test_encrypt.c │ ├── test_keys.c │ ├── test_performance.c │ └── vt_aes.c ├── openrecoveryscript.cpp ├── openrecoveryscript.hpp ├── partition.cpp ├── partitionmanager.cpp ├── partitions.hpp ├── pigz ├── Android.mk ├── Makefile ├── README ├── pigz.1 ├── pigz.c ├── pigz.pdf ├── pigz.spec ├── yarn.c └── yarn.h ├── prebuilt ├── 99SuperSUDaemon ├── Android.mk ├── HTCDumlock.apk ├── Superuser.apk ├── chattr ├── dump_imagesys ├── fix_permissions.sh ├── flash_imagesys ├── htcdumlock ├── htcdumlocksys ├── install-recovery.sh ├── libbmlutils.so ├── libflashutils.so ├── libmmcutils.so ├── libmtdutils.so ├── mke2fs.conf ├── parted ├── relink-binaries.sh ├── relink.sh ├── su ├── teamwin └── twrp_fonts.py ├── recovery.cpp ├── recovery_ui.h ├── res ├── dummyfileforgit └── images │ └── dummyfile2 ├── roots.cpp ├── roots.h ├── safestrap-functions.c ├── safestrap-functions.h ├── safestrap ├── 2nd-init │ ├── 2nd-init.c │ ├── 2nd-init.h │ └── Android.mk ├── bbx ├── busybox ├── bypasslkm │ ├── Android.mk │ └── bypasslkm.c ├── delay-wrapper │ ├── Android.mk │ └── delay-wrapper.c ├── devices │ ├── android │ │ ├── apollo │ │ │ ├── build-install.sh │ │ │ ├── build-safestrap.sh │ │ │ ├── init.rc │ │ │ ├── res │ │ │ │ └── splashkeys.synaptics_dsx_i2c │ │ │ └── safestrap.mk │ │ ├── common-hdx │ │ │ ├── build-fs.sh │ │ │ ├── build-install.sh │ │ │ ├── build-safestrap.sh │ │ │ ├── hijack │ │ │ ├── include │ │ │ │ └── linux │ │ │ │ │ ├── msm_ion.h │ │ │ │ │ └── msm_mdp.h │ │ │ ├── safestrap-hdx-common.mk │ │ │ ├── ss.config │ │ │ └── twrp.fstab │ │ ├── jem │ │ │ ├── build-install.sh │ │ │ ├── build-safestrap.sh │ │ │ ├── hijack │ │ │ ├── init.rc │ │ │ ├── res │ │ │ │ └── splashkeys.cyttsp4-i2c │ │ │ ├── safestrap.mk │ │ │ ├── ss.config │ │ │ └── twrp.fstab │ │ ├── otter │ │ │ ├── build-install.sh │ │ │ ├── build-safestrap.sh │ │ │ ├── hijack │ │ │ ├── init.rc │ │ │ ├── res │ │ │ │ └── splashkeys.ilitek_i2c │ │ │ ├── safestrap.mk │ │ │ ├── ss.config │ │ │ └── twrp.fstab │ │ └── thor │ │ │ ├── build-install.sh │ │ │ ├── build-safestrap.sh │ │ │ ├── init.rc │ │ │ ├── res │ │ │ └── splashkeys.synaptics_dsx_i2c │ │ │ └── safestrap.mk │ ├── common │ │ ├── 2nd-init-files │ │ │ ├── fixboot.sh │ │ │ ├── getprop │ │ │ ├── hijack.killall │ │ │ ├── ss_function.sh │ │ │ ├── stop │ │ │ └── taskset │ │ ├── APP │ │ │ ├── recovery-check.sh │ │ │ ├── recovery-install.sh │ │ │ ├── recovery-reboot.sh │ │ │ └── recovery-uninstall.sh │ │ ├── build-install-finish.sh │ │ ├── build-install.sh │ │ ├── kernel │ │ ├── res │ │ │ ├── 1024x600 │ │ │ │ └── res │ │ │ │ │ ├── fonts │ │ │ │ │ └── Roboto-Regular-20.dat │ │ │ │ │ ├── images │ │ │ │ │ ├── back-icon.png │ │ │ │ │ ├── background.jpg │ │ │ │ │ ├── button.png │ │ │ │ │ ├── checkbox_checked.png │ │ │ │ │ ├── checkbox_empty.png │ │ │ │ │ ├── console-icon.png │ │ │ │ │ ├── console-toggle.png │ │ │ │ │ ├── cursor.png │ │ │ │ │ ├── curtain.jpg │ │ │ │ │ ├── file.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── highlight-button.png │ │ │ │ │ ├── home-icon.png │ │ │ │ │ ├── indeterminate001.png │ │ │ │ │ ├── indeterminate002.png │ │ │ │ │ ├── indeterminate003.png │ │ │ │ │ ├── indeterminate004.png │ │ │ │ │ ├── indeterminate005.png │ │ │ │ │ ├── indeterminate006.png │ │ │ │ │ ├── keyboard1.png │ │ │ │ │ ├── keyboard2.png │ │ │ │ │ ├── keyboard3.png │ │ │ │ │ ├── keyboard4.png │ │ │ │ │ ├── medium-button.png │ │ │ │ │ ├── mediumwide-button.png │ │ │ │ │ ├── minus-button.png │ │ │ │ │ ├── plus-button.png │ │ │ │ │ ├── progress_empty.png │ │ │ │ │ ├── progress_fill.png │ │ │ │ │ ├── radio_empty.png │ │ │ │ │ ├── radio_selected.png │ │ │ │ │ ├── slider-touch.png │ │ │ │ │ ├── slider-used.png │ │ │ │ │ ├── slider.png │ │ │ │ │ ├── sort-button.png │ │ │ │ │ └── unlock.png │ │ │ │ │ └── ui.xml │ │ │ ├── 1080x1920 │ │ │ │ └── res │ │ │ │ │ ├── fonts │ │ │ │ │ └── Roboto-Condensed-40.dat │ │ │ │ │ ├── images │ │ │ │ │ ├── back-icon.png │ │ │ │ │ ├── checkbox_checked.png │ │ │ │ │ ├── checkbox_empty.png │ │ │ │ │ ├── cursor.png │ │ │ │ │ ├── curtain.jpg │ │ │ │ │ ├── file.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── home-icon.png │ │ │ │ │ ├── indeterminate001.png │ │ │ │ │ ├── indeterminate002.png │ │ │ │ │ ├── indeterminate003.png │ │ │ │ │ ├── indeterminate004.png │ │ │ │ │ ├── indeterminate005.png │ │ │ │ │ ├── indeterminate006.png │ │ │ │ │ ├── keyboard1.png │ │ │ │ │ ├── keyboard2.png │ │ │ │ │ ├── keyboard3.png │ │ │ │ │ ├── keyboard4.png │ │ │ │ │ ├── medium-button.png │ │ │ │ │ ├── menu-button.png │ │ │ │ │ ├── menu-highlight-button.png │ │ │ │ │ ├── minus-button.png │ │ │ │ │ ├── plus-button.png │ │ │ │ │ ├── progress_empty.png │ │ │ │ │ ├── progress_fill.png │ │ │ │ │ ├── radio_empty.png │ │ │ │ │ ├── radio_selected.png │ │ │ │ │ ├── slideout.png │ │ │ │ │ ├── slider-touch.png │ │ │ │ │ ├── slider-used.png │ │ │ │ │ ├── slider.png │ │ │ │ │ ├── sort-button.png │ │ │ │ │ ├── top-bar.jpg │ │ │ │ │ └── unlock.png │ │ │ │ │ └── ui.xml │ │ │ ├── 1200x1920 │ │ │ │ └── res │ │ │ │ │ ├── fonts │ │ │ │ │ └── Roboto-Condensed-40.dat │ │ │ │ │ ├── images │ │ │ │ │ ├── back-icon.png │ │ │ │ │ ├── checkbox_checked.png │ │ │ │ │ ├── checkbox_empty.png │ │ │ │ │ ├── cursor.png │ │ │ │ │ ├── curtain.jpg │ │ │ │ │ ├── file.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── home-icon.png │ │ │ │ │ ├── indeterminate001.png │ │ │ │ │ ├── indeterminate002.png │ │ │ │ │ ├── indeterminate003.png │ │ │ │ │ ├── indeterminate004.png │ │ │ │ │ ├── indeterminate005.png │ │ │ │ │ ├── indeterminate006.png │ │ │ │ │ ├── keyboard1.png │ │ │ │ │ ├── keyboard2.png │ │ │ │ │ ├── keyboard3.png │ │ │ │ │ ├── keyboard4.png │ │ │ │ │ ├── medium-button.png │ │ │ │ │ ├── menu-button.png │ │ │ │ │ ├── menu-highlight-button.png │ │ │ │ │ ├── minus-button.png │ │ │ │ │ ├── plus-button.png │ │ │ │ │ ├── progress_empty.png │ │ │ │ │ ├── progress_fill.png │ │ │ │ │ ├── radio_empty.png │ │ │ │ │ ├── radio_selected.png │ │ │ │ │ ├── slideout.png │ │ │ │ │ ├── slider-touch.png │ │ │ │ │ ├── slider-used.png │ │ │ │ │ ├── slider.png │ │ │ │ │ ├── sort-button.png │ │ │ │ │ ├── top-bar.jpg │ │ │ │ │ └── unlock.png │ │ │ │ │ └── ui.xml │ │ │ ├── 1280x800 │ │ │ │ └── res │ │ │ │ │ ├── fonts │ │ │ │ │ └── Roboto-Regular-20.dat │ │ │ │ │ ├── images │ │ │ │ │ ├── back-icon.png │ │ │ │ │ ├── background.jpg │ │ │ │ │ ├── button.png │ │ │ │ │ ├── checkbox_checked.png │ │ │ │ │ ├── checkbox_empty.png │ │ │ │ │ ├── console-icon.png │ │ │ │ │ ├── console-toggle.png │ │ │ │ │ ├── cursor.png │ │ │ │ │ ├── curtain.jpg │ │ │ │ │ ├── file.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── highlight-button.png │ │ │ │ │ ├── home-icon.png │ │ │ │ │ ├── indeterminate001.png │ │ │ │ │ ├── indeterminate002.png │ │ │ │ │ ├── indeterminate003.png │ │ │ │ │ ├── indeterminate004.png │ │ │ │ │ ├── indeterminate005.png │ │ │ │ │ ├── indeterminate006.png │ │ │ │ │ ├── keyboard1.png │ │ │ │ │ ├── keyboard2.png │ │ │ │ │ ├── keyboard3.png │ │ │ │ │ ├── keyboard4.png │ │ │ │ │ ├── medium-button.png │ │ │ │ │ ├── mediumwide-button.png │ │ │ │ │ ├── minus-button.png │ │ │ │ │ ├── plus-button.png │ │ │ │ │ ├── progress_empty.png │ │ │ │ │ ├── progress_fill.png │ │ │ │ │ ├── radio_empty.png │ │ │ │ │ ├── radio_selected.png │ │ │ │ │ ├── slider-touch.png │ │ │ │ │ ├── slider-used.png │ │ │ │ │ ├── slider.png │ │ │ │ │ ├── sort-button.png │ │ │ │ │ └── unlock.png │ │ │ │ │ └── ui.xml │ │ │ ├── 1920x1200 │ │ │ │ └── res │ │ │ │ │ ├── fonts │ │ │ │ │ └── Roboto-Regular-30.dat │ │ │ │ │ ├── images │ │ │ │ │ ├── back-icon.png │ │ │ │ │ ├── background.jpg │ │ │ │ │ ├── button.png │ │ │ │ │ ├── checkbox_checked.png │ │ │ │ │ ├── checkbox_empty.png │ │ │ │ │ ├── console-icon.png │ │ │ │ │ ├── console-toggle.png │ │ │ │ │ ├── cursor.png │ │ │ │ │ ├── curtain.jpg │ │ │ │ │ ├── file.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── highlight-button.png │ │ │ │ │ ├── home-icon.png │ │ │ │ │ ├── indeterminate001.png │ │ │ │ │ ├── indeterminate002.png │ │ │ │ │ ├── indeterminate003.png │ │ │ │ │ ├── indeterminate004.png │ │ │ │ │ ├── indeterminate005.png │ │ │ │ │ ├── indeterminate006.png │ │ │ │ │ ├── keyboard1.png │ │ │ │ │ ├── keyboard2.png │ │ │ │ │ ├── keyboard3.png │ │ │ │ │ ├── keyboard4.png │ │ │ │ │ ├── medium-button.png │ │ │ │ │ ├── mediumwide-button.png │ │ │ │ │ ├── minus-button.png │ │ │ │ │ ├── plus-button.png │ │ │ │ │ ├── progress_empty.png │ │ │ │ │ ├── progress_fill.png │ │ │ │ │ ├── radio_empty.png │ │ │ │ │ ├── radio_selected.png │ │ │ │ │ ├── slider-touch.png │ │ │ │ │ ├── slider-used.png │ │ │ │ │ ├── slider.png │ │ │ │ │ ├── sort-button.png │ │ │ │ │ └── unlock.png │ │ │ │ │ └── ui.xml │ │ │ ├── 2560x1600 │ │ │ │ └── res │ │ │ │ │ ├── fonts │ │ │ │ │ └── Roboto-Regular-40.dat │ │ │ │ │ ├── images │ │ │ │ │ ├── back-icon.png │ │ │ │ │ ├── background.jpg │ │ │ │ │ ├── button.png │ │ │ │ │ ├── checkbox_checked.png │ │ │ │ │ ├── checkbox_empty.png │ │ │ │ │ ├── console-icon.png │ │ │ │ │ ├── console-toggle.png │ │ │ │ │ ├── cursor.png │ │ │ │ │ ├── curtain.jpg │ │ │ │ │ ├── file.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── highlight-button.png │ │ │ │ │ ├── home-icon.png │ │ │ │ │ ├── indeterminate001.png │ │ │ │ │ ├── indeterminate002.png │ │ │ │ │ ├── indeterminate003.png │ │ │ │ │ ├── indeterminate004.png │ │ │ │ │ ├── indeterminate005.png │ │ │ │ │ ├── indeterminate006.png │ │ │ │ │ ├── keyboard1.png │ │ │ │ │ ├── keyboard2.png │ │ │ │ │ ├── keyboard3.png │ │ │ │ │ ├── keyboard4.png │ │ │ │ │ ├── medium-button.png │ │ │ │ │ ├── mediumwide-button.png │ │ │ │ │ ├── minus-button.png │ │ │ │ │ ├── plus-button.png │ │ │ │ │ ├── progress_empty.png │ │ │ │ │ ├── progress_fill.png │ │ │ │ │ ├── radio_empty.png │ │ │ │ │ ├── radio_selected.png │ │ │ │ │ ├── slider-touch.png │ │ │ │ │ ├── slider-used.png │ │ │ │ │ ├── slider.png │ │ │ │ │ ├── sort-button.png │ │ │ │ │ └── unlock.png │ │ │ │ │ └── ui.xml │ │ │ ├── 540x960 │ │ │ │ └── res │ │ │ │ │ ├── fonts │ │ │ │ │ ├── Roboto-Regular-20.dat │ │ │ │ │ ├── Roboto-Regular-25.dat │ │ │ │ │ └── Roboto-Regular-40.dat │ │ │ │ │ ├── images │ │ │ │ │ ├── .BridgeSort │ │ │ │ │ ├── back-icon.png │ │ │ │ │ ├── checkbox_checked.png │ │ │ │ │ ├── checkbox_empty.png │ │ │ │ │ ├── cursor.png │ │ │ │ │ ├── curtain.jpg │ │ │ │ │ ├── file.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── home-icon.png │ │ │ │ │ ├── indeterminate001.png │ │ │ │ │ ├── indeterminate002.png │ │ │ │ │ ├── indeterminate003.png │ │ │ │ │ ├── indeterminate004.png │ │ │ │ │ ├── indeterminate005.png │ │ │ │ │ ├── indeterminate006.png │ │ │ │ │ ├── keyboard1.png │ │ │ │ │ ├── keyboard2.png │ │ │ │ │ ├── keyboard3.png │ │ │ │ │ ├── keyboard4.png │ │ │ │ │ ├── progress_empty.png │ │ │ │ │ ├── progress_fill.png │ │ │ │ │ ├── qhd-medium-button.png │ │ │ │ │ ├── qhd-menu-button.png │ │ │ │ │ ├── qhd-menu-highlight-button.png │ │ │ │ │ ├── qhd-minus-button.png │ │ │ │ │ ├── qhd-plus-button.png │ │ │ │ │ ├── qhd-small-button.png │ │ │ │ │ ├── qhd-sort-button.png │ │ │ │ │ ├── radio_empty.png │ │ │ │ │ ├── radio_selected.png │ │ │ │ │ ├── slideout.png │ │ │ │ │ ├── slider-touch.png │ │ │ │ │ ├── slider-used.png │ │ │ │ │ ├── slider.png │ │ │ │ │ ├── top-bar.jpg │ │ │ │ │ └── unlock.png │ │ │ │ │ └── ui.xml │ │ │ ├── 720x1280 │ │ │ │ └── res │ │ │ │ │ ├── fonts │ │ │ │ │ └── Roboto-Condensed-30.dat │ │ │ │ │ ├── images │ │ │ │ │ ├── back-icon.png │ │ │ │ │ ├── checkbox_checked.png │ │ │ │ │ ├── checkbox_empty.png │ │ │ │ │ ├── cursor.png │ │ │ │ │ ├── curtain.jpg │ │ │ │ │ ├── file.png │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── home-icon.png │ │ │ │ │ ├── indeterminate001.png │ │ │ │ │ ├── indeterminate002.png │ │ │ │ │ ├── indeterminate003.png │ │ │ │ │ ├── indeterminate004.png │ │ │ │ │ ├── indeterminate005.png │ │ │ │ │ ├── indeterminate006.png │ │ │ │ │ ├── keyboard1.png │ │ │ │ │ ├── keyboard2.png │ │ │ │ │ ├── keyboard3.png │ │ │ │ │ ├── keyboard4.png │ │ │ │ │ ├── medium-button.png │ │ │ │ │ ├── menu-button.png │ │ │ │ │ ├── menu-highlight-button.png │ │ │ │ │ ├── minus-button.png │ │ │ │ │ ├── plus-button.png │ │ │ │ │ ├── progress_empty.png │ │ │ │ │ ├── progress_fill.png │ │ │ │ │ ├── radio_empty.png │ │ │ │ │ ├── radio_selected.png │ │ │ │ │ ├── slideout.png │ │ │ │ │ ├── slider-touch.png │ │ │ │ │ ├── slider-used.png │ │ │ │ │ ├── slider.png │ │ │ │ │ ├── sort-button.png │ │ │ │ │ ├── top-bar.jpg │ │ │ │ │ └── unlock.png │ │ │ │ │ └── ui.xml │ │ │ └── common │ │ │ │ └── res │ │ │ │ └── images │ │ │ │ ├── progress_empty.png │ │ │ │ └── progress_fill.png │ │ ├── safestrap-common.mk │ │ ├── sbin │ │ │ ├── backup-ss.sh │ │ │ ├── build-fs.sh │ │ │ ├── changeslot.sh │ │ │ ├── check-fs.sh │ │ │ └── restore-ss.sh │ │ └── splashscreen-res │ │ │ ├── 1024x600 │ │ │ ├── background-blank.png │ │ │ ├── background-nonsafe.png │ │ │ └── background-safe.png │ │ │ ├── 1080x1920 │ │ │ ├── background-blank.png │ │ │ ├── background-nonsafe-light.png │ │ │ ├── background-nonsafe.png │ │ │ ├── background-safe-light.png │ │ │ └── background-safe.png │ │ │ ├── 1200x1920 │ │ │ ├── background-blank.png │ │ │ ├── background-nonsafe.png │ │ │ └── background-safe.png │ │ │ ├── 1280x800 │ │ │ ├── background-blank.png │ │ │ ├── background-nonsafe.png │ │ │ └── background-safe.png │ │ │ ├── 1920x1200 │ │ │ ├── background-blank.png │ │ │ ├── background-nonsafe.png │ │ │ └── background-safe.png │ │ │ ├── 2560x1600 │ │ │ ├── background-blank.png │ │ │ ├── background-nonsafe.png │ │ │ └── background-safe.png │ │ │ ├── 540x960 │ │ │ ├── background-blank.png │ │ │ ├── background-nonsafe.png │ │ │ └── background-safe.png │ │ │ └── 720x1280 │ │ │ ├── background-blank.png │ │ │ ├── background-nonsafe.png │ │ │ ├── background-reboot.png │ │ │ └── background-safe.png │ ├── motorola │ │ ├── common-ghost │ │ │ ├── APP │ │ │ │ └── recovery-check.sh │ │ │ ├── build-install.sh │ │ │ ├── build-safestrap.sh │ │ │ ├── changeslot.sh │ │ │ ├── hijack │ │ │ ├── init.rc │ │ │ ├── res │ │ │ │ └── splashkeys.synaptics_dsx_i2c │ │ │ ├── safestrap-common-ghost.mk │ │ │ ├── ss.config │ │ │ └── twrp.fstab │ │ ├── common-hd │ │ │ ├── build-install.sh │ │ │ ├── build-safestrap.sh │ │ │ ├── hijack │ │ │ ├── init.rc │ │ │ ├── res │ │ │ │ ├── splashkeys.atmel_mxt_ts │ │ │ │ ├── splashkeys.cyttsp3-i2c │ │ │ │ └── splashkeys.melfas-ts │ │ │ ├── safestrap-common-hd.mk │ │ │ ├── ss.config │ │ │ └── twrp.fstab │ │ ├── common-omap4 │ │ │ ├── build-install.sh │ │ │ ├── build-safestrap.sh │ │ │ ├── hijack │ │ │ ├── init.rc │ │ │ ├── res │ │ │ │ └── splashkeys.atmxt-i2c │ │ │ ├── safestrap-common-omap4.mk │ │ │ ├── sbin-blobs │ │ │ │ ├── battd │ │ │ │ ├── libhardware_legacy.so │ │ │ │ ├── libnetutils.so │ │ │ │ └── libwpa_client.so │ │ │ ├── ss.config │ │ │ └── twrp.fstab │ │ ├── edison │ │ │ ├── build-install.sh │ │ │ ├── build-safestrap.sh │ │ │ ├── safestrap.mk │ │ │ ├── ss.config │ │ │ └── twrp.fstab │ │ ├── maserati │ │ │ ├── build-install.sh │ │ │ ├── build-safestrap.sh │ │ │ └── safestrap.mk │ │ ├── solana │ │ │ ├── build-install.sh │ │ │ ├── build-safestrap.sh │ │ │ ├── hijack │ │ │ ├── init.target.rc │ │ │ ├── recovery-kernel │ │ │ ├── res │ │ │ │ ├── background-recovery.png │ │ │ │ ├── background-start.png │ │ │ │ ├── indeterminate1.png │ │ │ │ ├── indeterminate2.png │ │ │ │ ├── indeterminate3.png │ │ │ │ ├── indeterminate4.png │ │ │ │ ├── indeterminate5.png │ │ │ │ ├── indeterminate6.png │ │ │ │ ├── progress_empty.png │ │ │ │ └── progress_fill.png │ │ │ ├── safestrap.mk │ │ │ ├── safestrapmenu │ │ │ ├── ss.config │ │ │ └── twrp.fstab │ │ ├── spyder │ │ │ ├── build-install.sh │ │ │ ├── build-safestrap.sh │ │ │ └── safestrap.mk │ │ ├── targa │ │ │ ├── build-install.sh │ │ │ ├── build-safestrap.sh │ │ │ ├── safestrap.mk │ │ │ ├── ss.config │ │ │ └── twrp.fstab │ │ ├── umts_spyder │ │ │ ├── build-install.sh │ │ │ ├── build-safestrap.sh │ │ │ └── safestrap.mk │ │ ├── xoom2 │ │ │ ├── hijack │ │ │ └── init.rc │ │ ├── xt1053 │ │ │ ├── build-install.sh │ │ │ ├── build-safestrap.sh │ │ │ └── safestrap.mk │ │ ├── xt1058 │ │ │ ├── build-install.sh │ │ │ ├── build-safestrap.sh │ │ │ └── safestrap.mk │ │ ├── xt1060 │ │ │ ├── build-install.sh │ │ │ ├── build-safestrap.sh │ │ │ └── safestrap.mk │ │ └── xt926 │ │ │ ├── build-install.sh │ │ │ ├── build-safestrap.sh │ │ │ └── safestrap.mk │ └── samsung │ │ ├── d2-common │ │ ├── build-fs.sh │ │ ├── build-install.sh │ │ ├── build-safestrap.sh │ │ ├── hijack │ │ ├── init.rc │ │ ├── res │ │ │ └── splashkeys.sec_touchscreen │ │ ├── rootfs │ │ │ └── init │ │ ├── safestrap-d2-common.mk │ │ ├── ss.config │ │ └── twrp.fstab │ │ ├── d2vzw │ │ ├── build-install.sh │ │ ├── build-safestrap.sh │ │ └── safestrap.mk │ │ ├── h-common │ │ ├── APP │ │ │ ├── recovery-check.sh │ │ │ ├── recovery-install.sh │ │ │ ├── recovery-reboot.sh │ │ │ └── recovery-uninstall.sh │ │ ├── build-fs.sh │ │ ├── build-install.sh │ │ ├── build-safestrap.sh │ │ ├── hijack │ │ ├── include │ │ │ └── linux │ │ │ │ ├── msm_ion.h │ │ │ │ └── msm_mdp.h │ │ ├── init.rc │ │ ├── res │ │ │ └── splashkeys.sec_touchscreen │ │ ├── rootfs │ │ │ └── init │ │ ├── safestrap-h-common.mk │ │ ├── sbin-libs │ │ │ ├── libkeyutils.so │ │ │ ├── libsec_ecryptfs.so │ │ │ └── libsec_km.so │ │ ├── ss.config │ │ └── twrp.fstab │ │ ├── hlteatt │ │ ├── build-install.sh │ │ ├── build-safestrap.sh │ │ └── safestrap.mk │ │ ├── hltevzw │ │ ├── build-install.sh │ │ ├── build-safestrap.sh │ │ └── safestrap.mk │ │ ├── hltexx │ │ ├── build-fs.sh │ │ ├── build-install.sh │ │ ├── build-safestrap.sh │ │ ├── safestrap.mk │ │ ├── ss.config │ │ └── twrp.fstab │ │ ├── jf-common │ │ ├── APP │ │ │ ├── recovery-check.sh │ │ │ ├── recovery-install.sh │ │ │ ├── recovery-reboot.sh │ │ │ └── recovery-uninstall.sh │ │ ├── build-fs.sh │ │ ├── build-install.sh │ │ ├── build-safestrap.sh │ │ ├── hijack │ │ ├── init.rc │ │ ├── res │ │ │ └── splashkeys.sec_touchscreen │ │ ├── safestrap-jf-common.mk │ │ ├── sbin-libs │ │ │ ├── libkeyutils.so │ │ │ ├── libsec_ecryptfs.so │ │ │ └── libsec_km.so │ │ ├── ss.config │ │ └── twrp.fstab │ │ ├── jflteatt │ │ ├── build-install.sh │ │ ├── build-safestrap.sh │ │ └── safestrap.mk │ │ ├── jflteatt_active │ │ ├── APP │ │ │ ├── recovery-check.sh │ │ │ ├── recovery-install.sh │ │ │ ├── recovery-reboot.sh │ │ │ └── recovery-uninstall.sh │ │ ├── build-install.sh │ │ ├── build-safestrap.sh │ │ ├── safestrap.mk │ │ ├── ss.config │ │ └── twrp.fstab │ │ ├── jfltevzw │ │ ├── build-install.sh │ │ ├── build-safestrap.sh │ │ └── safestrap.mk │ │ ├── k-common │ │ ├── APP │ │ │ ├── recovery-check.sh │ │ │ ├── recovery-install.sh │ │ │ ├── recovery-reboot.sh │ │ │ └── recovery-uninstall.sh │ │ ├── build-fs.sh │ │ ├── build-install.sh │ │ ├── build-safestrap.sh │ │ ├── hijack │ │ ├── include │ │ │ └── linux │ │ │ │ ├── msm_ion.h │ │ │ │ └── msm_mdp.h │ │ ├── init.rc │ │ ├── res │ │ │ └── splashkeys.sec_touchscreen │ │ ├── safestrap-k-common.mk │ │ ├── sbin-libs │ │ │ ├── libkeyutils.so │ │ │ ├── libsec_ecryptfs.so │ │ │ └── libsec_km.so │ │ ├── ss.config │ │ └── twrp.fstab │ │ ├── klteatt │ │ ├── build-install.sh │ │ ├── build-safestrap.sh │ │ ├── rootfs │ │ │ └── init │ │ ├── safestrap.mk │ │ ├── ss.config │ │ └── twrp.fstab │ │ ├── kltevzw │ │ ├── build-install.sh │ │ ├── build-safestrap.sh │ │ ├── rootfs │ │ │ └── init │ │ └── safestrap.mk │ │ ├── melius │ │ ├── build-install.sh │ │ ├── build-safestrap.sh │ │ ├── hijack │ │ ├── init.rc │ │ ├── res │ │ │ └── splashkeys.sec_touchscreen │ │ ├── safestrap.mk │ │ ├── ss.config │ │ └── twrp.fstab │ │ ├── t0-common │ │ ├── build-fs.sh │ │ ├── build-install.sh │ │ ├── build-safestrap.sh │ │ ├── hijack │ │ ├── init.rc │ │ ├── res │ │ │ └── splashkeys.sec_touchscreen │ │ ├── rootfs │ │ │ └── init │ │ ├── safestrap-t0-common.mk │ │ ├── ss.config │ │ └── twrp.fstab │ │ └── t0ltevzw │ │ ├── build-install.sh │ │ ├── build-safestrap.sh │ │ └── safestrap.mk ├── flags │ ├── recovery_mode │ └── version ├── hijack-wrapper │ ├── Android.mk │ └── hijack-wrapper.c ├── legacy │ ├── app │ │ ├── omap4-amazon-logwrapper │ │ │ ├── recovery-check.sh │ │ │ ├── recovery-install.sh │ │ │ └── recovery-uninstall.sh │ │ ├── omap4-amazon-setup_fs │ │ │ ├── recovery-check.sh │ │ │ ├── recovery-install.sh-bowser │ │ │ ├── recovery-install.sh-jem │ │ │ ├── recovery-install.sh-otter │ │ │ ├── recovery-install.sh-otter2 │ │ │ └── recovery-uninstall.sh │ │ └── omap4-amazon-start_smc.sh │ │ │ ├── recovery-check.sh │ │ │ ├── recovery-install.sh-bowser │ │ │ ├── recovery-install.sh-otter │ │ │ ├── recovery-install.sh-otter2 │ │ │ └── recovery-uninstall.sh │ ├── hijacks │ │ ├── logwrapper-kfire │ │ ├── setup_fs-hijack-kfire │ │ ├── setup_fs-kfire │ │ ├── start_smc.sh-hijack-kfire │ │ └── start_smc.sh-kfire │ └── init │ │ └── init-kfire.rc ├── lfs ├── sbin-extras │ └── strace ├── splashmenu │ ├── Android.mk │ ├── CleanSpec.mk │ ├── NOTICE │ ├── common.h │ ├── minui │ │ ├── Android.mk │ │ ├── events.c │ │ ├── font_10x18.h │ │ ├── font_7x16.h │ │ ├── graphics.c │ │ ├── graphics_overlay.c │ │ ├── minui.h │ │ ├── mkfont.c │ │ ├── resources.c │ │ ├── roboto_10x18.h │ │ ├── roboto_15x24.h │ │ └── roboto_23x41.h │ ├── splashmenu.c │ └── ui.c └── ueventmon │ ├── Android.mk │ └── ueventmon.c ├── screen_ui.cpp ├── screen_ui.h ├── tarWrite.c ├── tarWrite.h ├── testdata ├── alter-footer.zip ├── alter-metadata.zip ├── fake-eocd.zip ├── jarsigned.zip ├── otasigned.zip ├── otasigned_f4.zip ├── otasigned_f4_sha256.zip ├── otasigned_sha256.zip ├── random.zip ├── test_f4.pk8 ├── test_f4.x509.pem ├── test_f4_sha256.x509.pem ├── testkey.pk8 ├── testkey.x509.pem ├── testkey_sha256.x509.pem └── unsigned.zip ├── toolbox └── Android.mk ├── tools ├── Android.mk └── ota │ ├── Android.mk │ ├── add-property-tag.c │ ├── check-lost+found.c │ └── convert-to-bmp.py ├── twbootloader.cpp ├── twcommon.h ├── twinstall.cpp ├── twinstall.h ├── twrp-functions.cpp ├── twrp-functions.hpp ├── twrp.cpp ├── twrpDU.cpp ├── twrpDU.hpp ├── twrpDigest.cpp ├── twrpDigest.hpp ├── twrpTar.cpp ├── twrpTar.h ├── twrpTar.hpp ├── twrpTarMain ├── Android.mk └── twrpTarMain.cpp ├── ui.cpp ├── ui.h ├── updater ├── Android.mk ├── install.c ├── install.h ├── updater.c └── updater.h ├── variables.h ├── verifier.cpp ├── verifier.h ├── verifier_test.cpp └── verifier_test.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | -------------------------------------------------------------------------------- /applypatch/testdata/new.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/applypatch/testdata/new.file -------------------------------------------------------------------------------- /applypatch/testdata/old.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/applypatch/testdata/old.file -------------------------------------------------------------------------------- /applypatch/testdata/patch.bsdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/applypatch/testdata/patch.bsdiff -------------------------------------------------------------------------------- /bmlutils/bmlutils.h: -------------------------------------------------------------------------------- 1 | #ifndef BMLUTILS_H_ 2 | #define BMLUTILS_H_ 3 | 4 | int format_rfs_device (const char *device, const char *path); 5 | 6 | #endif // BMLUTILS_H_ 7 | -------------------------------------------------------------------------------- /crypto/scrypt/MODULE_LICENSE_BSD_LIKE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/crypto/scrypt/MODULE_LICENSE_BSD_LIKE -------------------------------------------------------------------------------- /crypto/scrypt/scrypt.version: -------------------------------------------------------------------------------- 1 | SCRYPT_VERSION=1.1.6 2 | -------------------------------------------------------------------------------- /exfat/fsck/exfatfsck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/exfat/fsck/exfatfsck -------------------------------------------------------------------------------- /fb2png/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | fb2png 3 | adb_screenshoot 4 | libs 5 | obj 6 | -------------------------------------------------------------------------------- /fb2png/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/fb2png/AndroidManifest.xml -------------------------------------------------------------------------------- /fb2png/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_BUILD_SCRIPT := $(call my-dir)/../Android.mk 2 | -------------------------------------------------------------------------------- /fb2png/libpng/lib/libpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/fb2png/libpng/lib/libpng.a -------------------------------------------------------------------------------- /fonts/12x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/fonts/12x22.png -------------------------------------------------------------------------------- /fonts/18x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/fonts/18x32.png -------------------------------------------------------------------------------- /fuse/include/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for include/config.h 2 | -------------------------------------------------------------------------------- /gui/devices/1024x600/res/fonts/Roboto-Regular-20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/fonts/Roboto-Regular-20.dat -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/back-icon.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/background.jpg -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/button.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/checkbox_checked.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/checkbox_empty.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/console-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/console-icon.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/console-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/console-toggle.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/home-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/home-icon.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/keyboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/keyboard1.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/keyboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/keyboard2.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/keyboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/keyboard3.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/keyboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/keyboard4.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/medium-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/medium-button.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/mediumwide-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/mediumwide-button.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/minus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/minus-button.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/plus-button.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/progress_empty.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/progress_fill.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/radio_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/radio_empty.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/radio_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/radio_selected.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/slider-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/slider-touch.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/slider-used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/slider-used.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/sort-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/sort-button.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x600/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/fonts/Roboto-Regular-20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/fonts/Roboto-Regular-20.dat -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/back-icon.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/background.jpg -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/button.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/checkbox_checked.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/checkbox_empty.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/console-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/console-icon.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/console-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/console-toggle.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/home-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/home-icon.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/keyboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/keyboard1.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/keyboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/keyboard2.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/keyboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/keyboard3.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/keyboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/keyboard4.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/medium-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/medium-button.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/mediumwide-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/mediumwide-button.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/minus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/minus-button.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/plus-button.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/progress_empty.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/progress_fill.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/radio_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/radio_empty.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/radio_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/radio_selected.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/slider-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/slider-touch.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/slider-used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/slider-used.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/sort-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/sort-button.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1024x768/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/back-icon.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/checkbox_checked.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/checkbox_empty.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/home-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/home-icon.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/keyboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/keyboard1.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/keyboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/keyboard2.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/keyboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/keyboard3.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/keyboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/keyboard4.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/medium-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/medium-button.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/menu-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/menu-button.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/minus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/minus-button.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/plus-button.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/progress_empty.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/progress_fill.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/radio_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/radio_empty.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/radio_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/radio_selected.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/slideout.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/slider-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/slider-touch.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/slider-used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/slider-used.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/sort-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/sort-button.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/top-bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/top-bar.jpg -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1080x1920/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/back-icon.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/checkbox_checked.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/checkbox_empty.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/home-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/home-icon.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/keyboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/keyboard1.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/keyboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/keyboard2.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/keyboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/keyboard3.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/keyboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/keyboard4.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/medium-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/medium-button.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/menu-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/menu-button.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/minus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/minus-button.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/plus-button.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/progress_empty.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/progress_fill.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/radio_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/radio_empty.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/radio_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/radio_selected.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/slideout.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/slider-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/slider-touch.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/slider-used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/slider-used.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/sort-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/sort-button.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/top-bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/top-bar.jpg -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1200x1920/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/fonts/Roboto-Regular-20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/fonts/Roboto-Regular-20.dat -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/back-icon.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/background.jpg -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/button.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/checkbox_checked.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/checkbox_empty.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/console-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/console-icon.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/console-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/console-toggle.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/home-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/home-icon.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/keyboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/keyboard1.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/keyboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/keyboard2.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/keyboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/keyboard3.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/keyboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/keyboard4.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/medium-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/medium-button.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/mediumwide-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/mediumwide-button.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/minus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/minus-button.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/plus-button.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/progress_empty.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/progress_fill.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/radio_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/radio_empty.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/radio_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/radio_selected.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/slider-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/slider-touch.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/slider-used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/slider-used.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/sort-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/sort-button.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1280x800/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/back-icon.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/checkbox_checked.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/checkbox_empty.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/home-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/home-icon.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/keyboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/keyboard1.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/keyboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/keyboard2.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/keyboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/keyboard3.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/keyboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/keyboard4.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/medium-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/medium-button.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/menu-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/menu-button.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/minus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/minus-button.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/plus-button.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/progress_empty.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/progress_fill.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/radio_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/radio_empty.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/radio_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/radio_selected.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/slideout.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/slider-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/slider-touch.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/slider-used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/slider-used.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/sort-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/sort-button.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/top-bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/top-bar.jpg -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1600x2560/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/fonts/Roboto-Regular-30.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/fonts/Roboto-Regular-30.dat -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/back-icon.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/background.jpg -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/button.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/checkbox_checked.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/checkbox_empty.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/console-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/console-icon.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/console-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/console-toggle.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/home-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/home-icon.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/keyboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/keyboard1.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/keyboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/keyboard2.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/keyboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/keyboard3.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/keyboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/keyboard4.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/medium-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/medium-button.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/minus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/minus-button.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/plus-button.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/progress_empty.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/progress_fill.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/radio_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/radio_empty.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/radio_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/radio_selected.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/slider-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/slider-touch.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/slider-used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/slider-used.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/sort-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/sort-button.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/1920x1200/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/fonts/Roboto-Condensed-12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/fonts/Roboto-Condensed-12.dat -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/android.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/back-icon.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/checkbox_checked.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/checkbox_empty.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/home-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/home-icon.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/keyboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/keyboard1.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/keyboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/keyboard2.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/keyboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/keyboard3.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/keyboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/keyboard4.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/menu-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/menu-button.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/minus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/minus-button.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/plus-button.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/progress_empty.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/progress_fill.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/radio_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/radio_empty.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/radio_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/radio_selected.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/slideout.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/slider-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/slider-touch.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/slider-used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/slider-used.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/sort-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/sort-button.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/top-bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/top-bar.jpg -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/240x240/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/fonts/Roboto-Regular-40.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/fonts/Roboto-Regular-40.dat -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/back-icon.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/background.jpg -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/button.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/checkbox_checked.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/checkbox_empty.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/console-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/console-icon.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/console-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/console-toggle.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/home-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/home-icon.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/keyboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/keyboard1.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/keyboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/keyboard2.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/keyboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/keyboard3.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/keyboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/keyboard4.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/medium-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/medium-button.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/minus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/minus-button.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/plus-button.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/progress_empty.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/progress_fill.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/radio_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/radio_empty.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/radio_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/radio_selected.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/slider-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/slider-touch.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/slider-used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/slider-used.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/sort-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/sort-button.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/2560x1600/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/fonts/Roboto-Condensed-14.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/fonts/Roboto-Condensed-14.dat -------------------------------------------------------------------------------- /gui/devices/320x480/res/fonts/Roboto-Condensed-16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/fonts/Roboto-Condensed-16.dat -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/android.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/back-icon.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/checkbox_checked.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/checkbox_empty.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/hdpi-medium-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/hdpi-medium-button.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/hdpi-menu-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/hdpi-menu-button.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/hdpi-minus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/hdpi-minus-button.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/hdpi-plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/hdpi-plus-button.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/hdpi-small-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/hdpi-small-button.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/hdpi-sort-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/hdpi-sort-button.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/home-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/home-icon.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/keyboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/keyboard1.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/keyboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/keyboard2.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/keyboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/keyboard3.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/keyboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/keyboard4.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/medium-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/medium-button.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/menu-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/menu-button.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/minus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/minus-button.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/plus-button.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/progress_empty.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/progress_fill.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/radio_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/radio_empty.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/radio_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/radio_selected.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/slideout.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/slider-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/slider-touch.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/slider-used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/slider-used.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/sort-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/sort-button.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/top-bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/top-bar.jpg -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/top-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/top-bar.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/320x480/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/fonts/Roboto-Regular-20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/fonts/Roboto-Regular-20.dat -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/back-icon.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/checkbox_checked.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/checkbox_empty.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/home-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/home-icon.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/keyboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/keyboard1.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/keyboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/keyboard2.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/keyboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/keyboard3.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/keyboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/keyboard4.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/medium-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/medium-button.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/menu-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/menu-button.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/minus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/minus-button.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/plus-button.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/progress_empty.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/progress_fill.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/radio_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/radio_empty.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/radio_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/radio_selected.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/slideout.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/slider-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/slider-touch.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/slider-used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/slider-used.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/sort-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/sort-button.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/top-bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/top-bar.jpg -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x800/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/fonts/Roboto-Regular-20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/fonts/Roboto-Regular-20.dat -------------------------------------------------------------------------------- /gui/devices/480x854/res/fonts/Roboto-Regular-40.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/fonts/Roboto-Regular-40.dat -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/back-icon.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/checkbox_checked.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/checkbox_empty.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/home-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/home-icon.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/keyboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/keyboard1.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/keyboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/keyboard2.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/keyboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/keyboard3.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/keyboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/keyboard4.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/medium-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/medium-button.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/menu-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/menu-button.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/minus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/minus-button.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/plus-button.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/progress_empty.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/progress_fill.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/radio_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/radio_empty.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/radio_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/radio_selected.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/slideout.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/slider-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/slider-touch.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/slider-used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/slider-used.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/sort-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/sort-button.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/top-bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/top-bar.jpg -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/480x854/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/fonts/Roboto-Regular-20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/fonts/Roboto-Regular-20.dat -------------------------------------------------------------------------------- /gui/devices/540x960/res/fonts/Roboto-Regular-25.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/fonts/Roboto-Regular-25.dat -------------------------------------------------------------------------------- /gui/devices/540x960/res/fonts/Roboto-Regular-40.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/fonts/Roboto-Regular-40.dat -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/back-icon.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/checkbox_checked.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/checkbox_empty.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/home-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/home-icon.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/keyboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/keyboard1.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/keyboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/keyboard2.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/keyboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/keyboard3.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/keyboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/keyboard4.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/progress_empty.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/progress_fill.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/qhd-medium-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/qhd-medium-button.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/qhd-menu-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/qhd-menu-button.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/qhd-minus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/qhd-minus-button.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/qhd-plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/qhd-plus-button.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/qhd-small-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/qhd-small-button.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/qhd-sort-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/qhd-sort-button.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/radio_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/radio_empty.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/radio_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/radio_selected.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/slideout.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/slider-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/slider-touch.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/slider-used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/slider-used.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/top-bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/top-bar.jpg -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/540x960/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/back-icon.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/checkbox_checked.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/checkbox_empty.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/home-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/home-icon.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/keyboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/keyboard1.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/keyboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/keyboard2.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/keyboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/keyboard3.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/keyboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/keyboard4.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/medium-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/medium-button.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/menu-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/menu-button.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/minus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/minus-button.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/plus-button.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/progress_empty.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/progress_fill.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/radio_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/radio_empty.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/radio_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/radio_selected.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/slideout.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/slider-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/slider-touch.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/slider-used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/slider-used.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/sort-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/sort-button.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/top-bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/top-bar.jpg -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/720x1280/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/back-icon.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/checkbox_checked.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/checkbox_empty.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/home-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/home-icon.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/keyboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/keyboard1.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/keyboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/keyboard2.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/keyboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/keyboard3.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/keyboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/keyboard4.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/medium-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/medium-button.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/menu-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/menu-button.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/minus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/minus-button.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/plus-button.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/progress_empty.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/progress_fill.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/radio_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/radio_empty.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/radio_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/radio_selected.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/slideout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/slideout.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/slider-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/slider-touch.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/slider-used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/slider-used.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/sort-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/sort-button.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/top-bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/top-bar.jpg -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x1280/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/fonts/Roboto-Condensed-16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/fonts/Roboto-Condensed-16.dat -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/back-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/back-icon.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/background.jpg -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/button.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/checkbox_checked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/checkbox_checked.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/checkbox_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/checkbox_empty.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/console-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/console-icon.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/console-toggle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/console-toggle.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/home-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/home-icon.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/indeterminate001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/indeterminate001.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/indeterminate002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/indeterminate002.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/indeterminate003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/indeterminate003.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/indeterminate004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/indeterminate004.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/indeterminate005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/indeterminate005.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/indeterminate006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/indeterminate006.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/keyboard1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/keyboard1.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/keyboard2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/keyboard2.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/keyboard3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/keyboard3.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/keyboard4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/keyboard4.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/medium-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/medium-button.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/mediumwide-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/mediumwide-button.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/minus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/minus-button.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/plus-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/plus-button.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/progress_empty.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/progress_fill.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/radio_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/radio_empty.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/radio_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/radio_selected.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/slider-touch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/slider-touch.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/slider-used.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/slider-used.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/sort-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/sort-button.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/800x480/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/common/res/images/progress_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/common/res/images/progress_empty.png -------------------------------------------------------------------------------- /gui/devices/common/res/images/progress_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/common/res/images/progress_fill.png -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Condensed-10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Condensed-10.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Condensed-12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Condensed-12.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Condensed-14.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Condensed-14.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Condensed-16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Condensed-16.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Condensed-20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Condensed-20.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Condensed-25.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Condensed-25.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Condensed-30.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Condensed-30.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Condensed-40.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Condensed-40.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Condensed-50.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Condensed-50.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Condensed-60.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Condensed-60.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Regular-10.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Regular-10.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Regular-12.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Regular-12.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Regular-14.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Regular-14.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Regular-16.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Regular-16.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Regular-20.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Regular-20.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Regular-25.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Regular-25.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Regular-30.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Regular-30.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Regular-40.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Regular-40.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Regular-50.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Regular-50.dat -------------------------------------------------------------------------------- /gui/devices/resources/fonts/Roboto-Regular-60.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/devices/resources/fonts/Roboto-Regular-60.dat -------------------------------------------------------------------------------- /gui/objects_action_safestrap.hpp: -------------------------------------------------------------------------------- 1 | virtual int doSafestrapAction(Action action, int isThreaded = 0); 2 | virtual int doSafestrapThreadedAction(Action action, int isThreaded = 0); 3 | 4 | -------------------------------------------------------------------------------- /gui/pages.h: -------------------------------------------------------------------------------- 1 | #ifndef _PAGES_HEADER 2 | #define _PAGES_HEADER 3 | 4 | void gui_notifyVarChange(const char *name, const char* value); 5 | 6 | #endif // _PAGES_HEADER 7 | 8 | -------------------------------------------------------------------------------- /gui/remaining.txt: -------------------------------------------------------------------------------- 1 | * Confirmation of action 2 | * Multi-String Variables 3 | * String Box 4 | 5 | -------------------------------------------------------------------------------- /gui/twrp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/gui/twrp -------------------------------------------------------------------------------- /libblkid/crc32.h: -------------------------------------------------------------------------------- 1 | #ifndef UL_NG_CRC32_H 2 | #define UL_NG_CRC32_H 3 | 4 | #include 5 | 6 | extern uint32_t crc32(uint32_t seed, const unsigned char *buf, size_t len); 7 | 8 | #endif 9 | 10 | -------------------------------------------------------------------------------- /libblkid/exec_shell.h: -------------------------------------------------------------------------------- 1 | extern void __attribute__((__noreturn__)) exec_shell(void); 2 | -------------------------------------------------------------------------------- /libblkid/pager.h: -------------------------------------------------------------------------------- 1 | #ifndef UTIL_LINUX_PAGER 2 | #define UTIL_LINUX_PAGER 3 | 4 | void setup_pager(void); 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /libblkid/xgetpass.h: -------------------------------------------------------------------------------- 1 | #ifndef UTIL_LINUX_XGETPASS_H 2 | #define UTIL_LINUX_XGETPASS_H 3 | 4 | extern char *xgetpass(int pfd, const char *prompt); 5 | 6 | #endif /* UTIL_LINUX_XGETPASS_H */ 7 | -------------------------------------------------------------------------------- /libcrecovery/defines.h: -------------------------------------------------------------------------------- 1 | #undef _PATH_BSHELL 2 | #define _PATH_BSHELL "/sbin/sh" 3 | -------------------------------------------------------------------------------- /openaes/VERSION: -------------------------------------------------------------------------------- 1 | OpenAES-0.7.0 -------------------------------------------------------------------------------- /pigz/pigz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/pigz/pigz.pdf -------------------------------------------------------------------------------- /prebuilt/99SuperSUDaemon: -------------------------------------------------------------------------------- 1 | #!/system/bin/sh 2 | /system/xbin/daemonsu --auto-daemon & 3 | -------------------------------------------------------------------------------- /prebuilt/HTCDumlock.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/prebuilt/HTCDumlock.apk -------------------------------------------------------------------------------- /prebuilt/Superuser.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/prebuilt/Superuser.apk -------------------------------------------------------------------------------- /prebuilt/chattr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/prebuilt/chattr -------------------------------------------------------------------------------- /prebuilt/dump_imagesys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/prebuilt/dump_imagesys -------------------------------------------------------------------------------- /prebuilt/flash_imagesys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/prebuilt/flash_imagesys -------------------------------------------------------------------------------- /prebuilt/htcdumlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/prebuilt/htcdumlock -------------------------------------------------------------------------------- /prebuilt/htcdumlocksys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/prebuilt/htcdumlocksys -------------------------------------------------------------------------------- /prebuilt/libbmlutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/prebuilt/libbmlutils.so -------------------------------------------------------------------------------- /prebuilt/libflashutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/prebuilt/libflashutils.so -------------------------------------------------------------------------------- /prebuilt/libmmcutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/prebuilt/libmmcutils.so -------------------------------------------------------------------------------- /prebuilt/libmtdutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/prebuilt/libmtdutils.so -------------------------------------------------------------------------------- /prebuilt/parted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/prebuilt/parted -------------------------------------------------------------------------------- /prebuilt/su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/prebuilt/su -------------------------------------------------------------------------------- /prebuilt/teamwin: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/dummyfileforgit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/res/dummyfileforgit -------------------------------------------------------------------------------- /res/images/dummyfile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/res/images/dummyfile2 -------------------------------------------------------------------------------- /safestrap/bbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/safestrap/bbx -------------------------------------------------------------------------------- /safestrap/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/safestrap/busybox -------------------------------------------------------------------------------- /safestrap/devices/android/apollo/res/splashkeys.synaptics_dsx_i2c: -------------------------------------------------------------------------------- 1 | 0x01:139:935:1475:340:140:0x01:158:1625:1475:340:140 2 | -------------------------------------------------------------------------------- /safestrap/devices/android/jem/res/splashkeys.cyttsp4-i2c: -------------------------------------------------------------------------------- 1 | 0x01:139:716:858:125:55:0x01:217:1213:858:125:55 2 | -------------------------------------------------------------------------------- /safestrap/devices/android/otter/res/splashkeys.ilitek_i2c: -------------------------------------------------------------------------------- 1 | 0x01:139:268:555:124:54:0x01:217:764:555:124:54 2 | -------------------------------------------------------------------------------- /safestrap/devices/android/thor/res/splashkeys.synaptics_dsx_i2c: -------------------------------------------------------------------------------- 1 | 0x01:139:252:1785:340:140:0x01:158:945:1785:340:140 2 | -------------------------------------------------------------------------------- /safestrap/devices/common/2nd-init-files/getprop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/safestrap/devices/common/2nd-init-files/getprop -------------------------------------------------------------------------------- /safestrap/devices/common/2nd-init-files/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/safestrap/devices/common/2nd-init-files/stop -------------------------------------------------------------------------------- /safestrap/devices/common/2nd-init-files/taskset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/safestrap/devices/common/2nd-init-files/taskset -------------------------------------------------------------------------------- /safestrap/devices/common/kernel: -------------------------------------------------------------------------------- 1 | FAKE 2 | -------------------------------------------------------------------------------- /safestrap/devices/motorola/common-ghost/res/splashkeys.synaptics_dsx_i2c: -------------------------------------------------------------------------------- 1 | 0x01:139:160:1230:166:70:0x01:217:568:1230:166:70 2 | -------------------------------------------------------------------------------- /safestrap/devices/motorola/common-hd/res/splashkeys.atmel_mxt_ts: -------------------------------------------------------------------------------- 1 | 0x01:139:160:1230:166:70:0x01:217:568:1230:166:70 2 | -------------------------------------------------------------------------------- /safestrap/devices/motorola/common-hd/res/splashkeys.cyttsp3-i2c: -------------------------------------------------------------------------------- 1 | 0x01:139:160:1230:166:70:0x01:217:568:1230:166:70 2 | -------------------------------------------------------------------------------- /safestrap/devices/motorola/common-hd/res/splashkeys.melfas-ts: -------------------------------------------------------------------------------- 1 | 0x01:139:160:1230:166:70:0x01:217:568:1230:166:70 2 | -------------------------------------------------------------------------------- /safestrap/devices/motorola/common-omap4/res/splashkeys.atmxt-i2c: -------------------------------------------------------------------------------- 1 | 0x01:139:64:925:125:50:0x01:217:475:925:125:50:0x01:139:66:1006:86:54:0x01:102:203:1006:86:54:0x01:158:333:1006:86:54:0x01:217:475:1006:86:54 2 | -------------------------------------------------------------------------------- /safestrap/devices/motorola/maserati/build-safestrap.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | sh $ANDROID_BUILD_TOP/bootable/recovery/safestrap/devices/motorola/common-omap4/build-safestrap.sh 3 | -------------------------------------------------------------------------------- /safestrap/devices/motorola/solana/recovery-kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/safestrap/devices/motorola/solana/recovery-kernel -------------------------------------------------------------------------------- /safestrap/devices/motorola/solana/safestrapmenu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/safestrap/devices/motorola/solana/safestrapmenu -------------------------------------------------------------------------------- /safestrap/devices/motorola/spyder/build-safestrap.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | sh $ANDROID_BUILD_TOP/bootable/recovery/safestrap/devices/motorola/common-omap4/build-safestrap.sh 3 | -------------------------------------------------------------------------------- /safestrap/devices/motorola/umts_spyder/build-safestrap.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | sh $ANDROID_BUILD_TOP/bootable/recovery/safestrap/devices/motorola/common-omap4/build-safestrap.sh 3 | -------------------------------------------------------------------------------- /safestrap/devices/motorola/xt1053/build-safestrap.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | sh $ANDROID_BUILD_TOP/bootable/recovery/safestrap/devices/motorola/common-ghost/build-safestrap.sh 3 | -------------------------------------------------------------------------------- /safestrap/devices/motorola/xt1058/build-safestrap.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | sh $ANDROID_BUILD_TOP/bootable/recovery/safestrap/devices/motorola/common-ghost/build-safestrap.sh 3 | -------------------------------------------------------------------------------- /safestrap/devices/motorola/xt1060/build-safestrap.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | sh $ANDROID_BUILD_TOP/bootable/recovery/safestrap/devices/motorola/common-ghost/build-safestrap.sh 3 | -------------------------------------------------------------------------------- /safestrap/devices/motorola/xt926/build-safestrap.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | sh $ANDROID_BUILD_TOP/bootable/recovery/safestrap/devices/motorola/common-hd/build-safestrap.sh 3 | -------------------------------------------------------------------------------- /safestrap/devices/samsung/d2-common/res/splashkeys.sec_touchscreen: -------------------------------------------------------------------------------- 1 | 0x01:139:160:1230:166:70:0x01:158:568:1230:166:70 2 | -------------------------------------------------------------------------------- /safestrap/devices/samsung/d2-common/rootfs/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/safestrap/devices/samsung/d2-common/rootfs/init -------------------------------------------------------------------------------- /safestrap/devices/samsung/d2vzw/build-safestrap.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | sh $ANDROID_BUILD_TOP/bootable/recovery/safestrap/devices/samsung/d2-common/build-safestrap.sh 3 | -------------------------------------------------------------------------------- /safestrap/devices/samsung/h-common/res/splashkeys.sec_touchscreen: -------------------------------------------------------------------------------- 1 | 0x01:139:192:1785:340:140:0x01:158:885:1785:340:140 2 | -------------------------------------------------------------------------------- /safestrap/devices/samsung/h-common/rootfs/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/safestrap/devices/samsung/h-common/rootfs/init -------------------------------------------------------------------------------- /safestrap/devices/samsung/hltevzw/build-safestrap.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | sh $ANDROID_BUILD_TOP/bootable/recovery/safestrap/devices/samsung/h-common/build-safestrap.sh 3 | -------------------------------------------------------------------------------- /safestrap/devices/samsung/jf-common/res/splashkeys.sec_touchscreen: -------------------------------------------------------------------------------- 1 | 0x01:139:192:1785:340:140:0x01:158:885:1785:340:140 2 | -------------------------------------------------------------------------------- /safestrap/devices/samsung/jflteatt/build-safestrap.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | sh $ANDROID_BUILD_TOP/bootable/recovery/safestrap/devices/samsung/jf-common/build-safestrap.sh 3 | -------------------------------------------------------------------------------- /safestrap/devices/samsung/jfltevzw/build-safestrap.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | sh $ANDROID_BUILD_TOP/bootable/recovery/safestrap/devices/samsung/jf-common/build-safestrap.sh 3 | -------------------------------------------------------------------------------- /safestrap/devices/samsung/k-common/res/splashkeys.sec_touchscreen: -------------------------------------------------------------------------------- 1 | 0x01:139:192:1785:340:140:0x01:158:885:1785:340:140 2 | -------------------------------------------------------------------------------- /safestrap/devices/samsung/klteatt/rootfs/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/safestrap/devices/samsung/klteatt/rootfs/init -------------------------------------------------------------------------------- /safestrap/devices/samsung/kltevzw/rootfs/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/safestrap/devices/samsung/kltevzw/rootfs/init -------------------------------------------------------------------------------- /safestrap/devices/samsung/melius/res/splashkeys.sec_touchscreen: -------------------------------------------------------------------------------- 1 | 0x01:139:160:1230:166:70:0x01:158:568:1230:166:70 2 | -------------------------------------------------------------------------------- /safestrap/devices/samsung/t0-common/res/splashkeys.sec_touchscreen: -------------------------------------------------------------------------------- 1 | 0x01:139:160:1230:166:70:0x01:158:568:1230:166:70 2 | -------------------------------------------------------------------------------- /safestrap/devices/samsung/t0-common/rootfs/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/safestrap/devices/samsung/t0-common/rootfs/init -------------------------------------------------------------------------------- /safestrap/devices/samsung/t0ltevzw/build-safestrap.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | sh $ANDROID_BUILD_TOP/bootable/recovery/safestrap/devices/samsung/t0-common/build-safestrap.sh 3 | -------------------------------------------------------------------------------- /safestrap/flags/recovery_mode: -------------------------------------------------------------------------------- 1 | bp-tools 2 | -------------------------------------------------------------------------------- /safestrap/flags/version: -------------------------------------------------------------------------------- 1 | 3.75 2 | -------------------------------------------------------------------------------- /safestrap/lfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/safestrap/lfs -------------------------------------------------------------------------------- /safestrap/sbin-extras/strace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/safestrap/sbin-extras/strace -------------------------------------------------------------------------------- /testdata/alter-footer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/testdata/alter-footer.zip -------------------------------------------------------------------------------- /testdata/alter-metadata.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/testdata/alter-metadata.zip -------------------------------------------------------------------------------- /testdata/fake-eocd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/testdata/fake-eocd.zip -------------------------------------------------------------------------------- /testdata/jarsigned.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/testdata/jarsigned.zip -------------------------------------------------------------------------------- /testdata/otasigned.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/testdata/otasigned.zip -------------------------------------------------------------------------------- /testdata/otasigned_f4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/testdata/otasigned_f4.zip -------------------------------------------------------------------------------- /testdata/otasigned_f4_sha256.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/testdata/otasigned_f4_sha256.zip -------------------------------------------------------------------------------- /testdata/otasigned_sha256.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/testdata/otasigned_sha256.zip -------------------------------------------------------------------------------- /testdata/random.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/testdata/random.zip -------------------------------------------------------------------------------- /testdata/test_f4.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/testdata/test_f4.pk8 -------------------------------------------------------------------------------- /testdata/testkey.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/testdata/testkey.pk8 -------------------------------------------------------------------------------- /testdata/unsigned.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/934b60ed3567b181fc71add465975619dab8d3dd/testdata/unsigned.zip -------------------------------------------------------------------------------- /tools/Android.mk: -------------------------------------------------------------------------------- 1 | include $(all-subdir-makefiles) 2 | --------------------------------------------------------------------------------