├── .github └── workflows │ └── build.yaml ├── .gitignore ├── LICENSE ├── README.md ├── chroot_build.sh ├── patches └── libfuse │ └── mount.c.diff └── src └── runtime ├── Makefile ├── data_sections.ld ├── runtime.c └── version /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/static-tools/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/static-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/static-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/static-tools/HEAD/README.md -------------------------------------------------------------------------------- /chroot_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/static-tools/HEAD/chroot_build.sh -------------------------------------------------------------------------------- /patches/libfuse/mount.c.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/static-tools/HEAD/patches/libfuse/mount.c.diff -------------------------------------------------------------------------------- /src/runtime/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/static-tools/HEAD/src/runtime/Makefile -------------------------------------------------------------------------------- /src/runtime/data_sections.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/static-tools/HEAD/src/runtime/data_sections.ld -------------------------------------------------------------------------------- /src/runtime/runtime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/probonopd/static-tools/HEAD/src/runtime/runtime.c -------------------------------------------------------------------------------- /src/runtime/version: -------------------------------------------------------------------------------- 1 | UNSUPPORTED_LOCAL_DEVELOPER_BUILD 2 | --------------------------------------------------------------------------------