├── .gitignore ├── Makefile ├── README.md ├── bin ├── repack-bootimg.pl ├── repack-bootimg.sh ├── unpack-bootimg.pl └── unpack-bootimg.sh ├── cpio └── mkbootfs.c ├── include ├── mincrypt │ ├── dsa_sig.h │ ├── hash-internal.h │ ├── p256.h │ ├── p256_ecdsa.h │ ├── rsa.h │ ├── sha.h │ └── sha256.h └── private │ ├── android_filesystem_capability.h │ ├── android_filesystem_config.h │ └── android_logger.h ├── libmincrypt ├── NOTICE ├── dsa_sig.c ├── p256.c ├── p256_ec.c ├── p256_ecdsa.c ├── rsa.c ├── sha.c └── sha256.c ├── mkbootimg ├── bootimg.h ├── mkbootimg.c └── unmkbootimg.c └── tmp └── boot.img /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/README.md -------------------------------------------------------------------------------- /bin/repack-bootimg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/bin/repack-bootimg.pl -------------------------------------------------------------------------------- /bin/repack-bootimg.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | repack-bootimg.pl $1 $2 $3 -------------------------------------------------------------------------------- /bin/unpack-bootimg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/bin/unpack-bootimg.pl -------------------------------------------------------------------------------- /bin/unpack-bootimg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/bin/unpack-bootimg.sh -------------------------------------------------------------------------------- /cpio/mkbootfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/cpio/mkbootfs.c -------------------------------------------------------------------------------- /include/mincrypt/dsa_sig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/include/mincrypt/dsa_sig.h -------------------------------------------------------------------------------- /include/mincrypt/hash-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/include/mincrypt/hash-internal.h -------------------------------------------------------------------------------- /include/mincrypt/p256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/include/mincrypt/p256.h -------------------------------------------------------------------------------- /include/mincrypt/p256_ecdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/include/mincrypt/p256_ecdsa.h -------------------------------------------------------------------------------- /include/mincrypt/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/include/mincrypt/rsa.h -------------------------------------------------------------------------------- /include/mincrypt/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/include/mincrypt/sha.h -------------------------------------------------------------------------------- /include/mincrypt/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/include/mincrypt/sha256.h -------------------------------------------------------------------------------- /include/private/android_filesystem_capability.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/include/private/android_filesystem_capability.h -------------------------------------------------------------------------------- /include/private/android_filesystem_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/include/private/android_filesystem_config.h -------------------------------------------------------------------------------- /include/private/android_logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/include/private/android_logger.h -------------------------------------------------------------------------------- /libmincrypt/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/libmincrypt/NOTICE -------------------------------------------------------------------------------- /libmincrypt/dsa_sig.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/libmincrypt/dsa_sig.c -------------------------------------------------------------------------------- /libmincrypt/p256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/libmincrypt/p256.c -------------------------------------------------------------------------------- /libmincrypt/p256_ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/libmincrypt/p256_ec.c -------------------------------------------------------------------------------- /libmincrypt/p256_ecdsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/libmincrypt/p256_ecdsa.c -------------------------------------------------------------------------------- /libmincrypt/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/libmincrypt/rsa.c -------------------------------------------------------------------------------- /libmincrypt/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/libmincrypt/sha.c -------------------------------------------------------------------------------- /libmincrypt/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/libmincrypt/sha256.c -------------------------------------------------------------------------------- /mkbootimg/bootimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/mkbootimg/bootimg.h -------------------------------------------------------------------------------- /mkbootimg/mkbootimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/mkbootimg/mkbootimg.c -------------------------------------------------------------------------------- /mkbootimg/unmkbootimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/mkbootimg/unmkbootimg.c -------------------------------------------------------------------------------- /tmp/boot.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/difcareer/BootImgTool/HEAD/tmp/boot.img --------------------------------------------------------------------------------