├── LICENSE ├── README-dev.md ├── README-recovery.md ├── README.md ├── bootmgr ├── lv0-0syscall6 │ ├── 0syscall6.c │ ├── Makefile │ ├── bootmgr.c │ ├── bootmgr.e2xp │ ├── bootmgr.x │ ├── cp_payload │ │ ├── Makefile │ │ ├── inject_framework.h │ │ └── main.c │ ├── framework │ │ ├── Makefile │ │ ├── framework.h │ │ └── main.c │ ├── install_zss │ │ ├── Makefile │ │ ├── main.c │ │ └── zss.h │ ├── sm_load_hook │ │ ├── Makefile │ │ ├── main.c │ │ └── smlh.h │ └── spl-defs.h ├── lv0-bob │ ├── Makefile │ ├── bob_loader │ │ ├── Makefile │ │ ├── main.c │ │ ├── payload.h │ │ └── types.h │ ├── bobloader.c │ ├── bootmgr.c │ ├── bootmgr.e2xp │ ├── bootmgr.x │ ├── cp_payload │ │ ├── Makefile │ │ ├── inject_framework.h │ │ └── main.c │ ├── framework │ │ ├── Makefile │ │ ├── framework.h │ │ └── main.c │ └── spl-defs.h └── lv0-typespoof │ ├── Makefile │ ├── bootmgr.c │ ├── bootmgr.e2xp │ ├── bootmgr.x │ ├── cp_payload │ ├── Makefile │ ├── inject_framework.h │ └── main.c │ ├── framework │ ├── Makefile │ ├── framework.h │ └── main.c │ ├── payload │ ├── Makefile │ ├── dex_patch.h │ ├── main.c │ └── types.h │ ├── spl-defs.h │ └── typespoof.c ├── core ├── Makefile ├── enso.h ├── ex_defs.h ├── fat.tpl ├── first.c ├── first.x ├── gen.py ├── misc_bm.c ├── misc_bm.h ├── nskbl.h ├── second.c └── second.x ├── create_vpk.sh ├── enso_ex-core-diagram-dark.png ├── enso_ex-core-diagram.png ├── installer ├── 365_stubs │ └── libSceModulemgrForKernel_367_stub.a ├── CMakeLists.txt ├── res_int │ ├── bg.png │ ├── icon.png │ ├── startup.png │ └── template.xml └── src │ ├── crc32.c │ ├── enso.h │ ├── fatcheck.h │ ├── font.c │ ├── graphics.c │ ├── graphics.h │ ├── kernel.c │ ├── kernel2.c │ ├── kernel2.yml │ ├── kernel_exports.yml │ ├── main.c │ ├── user.c │ ├── user_exports.yml │ └── version.h.in ├── plugins ├── culogo │ ├── Makefile │ ├── example_logo.raw │ ├── exports.yml │ └── kernel.c ├── hencfg │ ├── Makefile │ ├── exports.yml │ └── kernel.c ├── hooking.h ├── loader │ ├── Makefile │ ├── example_list.txt │ ├── exports.yml │ └── kernel.c └── plugins.h └── recovery ├── external ├── enso_flash │ ├── Makefile │ ├── recovery.c │ ├── recovery.e2xp │ ├── recovery.h │ └── recovery.x ├── gui-usb-mount │ ├── README.md │ └── files │ │ ├── boot_list.txt │ │ ├── cmd.recovery │ │ ├── cmp.recovery │ │ ├── psp2config.skprx │ │ └── rcvr_logo.raw └── heartbeat │ ├── Makefile │ ├── recovery.c │ ├── recovery.e2xr │ ├── recovery.h │ └── recovery.x └── internal └── default ├── Makefile ├── blob ├── Makefile └── blob.c └── bootstrap.c /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/LICENSE -------------------------------------------------------------------------------- /README-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/README-dev.md -------------------------------------------------------------------------------- /README-recovery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/README-recovery.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/README.md -------------------------------------------------------------------------------- /bootmgr/lv0-0syscall6/0syscall6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-0syscall6/0syscall6.c -------------------------------------------------------------------------------- /bootmgr/lv0-0syscall6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-0syscall6/Makefile -------------------------------------------------------------------------------- /bootmgr/lv0-0syscall6/bootmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-0syscall6/bootmgr.c -------------------------------------------------------------------------------- /bootmgr/lv0-0syscall6/bootmgr.e2xp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-0syscall6/bootmgr.e2xp -------------------------------------------------------------------------------- /bootmgr/lv0-0syscall6/bootmgr.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-0syscall6/bootmgr.x -------------------------------------------------------------------------------- /bootmgr/lv0-0syscall6/cp_payload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-0syscall6/cp_payload/Makefile -------------------------------------------------------------------------------- /bootmgr/lv0-0syscall6/cp_payload/inject_framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-0syscall6/cp_payload/inject_framework.h -------------------------------------------------------------------------------- /bootmgr/lv0-0syscall6/cp_payload/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-0syscall6/cp_payload/main.c -------------------------------------------------------------------------------- /bootmgr/lv0-0syscall6/framework/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-0syscall6/framework/Makefile -------------------------------------------------------------------------------- /bootmgr/lv0-0syscall6/framework/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-0syscall6/framework/framework.h -------------------------------------------------------------------------------- /bootmgr/lv0-0syscall6/framework/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-0syscall6/framework/main.c -------------------------------------------------------------------------------- /bootmgr/lv0-0syscall6/install_zss/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-0syscall6/install_zss/Makefile -------------------------------------------------------------------------------- /bootmgr/lv0-0syscall6/install_zss/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-0syscall6/install_zss/main.c -------------------------------------------------------------------------------- /bootmgr/lv0-0syscall6/install_zss/zss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-0syscall6/install_zss/zss.h -------------------------------------------------------------------------------- /bootmgr/lv0-0syscall6/sm_load_hook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-0syscall6/sm_load_hook/Makefile -------------------------------------------------------------------------------- /bootmgr/lv0-0syscall6/sm_load_hook/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-0syscall6/sm_load_hook/main.c -------------------------------------------------------------------------------- /bootmgr/lv0-0syscall6/sm_load_hook/smlh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-0syscall6/sm_load_hook/smlh.h -------------------------------------------------------------------------------- /bootmgr/lv0-0syscall6/spl-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-0syscall6/spl-defs.h -------------------------------------------------------------------------------- /bootmgr/lv0-bob/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-bob/Makefile -------------------------------------------------------------------------------- /bootmgr/lv0-bob/bob_loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-bob/bob_loader/Makefile -------------------------------------------------------------------------------- /bootmgr/lv0-bob/bob_loader/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-bob/bob_loader/main.c -------------------------------------------------------------------------------- /bootmgr/lv0-bob/bob_loader/payload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-bob/bob_loader/payload.h -------------------------------------------------------------------------------- /bootmgr/lv0-bob/bob_loader/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-bob/bob_loader/types.h -------------------------------------------------------------------------------- /bootmgr/lv0-bob/bobloader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-bob/bobloader.c -------------------------------------------------------------------------------- /bootmgr/lv0-bob/bootmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-bob/bootmgr.c -------------------------------------------------------------------------------- /bootmgr/lv0-bob/bootmgr.e2xp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-bob/bootmgr.e2xp -------------------------------------------------------------------------------- /bootmgr/lv0-bob/bootmgr.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-bob/bootmgr.x -------------------------------------------------------------------------------- /bootmgr/lv0-bob/cp_payload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-bob/cp_payload/Makefile -------------------------------------------------------------------------------- /bootmgr/lv0-bob/cp_payload/inject_framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-bob/cp_payload/inject_framework.h -------------------------------------------------------------------------------- /bootmgr/lv0-bob/cp_payload/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-bob/cp_payload/main.c -------------------------------------------------------------------------------- /bootmgr/lv0-bob/framework/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-bob/framework/Makefile -------------------------------------------------------------------------------- /bootmgr/lv0-bob/framework/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-bob/framework/framework.h -------------------------------------------------------------------------------- /bootmgr/lv0-bob/framework/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-bob/framework/main.c -------------------------------------------------------------------------------- /bootmgr/lv0-bob/spl-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-bob/spl-defs.h -------------------------------------------------------------------------------- /bootmgr/lv0-typespoof/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-typespoof/Makefile -------------------------------------------------------------------------------- /bootmgr/lv0-typespoof/bootmgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-typespoof/bootmgr.c -------------------------------------------------------------------------------- /bootmgr/lv0-typespoof/bootmgr.e2xp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-typespoof/bootmgr.e2xp -------------------------------------------------------------------------------- /bootmgr/lv0-typespoof/bootmgr.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-typespoof/bootmgr.x -------------------------------------------------------------------------------- /bootmgr/lv0-typespoof/cp_payload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-typespoof/cp_payload/Makefile -------------------------------------------------------------------------------- /bootmgr/lv0-typespoof/cp_payload/inject_framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-typespoof/cp_payload/inject_framework.h -------------------------------------------------------------------------------- /bootmgr/lv0-typespoof/cp_payload/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-typespoof/cp_payload/main.c -------------------------------------------------------------------------------- /bootmgr/lv0-typespoof/framework/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-typespoof/framework/Makefile -------------------------------------------------------------------------------- /bootmgr/lv0-typespoof/framework/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-typespoof/framework/framework.h -------------------------------------------------------------------------------- /bootmgr/lv0-typespoof/framework/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-typespoof/framework/main.c -------------------------------------------------------------------------------- /bootmgr/lv0-typespoof/payload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-typespoof/payload/Makefile -------------------------------------------------------------------------------- /bootmgr/lv0-typespoof/payload/dex_patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-typespoof/payload/dex_patch.h -------------------------------------------------------------------------------- /bootmgr/lv0-typespoof/payload/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-typespoof/payload/main.c -------------------------------------------------------------------------------- /bootmgr/lv0-typespoof/payload/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-typespoof/payload/types.h -------------------------------------------------------------------------------- /bootmgr/lv0-typespoof/spl-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-typespoof/spl-defs.h -------------------------------------------------------------------------------- /bootmgr/lv0-typespoof/typespoof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/bootmgr/lv0-typespoof/typespoof.c -------------------------------------------------------------------------------- /core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/core/Makefile -------------------------------------------------------------------------------- /core/enso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/core/enso.h -------------------------------------------------------------------------------- /core/ex_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/core/ex_defs.h -------------------------------------------------------------------------------- /core/fat.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/core/fat.tpl -------------------------------------------------------------------------------- /core/first.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/core/first.c -------------------------------------------------------------------------------- /core/first.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/core/first.x -------------------------------------------------------------------------------- /core/gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/core/gen.py -------------------------------------------------------------------------------- /core/misc_bm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/core/misc_bm.c -------------------------------------------------------------------------------- /core/misc_bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/core/misc_bm.h -------------------------------------------------------------------------------- /core/nskbl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/core/nskbl.h -------------------------------------------------------------------------------- /core/second.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/core/second.c -------------------------------------------------------------------------------- /core/second.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/core/second.x -------------------------------------------------------------------------------- /create_vpk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/create_vpk.sh -------------------------------------------------------------------------------- /enso_ex-core-diagram-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/enso_ex-core-diagram-dark.png -------------------------------------------------------------------------------- /enso_ex-core-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/enso_ex-core-diagram.png -------------------------------------------------------------------------------- /installer/365_stubs/libSceModulemgrForKernel_367_stub.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/365_stubs/libSceModulemgrForKernel_367_stub.a -------------------------------------------------------------------------------- /installer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/CMakeLists.txt -------------------------------------------------------------------------------- /installer/res_int/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/res_int/bg.png -------------------------------------------------------------------------------- /installer/res_int/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/res_int/icon.png -------------------------------------------------------------------------------- /installer/res_int/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/res_int/startup.png -------------------------------------------------------------------------------- /installer/res_int/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/res_int/template.xml -------------------------------------------------------------------------------- /installer/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/src/crc32.c -------------------------------------------------------------------------------- /installer/src/enso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/src/enso.h -------------------------------------------------------------------------------- /installer/src/fatcheck.h: -------------------------------------------------------------------------------- 1 | #define FATCHECK 0x72e6f727 2 | -------------------------------------------------------------------------------- /installer/src/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/src/font.c -------------------------------------------------------------------------------- /installer/src/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/src/graphics.c -------------------------------------------------------------------------------- /installer/src/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/src/graphics.h -------------------------------------------------------------------------------- /installer/src/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/src/kernel.c -------------------------------------------------------------------------------- /installer/src/kernel2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/src/kernel2.c -------------------------------------------------------------------------------- /installer/src/kernel2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/src/kernel2.yml -------------------------------------------------------------------------------- /installer/src/kernel_exports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/src/kernel_exports.yml -------------------------------------------------------------------------------- /installer/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/src/main.c -------------------------------------------------------------------------------- /installer/src/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/src/user.c -------------------------------------------------------------------------------- /installer/src/user_exports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/src/user_exports.yml -------------------------------------------------------------------------------- /installer/src/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/installer/src/version.h.in -------------------------------------------------------------------------------- /plugins/culogo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/plugins/culogo/Makefile -------------------------------------------------------------------------------- /plugins/culogo/example_logo.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/plugins/culogo/example_logo.raw -------------------------------------------------------------------------------- /plugins/culogo/exports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/plugins/culogo/exports.yml -------------------------------------------------------------------------------- /plugins/culogo/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/plugins/culogo/kernel.c -------------------------------------------------------------------------------- /plugins/hencfg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/plugins/hencfg/Makefile -------------------------------------------------------------------------------- /plugins/hencfg/exports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/plugins/hencfg/exports.yml -------------------------------------------------------------------------------- /plugins/hencfg/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/plugins/hencfg/kernel.c -------------------------------------------------------------------------------- /plugins/hooking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/plugins/hooking.h -------------------------------------------------------------------------------- /plugins/loader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/plugins/loader/Makefile -------------------------------------------------------------------------------- /plugins/loader/example_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/plugins/loader/example_list.txt -------------------------------------------------------------------------------- /plugins/loader/exports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/plugins/loader/exports.yml -------------------------------------------------------------------------------- /plugins/loader/kernel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/plugins/loader/kernel.c -------------------------------------------------------------------------------- /plugins/plugins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/plugins/plugins.h -------------------------------------------------------------------------------- /recovery/external/enso_flash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/recovery/external/enso_flash/Makefile -------------------------------------------------------------------------------- /recovery/external/enso_flash/recovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/recovery/external/enso_flash/recovery.c -------------------------------------------------------------------------------- /recovery/external/enso_flash/recovery.e2xp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/recovery/external/enso_flash/recovery.e2xp -------------------------------------------------------------------------------- /recovery/external/enso_flash/recovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/recovery/external/enso_flash/recovery.h -------------------------------------------------------------------------------- /recovery/external/enso_flash/recovery.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/recovery/external/enso_flash/recovery.x -------------------------------------------------------------------------------- /recovery/external/gui-usb-mount/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/recovery/external/gui-usb-mount/README.md -------------------------------------------------------------------------------- /recovery/external/gui-usb-mount/files/boot_list.txt: -------------------------------------------------------------------------------- 1 | #EXL 2 | e2xrecovr.skprx 3 | -------------------------------------------------------------------------------- /recovery/external/gui-usb-mount/files/cmd.recovery: -------------------------------------------------------------------------------- 1 | D103 -------------------------------------------------------------------------------- /recovery/external/gui-usb-mount/files/cmp.recovery: -------------------------------------------------------------------------------- 1 | sdstor0:xmc-lp-ign-userext -------------------------------------------------------------------------------- /recovery/external/gui-usb-mount/files/psp2config.skprx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/recovery/external/gui-usb-mount/files/psp2config.skprx -------------------------------------------------------------------------------- /recovery/external/gui-usb-mount/files/rcvr_logo.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/recovery/external/gui-usb-mount/files/rcvr_logo.raw -------------------------------------------------------------------------------- /recovery/external/heartbeat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/recovery/external/heartbeat/Makefile -------------------------------------------------------------------------------- /recovery/external/heartbeat/recovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/recovery/external/heartbeat/recovery.c -------------------------------------------------------------------------------- /recovery/external/heartbeat/recovery.e2xr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/recovery/external/heartbeat/recovery.e2xr -------------------------------------------------------------------------------- /recovery/external/heartbeat/recovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/recovery/external/heartbeat/recovery.h -------------------------------------------------------------------------------- /recovery/external/heartbeat/recovery.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/recovery/external/heartbeat/recovery.x -------------------------------------------------------------------------------- /recovery/internal/default/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/recovery/internal/default/Makefile -------------------------------------------------------------------------------- /recovery/internal/default/blob/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/recovery/internal/default/blob/Makefile -------------------------------------------------------------------------------- /recovery/internal/default/blob/blob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/recovery/internal/default/blob/blob.c -------------------------------------------------------------------------------- /recovery/internal/default/bootstrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/enso_ex/HEAD/recovery/internal/default/bootstrap.c --------------------------------------------------------------------------------