├── LICENSE ├── README.md ├── dump_cp_addr ├── README.md ├── build │ ├── dump_cp_addr.elf │ └── dump_cp_addr_devarg.elf ├── dump_cp_addr.c └── dump_cp_addr_devarg.c ├── ipl_blocks ├── 0xBFC00100r.bin ├── 0xBFE01100r.bin ├── 0xbfe01100v2.bin ├── 0xbfe01100v2_350.bin ├── README.md ├── fully_encrypted_blocks │ ├── ipl_0x8001.bin │ └── ipl_0xbfc.bin └── jr_0xbfe01100.bin ├── ipl_shellcode ├── 0xa0010000 │ ├── Makefile │ ├── build │ │ └── 0x8001.bin │ ├── linkfile.l │ └── main.S ├── 0xbfc00000 │ ├── Makefile │ ├── build │ │ └── 0xbfc.bin │ ├── linkfile.l │ └── main.S ├── README.md └── jr_0xbfe01100 │ ├── Makefile │ ├── README.md │ ├── build │ └── shellcode_jr_0xbfe01100.bin.keep │ ├── linkfile.l │ └── main.S ├── kbooti_dump.sh └── write_cp_addr_devarg ├── README.MD ├── write_cp_addr_devarg.c └── write_cp_addr_devarg.elf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/README.md -------------------------------------------------------------------------------- /dump_cp_addr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/dump_cp_addr/README.md -------------------------------------------------------------------------------- /dump_cp_addr/build/dump_cp_addr.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/dump_cp_addr/build/dump_cp_addr.elf -------------------------------------------------------------------------------- /dump_cp_addr/build/dump_cp_addr_devarg.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/dump_cp_addr/build/dump_cp_addr_devarg.elf -------------------------------------------------------------------------------- /dump_cp_addr/dump_cp_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/dump_cp_addr/dump_cp_addr.c -------------------------------------------------------------------------------- /dump_cp_addr/dump_cp_addr_devarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/dump_cp_addr/dump_cp_addr_devarg.c -------------------------------------------------------------------------------- /ipl_blocks/0xBFC00100r.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_blocks/0xBFC00100r.bin -------------------------------------------------------------------------------- /ipl_blocks/0xBFE01100r.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_blocks/0xBFE01100r.bin -------------------------------------------------------------------------------- /ipl_blocks/0xbfe01100v2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_blocks/0xbfe01100v2.bin -------------------------------------------------------------------------------- /ipl_blocks/0xbfe01100v2_350.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_blocks/0xbfe01100v2_350.bin -------------------------------------------------------------------------------- /ipl_blocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_blocks/README.md -------------------------------------------------------------------------------- /ipl_blocks/fully_encrypted_blocks/ipl_0x8001.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_blocks/fully_encrypted_blocks/ipl_0x8001.bin -------------------------------------------------------------------------------- /ipl_blocks/fully_encrypted_blocks/ipl_0xbfc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_blocks/fully_encrypted_blocks/ipl_0xbfc.bin -------------------------------------------------------------------------------- /ipl_blocks/jr_0xbfe01100.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_blocks/jr_0xbfe01100.bin -------------------------------------------------------------------------------- /ipl_shellcode/0xa0010000/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_shellcode/0xa0010000/Makefile -------------------------------------------------------------------------------- /ipl_shellcode/0xa0010000/build/0x8001.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_shellcode/0xa0010000/build/0x8001.bin -------------------------------------------------------------------------------- /ipl_shellcode/0xa0010000/linkfile.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_shellcode/0xa0010000/linkfile.l -------------------------------------------------------------------------------- /ipl_shellcode/0xa0010000/main.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_shellcode/0xa0010000/main.S -------------------------------------------------------------------------------- /ipl_shellcode/0xbfc00000/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_shellcode/0xbfc00000/Makefile -------------------------------------------------------------------------------- /ipl_shellcode/0xbfc00000/build/0xbfc.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_shellcode/0xbfc00000/build/0xbfc.bin -------------------------------------------------------------------------------- /ipl_shellcode/0xbfc00000/linkfile.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_shellcode/0xbfc00000/linkfile.l -------------------------------------------------------------------------------- /ipl_shellcode/0xbfc00000/main.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_shellcode/0xbfc00000/main.S -------------------------------------------------------------------------------- /ipl_shellcode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_shellcode/README.md -------------------------------------------------------------------------------- /ipl_shellcode/jr_0xbfe01100/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_shellcode/jr_0xbfe01100/Makefile -------------------------------------------------------------------------------- /ipl_shellcode/jr_0xbfe01100/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_shellcode/jr_0xbfe01100/README.md -------------------------------------------------------------------------------- /ipl_shellcode/jr_0xbfe01100/build/shellcode_jr_0xbfe01100.bin.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_shellcode/jr_0xbfe01100/build/shellcode_jr_0xbfe01100.bin.keep -------------------------------------------------------------------------------- /ipl_shellcode/jr_0xbfe01100/linkfile.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_shellcode/jr_0xbfe01100/linkfile.l -------------------------------------------------------------------------------- /ipl_shellcode/jr_0xbfe01100/main.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/ipl_shellcode/jr_0xbfe01100/main.S -------------------------------------------------------------------------------- /kbooti_dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/kbooti_dump.sh -------------------------------------------------------------------------------- /write_cp_addr_devarg/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/write_cp_addr_devarg/README.MD -------------------------------------------------------------------------------- /write_cp_addr_devarg/write_cp_addr_devarg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/write_cp_addr_devarg/write_cp_addr_devarg.c -------------------------------------------------------------------------------- /write_cp_addr_devarg/write_cp_addr_devarg.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieulh/DTP-T1000-Pre-IPL-dumper/HEAD/write_cp_addr_devarg/write_cp_addr_devarg.elf --------------------------------------------------------------------------------