├── .gitignore ├── Makefile ├── README.md ├── include ├── ibooter.h ├── img3.h └── irecovery.h └── src ├── ibooter.c ├── img3.c ├── irecovery.c └── main.c /.gitignore: -------------------------------------------------------------------------------- 1 | *.img3 2 | *.bin 3 | *.o 4 | ibooter 5 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteyeux/ibooter/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteyeux/ibooter/HEAD/README.md -------------------------------------------------------------------------------- /include/ibooter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteyeux/ibooter/HEAD/include/ibooter.h -------------------------------------------------------------------------------- /include/img3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteyeux/ibooter/HEAD/include/img3.h -------------------------------------------------------------------------------- /include/irecovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteyeux/ibooter/HEAD/include/irecovery.h -------------------------------------------------------------------------------- /src/ibooter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteyeux/ibooter/HEAD/src/ibooter.c -------------------------------------------------------------------------------- /src/img3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteyeux/ibooter/HEAD/src/img3.c -------------------------------------------------------------------------------- /src/irecovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteyeux/ibooter/HEAD/src/irecovery.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matteyeux/ibooter/HEAD/src/main.c --------------------------------------------------------------------------------