├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── a10_a11rxw.S ├── go_cmd_hook.S ├── offsetfinder.c ├── offsetfinder.h ├── patch.c ├── payload.h ├── tram.S └── vmacho.c /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palera1n/ibootpatch2/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | iBootpatch2 2 | .DS_Store 3 | *.bin 4 | *.o 5 | vmacho 6 | payload.c 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palera1n/ibootpatch2/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palera1n/ibootpatch2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palera1n/ibootpatch2/HEAD/README.md -------------------------------------------------------------------------------- /a10_a11rxw.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palera1n/ibootpatch2/HEAD/a10_a11rxw.S -------------------------------------------------------------------------------- /go_cmd_hook.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palera1n/ibootpatch2/HEAD/go_cmd_hook.S -------------------------------------------------------------------------------- /offsetfinder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palera1n/ibootpatch2/HEAD/offsetfinder.c -------------------------------------------------------------------------------- /offsetfinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palera1n/ibootpatch2/HEAD/offsetfinder.h -------------------------------------------------------------------------------- /patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palera1n/ibootpatch2/HEAD/patch.c -------------------------------------------------------------------------------- /payload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palera1n/ibootpatch2/HEAD/payload.h -------------------------------------------------------------------------------- /tram.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palera1n/ibootpatch2/HEAD/tram.S -------------------------------------------------------------------------------- /vmacho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palera1n/ibootpatch2/HEAD/vmacho.c --------------------------------------------------------------------------------