├── .github └── workflows │ └── ci.yml ├── .gitignore ├── BUILD.md ├── LICENSE.md ├── Makefile ├── README.md ├── config └── default │ ├── network │ ├── openwrt_kmod_packages_add │ ├── openwrt_packages_add │ ├── openwrt_packages_remove │ ├── openwrt_target_packages_add │ └── system └── isolinux ├── boot.txt ├── isolinux.bin ├── isolinux.cfg └── ldlinux.c32 /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfslinux/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfslinux/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfslinux/HEAD/BUILD.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfslinux/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfslinux/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfslinux/HEAD/README.md -------------------------------------------------------------------------------- /config/default/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfslinux/HEAD/config/default/network -------------------------------------------------------------------------------- /config/default/openwrt_kmod_packages_add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfslinux/HEAD/config/default/openwrt_kmod_packages_add -------------------------------------------------------------------------------- /config/default/openwrt_packages_add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfslinux/HEAD/config/default/openwrt_packages_add -------------------------------------------------------------------------------- /config/default/openwrt_packages_remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfslinux/HEAD/config/default/openwrt_packages_remove -------------------------------------------------------------------------------- /config/default/openwrt_target_packages_add: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfslinux/HEAD/config/default/openwrt_target_packages_add -------------------------------------------------------------------------------- /config/default/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfslinux/HEAD/config/default/system -------------------------------------------------------------------------------- /isolinux/boot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfslinux/HEAD/isolinux/boot.txt -------------------------------------------------------------------------------- /isolinux/isolinux.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfslinux/HEAD/isolinux/isolinux.bin -------------------------------------------------------------------------------- /isolinux/isolinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfslinux/HEAD/isolinux/isolinux.cfg -------------------------------------------------------------------------------- /isolinux/ldlinux.c32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfslinux/HEAD/isolinux/ldlinux.c32 --------------------------------------------------------------------------------