├── .gitignore ├── LICENSE ├── README.md ├── android_device_tree.dts ├── android_proc_iomap.txt ├── dumped_bins ├── boot0 ├── boot1 ├── brom_766.bin ├── gz.bin ├── gz_decrypted.bin ├── gz_elfs │ ├── 00060000.elf │ ├── 00084430_gz-test.elf │ ├── 0009c860.elf │ ├── 000a6c90_tzcmd.elf │ ├── 000b50c0_crypto_stuff.elf │ ├── 000e0d68_storage_stuff.elf │ ├── 000fa110_dynamic_loading.elf │ ├── 0010fde8_cmdq_fdvt.elf │ ├── 002660c0.elf │ └── 0027e520.elf ├── lk_versions │ ├── k65v1_64_bsp-2b6a7ea79-20240328191459-20240407162502.bin │ ├── k65v1_64_bsp-426327e50-20240820220524-20240824130409.bin │ ├── k65v1_64_bsp-7af970313-20240809164304-20240814153305.bin │ ├── k65v1_64_bsp-97167d67b-20240417193058-20240419190627.bin │ ├── k65v1_64_bsp-a6bf36736-20240514155425-20240518100405.bin │ ├── k65v1_64_bsp-a7221a4bc-20240527144645-20240528232659.bin │ ├── k65v1_64_bsp-a7221a4bc-20240527144645-20240530225004.bin │ └── k65v1_64_bsp-a7221a4bc-20240527144645-20240704103040.bin ├── logo.bin ├── preloader_k65v1_64_bsp.bin ├── preloader_k65v1_64_bsp_v2.bin ├── preloader_k65v1_64_bsp_v3.bin └── tee.bin ├── scripts ├── custom_da │ ├── .gitignore │ ├── Makefile │ ├── entry.s │ ├── lk_hook.c │ ├── lk_hook_entry.s │ ├── main.c │ └── patterns.h ├── drop_busybox.sh ├── initrd_payload │ ├── Makefile │ └── bindshell.c ├── jailbreak.py ├── mini_mtkclient.py ├── parse_preloader.py ├── patchfind_lk_test.py └── webusb │ ├── README.md │ ├── index.html │ └── main.js ├── uart_boot_logs.txt └── uart_boot_logs_with_patch.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/README.md -------------------------------------------------------------------------------- /android_device_tree.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/android_device_tree.dts -------------------------------------------------------------------------------- /android_proc_iomap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/android_proc_iomap.txt -------------------------------------------------------------------------------- /dumped_bins/boot0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/boot0 -------------------------------------------------------------------------------- /dumped_bins/boot1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/boot1 -------------------------------------------------------------------------------- /dumped_bins/brom_766.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/brom_766.bin -------------------------------------------------------------------------------- /dumped_bins/gz.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/gz.bin -------------------------------------------------------------------------------- /dumped_bins/gz_decrypted.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/gz_decrypted.bin -------------------------------------------------------------------------------- /dumped_bins/gz_elfs/00060000.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/gz_elfs/00060000.elf -------------------------------------------------------------------------------- /dumped_bins/gz_elfs/00084430_gz-test.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/gz_elfs/00084430_gz-test.elf -------------------------------------------------------------------------------- /dumped_bins/gz_elfs/0009c860.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/gz_elfs/0009c860.elf -------------------------------------------------------------------------------- /dumped_bins/gz_elfs/000a6c90_tzcmd.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/gz_elfs/000a6c90_tzcmd.elf -------------------------------------------------------------------------------- /dumped_bins/gz_elfs/000b50c0_crypto_stuff.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/gz_elfs/000b50c0_crypto_stuff.elf -------------------------------------------------------------------------------- /dumped_bins/gz_elfs/000e0d68_storage_stuff.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/gz_elfs/000e0d68_storage_stuff.elf -------------------------------------------------------------------------------- /dumped_bins/gz_elfs/000fa110_dynamic_loading.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/gz_elfs/000fa110_dynamic_loading.elf -------------------------------------------------------------------------------- /dumped_bins/gz_elfs/0010fde8_cmdq_fdvt.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/gz_elfs/0010fde8_cmdq_fdvt.elf -------------------------------------------------------------------------------- /dumped_bins/gz_elfs/002660c0.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/gz_elfs/002660c0.elf -------------------------------------------------------------------------------- /dumped_bins/gz_elfs/0027e520.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/gz_elfs/0027e520.elf -------------------------------------------------------------------------------- /dumped_bins/lk_versions/k65v1_64_bsp-2b6a7ea79-20240328191459-20240407162502.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/lk_versions/k65v1_64_bsp-2b6a7ea79-20240328191459-20240407162502.bin -------------------------------------------------------------------------------- /dumped_bins/lk_versions/k65v1_64_bsp-426327e50-20240820220524-20240824130409.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/lk_versions/k65v1_64_bsp-426327e50-20240820220524-20240824130409.bin -------------------------------------------------------------------------------- /dumped_bins/lk_versions/k65v1_64_bsp-7af970313-20240809164304-20240814153305.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/lk_versions/k65v1_64_bsp-7af970313-20240809164304-20240814153305.bin -------------------------------------------------------------------------------- /dumped_bins/lk_versions/k65v1_64_bsp-97167d67b-20240417193058-20240419190627.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/lk_versions/k65v1_64_bsp-97167d67b-20240417193058-20240419190627.bin -------------------------------------------------------------------------------- /dumped_bins/lk_versions/k65v1_64_bsp-a6bf36736-20240514155425-20240518100405.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/lk_versions/k65v1_64_bsp-a6bf36736-20240514155425-20240518100405.bin -------------------------------------------------------------------------------- /dumped_bins/lk_versions/k65v1_64_bsp-a7221a4bc-20240527144645-20240528232659.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/lk_versions/k65v1_64_bsp-a7221a4bc-20240527144645-20240528232659.bin -------------------------------------------------------------------------------- /dumped_bins/lk_versions/k65v1_64_bsp-a7221a4bc-20240527144645-20240530225004.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/lk_versions/k65v1_64_bsp-a7221a4bc-20240527144645-20240530225004.bin -------------------------------------------------------------------------------- /dumped_bins/lk_versions/k65v1_64_bsp-a7221a4bc-20240527144645-20240704103040.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/lk_versions/k65v1_64_bsp-a7221a4bc-20240527144645-20240704103040.bin -------------------------------------------------------------------------------- /dumped_bins/logo.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/logo.bin -------------------------------------------------------------------------------- /dumped_bins/preloader_k65v1_64_bsp.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/preloader_k65v1_64_bsp.bin -------------------------------------------------------------------------------- /dumped_bins/preloader_k65v1_64_bsp_v2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/preloader_k65v1_64_bsp_v2.bin -------------------------------------------------------------------------------- /dumped_bins/preloader_k65v1_64_bsp_v3.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/preloader_k65v1_64_bsp_v3.bin -------------------------------------------------------------------------------- /dumped_bins/tee.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/dumped_bins/tee.bin -------------------------------------------------------------------------------- /scripts/custom_da/.gitignore: -------------------------------------------------------------------------------- 1 | *.bin 2 | *.elf 3 | *_xxd.h 4 | -------------------------------------------------------------------------------- /scripts/custom_da/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/scripts/custom_da/Makefile -------------------------------------------------------------------------------- /scripts/custom_da/entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/scripts/custom_da/entry.s -------------------------------------------------------------------------------- /scripts/custom_da/lk_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/scripts/custom_da/lk_hook.c -------------------------------------------------------------------------------- /scripts/custom_da/lk_hook_entry.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/scripts/custom_da/lk_hook_entry.s -------------------------------------------------------------------------------- /scripts/custom_da/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/scripts/custom_da/main.c -------------------------------------------------------------------------------- /scripts/custom_da/patterns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/scripts/custom_da/patterns.h -------------------------------------------------------------------------------- /scripts/drop_busybox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/scripts/drop_busybox.sh -------------------------------------------------------------------------------- /scripts/initrd_payload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/scripts/initrd_payload/Makefile -------------------------------------------------------------------------------- /scripts/initrd_payload/bindshell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/scripts/initrd_payload/bindshell.c -------------------------------------------------------------------------------- /scripts/jailbreak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/scripts/jailbreak.py -------------------------------------------------------------------------------- /scripts/mini_mtkclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/scripts/mini_mtkclient.py -------------------------------------------------------------------------------- /scripts/parse_preloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/scripts/parse_preloader.py -------------------------------------------------------------------------------- /scripts/patchfind_lk_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/scripts/patchfind_lk_test.py -------------------------------------------------------------------------------- /scripts/webusb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/scripts/webusb/README.md -------------------------------------------------------------------------------- /scripts/webusb/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/scripts/webusb/index.html -------------------------------------------------------------------------------- /scripts/webusb/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/scripts/webusb/main.js -------------------------------------------------------------------------------- /uart_boot_logs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/uart_boot_logs.txt -------------------------------------------------------------------------------- /uart_boot_logs_with_patch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DavidBuchanan314/rabbit_r1_boot_notes/HEAD/uart_boot_logs_with_patch.txt --------------------------------------------------------------------------------