├── .github └── FUNDING.yml ├── LICENSE ├── Makefile ├── README.md ├── cfgk ├── CMakeLists.txt ├── cfgk.h ├── main.c └── vdkernel.yml ├── cfgu ├── CMakeLists.txt ├── FatFormatProxy.h ├── system_settings.xml ├── user.c └── user.yml ├── create_vpk.sh ├── launcher ├── Makefile └── main.c ├── main ├── Archives.c ├── Archives.h ├── Makefile ├── crc32.c ├── crypt.h ├── font.c ├── graphics.c ├── graphics.h ├── head_bin.h ├── ioapi.c ├── ioapi.h ├── main.c ├── main.h ├── ops.c ├── promote.c ├── sha1.c ├── sha1.h ├── unzip.c └── unzip.h ├── res ├── bg.png ├── enso_360.eo ├── enso_365.eo ├── hen.png ├── icon0.png ├── icon1.png ├── imcunlock.self ├── imcunlock.skprx ├── mshell.self ├── naavls.skprx ├── pic0.png ├── template.xml ├── tiny_modoru.self ├── tiny_modoru.skprx ├── tiny_modoru.suprx ├── tv-cfg.txt ├── vs.sfo └── vshell.self └── screenshots ├── appdl.png ├── install_os_pup.png ├── main_menu.png └── misc.png /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [skgleba] 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/README.md -------------------------------------------------------------------------------- /cfgk/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/cfgk/CMakeLists.txt -------------------------------------------------------------------------------- /cfgk/cfgk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/cfgk/cfgk.h -------------------------------------------------------------------------------- /cfgk/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/cfgk/main.c -------------------------------------------------------------------------------- /cfgk/vdkernel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/cfgk/vdkernel.yml -------------------------------------------------------------------------------- /cfgu/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/cfgu/CMakeLists.txt -------------------------------------------------------------------------------- /cfgu/FatFormatProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/cfgu/FatFormatProxy.h -------------------------------------------------------------------------------- /cfgu/system_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/cfgu/system_settings.xml -------------------------------------------------------------------------------- /cfgu/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/cfgu/user.c -------------------------------------------------------------------------------- /cfgu/user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/cfgu/user.yml -------------------------------------------------------------------------------- /create_vpk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/create_vpk.sh -------------------------------------------------------------------------------- /launcher/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/launcher/Makefile -------------------------------------------------------------------------------- /launcher/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/launcher/main.c -------------------------------------------------------------------------------- /main/Archives.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/Archives.c -------------------------------------------------------------------------------- /main/Archives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/Archives.h -------------------------------------------------------------------------------- /main/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/Makefile -------------------------------------------------------------------------------- /main/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/crc32.c -------------------------------------------------------------------------------- /main/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/crypt.h -------------------------------------------------------------------------------- /main/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/font.c -------------------------------------------------------------------------------- /main/graphics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/graphics.c -------------------------------------------------------------------------------- /main/graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/graphics.h -------------------------------------------------------------------------------- /main/head_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/head_bin.h -------------------------------------------------------------------------------- /main/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/ioapi.c -------------------------------------------------------------------------------- /main/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/ioapi.h -------------------------------------------------------------------------------- /main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/main.c -------------------------------------------------------------------------------- /main/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/main.h -------------------------------------------------------------------------------- /main/ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/ops.c -------------------------------------------------------------------------------- /main/promote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/promote.c -------------------------------------------------------------------------------- /main/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/sha1.c -------------------------------------------------------------------------------- /main/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/sha1.h -------------------------------------------------------------------------------- /main/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/unzip.c -------------------------------------------------------------------------------- /main/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/main/unzip.h -------------------------------------------------------------------------------- /res/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/res/bg.png -------------------------------------------------------------------------------- /res/enso_360.eo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/res/enso_360.eo -------------------------------------------------------------------------------- /res/enso_365.eo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/res/enso_365.eo -------------------------------------------------------------------------------- /res/hen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/res/hen.png -------------------------------------------------------------------------------- /res/icon0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/res/icon0.png -------------------------------------------------------------------------------- /res/icon1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/res/icon1.png -------------------------------------------------------------------------------- /res/imcunlock.self: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/res/imcunlock.self -------------------------------------------------------------------------------- /res/imcunlock.skprx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/res/imcunlock.skprx -------------------------------------------------------------------------------- /res/mshell.self: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/res/mshell.self -------------------------------------------------------------------------------- /res/naavls.skprx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/res/naavls.skprx -------------------------------------------------------------------------------- /res/pic0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/res/pic0.png -------------------------------------------------------------------------------- /res/template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/res/template.xml -------------------------------------------------------------------------------- /res/tiny_modoru.self: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/res/tiny_modoru.self -------------------------------------------------------------------------------- /res/tiny_modoru.skprx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/res/tiny_modoru.skprx -------------------------------------------------------------------------------- /res/tiny_modoru.suprx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/res/tiny_modoru.suprx -------------------------------------------------------------------------------- /res/tv-cfg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/res/tv-cfg.txt -------------------------------------------------------------------------------- /res/vs.sfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/res/vs.sfo -------------------------------------------------------------------------------- /res/vshell.self: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/res/vshell.self -------------------------------------------------------------------------------- /screenshots/appdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/screenshots/appdl.png -------------------------------------------------------------------------------- /screenshots/install_os_pup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/screenshots/install_os_pup.png -------------------------------------------------------------------------------- /screenshots/main_menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/screenshots/main_menu.png -------------------------------------------------------------------------------- /screenshots/misc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SKGleba/VitaDeploy/HEAD/screenshots/misc.png --------------------------------------------------------------------------------