├── .github └── workflows │ └── build.yml ├── .gitignore ├── AUTHORS ├── CHANGELOG ├── Makefile ├── Makefile_lv2.mk ├── README ├── kboot.conf └── source ├── lv1 ├── cache.S ├── cache.h ├── ctype.c ├── ctype.h ├── elf_abi.h ├── main.c ├── main.h ├── processor.h ├── puff │ ├── puff.c │ └── puff.h ├── startup.S ├── string.c ├── string.h ├── time.c ├── time.h ├── types.h ├── vsprintf.c ├── vsprintf.h ├── xell-1f.lds ├── xell-1f_cygnos_demon.lds ├── xell-2f.lds ├── xell-2f_cygnos_demon.lds ├── xell-gggggg.lds ├── xell-gggggg_cygnos_demon.lds └── xenonsprs.h └── lv2 ├── asciiart.h ├── config.h ├── file.c ├── file.h ├── httpd ├── httpd.c ├── httpd.h ├── httpd_flash.c ├── httpd_flash.h ├── httpd_fuse.c ├── httpd_fuse.h ├── httpd_html.h ├── httpd_index.c ├── httpd_index.h ├── httpd_keyvault.c └── httpd_keyvault.h ├── kboot ├── kbootconf.c └── kbootconf.h ├── linux ├── device_tree_include.S ├── xenon.dtb └── xenon.dts ├── log.c ├── log.h ├── main.c ├── mount.c └── tftp ├── tftp.c └── tftp.h /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/AUTHORS -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile_lv2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/Makefile_lv2.mk -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/README -------------------------------------------------------------------------------- /kboot.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/kboot.conf -------------------------------------------------------------------------------- /source/lv1/cache.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/cache.S -------------------------------------------------------------------------------- /source/lv1/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/cache.h -------------------------------------------------------------------------------- /source/lv1/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/ctype.c -------------------------------------------------------------------------------- /source/lv1/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/ctype.h -------------------------------------------------------------------------------- /source/lv1/elf_abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/elf_abi.h -------------------------------------------------------------------------------- /source/lv1/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/main.c -------------------------------------------------------------------------------- /source/lv1/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/main.h -------------------------------------------------------------------------------- /source/lv1/processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/processor.h -------------------------------------------------------------------------------- /source/lv1/puff/puff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/puff/puff.c -------------------------------------------------------------------------------- /source/lv1/puff/puff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/puff/puff.h -------------------------------------------------------------------------------- /source/lv1/startup.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/startup.S -------------------------------------------------------------------------------- /source/lv1/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/string.c -------------------------------------------------------------------------------- /source/lv1/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/string.h -------------------------------------------------------------------------------- /source/lv1/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/time.c -------------------------------------------------------------------------------- /source/lv1/time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/time.h -------------------------------------------------------------------------------- /source/lv1/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/types.h -------------------------------------------------------------------------------- /source/lv1/vsprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/vsprintf.c -------------------------------------------------------------------------------- /source/lv1/vsprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/vsprintf.h -------------------------------------------------------------------------------- /source/lv1/xell-1f.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/xell-1f.lds -------------------------------------------------------------------------------- /source/lv1/xell-1f_cygnos_demon.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/xell-1f_cygnos_demon.lds -------------------------------------------------------------------------------- /source/lv1/xell-2f.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/xell-2f.lds -------------------------------------------------------------------------------- /source/lv1/xell-2f_cygnos_demon.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/xell-2f_cygnos_demon.lds -------------------------------------------------------------------------------- /source/lv1/xell-gggggg.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/xell-gggggg.lds -------------------------------------------------------------------------------- /source/lv1/xell-gggggg_cygnos_demon.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/xell-gggggg_cygnos_demon.lds -------------------------------------------------------------------------------- /source/lv1/xenonsprs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv1/xenonsprs.h -------------------------------------------------------------------------------- /source/lv2/asciiart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/asciiart.h -------------------------------------------------------------------------------- /source/lv2/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/config.h -------------------------------------------------------------------------------- /source/lv2/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/file.c -------------------------------------------------------------------------------- /source/lv2/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/file.h -------------------------------------------------------------------------------- /source/lv2/httpd/httpd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/httpd/httpd.c -------------------------------------------------------------------------------- /source/lv2/httpd/httpd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/httpd/httpd.h -------------------------------------------------------------------------------- /source/lv2/httpd/httpd_flash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/httpd/httpd_flash.c -------------------------------------------------------------------------------- /source/lv2/httpd/httpd_flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/httpd/httpd_flash.h -------------------------------------------------------------------------------- /source/lv2/httpd/httpd_fuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/httpd/httpd_fuse.c -------------------------------------------------------------------------------- /source/lv2/httpd/httpd_fuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/httpd/httpd_fuse.h -------------------------------------------------------------------------------- /source/lv2/httpd/httpd_html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/httpd/httpd_html.h -------------------------------------------------------------------------------- /source/lv2/httpd/httpd_index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/httpd/httpd_index.c -------------------------------------------------------------------------------- /source/lv2/httpd/httpd_index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/httpd/httpd_index.h -------------------------------------------------------------------------------- /source/lv2/httpd/httpd_keyvault.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/httpd/httpd_keyvault.c -------------------------------------------------------------------------------- /source/lv2/httpd/httpd_keyvault.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/httpd/httpd_keyvault.h -------------------------------------------------------------------------------- /source/lv2/kboot/kbootconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/kboot/kbootconf.c -------------------------------------------------------------------------------- /source/lv2/kboot/kbootconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/kboot/kbootconf.h -------------------------------------------------------------------------------- /source/lv2/linux/device_tree_include.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/linux/device_tree_include.S -------------------------------------------------------------------------------- /source/lv2/linux/xenon.dtb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/linux/xenon.dtb -------------------------------------------------------------------------------- /source/lv2/linux/xenon.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/linux/xenon.dts -------------------------------------------------------------------------------- /source/lv2/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/log.c -------------------------------------------------------------------------------- /source/lv2/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/log.h -------------------------------------------------------------------------------- /source/lv2/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/main.c -------------------------------------------------------------------------------- /source/lv2/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/mount.c -------------------------------------------------------------------------------- /source/lv2/tftp/tftp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/tftp/tftp.c -------------------------------------------------------------------------------- /source/lv2/tftp/tftp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Free60Project/xell-reloaded/HEAD/source/lv2/tftp/tftp.h --------------------------------------------------------------------------------