├── .gitignore ├── Android.mk ├── Makefile ├── README.md ├── bootimg.c ├── bootimg.h ├── libbootimg.c └── mincrypt ├── hash-internal.h ├── sha.c └── sha.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcadduono/android_external_libbootimg/HEAD/.gitignore -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcadduono/android_external_libbootimg/HEAD/Android.mk -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcadduono/android_external_libbootimg/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # libbootimg 2 | 3 | Modify your boot images, quite simply. 4 | -------------------------------------------------------------------------------- /bootimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcadduono/android_external_libbootimg/HEAD/bootimg.c -------------------------------------------------------------------------------- /bootimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcadduono/android_external_libbootimg/HEAD/bootimg.h -------------------------------------------------------------------------------- /libbootimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcadduono/android_external_libbootimg/HEAD/libbootimg.c -------------------------------------------------------------------------------- /mincrypt/hash-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcadduono/android_external_libbootimg/HEAD/mincrypt/hash-internal.h -------------------------------------------------------------------------------- /mincrypt/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcadduono/android_external_libbootimg/HEAD/mincrypt/sha.c -------------------------------------------------------------------------------- /mincrypt/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcadduono/android_external_libbootimg/HEAD/mincrypt/sha.h --------------------------------------------------------------------------------