├── .gitignore ├── CMakeLists.txt ├── ImageBuilder.cmake ├── LICENSE ├── PackageBuilder.cmake ├── README.md ├── banner.in ├── clean-feed.sh ├── configs ├── buffalo-wzr-hp-ag300h │ ├── CMakeLists.txt │ └── files │ │ └── etc │ │ └── config │ │ └── network ├── buffalo-wzr-hp-g300nh │ ├── CMakeLists.txt │ └── files │ │ └── etc │ │ └── config │ │ └── network ├── mikrotik-rb411ah │ └── CMakeLists.txt ├── tp-link-wdr4300 │ ├── CMakeLists.txt │ └── files │ │ └── etc │ │ └── config │ │ └── network └── ubnt │ ├── CMakeLists.txt │ └── files │ └── etc │ └── config │ └── network ├── feeds.conf.in ├── files ├── etc │ ├── config │ │ ├── applications │ │ ├── dhcp │ │ ├── firewall │ │ ├── olsrd │ │ ├── system │ │ └── uhttpd │ ├── firewall.user │ ├── hotplug.d │ │ └── iface │ │ │ ├── 40-olsrd │ │ │ └── 90-thisnode │ ├── nodogsplash │ │ └── nodogsplash.conf │ ├── profile │ ├── rc.local │ ├── sysctl.conf │ └── sysupgrade.conf └── usr │ └── bin │ └── setupwizard ├── ipkg-multi-index.sh ├── opkg.conf.in ├── repositories.conf.local.in ├── repositories.conf.remote.in └── upgrade-builder.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ImageBuilder.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/ImageBuilder.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/LICENSE -------------------------------------------------------------------------------- /PackageBuilder.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/PackageBuilder.cmake -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/README.md -------------------------------------------------------------------------------- /banner.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/banner.in -------------------------------------------------------------------------------- /clean-feed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/clean-feed.sh -------------------------------------------------------------------------------- /configs/buffalo-wzr-hp-ag300h/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/configs/buffalo-wzr-hp-ag300h/CMakeLists.txt -------------------------------------------------------------------------------- /configs/buffalo-wzr-hp-ag300h/files/etc/config/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/configs/buffalo-wzr-hp-ag300h/files/etc/config/network -------------------------------------------------------------------------------- /configs/buffalo-wzr-hp-g300nh/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/configs/buffalo-wzr-hp-g300nh/CMakeLists.txt -------------------------------------------------------------------------------- /configs/buffalo-wzr-hp-g300nh/files/etc/config/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/configs/buffalo-wzr-hp-g300nh/files/etc/config/network -------------------------------------------------------------------------------- /configs/mikrotik-rb411ah/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/configs/mikrotik-rb411ah/CMakeLists.txt -------------------------------------------------------------------------------- /configs/tp-link-wdr4300/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/configs/tp-link-wdr4300/CMakeLists.txt -------------------------------------------------------------------------------- /configs/tp-link-wdr4300/files/etc/config/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/configs/tp-link-wdr4300/files/etc/config/network -------------------------------------------------------------------------------- /configs/ubnt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/configs/ubnt/CMakeLists.txt -------------------------------------------------------------------------------- /configs/ubnt/files/etc/config/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/configs/ubnt/files/etc/config/network -------------------------------------------------------------------------------- /feeds.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/feeds.conf.in -------------------------------------------------------------------------------- /files/etc/config/applications: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/files/etc/config/applications -------------------------------------------------------------------------------- /files/etc/config/dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/files/etc/config/dhcp -------------------------------------------------------------------------------- /files/etc/config/firewall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/files/etc/config/firewall -------------------------------------------------------------------------------- /files/etc/config/olsrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/files/etc/config/olsrd -------------------------------------------------------------------------------- /files/etc/config/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/files/etc/config/system -------------------------------------------------------------------------------- /files/etc/config/uhttpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/files/etc/config/uhttpd -------------------------------------------------------------------------------- /files/etc/firewall.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/files/etc/firewall.user -------------------------------------------------------------------------------- /files/etc/hotplug.d/iface/40-olsrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/files/etc/hotplug.d/iface/40-olsrd -------------------------------------------------------------------------------- /files/etc/hotplug.d/iface/90-thisnode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/files/etc/hotplug.d/iface/90-thisnode -------------------------------------------------------------------------------- /files/etc/nodogsplash/nodogsplash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/files/etc/nodogsplash/nodogsplash.conf -------------------------------------------------------------------------------- /files/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/files/etc/profile -------------------------------------------------------------------------------- /files/etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/files/etc/rc.local -------------------------------------------------------------------------------- /files/etc/sysctl.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/files/etc/sysctl.conf -------------------------------------------------------------------------------- /files/etc/sysupgrade.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/files/etc/sysupgrade.conf -------------------------------------------------------------------------------- /files/usr/bin/setupwizard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/files/usr/bin/setupwizard -------------------------------------------------------------------------------- /ipkg-multi-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/ipkg-multi-index.sh -------------------------------------------------------------------------------- /opkg.conf.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/opkg.conf.in -------------------------------------------------------------------------------- /repositories.conf.local.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/repositories.conf.local.in -------------------------------------------------------------------------------- /repositories.conf.remote.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/repositories.conf.remote.in -------------------------------------------------------------------------------- /upgrade-builder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentechinstitute/commotion-router/HEAD/upgrade-builder.sh --------------------------------------------------------------------------------