├── .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 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/Android.mk -------------------------------------------------------------------------------- /CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/CleanSpec.mk -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/README.md -------------------------------------------------------------------------------- /adb_install.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/adb_install.cpp -------------------------------------------------------------------------------- /adb_install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/adb_install.h -------------------------------------------------------------------------------- /applypatch/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/applypatch/Android.mk -------------------------------------------------------------------------------- /applypatch/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/applypatch/NOTICE -------------------------------------------------------------------------------- /applypatch/applypatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/applypatch/applypatch.c -------------------------------------------------------------------------------- /applypatch/applypatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/applypatch/applypatch.h -------------------------------------------------------------------------------- /applypatch/applypatch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/applypatch/applypatch.sh -------------------------------------------------------------------------------- /applypatch/bsdiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/applypatch/bsdiff.c -------------------------------------------------------------------------------- /applypatch/bspatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/applypatch/bspatch.c -------------------------------------------------------------------------------- /applypatch/freecache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/applypatch/freecache.c -------------------------------------------------------------------------------- /applypatch/imgdiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/applypatch/imgdiff.c -------------------------------------------------------------------------------- /applypatch/imgdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/applypatch/imgdiff.h -------------------------------------------------------------------------------- /applypatch/imgdiff_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/applypatch/imgdiff_test.sh -------------------------------------------------------------------------------- /applypatch/imgpatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/applypatch/imgpatch.c -------------------------------------------------------------------------------- /applypatch/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/applypatch/main.c -------------------------------------------------------------------------------- /applypatch/testdata/new.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/applypatch/testdata/new.file -------------------------------------------------------------------------------- /applypatch/testdata/old.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/applypatch/testdata/old.file -------------------------------------------------------------------------------- /applypatch/testdata/patch.bsdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/applypatch/testdata/patch.bsdiff -------------------------------------------------------------------------------- /applypatch/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/applypatch/utils.c -------------------------------------------------------------------------------- /applypatch/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/applypatch/utils.h -------------------------------------------------------------------------------- /bmlutils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/bmlutils/Android.mk -------------------------------------------------------------------------------- /bmlutils/bmlutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/bmlutils/bmlutils.c -------------------------------------------------------------------------------- /bmlutils/bmlutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/bmlutils/bmlutils.h -------------------------------------------------------------------------------- /bootloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/bootloader.cpp -------------------------------------------------------------------------------- /bootloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/bootloader.h -------------------------------------------------------------------------------- /common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/common.h -------------------------------------------------------------------------------- /crypto/cryptfs/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/cryptfs/Android.mk -------------------------------------------------------------------------------- /crypto/cryptfs/cryptfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/cryptfs/cryptfs.c -------------------------------------------------------------------------------- /crypto/cryptsettings/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/cryptsettings/Android.mk -------------------------------------------------------------------------------- /crypto/cryptsettings/cryptsettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/cryptsettings/cryptsettings.c -------------------------------------------------------------------------------- /crypto/crypttools/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/crypttools/Android.mk -------------------------------------------------------------------------------- /crypto/crypttools/getfooter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/crypttools/getfooter.c -------------------------------------------------------------------------------- /crypto/fs_mgr/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/fs_mgr/Android.mk -------------------------------------------------------------------------------- /crypto/fs_mgr/fs_mgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/fs_mgr/fs_mgr.c -------------------------------------------------------------------------------- /crypto/fs_mgr/fs_mgr_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/fs_mgr/fs_mgr_main.c -------------------------------------------------------------------------------- /crypto/fs_mgr/fs_mgr_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/fs_mgr/fs_mgr_priv.h -------------------------------------------------------------------------------- /crypto/fs_mgr/fs_mgr_priv_verity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/fs_mgr/fs_mgr_priv_verity.h -------------------------------------------------------------------------------- /crypto/fs_mgr/fs_mgr_verity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/fs_mgr/fs_mgr_verity.c -------------------------------------------------------------------------------- /crypto/fs_mgr/include/fs_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/fs_mgr/include/fs_mgr.h -------------------------------------------------------------------------------- /crypto/ics/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/ics/Android.mk -------------------------------------------------------------------------------- /crypto/ics/cryptfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/ics/cryptfs.c -------------------------------------------------------------------------------- /crypto/ics/cryptfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/ics/cryptfs.h -------------------------------------------------------------------------------- /crypto/jb/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/jb/Android.mk -------------------------------------------------------------------------------- /crypto/jb/cryptfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/jb/cryptfs.c -------------------------------------------------------------------------------- /crypto/jb/cryptfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/jb/cryptfs.h -------------------------------------------------------------------------------- /crypto/libcrypt_samsung/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/libcrypt_samsung/Android.mk -------------------------------------------------------------------------------- /crypto/libcrypt_samsung/libcrypt_samsung.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/libcrypt_samsung/libcrypt_samsung.c -------------------------------------------------------------------------------- /crypto/logwrapper/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/logwrapper/Android.mk -------------------------------------------------------------------------------- /crypto/logwrapper/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/logwrapper/NOTICE -------------------------------------------------------------------------------- /crypto/logwrapper/include/logwrap/logwrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/logwrapper/include/logwrap/logwrap.h -------------------------------------------------------------------------------- /crypto/logwrapper/logwrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/logwrapper/logwrap.c -------------------------------------------------------------------------------- /crypto/logwrapper/logwrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/logwrapper/logwrapper.c -------------------------------------------------------------------------------- /crypto/scrypt/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/Android.mk -------------------------------------------------------------------------------- /crypto/scrypt/MODULE_LICENSE_BSD_LIKE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crypto/scrypt/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/NOTICE -------------------------------------------------------------------------------- /crypto/scrypt/Scrypt-config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/Scrypt-config.mk -------------------------------------------------------------------------------- /crypto/scrypt/Scrypt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/Scrypt.mk -------------------------------------------------------------------------------- /crypto/scrypt/android-config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/android-config.mk -------------------------------------------------------------------------------- /crypto/scrypt/build-config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/build-config.mk -------------------------------------------------------------------------------- /crypto/scrypt/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/config.h -------------------------------------------------------------------------------- /crypto/scrypt/import_scrypt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/import_scrypt.sh -------------------------------------------------------------------------------- /crypto/scrypt/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/lib/README -------------------------------------------------------------------------------- /crypto/scrypt/lib/crypto/crypto_scrypt-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/lib/crypto/crypto_scrypt-ref.c -------------------------------------------------------------------------------- /crypto/scrypt/lib/crypto/crypto_scrypt-sse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/lib/crypto/crypto_scrypt-sse.c -------------------------------------------------------------------------------- /crypto/scrypt/lib/crypto/crypto_scrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/lib/crypto/crypto_scrypt.h -------------------------------------------------------------------------------- /crypto/scrypt/lib/util/sysendian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/lib/util/sysendian.h -------------------------------------------------------------------------------- /crypto/scrypt/patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/patches/README -------------------------------------------------------------------------------- /crypto/scrypt/patches/arm-neon.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/patches/arm-neon.patch -------------------------------------------------------------------------------- /crypto/scrypt/scrypt.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/scrypt.config -------------------------------------------------------------------------------- /crypto/scrypt/scrypt.version: -------------------------------------------------------------------------------- 1 | SCRYPT_VERSION=1.1.6 2 | -------------------------------------------------------------------------------- /crypto/scrypt/scrypt_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/scrypt_platform.h -------------------------------------------------------------------------------- /crypto/scrypt/tests/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/tests/Android.mk -------------------------------------------------------------------------------- /crypto/scrypt/tests/scrypt_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/crypto/scrypt/tests/scrypt_test.cpp -------------------------------------------------------------------------------- /data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/data.cpp -------------------------------------------------------------------------------- /data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/data.h -------------------------------------------------------------------------------- /data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/data.hpp -------------------------------------------------------------------------------- /default_device.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/default_device.cpp -------------------------------------------------------------------------------- /device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/device.h -------------------------------------------------------------------------------- /digest/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/digest/md5.c -------------------------------------------------------------------------------- /digest/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/digest/md5.h -------------------------------------------------------------------------------- /dosfstools/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/Android.mk -------------------------------------------------------------------------------- /dosfstools/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/COPYING -------------------------------------------------------------------------------- /dosfstools/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/ChangeLog -------------------------------------------------------------------------------- /dosfstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/Makefile -------------------------------------------------------------------------------- /dosfstools/bin/Nindent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/bin/Nindent -------------------------------------------------------------------------------- /dosfstools/doc/ANNOUNCE.mkdosfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/doc/ANNOUNCE.mkdosfs -------------------------------------------------------------------------------- /dosfstools/doc/ChangeLog.dosfsck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/doc/ChangeLog.dosfsck -------------------------------------------------------------------------------- /dosfstools/doc/ChangeLog.dosfstools-2.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/doc/ChangeLog.dosfstools-2.x -------------------------------------------------------------------------------- /dosfstools/doc/ChangeLog.mkdosfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/doc/ChangeLog.mkdosfs -------------------------------------------------------------------------------- /dosfstools/doc/README.dosfsck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/doc/README.dosfsck -------------------------------------------------------------------------------- /dosfstools/doc/README.dosfstools-2.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/doc/README.dosfstools-2.x -------------------------------------------------------------------------------- /dosfstools/doc/README.mkdosfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/doc/README.mkdosfs -------------------------------------------------------------------------------- /dosfstools/doc/TODO.dosfstools-2.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/doc/TODO.dosfstools-2.x -------------------------------------------------------------------------------- /dosfstools/man/dosfsck.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/man/dosfsck.8 -------------------------------------------------------------------------------- /dosfstools/man/dosfslabel.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/man/dosfslabel.8 -------------------------------------------------------------------------------- /dosfstools/man/mkdosfs.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/man/mkdosfs.8 -------------------------------------------------------------------------------- /dosfstools/src/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/boot.c -------------------------------------------------------------------------------- /dosfstools/src/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/boot.h -------------------------------------------------------------------------------- /dosfstools/src/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/check.c -------------------------------------------------------------------------------- /dosfstools/src/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/check.h -------------------------------------------------------------------------------- /dosfstools/src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/common.c -------------------------------------------------------------------------------- /dosfstools/src/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/common.h -------------------------------------------------------------------------------- /dosfstools/src/dosfsck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/dosfsck.c -------------------------------------------------------------------------------- /dosfstools/src/dosfsck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/dosfsck.h -------------------------------------------------------------------------------- /dosfstools/src/dosfslabel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/dosfslabel.c -------------------------------------------------------------------------------- /dosfstools/src/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/fat.c -------------------------------------------------------------------------------- /dosfstools/src/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/fat.h -------------------------------------------------------------------------------- /dosfstools/src/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/file.c -------------------------------------------------------------------------------- /dosfstools/src/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/file.h -------------------------------------------------------------------------------- /dosfstools/src/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/io.c -------------------------------------------------------------------------------- /dosfstools/src/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/io.h -------------------------------------------------------------------------------- /dosfstools/src/lfn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/lfn.c -------------------------------------------------------------------------------- /dosfstools/src/lfn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/lfn.h -------------------------------------------------------------------------------- /dosfstools/src/mkdosfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/mkdosfs.c -------------------------------------------------------------------------------- /dosfstools/src/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/dosfstools/src/version.h -------------------------------------------------------------------------------- /edify/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/edify/Android.mk -------------------------------------------------------------------------------- /edify/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/edify/README -------------------------------------------------------------------------------- /edify/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/edify/expr.c -------------------------------------------------------------------------------- /edify/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/edify/expr.h -------------------------------------------------------------------------------- /edify/lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/edify/lexer.l -------------------------------------------------------------------------------- /edify/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/edify/main.c -------------------------------------------------------------------------------- /edify/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/edify/parser.y -------------------------------------------------------------------------------- /edify/yydefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/edify/yydefs.h -------------------------------------------------------------------------------- /etc/init.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/etc/init.rc -------------------------------------------------------------------------------- /exfat/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/COPYING -------------------------------------------------------------------------------- /exfat/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/ChangeLog -------------------------------------------------------------------------------- /exfat/dump/dumpexfat.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/dump/dumpexfat.8 -------------------------------------------------------------------------------- /exfat/dump/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/dump/main.c -------------------------------------------------------------------------------- /exfat/exfat-fuse/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/exfat-fuse/Android.mk -------------------------------------------------------------------------------- /exfat/exfat-fuse/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/exfat-fuse/main.c -------------------------------------------------------------------------------- /exfat/exfat-fuse/mount.exfat-fuse.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/exfat-fuse/mount.exfat-fuse.8 -------------------------------------------------------------------------------- /exfat/fsck/exfatfsck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/fsck/exfatfsck -------------------------------------------------------------------------------- /exfat/fsck/exfatfsck.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/fsck/exfatfsck.8 -------------------------------------------------------------------------------- /exfat/fsck/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/fsck/main.c -------------------------------------------------------------------------------- /exfat/label/exfatlabel.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/label/exfatlabel.8 -------------------------------------------------------------------------------- /exfat/label/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/label/main.c -------------------------------------------------------------------------------- /exfat/libexfat/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/libexfat/Android.mk -------------------------------------------------------------------------------- /exfat/libexfat/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/libexfat/COPYING -------------------------------------------------------------------------------- /exfat/libexfat/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/libexfat/byteorder.h -------------------------------------------------------------------------------- /exfat/libexfat/cluster.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/libexfat/cluster.c -------------------------------------------------------------------------------- /exfat/libexfat/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/libexfat/compiler.h -------------------------------------------------------------------------------- /exfat/libexfat/exfat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/libexfat/exfat.h -------------------------------------------------------------------------------- /exfat/libexfat/exfatfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/libexfat/exfatfs.h -------------------------------------------------------------------------------- /exfat/libexfat/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/libexfat/io.c -------------------------------------------------------------------------------- /exfat/libexfat/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/libexfat/log.c -------------------------------------------------------------------------------- /exfat/libexfat/lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/libexfat/lookup.c -------------------------------------------------------------------------------- /exfat/libexfat/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/libexfat/mount.c -------------------------------------------------------------------------------- /exfat/libexfat/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/libexfat/node.c -------------------------------------------------------------------------------- /exfat/libexfat/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/libexfat/platform.h -------------------------------------------------------------------------------- /exfat/libexfat/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/libexfat/time.c -------------------------------------------------------------------------------- /exfat/libexfat/utf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/libexfat/utf.c -------------------------------------------------------------------------------- /exfat/libexfat/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/libexfat/utils.c -------------------------------------------------------------------------------- /exfat/libexfat/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/libexfat/version.h -------------------------------------------------------------------------------- /exfat/mkfs/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/mkfs/Android.mk -------------------------------------------------------------------------------- /exfat/mkfs/cbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/mkfs/cbm.c -------------------------------------------------------------------------------- /exfat/mkfs/cbm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/mkfs/cbm.h -------------------------------------------------------------------------------- /exfat/mkfs/fat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/mkfs/fat.c -------------------------------------------------------------------------------- /exfat/mkfs/fat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/mkfs/fat.h -------------------------------------------------------------------------------- /exfat/mkfs/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/mkfs/main.c -------------------------------------------------------------------------------- /exfat/mkfs/mkexfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/mkfs/mkexfat.c -------------------------------------------------------------------------------- /exfat/mkfs/mkexfat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/mkfs/mkexfat.h -------------------------------------------------------------------------------- /exfat/mkfs/mkexfatfs.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/mkfs/mkexfatfs.8 -------------------------------------------------------------------------------- /exfat/mkfs/rootdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/mkfs/rootdir.c -------------------------------------------------------------------------------- /exfat/mkfs/rootdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/mkfs/rootdir.h -------------------------------------------------------------------------------- /exfat/mkfs/uct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/mkfs/uct.c -------------------------------------------------------------------------------- /exfat/mkfs/uct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/mkfs/uct.h -------------------------------------------------------------------------------- /exfat/mkfs/uctc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/mkfs/uctc.c -------------------------------------------------------------------------------- /exfat/mkfs/uctc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/mkfs/uctc.h -------------------------------------------------------------------------------- /exfat/mkfs/vbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/mkfs/vbr.c -------------------------------------------------------------------------------- /exfat/mkfs/vbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/exfat/mkfs/vbr.h -------------------------------------------------------------------------------- /fb2png/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | fb2png 3 | adb_screenshoot 4 | libs 5 | obj 6 | -------------------------------------------------------------------------------- /fb2png/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/Android.mk -------------------------------------------------------------------------------- /fb2png/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fb2png/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/COPYING -------------------------------------------------------------------------------- /fb2png/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/Makefile -------------------------------------------------------------------------------- /fb2png/adb_screenshoot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/adb_screenshoot.c -------------------------------------------------------------------------------- /fb2png/ascreenshooter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/ascreenshooter.py -------------------------------------------------------------------------------- /fb2png/fb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/fb.c -------------------------------------------------------------------------------- /fb2png/fb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/fb.h -------------------------------------------------------------------------------- /fb2png/fb2png-jni.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/fb2png-jni.c -------------------------------------------------------------------------------- /fb2png/fb2png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/fb2png.c -------------------------------------------------------------------------------- /fb2png/fb2png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/fb2png.h -------------------------------------------------------------------------------- /fb2png/img_process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/img_process.c -------------------------------------------------------------------------------- /fb2png/img_process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/img_process.h -------------------------------------------------------------------------------- /fb2png/jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_BUILD_SCRIPT := $(call my-dir)/../Android.mk 2 | -------------------------------------------------------------------------------- /fb2png/libpng/include/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/libpng/include/png.h -------------------------------------------------------------------------------- /fb2png/libpng/include/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/libpng/include/pngconf.h -------------------------------------------------------------------------------- /fb2png/libpng/include/pnglibconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/libpng/include/pnglibconf.h -------------------------------------------------------------------------------- /fb2png/libpng/lib/libpng.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/libpng/lib/libpng.a -------------------------------------------------------------------------------- /fb2png/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/log.h -------------------------------------------------------------------------------- /fb2png/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/main.c -------------------------------------------------------------------------------- /fb2png/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/run.sh -------------------------------------------------------------------------------- /fb2png/view888: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fb2png/view888 -------------------------------------------------------------------------------- /find_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/find_file.cpp -------------------------------------------------------------------------------- /find_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/find_file.hpp -------------------------------------------------------------------------------- /fixPermissions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fixPermissions.cpp -------------------------------------------------------------------------------- /fixPermissions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fixPermissions.hpp -------------------------------------------------------------------------------- /flashutils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/flashutils/Android.mk -------------------------------------------------------------------------------- /flashutils/dump_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/flashutils/dump_image.c -------------------------------------------------------------------------------- /flashutils/erase_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/flashutils/erase_image.c -------------------------------------------------------------------------------- /flashutils/flash_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/flashutils/flash_image.c -------------------------------------------------------------------------------- /flashutils/flashutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/flashutils/flashutils.c -------------------------------------------------------------------------------- /flashutils/flashutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/flashutils/flashutils.h -------------------------------------------------------------------------------- /fonts/12x22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fonts/12x22.png -------------------------------------------------------------------------------- /fonts/18x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fonts/18x32.png -------------------------------------------------------------------------------- /fonts/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fonts/OFL.txt -------------------------------------------------------------------------------- /fonts/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fonts/README -------------------------------------------------------------------------------- /fuse/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/Android.mk -------------------------------------------------------------------------------- /fuse/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/README -------------------------------------------------------------------------------- /fuse/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/buffer.c -------------------------------------------------------------------------------- /fuse/cuse_lowlevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/cuse_lowlevel.c -------------------------------------------------------------------------------- /fuse/fuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/fuse.c -------------------------------------------------------------------------------- /fuse/fuse_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/fuse_i.h -------------------------------------------------------------------------------- /fuse/fuse_kern_chan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/fuse_kern_chan.c -------------------------------------------------------------------------------- /fuse/fuse_loop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/fuse_loop.c -------------------------------------------------------------------------------- /fuse/fuse_loop_mt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/fuse_loop_mt.c -------------------------------------------------------------------------------- /fuse/fuse_lowlevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/fuse_lowlevel.c -------------------------------------------------------------------------------- /fuse/fuse_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/fuse_misc.h -------------------------------------------------------------------------------- /fuse/fuse_mt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/fuse_mt.c -------------------------------------------------------------------------------- /fuse/fuse_opt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/fuse_opt.c -------------------------------------------------------------------------------- /fuse/fuse_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/fuse_session.c -------------------------------------------------------------------------------- /fuse/fuse_signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/fuse_signals.c -------------------------------------------------------------------------------- /fuse/fusexmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/fusexmp.c -------------------------------------------------------------------------------- /fuse/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/helper.c -------------------------------------------------------------------------------- /fuse/include/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/include/Makefile -------------------------------------------------------------------------------- /fuse/include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/include/Makefile.am -------------------------------------------------------------------------------- /fuse/include/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/include/Makefile.in -------------------------------------------------------------------------------- /fuse/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/include/config.h -------------------------------------------------------------------------------- /fuse/include/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/include/config.h.in -------------------------------------------------------------------------------- /fuse/include/cuse_lowlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/include/cuse_lowlevel.h -------------------------------------------------------------------------------- /fuse/include/fuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/include/fuse.h -------------------------------------------------------------------------------- /fuse/include/fuse_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/include/fuse_common.h -------------------------------------------------------------------------------- /fuse/include/fuse_common_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/include/fuse_common_compat.h -------------------------------------------------------------------------------- /fuse/include/fuse_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/include/fuse_compat.h -------------------------------------------------------------------------------- /fuse/include/fuse_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/include/fuse_kernel.h -------------------------------------------------------------------------------- /fuse/include/fuse_lowlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/include/fuse_lowlevel.h -------------------------------------------------------------------------------- /fuse/include/fuse_lowlevel_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/include/fuse_lowlevel_compat.h -------------------------------------------------------------------------------- /fuse/include/fuse_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/include/fuse_opt.h -------------------------------------------------------------------------------- /fuse/include/old/fuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/include/old/fuse.h -------------------------------------------------------------------------------- /fuse/include/stamp-h1: -------------------------------------------------------------------------------- 1 | timestamp for include/config.h 2 | -------------------------------------------------------------------------------- /fuse/include/sys/statvfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/include/sys/statvfs.h -------------------------------------------------------------------------------- /fuse/include/ulockmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/include/ulockmgr.h -------------------------------------------------------------------------------- /fuse/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/mount.c -------------------------------------------------------------------------------- /fuse/mount_bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/mount_bsd.c -------------------------------------------------------------------------------- /fuse/mount_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/mount_util.c -------------------------------------------------------------------------------- /fuse/mount_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/mount_util.h -------------------------------------------------------------------------------- /fuse/ulockmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/fuse/ulockmgr.c -------------------------------------------------------------------------------- /gui/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/Android.mk -------------------------------------------------------------------------------- /gui/action.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/action.cpp -------------------------------------------------------------------------------- /gui/action_safestrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/action_safestrap.cpp -------------------------------------------------------------------------------- /gui/animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/animation.cpp -------------------------------------------------------------------------------- /gui/blanktimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/blanktimer.cpp -------------------------------------------------------------------------------- /gui/blanktimer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/blanktimer.hpp -------------------------------------------------------------------------------- /gui/button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/button.cpp -------------------------------------------------------------------------------- /gui/checkbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/checkbox.cpp -------------------------------------------------------------------------------- /gui/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/console.cpp -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1024x600/res/images/button.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1024x600/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1024x600/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1024x600/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1024x600/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1024x600/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1024x600/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/1024x600/res/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1024x600/res/ui.xml -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1024x768/res/images/button.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1024x768/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1024x768/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1024x768/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1024x768/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1024x768/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1024x768/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/1024x768/res/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1024x768/res/ui.xml -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1080x1920/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1080x1920/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1080x1920/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1080x1920/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1080x1920/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/top-bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1080x1920/res/images/top-bar.jpg -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1080x1920/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/1080x1920/res/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1080x1920/res/ui.xml -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1200x1920/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1200x1920/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1200x1920/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1200x1920/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1200x1920/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/top-bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1200x1920/res/images/top-bar.jpg -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1200x1920/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/1200x1920/res/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1200x1920/res/ui.xml -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1280x800/res/images/button.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1280x800/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1280x800/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1280x800/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1280x800/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1280x800/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1280x800/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/1280x800/res/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1280x800/res/ui.xml -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1600x2560/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1600x2560/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1600x2560/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1600x2560/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1600x2560/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/top-bar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1600x2560/res/images/top-bar.jpg -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1600x2560/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/1600x2560/res/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1600x2560/res/ui.xml -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1920x1200/res/images/button.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1920x1200/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/curtain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1920x1200/res/images/curtain.jpg -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1920x1200/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1920x1200/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1920x1200/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1920x1200/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/1920x1200/res/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/1920x1200/res/ui.xml -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/240x240/res/images/android.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/240x240/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/240x240/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/240x240/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/240x240/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/240x240/res/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/240x240/res/ui.xml -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/2560x1600/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/2560x1600/res/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/2560x1600/res/ui.xml -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/320x480/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/320x480/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/320x480/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/320x480/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/320x480/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/320x480/res/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/320x480/res/ui.xml -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/480x800/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/480x800/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/480x800/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/480x800/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/480x800/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/480x800/res/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/480x800/res/ui.xml -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/480x854/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/480x854/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/480x854/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/480x854/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/480x854/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/480x854/res/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/480x854/res/ui.xml -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/540x960/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/540x960/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/540x960/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/540x960/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/540x960/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/540x960/res/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/540x960/res/ui.xml -------------------------------------------------------------------------------- /gui/devices/720x1280/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/720x1280/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/720x1280/res/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/720x1280/res/ui.xml -------------------------------------------------------------------------------- /gui/devices/800x1280/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/800x1280/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/800x1280/res/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/800x1280/res/ui.xml -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/800x480/res/images/button.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/800x480/res/images/cursor.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/800x480/res/images/file.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/800x480/res/images/folder.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/800x480/res/images/slider.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/images/unlock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/800x480/res/images/unlock.png -------------------------------------------------------------------------------- /gui/devices/800x480/res/ui.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/devices/800x480/res/ui.xml -------------------------------------------------------------------------------- /gui/fileselector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/fileselector.cpp -------------------------------------------------------------------------------- /gui/fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/fill.cpp -------------------------------------------------------------------------------- /gui/gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/gui.cpp -------------------------------------------------------------------------------- /gui/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/gui.h -------------------------------------------------------------------------------- /gui/hardwarekeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/hardwarekeyboard.cpp -------------------------------------------------------------------------------- /gui/image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/image.cpp -------------------------------------------------------------------------------- /gui/input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/input.cpp -------------------------------------------------------------------------------- /gui/keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/keyboard.cpp -------------------------------------------------------------------------------- /gui/listbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/listbox.cpp -------------------------------------------------------------------------------- /gui/mousecursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/mousecursor.cpp -------------------------------------------------------------------------------- /gui/object.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/object.cpp -------------------------------------------------------------------------------- /gui/objects.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/objects.hpp -------------------------------------------------------------------------------- /gui/objects_action_safestrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/objects_action_safestrap.hpp -------------------------------------------------------------------------------- /gui/pages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/pages.cpp -------------------------------------------------------------------------------- /gui/pages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/pages.h -------------------------------------------------------------------------------- /gui/pages.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/pages.hpp -------------------------------------------------------------------------------- /gui/partitionlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/partitionlist.cpp -------------------------------------------------------------------------------- /gui/progressbar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/progressbar.cpp -------------------------------------------------------------------------------- /gui/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/rapidxml.hpp -------------------------------------------------------------------------------- /gui/remaining.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/remaining.txt -------------------------------------------------------------------------------- /gui/resources.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/resources.cpp -------------------------------------------------------------------------------- /gui/resources.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/resources.hpp -------------------------------------------------------------------------------- /gui/slider.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/slider.cpp -------------------------------------------------------------------------------- /gui/slidervalue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/slidervalue.cpp -------------------------------------------------------------------------------- /gui/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/gui/text.cpp -------------------------------------------------------------------------------- /gui/twrp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /htcdumlock/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/htcdumlock/Android.mk -------------------------------------------------------------------------------- /htcdumlock/htcdumlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/htcdumlock/htcdumlock.c -------------------------------------------------------------------------------- /injecttwrp/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/injecttwrp/Android.mk -------------------------------------------------------------------------------- /injecttwrp/injecttwrp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/injecttwrp/injecttwrp.c -------------------------------------------------------------------------------- /install.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/install.cpp -------------------------------------------------------------------------------- /install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/install.h -------------------------------------------------------------------------------- /legacy_properties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/legacy_properties.h -------------------------------------------------------------------------------- /legacy_property_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/legacy_property_service.c -------------------------------------------------------------------------------- /legacy_property_service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/legacy_property_service.h -------------------------------------------------------------------------------- /libblkid/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/Android.mk -------------------------------------------------------------------------------- /libblkid/adaptec_raid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/adaptec_raid.c -------------------------------------------------------------------------------- /libblkid/aix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/aix.c -------------------------------------------------------------------------------- /libblkid/aix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/aix.h -------------------------------------------------------------------------------- /libblkid/all-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/all-io.h -------------------------------------------------------------------------------- /libblkid/at.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/at.c -------------------------------------------------------------------------------- /libblkid/at.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/at.h -------------------------------------------------------------------------------- /libblkid/befs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/befs.c -------------------------------------------------------------------------------- /libblkid/bfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/bfs.c -------------------------------------------------------------------------------- /libblkid/bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/bitops.h -------------------------------------------------------------------------------- /libblkid/blkdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/blkdev.c -------------------------------------------------------------------------------- /libblkid/blkdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/blkdev.h -------------------------------------------------------------------------------- /libblkid/blkid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/blkid.h -------------------------------------------------------------------------------- /libblkid/blkidP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/blkidP.h -------------------------------------------------------------------------------- /libblkid/blkid_parttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/blkid_parttypes.h -------------------------------------------------------------------------------- /libblkid/bsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/bsd.c -------------------------------------------------------------------------------- /libblkid/btrfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/btrfs.c -------------------------------------------------------------------------------- /libblkid/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/c.h -------------------------------------------------------------------------------- /libblkid/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/cache.c -------------------------------------------------------------------------------- /libblkid/canonicalize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/canonicalize.c -------------------------------------------------------------------------------- /libblkid/canonicalize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/canonicalize.h -------------------------------------------------------------------------------- /libblkid/carefulputc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/carefulputc.h -------------------------------------------------------------------------------- /libblkid/closestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/closestream.h -------------------------------------------------------------------------------- /libblkid/colors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/colors.c -------------------------------------------------------------------------------- /libblkid/colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/colors.h -------------------------------------------------------------------------------- /libblkid/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/config.c -------------------------------------------------------------------------------- /libblkid/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/config.h -------------------------------------------------------------------------------- /libblkid/cpuset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/cpuset.c -------------------------------------------------------------------------------- /libblkid/cpuset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/cpuset.h -------------------------------------------------------------------------------- /libblkid/cramfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/cramfs.c -------------------------------------------------------------------------------- /libblkid/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/crc32.c -------------------------------------------------------------------------------- /libblkid/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/crc32.h -------------------------------------------------------------------------------- /libblkid/ddf_raid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/ddf_raid.c -------------------------------------------------------------------------------- /libblkid/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/dev.c -------------------------------------------------------------------------------- /libblkid/devname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/devname.c -------------------------------------------------------------------------------- /libblkid/devno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/devno.c -------------------------------------------------------------------------------- /libblkid/dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/dm.c -------------------------------------------------------------------------------- /libblkid/dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/dos.c -------------------------------------------------------------------------------- /libblkid/dos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/dos.h -------------------------------------------------------------------------------- /libblkid/drbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/drbd.c -------------------------------------------------------------------------------- /libblkid/drbdproxy_datalog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/drbdproxy_datalog.c -------------------------------------------------------------------------------- /libblkid/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/encode.c -------------------------------------------------------------------------------- /libblkid/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/env.c -------------------------------------------------------------------------------- /libblkid/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/env.h -------------------------------------------------------------------------------- /libblkid/evaluate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/evaluate.c -------------------------------------------------------------------------------- /libblkid/evms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/evms.c -------------------------------------------------------------------------------- /libblkid/exec_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/exec_shell.c -------------------------------------------------------------------------------- /libblkid/exec_shell.h: -------------------------------------------------------------------------------- 1 | extern void __attribute__((__noreturn__)) exec_shell(void); 2 | -------------------------------------------------------------------------------- /libblkid/exfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/exfat.c -------------------------------------------------------------------------------- /libblkid/exitcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/exitcodes.h -------------------------------------------------------------------------------- /libblkid/ext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/ext.c -------------------------------------------------------------------------------- /libblkid/f2fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/f2fs.c -------------------------------------------------------------------------------- /libblkid/fileutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/fileutils.c -------------------------------------------------------------------------------- /libblkid/fileutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/fileutils.h -------------------------------------------------------------------------------- /libblkid/getsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/getsize.c -------------------------------------------------------------------------------- /libblkid/gfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/gfs.c -------------------------------------------------------------------------------- /libblkid/gpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/gpt.c -------------------------------------------------------------------------------- /libblkid/hfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/hfs.c -------------------------------------------------------------------------------- /libblkid/highpoint_raid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/highpoint_raid.c -------------------------------------------------------------------------------- /libblkid/hpfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/hpfs.c -------------------------------------------------------------------------------- /libblkid/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/ioctl.c -------------------------------------------------------------------------------- /libblkid/ismounted.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/ismounted.c -------------------------------------------------------------------------------- /libblkid/ismounted.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/ismounted.h -------------------------------------------------------------------------------- /libblkid/iso9660.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/iso9660.c -------------------------------------------------------------------------------- /libblkid/iso9660.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/iso9660.h -------------------------------------------------------------------------------- /libblkid/isw_raid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/isw_raid.c -------------------------------------------------------------------------------- /libblkid/jfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/jfs.c -------------------------------------------------------------------------------- /libblkid/jmicron_raid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/jmicron_raid.c -------------------------------------------------------------------------------- /libblkid/langinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/langinfo.c -------------------------------------------------------------------------------- /libblkid/linux_raid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/linux_raid.c -------------------------------------------------------------------------------- /libblkid/linux_reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/linux_reboot.h -------------------------------------------------------------------------------- /libblkid/linux_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/linux_version.c -------------------------------------------------------------------------------- /libblkid/linux_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/linux_version.h -------------------------------------------------------------------------------- /libblkid/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/list.h -------------------------------------------------------------------------------- /libblkid/llseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/llseek.c -------------------------------------------------------------------------------- /libblkid/log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/log -------------------------------------------------------------------------------- /libblkid/loopdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/loopdev.c -------------------------------------------------------------------------------- /libblkid/loopdev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/loopdev.h -------------------------------------------------------------------------------- /libblkid/lsi_raid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/lsi_raid.c -------------------------------------------------------------------------------- /libblkid/luks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/luks.c -------------------------------------------------------------------------------- /libblkid/lvm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/lvm1.c -------------------------------------------------------------------------------- /libblkid/lvm2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/lvm2.c -------------------------------------------------------------------------------- /libblkid/mac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/mac.c -------------------------------------------------------------------------------- /libblkid/mangle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/mangle.c -------------------------------------------------------------------------------- /libblkid/mangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/mangle.h -------------------------------------------------------------------------------- /libblkid/match.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/match.c -------------------------------------------------------------------------------- /libblkid/match.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/match.h -------------------------------------------------------------------------------- /libblkid/mbsalign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/mbsalign.c -------------------------------------------------------------------------------- /libblkid/mbsalign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/mbsalign.h -------------------------------------------------------------------------------- /libblkid/md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/md.c -------------------------------------------------------------------------------- /libblkid/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/md5.c -------------------------------------------------------------------------------- /libblkid/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/md5.h -------------------------------------------------------------------------------- /libblkid/minix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/minix.h -------------------------------------------------------------------------------- /libblkid/minix1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/minix1.c -------------------------------------------------------------------------------- /libblkid/minix2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/minix2.c -------------------------------------------------------------------------------- /libblkid/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/namespace.h -------------------------------------------------------------------------------- /libblkid/netware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/netware.c -------------------------------------------------------------------------------- /libblkid/nilfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/nilfs.c -------------------------------------------------------------------------------- /libblkid/nls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/nls.h -------------------------------------------------------------------------------- /libblkid/ntfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/ntfs.c -------------------------------------------------------------------------------- /libblkid/nvidia_raid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/nvidia_raid.c -------------------------------------------------------------------------------- /libblkid/ocfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/ocfs.c -------------------------------------------------------------------------------- /libblkid/optutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/optutils.h -------------------------------------------------------------------------------- /libblkid/pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/pager.c -------------------------------------------------------------------------------- /libblkid/pager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/pager.h -------------------------------------------------------------------------------- /libblkid/pamfail.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/pamfail.h -------------------------------------------------------------------------------- /libblkid/partitions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/partitions.c -------------------------------------------------------------------------------- /libblkid/partitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/partitions.h -------------------------------------------------------------------------------- /libblkid/path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/path.c -------------------------------------------------------------------------------- /libblkid/path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/path.h -------------------------------------------------------------------------------- /libblkid/pathnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/pathnames.h -------------------------------------------------------------------------------- /libblkid/probe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/probe.c -------------------------------------------------------------------------------- /libblkid/procutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/procutils.c -------------------------------------------------------------------------------- /libblkid/procutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/procutils.h -------------------------------------------------------------------------------- /libblkid/promise_raid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/promise_raid.c -------------------------------------------------------------------------------- /libblkid/randutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/randutils.c -------------------------------------------------------------------------------- /libblkid/randutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/randutils.h -------------------------------------------------------------------------------- /libblkid/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/read.c -------------------------------------------------------------------------------- /libblkid/reiserfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/reiserfs.c -------------------------------------------------------------------------------- /libblkid/resolve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/resolve.c -------------------------------------------------------------------------------- /libblkid/romfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/romfs.c -------------------------------------------------------------------------------- /libblkid/rpmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/rpmatch.h -------------------------------------------------------------------------------- /libblkid/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/save.c -------------------------------------------------------------------------------- /libblkid/setproctitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/setproctitle.c -------------------------------------------------------------------------------- /libblkid/setproctitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/setproctitle.h -------------------------------------------------------------------------------- /libblkid/sgi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/sgi.c -------------------------------------------------------------------------------- /libblkid/silicon_raid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/silicon_raid.c -------------------------------------------------------------------------------- /libblkid/solaris_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/solaris_x86.c -------------------------------------------------------------------------------- /libblkid/squashfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/squashfs.c -------------------------------------------------------------------------------- /libblkid/strutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/strutils.c -------------------------------------------------------------------------------- /libblkid/strutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/strutils.h -------------------------------------------------------------------------------- /libblkid/sun.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/sun.c -------------------------------------------------------------------------------- /libblkid/superblocks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/superblocks.c -------------------------------------------------------------------------------- /libblkid/superblocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/superblocks.h -------------------------------------------------------------------------------- /libblkid/swap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/swap.c -------------------------------------------------------------------------------- /libblkid/swapheader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/swapheader.h -------------------------------------------------------------------------------- /libblkid/sysfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/sysfs.h -------------------------------------------------------------------------------- /libblkid/sysfs1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/sysfs1.c -------------------------------------------------------------------------------- /libblkid/sysfs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/sysfs2.c -------------------------------------------------------------------------------- /libblkid/sysv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/sysv.c -------------------------------------------------------------------------------- /libblkid/tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/tag.c -------------------------------------------------------------------------------- /libblkid/topology.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/topology.c -------------------------------------------------------------------------------- /libblkid/topology.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/topology.h -------------------------------------------------------------------------------- /libblkid/tt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/tt.c -------------------------------------------------------------------------------- /libblkid/tt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/tt.h -------------------------------------------------------------------------------- /libblkid/ttyutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/ttyutils.c -------------------------------------------------------------------------------- /libblkid/ttyutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/ttyutils.h -------------------------------------------------------------------------------- /libblkid/ubifs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/ubifs.c -------------------------------------------------------------------------------- /libblkid/udf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/udf.c -------------------------------------------------------------------------------- /libblkid/ufs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/ufs.c -------------------------------------------------------------------------------- /libblkid/ultrix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/ultrix.c -------------------------------------------------------------------------------- /libblkid/unixware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/unixware.c -------------------------------------------------------------------------------- /libblkid/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/verify.c -------------------------------------------------------------------------------- /libblkid/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/version.c -------------------------------------------------------------------------------- /libblkid/vfat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/vfat.c -------------------------------------------------------------------------------- /libblkid/via_raid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/via_raid.c -------------------------------------------------------------------------------- /libblkid/vmfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/vmfs.c -------------------------------------------------------------------------------- /libblkid/vxfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/vxfs.c -------------------------------------------------------------------------------- /libblkid/wholedisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/wholedisk.c -------------------------------------------------------------------------------- /libblkid/wholedisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/wholedisk.h -------------------------------------------------------------------------------- /libblkid/widechar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/widechar.h -------------------------------------------------------------------------------- /libblkid/xalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/xalloc.h -------------------------------------------------------------------------------- /libblkid/xfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/xfs.c -------------------------------------------------------------------------------- /libblkid/xgetpass.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/xgetpass.c -------------------------------------------------------------------------------- /libblkid/xgetpass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/xgetpass.h -------------------------------------------------------------------------------- /libblkid/zfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libblkid/zfs.c -------------------------------------------------------------------------------- /libcrecovery/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libcrecovery/Android.mk -------------------------------------------------------------------------------- /libcrecovery/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libcrecovery/common.h -------------------------------------------------------------------------------- /libcrecovery/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libcrecovery/defines.h -------------------------------------------------------------------------------- /libcrecovery/popen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libcrecovery/popen.c -------------------------------------------------------------------------------- /libcrecovery/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libcrecovery/system.c -------------------------------------------------------------------------------- /libmincrypt/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libmincrypt/Android.mk -------------------------------------------------------------------------------- /libmincrypt/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libmincrypt/NOTICE -------------------------------------------------------------------------------- /libmincrypt/includes/mincrypt/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libmincrypt/includes/mincrypt/rsa.h -------------------------------------------------------------------------------- /libmincrypt/includes/mincrypt/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libmincrypt/includes/mincrypt/sha.h -------------------------------------------------------------------------------- /libmincrypt/includes/mincrypt/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libmincrypt/includes/mincrypt/sha256.h -------------------------------------------------------------------------------- /libmincrypt/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libmincrypt/rsa.c -------------------------------------------------------------------------------- /libmincrypt/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libmincrypt/sha.c -------------------------------------------------------------------------------- /libmincrypt/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libmincrypt/sha256.c -------------------------------------------------------------------------------- /libtar/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/Android.mk -------------------------------------------------------------------------------- /libtar/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/COPYRIGHT -------------------------------------------------------------------------------- /libtar/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/ChangeLog -------------------------------------------------------------------------------- /libtar/ChangeLog-1.0.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/ChangeLog-1.0.x -------------------------------------------------------------------------------- /libtar/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/INSTALL -------------------------------------------------------------------------------- /libtar/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/README -------------------------------------------------------------------------------- /libtar/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/TODO -------------------------------------------------------------------------------- /libtar/append.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/append.c -------------------------------------------------------------------------------- /libtar/basename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/basename.c -------------------------------------------------------------------------------- /libtar/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/block.c -------------------------------------------------------------------------------- /libtar/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/compat.h -------------------------------------------------------------------------------- /libtar/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/config.h -------------------------------------------------------------------------------- /libtar/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/decode.c -------------------------------------------------------------------------------- /libtar/dirname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/dirname.c -------------------------------------------------------------------------------- /libtar/encode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/encode.c -------------------------------------------------------------------------------- /libtar/extract.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/extract.c -------------------------------------------------------------------------------- /libtar/fnmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/fnmatch.c -------------------------------------------------------------------------------- /libtar/gethostbyname_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/gethostbyname_r.c -------------------------------------------------------------------------------- /libtar/gethostname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/gethostname.c -------------------------------------------------------------------------------- /libtar/getservbyname_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/getservbyname_r.c -------------------------------------------------------------------------------- /libtar/glob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/glob.c -------------------------------------------------------------------------------- /libtar/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/handle.c -------------------------------------------------------------------------------- /libtar/inet_aton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/inet_aton.c -------------------------------------------------------------------------------- /libtar/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/internal.h -------------------------------------------------------------------------------- /libtar/libtar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/libtar.h -------------------------------------------------------------------------------- /libtar/libtar_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/libtar_hash.c -------------------------------------------------------------------------------- /libtar/libtar_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/libtar_list.c -------------------------------------------------------------------------------- /libtar/libtar_listhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/libtar_listhash.h -------------------------------------------------------------------------------- /libtar/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/output.c -------------------------------------------------------------------------------- /libtar/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/snprintf.c -------------------------------------------------------------------------------- /libtar/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/strdup.c -------------------------------------------------------------------------------- /libtar/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/strlcat.c -------------------------------------------------------------------------------- /libtar/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/strlcpy.c -------------------------------------------------------------------------------- /libtar/strmode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/strmode.c -------------------------------------------------------------------------------- /libtar/strrstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/strrstr.c -------------------------------------------------------------------------------- /libtar/strsep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/strsep.c -------------------------------------------------------------------------------- /libtar/tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/tar.h -------------------------------------------------------------------------------- /libtar/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/util.c -------------------------------------------------------------------------------- /libtar/wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/libtar/wrapper.c -------------------------------------------------------------------------------- /make-overlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/make-overlay.py -------------------------------------------------------------------------------- /minadbd/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minadbd/Android.mk -------------------------------------------------------------------------------- /minadbd/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minadbd/README.txt -------------------------------------------------------------------------------- /minadbd/adb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minadbd/adb.c -------------------------------------------------------------------------------- /minadbd/adb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minadbd/adb.h -------------------------------------------------------------------------------- /minadbd/fdevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minadbd/fdevent.c -------------------------------------------------------------------------------- /minadbd/fdevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minadbd/fdevent.h -------------------------------------------------------------------------------- /minadbd/mutex_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minadbd/mutex_list.h -------------------------------------------------------------------------------- /minadbd/services.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minadbd/services.c -------------------------------------------------------------------------------- /minadbd/sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minadbd/sockets.c -------------------------------------------------------------------------------- /minadbd/sysdeps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minadbd/sysdeps.h -------------------------------------------------------------------------------- /minadbd/transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minadbd/transport.c -------------------------------------------------------------------------------- /minadbd/transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minadbd/transport.h -------------------------------------------------------------------------------- /minadbd/transport_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minadbd/transport_usb.c -------------------------------------------------------------------------------- /minadbd/usb_linux_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minadbd/usb_linux_client.c -------------------------------------------------------------------------------- /minadbd/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minadbd/utils.c -------------------------------------------------------------------------------- /minadbd/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minadbd/utils.h -------------------------------------------------------------------------------- /minelf/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minelf/Android.mk -------------------------------------------------------------------------------- /minelf/Retouch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minelf/Retouch.c -------------------------------------------------------------------------------- /minelf/Retouch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minelf/Retouch.h -------------------------------------------------------------------------------- /minui/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minui/Android.mk -------------------------------------------------------------------------------- /minui/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minui/events.c -------------------------------------------------------------------------------- /minui/font_10x18.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minui/font_10x18.h -------------------------------------------------------------------------------- /minui/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minui/graphics.c -------------------------------------------------------------------------------- /minui/graphics_overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minui/graphics_overlay.c -------------------------------------------------------------------------------- /minui/include/linux/msm_ion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minui/include/linux/msm_ion.h -------------------------------------------------------------------------------- /minui/include/linux/msm_mdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minui/include/linux/msm_mdp.h -------------------------------------------------------------------------------- /minui/minui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minui/minui.h -------------------------------------------------------------------------------- /minui/mkfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minui/mkfont.c -------------------------------------------------------------------------------- /minui/resources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minui/resources.c -------------------------------------------------------------------------------- /minuitwrp/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minuitwrp/Android.mk -------------------------------------------------------------------------------- /minuitwrp/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minuitwrp/events.c -------------------------------------------------------------------------------- /minuitwrp/font_10x18.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minuitwrp/font_10x18.h -------------------------------------------------------------------------------- /minuitwrp/font_7x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minuitwrp/font_7x16.h -------------------------------------------------------------------------------- /minuitwrp/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minuitwrp/graphics.c -------------------------------------------------------------------------------- /minuitwrp/graphics_overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minuitwrp/graphics_overlay.c -------------------------------------------------------------------------------- /minuitwrp/include/linux/msm_ion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minuitwrp/include/linux/msm_ion.h -------------------------------------------------------------------------------- /minuitwrp/include/linux/msm_mdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minuitwrp/include/linux/msm_mdp.h -------------------------------------------------------------------------------- /minuitwrp/minui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minuitwrp/minui.h -------------------------------------------------------------------------------- /minuitwrp/mkfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minuitwrp/mkfont.c -------------------------------------------------------------------------------- /minuitwrp/resources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minuitwrp/resources.c -------------------------------------------------------------------------------- /minuitwrp/roboto_10x18.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minuitwrp/roboto_10x18.h -------------------------------------------------------------------------------- /minuitwrp/roboto_15x24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minuitwrp/roboto_15x24.h -------------------------------------------------------------------------------- /minuitwrp/roboto_23x41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minuitwrp/roboto_23x41.h -------------------------------------------------------------------------------- /minzip/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzip/Android.mk -------------------------------------------------------------------------------- /minzip/Bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzip/Bits.h -------------------------------------------------------------------------------- /minzip/DirUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzip/DirUtil.c -------------------------------------------------------------------------------- /minzip/DirUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzip/DirUtil.h -------------------------------------------------------------------------------- /minzip/Hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzip/Hash.c -------------------------------------------------------------------------------- /minzip/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzip/Hash.h -------------------------------------------------------------------------------- /minzip/Inlines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzip/Inlines.c -------------------------------------------------------------------------------- /minzip/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzip/Log.h -------------------------------------------------------------------------------- /minzip/SysUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzip/SysUtil.c -------------------------------------------------------------------------------- /minzip/SysUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzip/SysUtil.h -------------------------------------------------------------------------------- /minzip/Zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzip/Zip.c -------------------------------------------------------------------------------- /minzip/Zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzip/Zip.h -------------------------------------------------------------------------------- /minzip/inline_magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzip/inline_magic.h -------------------------------------------------------------------------------- /minzipold/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzipold/Android.mk -------------------------------------------------------------------------------- /minzipold/Bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzipold/Bits.h -------------------------------------------------------------------------------- /minzipold/DirUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzipold/DirUtil.c -------------------------------------------------------------------------------- /minzipold/DirUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzipold/DirUtil.h -------------------------------------------------------------------------------- /minzipold/Hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzipold/Hash.c -------------------------------------------------------------------------------- /minzipold/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzipold/Hash.h -------------------------------------------------------------------------------- /minzipold/Inlines.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzipold/Inlines.c -------------------------------------------------------------------------------- /minzipold/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzipold/Log.h -------------------------------------------------------------------------------- /minzipold/SysUtil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzipold/SysUtil.c -------------------------------------------------------------------------------- /minzipold/SysUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzipold/SysUtil.h -------------------------------------------------------------------------------- /minzipold/Zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzipold/Zip.c -------------------------------------------------------------------------------- /minzipold/Zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzipold/Zip.h -------------------------------------------------------------------------------- /minzipold/inline_magic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/minzipold/inline_magic.h -------------------------------------------------------------------------------- /mmcutils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/mmcutils/Android.mk -------------------------------------------------------------------------------- /mmcutils/mmcutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/mmcutils/mmcutils.c -------------------------------------------------------------------------------- /mmcutils/mmcutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/mmcutils/mmcutils.h -------------------------------------------------------------------------------- /mounts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/mounts.c -------------------------------------------------------------------------------- /mounts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/mounts.h -------------------------------------------------------------------------------- /mtdutils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/mtdutils/Android.mk -------------------------------------------------------------------------------- /mtdutils/bml_over_mtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/mtdutils/bml_over_mtd.c -------------------------------------------------------------------------------- /mtdutils/flash_image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/mtdutils/flash_image.c -------------------------------------------------------------------------------- /mtdutils/mounts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/mtdutils/mounts.c -------------------------------------------------------------------------------- /mtdutils/mounts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/mtdutils/mounts.h -------------------------------------------------------------------------------- /mtdutils/mtdutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/mtdutils/mtdutils.c -------------------------------------------------------------------------------- /mtdutils/mtdutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/mtdutils/mtdutils.h -------------------------------------------------------------------------------- /mtdutils/rk30hack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/mtdutils/rk30hack.c -------------------------------------------------------------------------------- /mtdutils/rk30hack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/mtdutils/rk30hack.h -------------------------------------------------------------------------------- /openaes/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/openaes/Android.mk -------------------------------------------------------------------------------- /openaes/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/openaes/CHANGELOG -------------------------------------------------------------------------------- /openaes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/openaes/CMakeLists.txt -------------------------------------------------------------------------------- /openaes/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/openaes/LICENSE -------------------------------------------------------------------------------- /openaes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/openaes/README -------------------------------------------------------------------------------- /openaes/VERSION: -------------------------------------------------------------------------------- 1 | OpenAES-0.7.0 -------------------------------------------------------------------------------- /openaes/inc/oaes_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/openaes/inc/oaes_config.h -------------------------------------------------------------------------------- /openaes/inc/oaes_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/openaes/inc/oaes_lib.h -------------------------------------------------------------------------------- /openaes/src/isaac/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/openaes/src/isaac/rand.c -------------------------------------------------------------------------------- /openaes/src/isaac/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/openaes/src/isaac/rand.h -------------------------------------------------------------------------------- /openaes/src/isaac/standard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/openaes/src/isaac/standard.h -------------------------------------------------------------------------------- /openaes/src/oaes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/openaes/src/oaes.c -------------------------------------------------------------------------------- /openaes/src/oaes_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/openaes/src/oaes_lib.c -------------------------------------------------------------------------------- /openaes/test/test_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/openaes/test/test_encrypt.c -------------------------------------------------------------------------------- /openaes/test/test_keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/openaes/test/test_keys.c -------------------------------------------------------------------------------- /openaes/test/test_performance.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/openaes/test/test_performance.c -------------------------------------------------------------------------------- /openaes/test/vt_aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/openaes/test/vt_aes.c -------------------------------------------------------------------------------- /openrecoveryscript.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/openrecoveryscript.cpp -------------------------------------------------------------------------------- /openrecoveryscript.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/openrecoveryscript.hpp -------------------------------------------------------------------------------- /partition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/partition.cpp -------------------------------------------------------------------------------- /partitionmanager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/partitionmanager.cpp -------------------------------------------------------------------------------- /partitions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/partitions.hpp -------------------------------------------------------------------------------- /pigz/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/pigz/Android.mk -------------------------------------------------------------------------------- /pigz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/pigz/Makefile -------------------------------------------------------------------------------- /pigz/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/pigz/README -------------------------------------------------------------------------------- /pigz/pigz.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/pigz/pigz.1 -------------------------------------------------------------------------------- /pigz/pigz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/pigz/pigz.c -------------------------------------------------------------------------------- /pigz/pigz.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/pigz/pigz.pdf -------------------------------------------------------------------------------- /pigz/pigz.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/pigz/pigz.spec -------------------------------------------------------------------------------- /pigz/yarn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/pigz/yarn.c -------------------------------------------------------------------------------- /pigz/yarn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/pigz/yarn.h -------------------------------------------------------------------------------- /prebuilt/99SuperSUDaemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/99SuperSUDaemon -------------------------------------------------------------------------------- /prebuilt/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/Android.mk -------------------------------------------------------------------------------- /prebuilt/HTCDumlock.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/HTCDumlock.apk -------------------------------------------------------------------------------- /prebuilt/Superuser.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/Superuser.apk -------------------------------------------------------------------------------- /prebuilt/chattr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/chattr -------------------------------------------------------------------------------- /prebuilt/dump_imagesys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/dump_imagesys -------------------------------------------------------------------------------- /prebuilt/fix_permissions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/fix_permissions.sh -------------------------------------------------------------------------------- /prebuilt/flash_imagesys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/flash_imagesys -------------------------------------------------------------------------------- /prebuilt/htcdumlock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/htcdumlock -------------------------------------------------------------------------------- /prebuilt/htcdumlocksys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/htcdumlocksys -------------------------------------------------------------------------------- /prebuilt/install-recovery.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/install-recovery.sh -------------------------------------------------------------------------------- /prebuilt/libbmlutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/libbmlutils.so -------------------------------------------------------------------------------- /prebuilt/libflashutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/libflashutils.so -------------------------------------------------------------------------------- /prebuilt/libmmcutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/libmmcutils.so -------------------------------------------------------------------------------- /prebuilt/libmtdutils.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/libmtdutils.so -------------------------------------------------------------------------------- /prebuilt/mke2fs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/mke2fs.conf -------------------------------------------------------------------------------- /prebuilt/parted: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/parted -------------------------------------------------------------------------------- /prebuilt/relink-binaries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/relink-binaries.sh -------------------------------------------------------------------------------- /prebuilt/relink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/relink.sh -------------------------------------------------------------------------------- /prebuilt/su: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/su -------------------------------------------------------------------------------- /prebuilt/teamwin: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /prebuilt/twrp_fonts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/prebuilt/twrp_fonts.py -------------------------------------------------------------------------------- /recovery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/recovery.cpp -------------------------------------------------------------------------------- /recovery_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/recovery_ui.h -------------------------------------------------------------------------------- /res/dummyfileforgit: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /res/images/dummyfile2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /roots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/roots.cpp -------------------------------------------------------------------------------- /roots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/roots.h -------------------------------------------------------------------------------- /safestrap-functions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap-functions.c -------------------------------------------------------------------------------- /safestrap-functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap-functions.h -------------------------------------------------------------------------------- /safestrap/2nd-init/2nd-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/2nd-init/2nd-init.c -------------------------------------------------------------------------------- /safestrap/2nd-init/2nd-init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/2nd-init/2nd-init.h -------------------------------------------------------------------------------- /safestrap/2nd-init/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/2nd-init/Android.mk -------------------------------------------------------------------------------- /safestrap/bbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/bbx -------------------------------------------------------------------------------- /safestrap/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/busybox -------------------------------------------------------------------------------- /safestrap/bypasslkm/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/bypasslkm/Android.mk -------------------------------------------------------------------------------- /safestrap/bypasslkm/bypasslkm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/bypasslkm/bypasslkm.c -------------------------------------------------------------------------------- /safestrap/delay-wrapper/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/delay-wrapper/Android.mk -------------------------------------------------------------------------------- /safestrap/delay-wrapper/delay-wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/delay-wrapper/delay-wrapper.c -------------------------------------------------------------------------------- /safestrap/devices/android/apollo/init.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/android/apollo/init.rc -------------------------------------------------------------------------------- /safestrap/devices/android/jem/hijack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/android/jem/hijack -------------------------------------------------------------------------------- /safestrap/devices/android/jem/init.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/android/jem/init.rc -------------------------------------------------------------------------------- /safestrap/devices/android/jem/ss.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/android/jem/ss.config -------------------------------------------------------------------------------- /safestrap/devices/android/jem/twrp.fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/android/jem/twrp.fstab -------------------------------------------------------------------------------- /safestrap/devices/android/otter/hijack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/android/otter/hijack -------------------------------------------------------------------------------- /safestrap/devices/android/otter/init.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/android/otter/init.rc -------------------------------------------------------------------------------- /safestrap/devices/android/otter/ss.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/android/otter/ss.config -------------------------------------------------------------------------------- /safestrap/devices/android/thor/init.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/android/thor/init.rc -------------------------------------------------------------------------------- /safestrap/devices/common/build-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/common/build-install.sh -------------------------------------------------------------------------------- /safestrap/devices/common/kernel: -------------------------------------------------------------------------------- 1 | FAKE 2 | -------------------------------------------------------------------------------- /safestrap/devices/common/sbin/build-fs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/common/sbin/build-fs.sh -------------------------------------------------------------------------------- /safestrap/devices/common/sbin/check-fs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/common/sbin/check-fs.sh -------------------------------------------------------------------------------- /safestrap/devices/motorola/solana/hijack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/motorola/solana/hijack -------------------------------------------------------------------------------- /safestrap/devices/motorola/xoom2/hijack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/motorola/xoom2/hijack -------------------------------------------------------------------------------- /safestrap/devices/motorola/xoom2/init.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/motorola/xoom2/init.rc -------------------------------------------------------------------------------- /safestrap/devices/samsung/h-common/hijack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/samsung/h-common/hijack -------------------------------------------------------------------------------- /safestrap/devices/samsung/k-common/hijack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/samsung/k-common/hijack -------------------------------------------------------------------------------- /safestrap/devices/samsung/melius/hijack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/samsung/melius/hijack -------------------------------------------------------------------------------- /safestrap/devices/samsung/melius/init.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/devices/samsung/melius/init.rc -------------------------------------------------------------------------------- /safestrap/flags/recovery_mode: -------------------------------------------------------------------------------- 1 | bp-tools 2 | -------------------------------------------------------------------------------- /safestrap/flags/version: -------------------------------------------------------------------------------- 1 | 3.75 2 | -------------------------------------------------------------------------------- /safestrap/hijack-wrapper/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/hijack-wrapper/Android.mk -------------------------------------------------------------------------------- /safestrap/hijack-wrapper/hijack-wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/hijack-wrapper/hijack-wrapper.c -------------------------------------------------------------------------------- /safestrap/legacy/hijacks/logwrapper-kfire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/legacy/hijacks/logwrapper-kfire -------------------------------------------------------------------------------- /safestrap/legacy/hijacks/setup_fs-kfire: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/legacy/hijacks/setup_fs-kfire -------------------------------------------------------------------------------- /safestrap/legacy/init/init-kfire.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/legacy/init/init-kfire.rc -------------------------------------------------------------------------------- /safestrap/lfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/lfs -------------------------------------------------------------------------------- /safestrap/sbin-extras/strace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/sbin-extras/strace -------------------------------------------------------------------------------- /safestrap/splashmenu/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/splashmenu/Android.mk -------------------------------------------------------------------------------- /safestrap/splashmenu/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/splashmenu/CleanSpec.mk -------------------------------------------------------------------------------- /safestrap/splashmenu/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/splashmenu/NOTICE -------------------------------------------------------------------------------- /safestrap/splashmenu/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/splashmenu/common.h -------------------------------------------------------------------------------- /safestrap/splashmenu/minui/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/splashmenu/minui/Android.mk -------------------------------------------------------------------------------- /safestrap/splashmenu/minui/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/splashmenu/minui/events.c -------------------------------------------------------------------------------- /safestrap/splashmenu/minui/font_10x18.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/splashmenu/minui/font_10x18.h -------------------------------------------------------------------------------- /safestrap/splashmenu/minui/font_7x16.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/splashmenu/minui/font_7x16.h -------------------------------------------------------------------------------- /safestrap/splashmenu/minui/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/splashmenu/minui/graphics.c -------------------------------------------------------------------------------- /safestrap/splashmenu/minui/minui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/splashmenu/minui/minui.h -------------------------------------------------------------------------------- /safestrap/splashmenu/minui/mkfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/splashmenu/minui/mkfont.c -------------------------------------------------------------------------------- /safestrap/splashmenu/minui/resources.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/splashmenu/minui/resources.c -------------------------------------------------------------------------------- /safestrap/splashmenu/minui/roboto_10x18.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/splashmenu/minui/roboto_10x18.h -------------------------------------------------------------------------------- /safestrap/splashmenu/minui/roboto_15x24.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/splashmenu/minui/roboto_15x24.h -------------------------------------------------------------------------------- /safestrap/splashmenu/minui/roboto_23x41.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/splashmenu/minui/roboto_23x41.h -------------------------------------------------------------------------------- /safestrap/splashmenu/splashmenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/splashmenu/splashmenu.c -------------------------------------------------------------------------------- /safestrap/splashmenu/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/splashmenu/ui.c -------------------------------------------------------------------------------- /safestrap/ueventmon/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/ueventmon/Android.mk -------------------------------------------------------------------------------- /safestrap/ueventmon/ueventmon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/safestrap/ueventmon/ueventmon.c -------------------------------------------------------------------------------- /screen_ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/screen_ui.cpp -------------------------------------------------------------------------------- /screen_ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/screen_ui.h -------------------------------------------------------------------------------- /tarWrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/tarWrite.c -------------------------------------------------------------------------------- /tarWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/tarWrite.h -------------------------------------------------------------------------------- /testdata/alter-footer.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/testdata/alter-footer.zip -------------------------------------------------------------------------------- /testdata/alter-metadata.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/testdata/alter-metadata.zip -------------------------------------------------------------------------------- /testdata/fake-eocd.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/testdata/fake-eocd.zip -------------------------------------------------------------------------------- /testdata/jarsigned.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/testdata/jarsigned.zip -------------------------------------------------------------------------------- /testdata/otasigned.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/testdata/otasigned.zip -------------------------------------------------------------------------------- /testdata/otasigned_f4.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/testdata/otasigned_f4.zip -------------------------------------------------------------------------------- /testdata/otasigned_f4_sha256.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/testdata/otasigned_f4_sha256.zip -------------------------------------------------------------------------------- /testdata/otasigned_sha256.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/testdata/otasigned_sha256.zip -------------------------------------------------------------------------------- /testdata/random.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/testdata/random.zip -------------------------------------------------------------------------------- /testdata/test_f4.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/testdata/test_f4.pk8 -------------------------------------------------------------------------------- /testdata/test_f4.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/testdata/test_f4.x509.pem -------------------------------------------------------------------------------- /testdata/test_f4_sha256.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/testdata/test_f4_sha256.x509.pem -------------------------------------------------------------------------------- /testdata/testkey.pk8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/testdata/testkey.pk8 -------------------------------------------------------------------------------- /testdata/testkey.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/testdata/testkey.x509.pem -------------------------------------------------------------------------------- /testdata/testkey_sha256.x509.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/testdata/testkey_sha256.x509.pem -------------------------------------------------------------------------------- /testdata/unsigned.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/testdata/unsigned.zip -------------------------------------------------------------------------------- /toolbox/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/toolbox/Android.mk -------------------------------------------------------------------------------- /tools/Android.mk: -------------------------------------------------------------------------------- 1 | include $(all-subdir-makefiles) 2 | -------------------------------------------------------------------------------- /tools/ota/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/tools/ota/Android.mk -------------------------------------------------------------------------------- /tools/ota/add-property-tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/tools/ota/add-property-tag.c -------------------------------------------------------------------------------- /tools/ota/check-lost+found.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/tools/ota/check-lost+found.c -------------------------------------------------------------------------------- /tools/ota/convert-to-bmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/tools/ota/convert-to-bmp.py -------------------------------------------------------------------------------- /twbootloader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/twbootloader.cpp -------------------------------------------------------------------------------- /twcommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/twcommon.h -------------------------------------------------------------------------------- /twinstall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/twinstall.cpp -------------------------------------------------------------------------------- /twinstall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/twinstall.h -------------------------------------------------------------------------------- /twrp-functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/twrp-functions.cpp -------------------------------------------------------------------------------- /twrp-functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/twrp-functions.hpp -------------------------------------------------------------------------------- /twrp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/twrp.cpp -------------------------------------------------------------------------------- /twrpDU.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/twrpDU.cpp -------------------------------------------------------------------------------- /twrpDU.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/twrpDU.hpp -------------------------------------------------------------------------------- /twrpDigest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/twrpDigest.cpp -------------------------------------------------------------------------------- /twrpDigest.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/twrpDigest.hpp -------------------------------------------------------------------------------- /twrpTar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/twrpTar.cpp -------------------------------------------------------------------------------- /twrpTar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/twrpTar.h -------------------------------------------------------------------------------- /twrpTar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/twrpTar.hpp -------------------------------------------------------------------------------- /twrpTarMain/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/twrpTarMain/Android.mk -------------------------------------------------------------------------------- /twrpTarMain/twrpTarMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/twrpTarMain/twrpTarMain.cpp -------------------------------------------------------------------------------- /ui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/ui.cpp -------------------------------------------------------------------------------- /ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/ui.h -------------------------------------------------------------------------------- /updater/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/updater/Android.mk -------------------------------------------------------------------------------- /updater/install.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/updater/install.c -------------------------------------------------------------------------------- /updater/install.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/updater/install.h -------------------------------------------------------------------------------- /updater/updater.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/updater/updater.c -------------------------------------------------------------------------------- /updater/updater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/updater/updater.h -------------------------------------------------------------------------------- /variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/variables.h -------------------------------------------------------------------------------- /verifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/verifier.cpp -------------------------------------------------------------------------------- /verifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/verifier.h -------------------------------------------------------------------------------- /verifier_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/verifier_test.cpp -------------------------------------------------------------------------------- /verifier_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hashcode/android_bootable_recovery/HEAD/verifier_test.sh --------------------------------------------------------------------------------