├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── mec_csum_boot.c ├── mec_csum_flasher.c ├── mec_csum_outer.c ├── mec_encrypt.c ├── mec_repack └── mmapfile.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenmatt/mec-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenmatt/mec-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenmatt/mec-tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenmatt/mec-tools/HEAD/README.md -------------------------------------------------------------------------------- /mec_csum_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenmatt/mec-tools/HEAD/mec_csum_boot.c -------------------------------------------------------------------------------- /mec_csum_flasher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenmatt/mec-tools/HEAD/mec_csum_flasher.c -------------------------------------------------------------------------------- /mec_csum_outer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenmatt/mec-tools/HEAD/mec_csum_outer.c -------------------------------------------------------------------------------- /mec_encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenmatt/mec-tools/HEAD/mec_encrypt.c -------------------------------------------------------------------------------- /mec_repack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenmatt/mec-tools/HEAD/mec_repack -------------------------------------------------------------------------------- /mmapfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eigenmatt/mec-tools/HEAD/mmapfile.h --------------------------------------------------------------------------------