├── .cirrus.yml ├── .gitignore ├── BUILD.md ├── INSTALL.md ├── LICENSE ├── Makefile ├── README.md ├── ci └── ci.sh ├── conf ├── authorized_keys.sample ├── boot.config.sample ├── hosts.sample ├── interfaces.conf.sample ├── loader.conf.sample ├── rc.conf.sample ├── rc.local.sample ├── resolv.conf.sample └── ttys.sample ├── mini ├── Makefile ├── README.md ├── conf │ ├── .cshrc.sample │ ├── .profile.sample │ ├── hosts.sample │ ├── loader.conf.sample │ ├── rc.local │ ├── rc.sample │ └── ttys.sample └── files │ ├── basedirs │ ├── basefiles │ ├── instdirs │ ├── instfiles │ ├── localfiles │ └── rescuelinks ├── scripts ├── interfaces ├── mdinit ├── mfsbsd └── packages └── tools ├── destroygeom ├── doFS.sh ├── do_gpt.sh ├── kern_exclude ├── motd ├── motd.se ├── packages-mini.sample ├── packages.sample ├── prunelist ├── prunelist.9 ├── roothack ├── Makefile └── roothack.c └── zfsinstall /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/BUILD.md -------------------------------------------------------------------------------- /INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/INSTALL.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/README.md -------------------------------------------------------------------------------- /ci/ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/ci/ci.sh -------------------------------------------------------------------------------- /conf/authorized_keys.sample: -------------------------------------------------------------------------------- 1 | # $Id$ 2 | # Public SSH key(s) for root authorization 3 | -------------------------------------------------------------------------------- /conf/boot.config.sample: -------------------------------------------------------------------------------- 1 | -D 2 | -------------------------------------------------------------------------------- /conf/hosts.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/conf/hosts.sample -------------------------------------------------------------------------------- /conf/interfaces.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/conf/interfaces.conf.sample -------------------------------------------------------------------------------- /conf/loader.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/conf/loader.conf.sample -------------------------------------------------------------------------------- /conf/rc.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/conf/rc.conf.sample -------------------------------------------------------------------------------- /conf/rc.local.sample: -------------------------------------------------------------------------------- 1 | # sample rc.local 2 | # add your code below -------------------------------------------------------------------------------- /conf/resolv.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/conf/resolv.conf.sample -------------------------------------------------------------------------------- /conf/ttys.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/conf/ttys.sample -------------------------------------------------------------------------------- /mini/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/mini/Makefile -------------------------------------------------------------------------------- /mini/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/mini/README.md -------------------------------------------------------------------------------- /mini/conf/.cshrc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/mini/conf/.cshrc.sample -------------------------------------------------------------------------------- /mini/conf/.profile.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/mini/conf/.profile.sample -------------------------------------------------------------------------------- /mini/conf/hosts.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/mini/conf/hosts.sample -------------------------------------------------------------------------------- /mini/conf/loader.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/mini/conf/loader.conf.sample -------------------------------------------------------------------------------- /mini/conf/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/mini/conf/rc.local -------------------------------------------------------------------------------- /mini/conf/rc.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/mini/conf/rc.sample -------------------------------------------------------------------------------- /mini/conf/ttys.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/mini/conf/ttys.sample -------------------------------------------------------------------------------- /mini/files/basedirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/mini/files/basedirs -------------------------------------------------------------------------------- /mini/files/basefiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/mini/files/basefiles -------------------------------------------------------------------------------- /mini/files/instdirs: -------------------------------------------------------------------------------- 1 | etc/pam.d 2 | etc/security 3 | -------------------------------------------------------------------------------- /mini/files/instfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/mini/files/instfiles -------------------------------------------------------------------------------- /mini/files/localfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/mini/files/localfiles -------------------------------------------------------------------------------- /mini/files/rescuelinks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/mini/files/rescuelinks -------------------------------------------------------------------------------- /scripts/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/scripts/interfaces -------------------------------------------------------------------------------- /scripts/mdinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/scripts/mdinit -------------------------------------------------------------------------------- /scripts/mfsbsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/scripts/mfsbsd -------------------------------------------------------------------------------- /scripts/packages: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/scripts/packages -------------------------------------------------------------------------------- /tools/destroygeom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/tools/destroygeom -------------------------------------------------------------------------------- /tools/doFS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/tools/doFS.sh -------------------------------------------------------------------------------- /tools/do_gpt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/tools/do_gpt.sh -------------------------------------------------------------------------------- /tools/kern_exclude: -------------------------------------------------------------------------------- 1 | kernel.debug 2 | *.symbols 3 | *.ko 4 | -------------------------------------------------------------------------------- /tools/motd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/tools/motd -------------------------------------------------------------------------------- /tools/motd.se: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/tools/motd.se -------------------------------------------------------------------------------- /tools/packages-mini.sample: -------------------------------------------------------------------------------- 1 | dropbear 2 | -------------------------------------------------------------------------------- /tools/packages.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/tools/packages.sample -------------------------------------------------------------------------------- /tools/prunelist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/tools/prunelist -------------------------------------------------------------------------------- /tools/prunelist.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/tools/prunelist.9 -------------------------------------------------------------------------------- /tools/roothack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/tools/roothack/Makefile -------------------------------------------------------------------------------- /tools/roothack/roothack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/tools/roothack/roothack.c -------------------------------------------------------------------------------- /tools/zfsinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmatuska/mfsbsd/HEAD/tools/zfsinstall --------------------------------------------------------------------------------