├── .gitignore ├── .gitmodules ├── Makefile ├── README.md ├── include ├── build │ └── version.h ├── grp.h ├── openssl │ └── base64.h ├── platform_tools_version.h └── sys │ └── cdefs.h ├── patches └── core.patch └── rules ├── adb.mk ├── fastboot.mk ├── libbase.mk ├── libcrypto_utils.mk ├── libcutils.mk ├── libdiagnose_usb.mk ├── libext4_utils.mk ├── liblog.mk ├── liblp.mk ├── libmdnssd.mk ├── libpcre.mk ├── libselinux.mk ├── libsparse.mk ├── libusb.mk ├── libutils.mk └── libziparchive.mk /.gitignore: -------------------------------------------------------------------------------- 1 | /obj/ 2 | /.core.patch.stamp 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/README.md -------------------------------------------------------------------------------- /include/build/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/include/build/version.h -------------------------------------------------------------------------------- /include/grp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/include/grp.h -------------------------------------------------------------------------------- /include/openssl/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/include/openssl/base64.h -------------------------------------------------------------------------------- /include/platform_tools_version.h: -------------------------------------------------------------------------------- 1 | #define PLATFORM_TOOLS_VERSION "master" 2 | -------------------------------------------------------------------------------- /include/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/include/sys/cdefs.h -------------------------------------------------------------------------------- /patches/core.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/patches/core.patch -------------------------------------------------------------------------------- /rules/adb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/rules/adb.mk -------------------------------------------------------------------------------- /rules/fastboot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/rules/fastboot.mk -------------------------------------------------------------------------------- /rules/libbase.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/rules/libbase.mk -------------------------------------------------------------------------------- /rules/libcrypto_utils.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/rules/libcrypto_utils.mk -------------------------------------------------------------------------------- /rules/libcutils.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/rules/libcutils.mk -------------------------------------------------------------------------------- /rules/libdiagnose_usb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/rules/libdiagnose_usb.mk -------------------------------------------------------------------------------- /rules/libext4_utils.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/rules/libext4_utils.mk -------------------------------------------------------------------------------- /rules/liblog.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/rules/liblog.mk -------------------------------------------------------------------------------- /rules/liblp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/rules/liblp.mk -------------------------------------------------------------------------------- /rules/libmdnssd.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/rules/libmdnssd.mk -------------------------------------------------------------------------------- /rules/libpcre.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/rules/libpcre.mk -------------------------------------------------------------------------------- /rules/libselinux.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/rules/libselinux.mk -------------------------------------------------------------------------------- /rules/libsparse.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/rules/libsparse.mk -------------------------------------------------------------------------------- /rules/libusb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/rules/libusb.mk -------------------------------------------------------------------------------- /rules/libutils.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/rules/libutils.mk -------------------------------------------------------------------------------- /rules/libziparchive.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smaeul/android-tools/HEAD/rules/libziparchive.mk --------------------------------------------------------------------------------