├── .gitignore ├── .gitmodules ├── README.md ├── Vagrantfile ├── mox ├── create-sdimg.sh └── files │ ├── genbootscr │ ├── interfaces │ ├── mox-25-hostap.txt │ ├── mox-5-hostapd.txt │ ├── mox_defconfig │ ├── rc.local │ └── sd8997_uapsta.bin ├── omnia ├── create-medkit.sh └── files │ ├── fw_env.config │ ├── genbootscr │ └── interfaces └── vagrant └── vagrant_provision.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmshlvck/turris-debian/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmshlvck/turris-debian/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmshlvck/turris-debian/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmshlvck/turris-debian/HEAD/Vagrantfile -------------------------------------------------------------------------------- /mox/create-sdimg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmshlvck/turris-debian/HEAD/mox/create-sdimg.sh -------------------------------------------------------------------------------- /mox/files/genbootscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmshlvck/turris-debian/HEAD/mox/files/genbootscr -------------------------------------------------------------------------------- /mox/files/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmshlvck/turris-debian/HEAD/mox/files/interfaces -------------------------------------------------------------------------------- /mox/files/mox-25-hostap.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmshlvck/turris-debian/HEAD/mox/files/mox-25-hostap.txt -------------------------------------------------------------------------------- /mox/files/mox-5-hostapd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmshlvck/turris-debian/HEAD/mox/files/mox-5-hostapd.txt -------------------------------------------------------------------------------- /mox/files/mox_defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmshlvck/turris-debian/HEAD/mox/files/mox_defconfig -------------------------------------------------------------------------------- /mox/files/rc.local: -------------------------------------------------------------------------------- 1 | iw dev mlan0 interface add uap0 type __ap 2 | 3 | -------------------------------------------------------------------------------- /mox/files/sd8997_uapsta.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmshlvck/turris-debian/HEAD/mox/files/sd8997_uapsta.bin -------------------------------------------------------------------------------- /omnia/create-medkit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmshlvck/turris-debian/HEAD/omnia/create-medkit.sh -------------------------------------------------------------------------------- /omnia/files/fw_env.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmshlvck/turris-debian/HEAD/omnia/files/fw_env.config -------------------------------------------------------------------------------- /omnia/files/genbootscr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmshlvck/turris-debian/HEAD/omnia/files/genbootscr -------------------------------------------------------------------------------- /omnia/files/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmshlvck/turris-debian/HEAD/omnia/files/interfaces -------------------------------------------------------------------------------- /vagrant/vagrant_provision.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmshlvck/turris-debian/HEAD/vagrant/vagrant_provision.sh --------------------------------------------------------------------------------