├── .editorconfig ├── .gitignore ├── License.md ├── MinCLR ├── .editorconfig ├── BuildAllTargets.cmd ├── BuildAllTargets.proj ├── Directory.Build.props ├── MinCLR.sln └── ReadMe.md ├── MinInit ├── .editorconfig ├── MinInit.c ├── ReadMe.md └── build.sh ├── Platform ├── Linux │ ├── Packages │ │ ├── .gitignore │ │ ├── busybox-1.36.1-r15.apk │ │ ├── ca-certificates-bundle-20230506-r0.apk │ │ ├── dhcpcd-10.0.5-r0.apk │ │ ├── htop-3.2.2-r1.apk │ │ ├── icu-data-full-74.1-r0.apk │ │ ├── icu-libs-74.1-r0.apk │ │ ├── libcrypto3-3.1.4-r2.apk │ │ ├── libgcc-13.2.1_git20231014-r0.apk │ │ ├── libncursesw-6.4_p20231125-r0.apk │ │ ├── libssl3-3.1.4-r2.apk │ │ ├── libstdc++-13.2.1_git20231014-r0.apk │ │ ├── musl-1.2.4_git20230717-r4.apk │ │ ├── nano-7.2-r1.apk │ │ ├── ncurses-terminfo-base-6.4_p20231125-r0.apk │ │ ├── tzdata-2023c-r1.apk │ │ └── zlib-1.3-r2.apk │ ├── ReadMe.md │ └── Root │ │ ├── etc │ │ ├── init.d │ │ │ └── rcS │ │ ├── passwd │ │ └── profile │ │ └── opt │ │ └── powershell │ │ └── pwsh ├── RaySoul │ └── ReadMe.md └── ReadMe.md └── ReadMe.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/.gitignore -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/License.md -------------------------------------------------------------------------------- /MinCLR/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/MinCLR/.editorconfig -------------------------------------------------------------------------------- /MinCLR/BuildAllTargets.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/MinCLR/BuildAllTargets.cmd -------------------------------------------------------------------------------- /MinCLR/BuildAllTargets.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/MinCLR/BuildAllTargets.proj -------------------------------------------------------------------------------- /MinCLR/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/MinCLR/Directory.Build.props -------------------------------------------------------------------------------- /MinCLR/MinCLR.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/MinCLR/MinCLR.sln -------------------------------------------------------------------------------- /MinCLR/ReadMe.md: -------------------------------------------------------------------------------- 1 | # MinCLR Infrastructure 2 | 3 | Work In Progress. 4 | -------------------------------------------------------------------------------- /MinInit/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/MinInit/.editorconfig -------------------------------------------------------------------------------- /MinInit/MinInit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/MinInit/MinInit.c -------------------------------------------------------------------------------- /MinInit/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/MinInit/ReadMe.md -------------------------------------------------------------------------------- /MinInit/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/MinInit/build.sh -------------------------------------------------------------------------------- /Platform/Linux/Packages/.gitignore: -------------------------------------------------------------------------------- 1 | !* -------------------------------------------------------------------------------- /Platform/Linux/Packages/busybox-1.36.1-r15.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Packages/busybox-1.36.1-r15.apk -------------------------------------------------------------------------------- /Platform/Linux/Packages/ca-certificates-bundle-20230506-r0.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Packages/ca-certificates-bundle-20230506-r0.apk -------------------------------------------------------------------------------- /Platform/Linux/Packages/dhcpcd-10.0.5-r0.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Packages/dhcpcd-10.0.5-r0.apk -------------------------------------------------------------------------------- /Platform/Linux/Packages/htop-3.2.2-r1.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Packages/htop-3.2.2-r1.apk -------------------------------------------------------------------------------- /Platform/Linux/Packages/icu-data-full-74.1-r0.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Packages/icu-data-full-74.1-r0.apk -------------------------------------------------------------------------------- /Platform/Linux/Packages/icu-libs-74.1-r0.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Packages/icu-libs-74.1-r0.apk -------------------------------------------------------------------------------- /Platform/Linux/Packages/libcrypto3-3.1.4-r2.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Packages/libcrypto3-3.1.4-r2.apk -------------------------------------------------------------------------------- /Platform/Linux/Packages/libgcc-13.2.1_git20231014-r0.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Packages/libgcc-13.2.1_git20231014-r0.apk -------------------------------------------------------------------------------- /Platform/Linux/Packages/libncursesw-6.4_p20231125-r0.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Packages/libncursesw-6.4_p20231125-r0.apk -------------------------------------------------------------------------------- /Platform/Linux/Packages/libssl3-3.1.4-r2.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Packages/libssl3-3.1.4-r2.apk -------------------------------------------------------------------------------- /Platform/Linux/Packages/libstdc++-13.2.1_git20231014-r0.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Packages/libstdc++-13.2.1_git20231014-r0.apk -------------------------------------------------------------------------------- /Platform/Linux/Packages/musl-1.2.4_git20230717-r4.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Packages/musl-1.2.4_git20230717-r4.apk -------------------------------------------------------------------------------- /Platform/Linux/Packages/nano-7.2-r1.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Packages/nano-7.2-r1.apk -------------------------------------------------------------------------------- /Platform/Linux/Packages/ncurses-terminfo-base-6.4_p20231125-r0.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Packages/ncurses-terminfo-base-6.4_p20231125-r0.apk -------------------------------------------------------------------------------- /Platform/Linux/Packages/tzdata-2023c-r1.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Packages/tzdata-2023c-r1.apk -------------------------------------------------------------------------------- /Platform/Linux/Packages/zlib-1.3-r2.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Packages/zlib-1.3-r2.apk -------------------------------------------------------------------------------- /Platform/Linux/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/ReadMe.md -------------------------------------------------------------------------------- /Platform/Linux/Root/etc/init.d/rcS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Root/etc/init.d/rcS -------------------------------------------------------------------------------- /Platform/Linux/Root/etc/passwd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Platform/Linux/Root/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Root/etc/profile -------------------------------------------------------------------------------- /Platform/Linux/Root/opt/powershell/pwsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/Linux/Root/opt/powershell/pwsh -------------------------------------------------------------------------------- /Platform/RaySoul/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/RaySoul/ReadMe.md -------------------------------------------------------------------------------- /Platform/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/Platform/ReadMe.md -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SherryPlatform/MinCLR/HEAD/ReadMe.md --------------------------------------------------------------------------------