├── .config.IoT ├── .config.fxs ├── .gitignore ├── INSTALL ├── README.md ├── files-IoT ├── bin │ ├── generate-extension.sh │ ├── get-reg-status.sh │ ├── rssi.sh │ ├── savedhcp.sh │ ├── setdhcpsubnet.sh │ └── testgw.sh ├── etc │ ├── avahi │ │ └── services │ │ │ └── arduino.service │ ├── banner │ ├── config │ │ ├── batman-adv │ │ ├── dhcp │ │ ├── firewall │ │ ├── fstab │ │ ├── network │ │ ├── secn │ │ ├── system │ │ ├── ucitrack │ │ ├── uhttpd │ │ └── wireless │ ├── init.d │ │ ├── asterisk │ │ ├── boot │ │ ├── chk-passwd │ │ ├── config_secn-2 │ │ ├── generate-lastoctet-extension │ │ ├── network │ │ ├── rename-wifi-ap-ssid │ │ ├── set-mesh-gw-mode.sh │ │ └── setdate │ ├── opkg.conf │ ├── passwd │ ├── profile │ ├── rc.d │ │ ├── K98boot │ │ ├── S10boot │ │ ├── S15vt_setdate │ │ ├── S18rename-wifi-ap-ssid │ │ ├── S40vt_generate-lastoctet-extension │ │ ├── S49vt_chk-passwd │ │ ├── S98vt_20_set-mesh-gw-mode.sh │ │ ├── S98vt_90_config_secn-2 │ │ └── S99asterisk │ ├── secn_version │ └── shadow ├── lib │ └── batman-adv │ │ └── config.sh ├── usr │ ├── bin │ │ ├── blink-start │ │ ├── blink-stop │ │ ├── check_net_status │ │ ├── config_secn │ │ ├── kill-bridge │ │ └── run-bridge │ └── lib │ │ └── python2.7 │ │ └── bridge │ │ ├── contextlib.py │ │ ├── termios.so │ │ └── tty.py └── www │ ├── cgi-bin │ └── .htpasswd │ ├── index.html │ └── lib │ ├── checkip.js │ ├── checkip.js.bak │ ├── configstyle.css │ ├── jquery-latest.js │ ├── jquery.validate.js │ └── tabs.js ├── files-fxs ├── bin │ ├── generate-extension.sh │ ├── get-reg-status.sh │ ├── rssi.sh │ ├── savedhcp.sh │ ├── setdhcpsubnet.sh │ └── testgw.sh ├── etc │ ├── asterisk │ │ ├── asterisk.conf │ │ ├── chan_dahdi.conf │ │ ├── extensions.conf │ │ ├── features.conf │ │ ├── iax.conf │ │ ├── indications.conf │ │ ├── lastoctet.extensions.conf │ │ ├── logger.conf │ │ ├── manager.conf │ │ ├── modules.conf │ │ ├── rtp.conf │ │ ├── scripts │ │ │ └── readfile.sh │ │ ├── sip.conf │ │ └── sip_notify.conf │ ├── banner │ ├── config │ │ ├── batman-adv │ │ ├── dhcp │ │ ├── firewall │ │ ├── fstab │ │ ├── network │ │ ├── secn │ │ ├── system │ │ ├── ucitrack │ │ ├── uhttpd │ │ └── wireless │ ├── init.d │ │ ├── asterisk │ │ ├── boot │ │ ├── chk-passwd │ │ ├── config_secn-2 │ │ ├── dragino2-si3217x │ │ ├── generate-lastoctet-extension │ │ ├── network │ │ ├── rename-wifi-ap-ssid │ │ ├── set-mesh-gw-mode.sh │ │ └── setdate │ ├── opkg.conf │ ├── passwd │ ├── profile │ ├── rc.d │ │ ├── K98boot │ │ ├── S10boot │ │ ├── S15vt_setdate │ │ ├── S18rename-wifi-ap-ssid │ │ ├── S40vt_generate-lastoctet-extension │ │ ├── S49vt_chk-passwd │ │ ├── S61dragino2-si3217x │ │ ├── S98vt_20_set-mesh-gw-mode.sh │ │ ├── S98vt_90_config_secn-2 │ │ └── S99asterisk │ └── shadow ├── lib │ └── batman-adv │ │ └── config.sh ├── usr │ ├── bin │ │ ├── blink-start │ │ ├── blink-stop │ │ ├── check_net_status │ │ ├── config_secn │ │ ├── kill-bridge │ │ └── run-bridge │ └── lib │ │ ├── asterisk │ │ ├── modules │ │ │ └── chan_dahdi.so │ │ └── sounds │ │ │ ├── CREDITS-asterisk-core-en-1.4.7 │ │ │ ├── address-conflict.gsm │ │ │ ├── beep.gsm │ │ │ ├── beeperr.gsm │ │ │ ├── completed-restart.gsm │ │ │ ├── confirm-asterisk-restart.gsm │ │ │ ├── confirm-reset.gsm │ │ │ ├── digits │ │ │ ├── 0.gsm │ │ │ ├── 1.gsm │ │ │ ├── 10.gsm │ │ │ ├── 11.gsm │ │ │ ├── 12.gsm │ │ │ ├── 13.gsm │ │ │ ├── 14.gsm │ │ │ ├── 15.gsm │ │ │ ├── 16.gsm │ │ │ ├── 17.gsm │ │ │ ├── 18.gsm │ │ │ ├── 19.gsm │ │ │ ├── 2.gsm │ │ │ ├── 20.gsm │ │ │ ├── 3.gsm │ │ │ ├── 30.gsm │ │ │ ├── 4.gsm │ │ │ ├── 40.gsm │ │ │ ├── 5.gsm │ │ │ ├── 50.gsm │ │ │ ├── 6.gsm │ │ │ ├── 60.gsm │ │ │ ├── 7.gsm │ │ │ ├── 70.gsm │ │ │ ├── 8.gsm │ │ │ ├── 80.gsm │ │ │ ├── 9.gsm │ │ │ ├── 90.gsm │ │ │ ├── a-m.gsm │ │ │ ├── at.gsm │ │ │ ├── hundred.gsm │ │ │ ├── million.gsm │ │ │ ├── minus.gsm │ │ │ ├── oh.gsm │ │ │ ├── pound.gsm │ │ │ ├── star.gsm │ │ │ └── thousand.gsm │ │ │ ├── echo-test.gsm │ │ │ ├── enter-ip-addr.gsm │ │ │ ├── enter-ip.gsm │ │ │ ├── enter-ivr-pin.gsm │ │ │ ├── enter-last-octet.gsm │ │ │ ├── enter-passcode.gsm │ │ │ ├── enter-password.gsm │ │ │ ├── enter-pin.gsm │ │ │ ├── enter-pinnum.gsm │ │ │ ├── enter-wifi-channel.gsm │ │ │ ├── fail.gsm │ │ │ ├── letters │ │ │ ├── a.gsm │ │ │ ├── b.gsm │ │ │ ├── c.gsm │ │ │ ├── d.gsm │ │ │ ├── dot.gsm │ │ │ ├── e.gsm │ │ │ └── f.gsm │ │ │ ├── neighbor.gsm │ │ │ ├── nexthop.gsm │ │ │ ├── privacy-thankyou.gsm │ │ │ ├── read-ath0-ip.gsm │ │ │ ├── read-eth0-ip.gsm │ │ │ ├── rssi.gsm │ │ │ ├── seconds.gsm │ │ │ ├── set-dhcp-mode.gsm │ │ │ ├── set-gateway.gsm │ │ │ ├── set-gw-mode.gsm │ │ │ ├── set-webb-mode.gsm │ │ │ ├── short-rssi.gsm │ │ │ ├── silence │ │ │ ├── 1.gsm │ │ │ ├── 2.gsm │ │ │ ├── 3.gsm │ │ │ ├── 4.gsm │ │ │ ├── 5.gsm │ │ │ └── 6.gsm │ │ │ └── success.gsm │ │ └── python2.7 │ │ └── bridge │ │ ├── contextlib.py │ │ ├── termios.so │ │ └── tty.py └── www │ ├── cgi-bin │ └── .htpasswd │ ├── index.html │ └── lib │ ├── checkip.js │ ├── checkip.js.bak │ ├── configstyle.css │ ├── jquery-latest.js │ ├── jquery.validate.js │ └── tabs.js ├── package ├── avrdude │ ├── Makefile │ ├── files │ │ └── avrdude.conf │ └── patches │ │ └── silent_bitbang_cmd.patch ├── cpu-mcu-bridge │ └── Makefile ├── ddns-scripts │ ├── Makefile │ ├── config │ │ └── ddns.init │ └── files │ │ ├── etc │ │ ├── config │ │ │ └── ddns │ │ └── hotplug.d │ │ │ └── iface │ │ │ └── 25-ddns │ │ └── usr │ │ └── lib │ │ └── ddns │ │ ├── dynamic_dns_functions.sh │ │ ├── dynamic_dns_updater.sh │ │ ├── services │ │ └── url_escape.sed ├── dragino2 │ ├── LICENSE │ ├── Makefile │ └── files │ │ ├── etc │ │ └── init.d │ │ │ └── dragino.init │ │ └── usr │ │ ├── bin │ │ ├── check_net_status │ │ └── set_uart_console │ │ └── lib │ │ └── lua │ │ └── dragino │ │ ├── iot │ │ ├── cumulocity.lua │ │ ├── xively.lua │ │ └── yeelink.lua │ │ ├── uart_routing.lua │ │ └── utility.lua ├── helloworld │ ├── Makefile │ └── src │ │ ├── Makefile │ │ └── helloworld.c ├── libusb-compat │ └── Makefile ├── luci-0.11 │ ├── .buildpath │ ├── .cproject │ ├── .gitignore │ ├── .project │ ├── INSTALL │ ├── LICENSE │ ├── Makefile │ ├── NOTICE │ ├── THANKYOU │ ├── applications │ │ ├── freifunk-community │ │ │ └── Makefile │ │ ├── luci-ahcp │ │ │ ├── Makefile │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── ahcp.lua │ │ │ │ ├── model │ │ │ │ │ └── cbi │ │ │ │ │ │ └── ahcp.lua │ │ │ │ └── view │ │ │ │ │ ├── admin_status │ │ │ │ │ └── index │ │ │ │ │ │ └── ahcp.htm │ │ │ │ │ └── ahcp_status.htm │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-ahcp │ │ ├── luci-asterisk │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ ├── luasrc │ │ │ │ ├── asterisk.lua │ │ │ │ ├── asterisk │ │ │ │ │ └── cc_idd.lua │ │ │ │ ├── controller │ │ │ │ │ └── asterisk.lua │ │ │ │ ├── model │ │ │ │ │ └── cbi │ │ │ │ │ │ ├── asterisk-dialplans.lua │ │ │ │ │ │ ├── asterisk-iax-connections.lua │ │ │ │ │ │ ├── asterisk-meetme.lua │ │ │ │ │ │ ├── asterisk-mod-app.lua │ │ │ │ │ │ ├── asterisk-mod-cdr.lua │ │ │ │ │ │ ├── asterisk-mod-chan.lua │ │ │ │ │ │ ├── asterisk-mod-codec.lua │ │ │ │ │ │ ├── asterisk-mod-format.lua │ │ │ │ │ │ ├── asterisk-mod-func.lua │ │ │ │ │ │ ├── asterisk-mod-pbx.lua │ │ │ │ │ │ ├── asterisk-mod-res-feature.lua │ │ │ │ │ │ ├── asterisk-mod-res.lua │ │ │ │ │ │ ├── asterisk-sip-connections.lua │ │ │ │ │ │ ├── asterisk-voice.lua │ │ │ │ │ │ ├── asterisk.lua │ │ │ │ │ │ └── asterisk │ │ │ │ │ │ ├── dialplan_out.lua │ │ │ │ │ │ ├── dialplans.lua │ │ │ │ │ │ ├── dialzones.lua │ │ │ │ │ │ ├── meetme.lua │ │ │ │ │ │ ├── meetme_settings.lua │ │ │ │ │ │ ├── phone_sip.lua │ │ │ │ │ │ ├── phones.lua │ │ │ │ │ │ ├── trunk_sip.lua │ │ │ │ │ │ ├── trunks.lua │ │ │ │ │ │ ├── voicemail.lua │ │ │ │ │ │ └── voicemail_settings.lua │ │ │ │ └── view │ │ │ │ │ └── asterisk │ │ │ │ │ ├── cbi │ │ │ │ │ └── cell.htm │ │ │ │ │ ├── dialplans.htm │ │ │ │ │ └── dialzones.htm │ │ │ └── root │ │ │ │ └── etc │ │ │ │ ├── config │ │ │ │ └── asterisk │ │ │ │ └── uci-defaults │ │ │ │ └── luci-asterisk │ │ ├── luci-commands │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── commands.lua │ │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── commands.lua │ │ │ │ └── view │ │ │ │ └── commands.htm │ │ ├── luci-coovachilli │ │ │ ├── Makefile │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── coovachilli.lua │ │ │ │ └── model │ │ │ │ │ └── cbi │ │ │ │ │ ├── coovachilli.lua │ │ │ │ │ ├── coovachilli_auth.lua │ │ │ │ │ ├── coovachilli_network.lua │ │ │ │ │ └── coovachilli_radius.lua │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── config │ │ │ │ └── coovachilli │ │ ├── luci-ddns │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── ddns.lua │ │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── ddns │ │ │ │ └── ddns.lua │ │ ├── luci-diag-core │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── luci_diag.lua │ │ │ │ └── view │ │ │ │ └── diag │ │ │ │ ├── index.htm │ │ │ │ └── network_config_index.htm │ │ ├── luci-diag-devinfo │ │ │ ├── Makefile │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── luci_diag │ │ │ │ │ │ ├── devinfo_common.lua │ │ │ │ │ │ ├── luci_diag_devinfo.lua │ │ │ │ │ │ ├── netdiscover_common.lua │ │ │ │ │ │ └── smap_common.lua │ │ │ │ ├── model │ │ │ │ │ └── cbi │ │ │ │ │ │ └── luci_diag │ │ │ │ │ │ ├── mactodevinfo.lua │ │ │ │ │ │ ├── netdiscover_devinfo.lua │ │ │ │ │ │ ├── netdiscover_devinfo_config.lua │ │ │ │ │ │ ├── netdiscover_devinfo_config_mini.lua │ │ │ │ │ │ ├── netdiscover_devinfo_mini.lua │ │ │ │ │ │ ├── smap_devinfo.lua │ │ │ │ │ │ ├── smap_devinfo_config.lua │ │ │ │ │ │ ├── smap_devinfo_config_mini.lua │ │ │ │ │ │ └── smap_devinfo_mini.lua │ │ │ │ └── view │ │ │ │ │ └── diag │ │ │ │ │ ├── smapsection.htm │ │ │ │ │ └── smapvalue.htm │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── config │ │ │ │ └── luci_devinfo │ │ ├── luci-firewall │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── firewall.lua │ │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── firewall │ │ │ │ │ ├── custom.lua │ │ │ │ │ ├── forward-details.lua │ │ │ │ │ ├── forwards.lua │ │ │ │ │ ├── rule-details.lua │ │ │ │ │ ├── rules.lua │ │ │ │ │ ├── zone-details.lua │ │ │ │ │ └── zones.lua │ │ │ │ ├── tools │ │ │ │ └── firewall.lua │ │ │ │ └── view │ │ │ │ └── firewall │ │ │ │ ├── cbi_addforward.htm │ │ │ │ ├── cbi_addrule.htm │ │ │ │ └── cbi_addsnat.htm │ │ ├── luci-freifunk-diagnostics │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── freifunk │ │ │ │ │ │ └── diag.lua │ │ │ │ └── view │ │ │ │ │ └── freifunk │ │ │ │ │ └── diagnostics.htm │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-freifunk-diagnostics │ │ ├── luci-freifunk-policyrouting │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── freifunk │ │ │ │ │ └── policy-routing.lua │ │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── freifunk │ │ │ │ └── policyrouting.lua │ │ ├── luci-freifunk-widgets │ │ │ ├── Makefile │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── freifunk │ │ │ │ │ │ └── widgets.lua │ │ │ │ ├── model │ │ │ │ │ └── cbi │ │ │ │ │ │ └── freifunk │ │ │ │ │ │ └── widgets │ │ │ │ │ │ ├── heightwidth.lua │ │ │ │ │ │ ├── html.lua │ │ │ │ │ │ ├── iframe.lua │ │ │ │ │ │ ├── rssfeed.lua │ │ │ │ │ │ ├── search.lua │ │ │ │ │ │ ├── widget.lua │ │ │ │ │ │ └── widgets_overview.lua │ │ │ │ └── view │ │ │ │ │ └── freifunk │ │ │ │ │ └── widgets │ │ │ │ │ ├── clear │ │ │ │ │ └── main.htm │ │ │ │ │ ├── html │ │ │ │ │ └── main.htm │ │ │ │ │ ├── iframe │ │ │ │ │ └── main.htm │ │ │ │ │ ├── rssfeed │ │ │ │ │ └── main.htm │ │ │ │ │ └── search │ │ │ │ │ └── main.htm │ │ │ └── root │ │ │ │ ├── etc │ │ │ │ └── config │ │ │ │ │ └── freifunk-widgets │ │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── keep.d │ │ │ │ └── freifunk-widgets │ │ ├── luci-hd-idle │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── hd_idle.lua │ │ │ │ └── model │ │ │ │ │ └── cbi │ │ │ │ │ └── hd_idle.lua │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-hd_idle │ │ ├── luci-ltqtapi │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── ltqtapi.lua │ │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── luci_ltqtapi │ │ │ │ │ ├── account.lua │ │ │ │ │ └── contact.lua │ │ │ │ └── view │ │ │ │ ├── admin_status │ │ │ │ └── index │ │ │ │ │ └── telephony.htm │ │ │ │ └── telephony_status.htm │ │ ├── luci-meshwizard │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── meshwizard.lua │ │ │ │ └── model │ │ │ │ │ └── cbi │ │ │ │ │ └── freifunk │ │ │ │ │ └── meshwizard.lua │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── meshwizard │ │ ├── luci-minidlna │ │ │ ├── Makefile │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── minidlna.lua │ │ │ │ ├── model │ │ │ │ │ └── cbi │ │ │ │ │ │ └── minidlna.lua │ │ │ │ └── view │ │ │ │ │ ├── admin_status │ │ │ │ │ └── index │ │ │ │ │ │ └── minidlna.htm │ │ │ │ │ └── minidlna_status.htm │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-minidlna │ │ ├── luci-mmc-over-gpio │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── mmc_over_gpio.lua │ │ │ │ └── model │ │ │ │ │ └── cbi │ │ │ │ │ └── mmc_over_gpio.lua │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-mmc-over-gpio │ │ ├── luci-multiwan │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── multiwan.lua │ │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── multiwan │ │ │ │ │ ├── multiwan.lua │ │ │ │ │ └── multiwanmini.lua │ │ │ │ └── view │ │ │ │ ├── admin_status │ │ │ │ └── index │ │ │ │ │ └── multiwan.htm │ │ │ │ └── multiwan_status.htm │ │ ├── luci-ntpc │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── ntpc.lua │ │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── ntpc │ │ │ │ ├── ntpc.lua │ │ │ │ └── ntpcmini.lua │ │ ├── luci-olsr-services │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── services.lua │ │ │ │ └── view │ │ │ │ └── freifunk-services │ │ │ │ └── services.htm │ │ ├── luci-olsr-viz │ │ │ ├── Makefile │ │ │ ├── htdocs │ │ │ │ ├── cgi-bin │ │ │ │ │ ├── olsr-viz.sh │ │ │ │ │ └── vizdata.sh │ │ │ │ └── luci-static │ │ │ │ │ └── resources │ │ │ │ │ ├── olsr-viz.js │ │ │ │ │ └── olsr-viz │ │ │ │ │ ├── dot_down.gif │ │ │ │ │ ├── dot_good.gif │ │ │ │ │ ├── dot_ok.gif │ │ │ │ │ ├── dot_weak.gif │ │ │ │ │ ├── node-hna-mini.gif │ │ │ │ │ └── node-mini.gif │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── olsr-viz.lua │ │ │ │ └── view │ │ │ │ └── olsr-viz │ │ │ │ └── olsr-viz.htm │ │ ├── luci-olsr │ │ │ ├── Makefile │ │ │ ├── htdocs │ │ │ │ ├── cgi-bin-nodes.html │ │ │ │ └── cgi-bin-status.html │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── olsr.lua │ │ │ │ ├── model │ │ │ │ │ └── cbi │ │ │ │ │ │ └── olsr │ │ │ │ │ │ ├── olsrd.lua │ │ │ │ │ │ ├── olsrddisplay.lua │ │ │ │ │ │ ├── olsrdhna.lua │ │ │ │ │ │ ├── olsrdiface.lua │ │ │ │ │ │ └── olsrdplugins.lua │ │ │ │ ├── tools │ │ │ │ │ └── olsr.lua │ │ │ │ └── view │ │ │ │ │ └── status-olsr │ │ │ │ │ ├── error_olsr.htm │ │ │ │ │ ├── hna.htm │ │ │ │ │ ├── interfaces.htm │ │ │ │ │ ├── mid.htm │ │ │ │ │ ├── neighbors.htm │ │ │ │ │ ├── overview.htm │ │ │ │ │ ├── routes.htm │ │ │ │ │ ├── smartgw.htm │ │ │ │ │ └── topology.htm │ │ │ └── root │ │ │ │ └── etc │ │ │ │ ├── config │ │ │ │ └── luci_olsr │ │ │ │ └── uci-defaults │ │ │ │ └── luci-olsr │ │ ├── luci-openvpn │ │ │ ├── Makefile │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── openvpn.lua │ │ │ │ ├── model │ │ │ │ │ └── cbi │ │ │ │ │ │ ├── openvpn-advanced.lua │ │ │ │ │ │ ├── openvpn-basic.lua │ │ │ │ │ │ └── openvpn.lua │ │ │ │ └── view │ │ │ │ │ └── openvpn │ │ │ │ │ ├── cbi-select-input-add.htm │ │ │ │ │ └── pageswitch.htm │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── config │ │ │ │ └── openvpn_recipes │ │ ├── luci-p2pblock │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── ff_p2pblock.lua │ │ │ │ └── model │ │ │ │ │ └── cbi │ │ │ │ │ └── luci_fw │ │ │ │ │ └── p2pblock.lua │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-p2pblock │ │ ├── luci-p910nd │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── p910nd.lua │ │ │ │ └── model │ │ │ │ │ └── cbi │ │ │ │ │ └── p910nd.lua │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-p910nd │ │ ├── luci-pbx-voicemail │ │ │ ├── COPYING │ │ │ ├── Makefile │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── pbx-voicemail.lua │ │ │ │ └── model │ │ │ │ │ └── cbi │ │ │ │ │ └── pbx-voicemail.lua │ │ │ └── root │ │ │ │ └── etc │ │ │ │ ├── config │ │ │ │ └── pbx-voicemail │ │ │ │ └── pbx-voicemail │ │ │ │ ├── pbx-msmtprc-account-auth.TEMPLATE │ │ │ │ ├── pbx-msmtprc-account-default.TEMPLATE │ │ │ │ ├── pbx-msmtprc-account.TEMPLATE │ │ │ │ ├── pbx-msmtprc-defaults.TEMPLATE │ │ │ │ └── pbx-send-voicemail │ │ ├── luci-pbx │ │ │ ├── COPYING │ │ │ ├── CREDITS-SOUNDS │ │ │ ├── LICENSE-SOUNDS │ │ │ ├── Makefile │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── pbx.lua │ │ │ │ └── model │ │ │ │ │ └── cbi │ │ │ │ │ ├── pbx-advanced.lua │ │ │ │ │ ├── pbx-calls.lua │ │ │ │ │ ├── pbx-google.lua │ │ │ │ │ ├── pbx-users.lua │ │ │ │ │ ├── pbx-voip.lua │ │ │ │ │ └── pbx.lua │ │ │ └── root │ │ │ │ └── etc │ │ │ │ ├── config │ │ │ │ ├── pbx │ │ │ │ ├── pbx-advanced │ │ │ │ ├── pbx-calls │ │ │ │ ├── pbx-google │ │ │ │ ├── pbx-users │ │ │ │ └── pbx-voip │ │ │ │ ├── init.d │ │ │ │ └── pbx-asterisk │ │ │ │ └── pbx-asterisk │ │ │ │ ├── asterisk.conf.TEMPLATE │ │ │ │ ├── extensions.conf.TEMPLATE │ │ │ │ ├── extensions_blacklist.conf.TEMPLATE │ │ │ │ ├── extensions_blacklist_footer.conf.TEMPLATE │ │ │ │ ├── extensions_blacklist_header.conf.TEMPLATE │ │ │ │ ├── extensions_default.conf.TEMPLATE │ │ │ │ ├── extensions_default_user.conf.TEMPLATE │ │ │ │ ├── extensions_disa-check.conf.TEMPLATE │ │ │ │ ├── extensions_disa-check_footer.conf.TEMPLATE │ │ │ │ ├── extensions_disa-check_header.conf.TEMPLATE │ │ │ │ ├── extensions_disa.conf.TEMPLATE │ │ │ │ ├── extensions_disa_header.conf.TEMPLATE │ │ │ │ ├── extensions_incoming_context_gtalk.conf.TEMPLATE │ │ │ │ ├── extensions_incoming_context_gtalk_header.conf.TEMPLATE │ │ │ │ ├── extensions_incoming_context_sip.conf.TEMPLATE │ │ │ │ ├── extensions_outgoing_dial_local_user.conf.TEMPLATE │ │ │ │ ├── extensions_outgoing_gtalk.conf.TEMPLATE │ │ │ │ ├── extensions_outgoing_pattern_gtalk.conf.TEMPLATE │ │ │ │ ├── extensions_outgoing_pattern_sip.conf.TEMPLATE │ │ │ │ ├── extensions_outgoing_sip.conf.TEMPLATE │ │ │ │ ├── extensions_user_context_footer.conf.TEMPLATE │ │ │ │ ├── extensions_user_context_header.conf.TEMPLATE │ │ │ │ ├── extensions_voicemail_disabled.conf.TEMPLATE │ │ │ │ ├── extensions_voicemail_enabled.conf.TEMPLATE │ │ │ │ ├── gtalk.conf.TEMPLATE │ │ │ │ ├── indications.conf.TEMPLATE │ │ │ │ ├── jabber.conf.TEMPLATE │ │ │ │ ├── jabber_users.conf.TEMPLATE │ │ │ │ ├── logger.conf.TEMPLATE │ │ │ │ ├── manager.conf.TEMPLATE │ │ │ │ ├── modules.conf.TEMPLATE │ │ │ │ ├── rtp.conf.TEMPLATE │ │ │ │ ├── sip.conf.TEMPLATE │ │ │ │ ├── sip_peer.TEMPLATE │ │ │ │ ├── sip_registration.TEMPLATE │ │ │ │ ├── sip_user.TEMPLATE │ │ │ │ └── sounds │ │ │ │ ├── agent-alreadyon.gsm │ │ │ │ ├── agent-incorrect.gsm │ │ │ │ ├── agent-pass.gsm │ │ │ │ └── auth-thankyou.gsm │ │ ├── luci-polipo │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── polipo.lua │ │ │ │ ├── model │ │ │ │ │ └── cbi │ │ │ │ │ │ └── polipo.lua │ │ │ │ └── view │ │ │ │ │ └── polipo_status.htm │ │ │ └── root │ │ │ │ ├── etc │ │ │ │ └── uci-defaults │ │ │ │ │ └── luci-polipo │ │ │ │ └── usr │ │ │ │ └── sbin │ │ │ │ └── polipo_purge │ │ ├── luci-qos │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── qos.lua │ │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── qos │ │ │ │ ├── qos.lua │ │ │ │ └── qosmini.lua │ │ ├── luci-radvd │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── radvd.lua │ │ │ │ └── model │ │ │ │ │ └── cbi │ │ │ │ │ ├── radvd.lua │ │ │ │ │ └── radvd │ │ │ │ │ ├── dnssl.lua │ │ │ │ │ ├── interface.lua │ │ │ │ │ ├── prefix.lua │ │ │ │ │ ├── rdnss.lua │ │ │ │ │ └── route.lua │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-radvd │ │ ├── luci-samba │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── samba.lua │ │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── samba.lua │ │ ├── luci-sensor │ │ │ ├── Makefile │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── admin │ │ │ │ │ │ └── sensor.lua │ │ │ │ └── model │ │ │ │ │ └── cbi │ │ │ │ │ └── admin_sensor │ │ │ │ │ ├── mcu.lua │ │ │ │ │ ├── poweruart.lua │ │ │ │ │ ├── rfgateway.lua │ │ │ │ │ ├── service.lua │ │ │ │ │ ├── tcp_client.lua │ │ │ │ │ └── xively.lua │ │ │ └── root │ │ │ │ ├── etc │ │ │ │ ├── arduino │ │ │ │ │ ├── ATmegaBoot │ │ │ │ │ │ ├── ATmegaBOOT_168_atmega1280.hex │ │ │ │ │ │ ├── ATmegaBOOT_168_atmega328.hex │ │ │ │ │ │ ├── ATmegaBOOT_168_atmega328_pro_8MHz.hex │ │ │ │ │ │ ├── ATmegaBOOT_168_diecimila.hex │ │ │ │ │ │ ├── ATmegaBOOT_168_ng.hex │ │ │ │ │ │ └── ATmegaBOOT_168_pro_8MHz.hex │ │ │ │ │ ├── Caterina-Yun.hex │ │ │ │ │ ├── optiboot │ │ │ │ │ │ ├── optiboot_atmega168.hex │ │ │ │ │ │ ├── optiboot_atmega328-Mini.hex │ │ │ │ │ │ ├── optiboot_atmega328.hex │ │ │ │ │ │ └── optiboot_atmega8.hex │ │ │ │ │ └── stk500v2 │ │ │ │ │ │ └── stk500boot_v2_mega2560.hex │ │ │ │ ├── config │ │ │ │ │ ├── iot-services │ │ │ │ │ ├── rfgateway │ │ │ │ │ ├── sensor │ │ │ │ │ ├── tcp_client │ │ │ │ │ └── xively │ │ │ │ ├── init.d │ │ │ │ │ └── iotd │ │ │ │ ├── iot │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── tcp_client.lua │ │ │ │ │ │ └── xively_routine.lua │ │ │ │ └── rc.d │ │ │ │ │ └── S99iotd │ │ │ │ └── usr │ │ │ │ ├── bin │ │ │ │ ├── merge-sketch-with-bootloader.lua │ │ │ │ ├── reset-mcu │ │ │ │ └── run-avrdude │ │ │ │ └── sbin │ │ │ │ └── set_sensor_value │ │ ├── luci-siitwizard │ │ │ ├── Makefile │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── siitwizard.lua │ │ │ │ └── model │ │ │ │ │ └── cbi │ │ │ │ │ └── siitwizard.lua │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── config │ │ │ │ └── siit │ │ ├── luci-splash │ │ │ ├── Makefile │ │ │ ├── htdocs │ │ │ │ ├── cgi-bin │ │ │ │ │ └── splash │ │ │ │ │ │ └── splash.sh │ │ │ │ └── luci │ │ │ │ │ └── splash │ │ │ │ │ └── index.html │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── splash │ │ │ │ │ │ └── splash.lua │ │ │ │ ├── model │ │ │ │ │ └── cbi │ │ │ │ │ │ └── splash │ │ │ │ │ │ ├── splash.lua │ │ │ │ │ │ └── splashtext.lua │ │ │ │ └── view │ │ │ │ │ ├── admin_status │ │ │ │ │ └── splash.htm │ │ │ │ │ ├── splash │ │ │ │ │ ├── blocked.htm │ │ │ │ │ └── splash.htm │ │ │ │ │ └── splash_splash │ │ │ │ │ ├── index.htm │ │ │ │ │ └── splash.htm │ │ │ └── root │ │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── luci_splash │ │ │ │ └── init.d │ │ │ │ │ └── luci_splash │ │ │ │ └── usr │ │ │ │ └── sbin │ │ │ │ └── luci-splash │ │ ├── luci-statistics │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── luci_statistics │ │ │ │ │ │ └── luci_statistics.lua │ │ │ │ ├── model │ │ │ │ │ └── cbi │ │ │ │ │ │ └── luci_statistics │ │ │ │ │ │ ├── collectd.lua │ │ │ │ │ │ ├── conntrack.lua │ │ │ │ │ │ ├── cpu.lua │ │ │ │ │ │ ├── csv.lua │ │ │ │ │ │ ├── df.lua │ │ │ │ │ │ ├── disk.lua │ │ │ │ │ │ ├── dns.lua │ │ │ │ │ │ ├── email.lua │ │ │ │ │ │ ├── exec.lua │ │ │ │ │ │ ├── interface.lua │ │ │ │ │ │ ├── iptables.lua │ │ │ │ │ │ ├── irq.lua │ │ │ │ │ │ ├── iwinfo.lua │ │ │ │ │ │ ├── load.lua │ │ │ │ │ │ ├── memory.lua │ │ │ │ │ │ ├── netlink.lua │ │ │ │ │ │ ├── network.lua │ │ │ │ │ │ ├── nut.lua │ │ │ │ │ │ ├── olsrd.lua │ │ │ │ │ │ ├── ping.lua │ │ │ │ │ │ ├── processes.lua │ │ │ │ │ │ ├── rrdtool.lua │ │ │ │ │ │ ├── tcpconns.lua │ │ │ │ │ │ └── unixsock.lua │ │ │ │ ├── statistics │ │ │ │ │ ├── datatree.lua │ │ │ │ │ ├── i18n.lua │ │ │ │ │ ├── rrdtool.lua │ │ │ │ │ └── rrdtool │ │ │ │ │ │ ├── colors.lua │ │ │ │ │ │ └── definitions │ │ │ │ │ │ ├── conntrack.lua │ │ │ │ │ │ ├── cpu.lua │ │ │ │ │ │ ├── df.lua │ │ │ │ │ │ ├── disk.lua │ │ │ │ │ │ ├── dns.lua │ │ │ │ │ │ ├── interface.lua │ │ │ │ │ │ ├── iptables.lua │ │ │ │ │ │ ├── irq.lua │ │ │ │ │ │ ├── iwinfo.lua │ │ │ │ │ │ ├── load.lua │ │ │ │ │ │ ├── memory.lua │ │ │ │ │ │ ├── netlink.lua │ │ │ │ │ │ ├── nut.lua │ │ │ │ │ │ ├── olsrd.lua │ │ │ │ │ │ ├── ping.lua │ │ │ │ │ │ ├── processes.lua │ │ │ │ │ │ └── tcpconns.lua │ │ │ │ └── view │ │ │ │ │ ├── admin_statistics │ │ │ │ │ └── index.htm │ │ │ │ │ └── public_statistics │ │ │ │ │ └── graph.htm │ │ │ └── root │ │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── luci_statistics │ │ │ │ ├── init.d │ │ │ │ │ └── luci_statistics │ │ │ │ └── uci-defaults │ │ │ │ │ └── luci-statistics │ │ │ │ └── usr │ │ │ │ └── bin │ │ │ │ └── stat-genconfig │ │ ├── luci-tinyproxy │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── tinyproxy.lua │ │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── tinyproxy.lua │ │ │ │ └── view │ │ │ │ └── tinyproxy_status.htm │ │ ├── luci-transmission │ │ │ ├── Makefile │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── transmission.lua │ │ │ │ └── model │ │ │ │ │ └── cbi │ │ │ │ │ └── transmission.lua │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-transmission │ │ ├── luci-upnp │ │ │ ├── Makefile │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── upnp.lua │ │ │ │ ├── model │ │ │ │ │ └── cbi │ │ │ │ │ │ └── upnp │ │ │ │ │ │ └── upnp.lua │ │ │ │ └── view │ │ │ │ │ ├── admin_status │ │ │ │ │ └── index │ │ │ │ │ │ └── upnp.htm │ │ │ │ │ └── upnp_status.htm │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-upnp │ │ ├── luci-ushare │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── ushare.lua │ │ │ │ └── model │ │ │ │ │ └── cbi │ │ │ │ │ └── ushare.lua │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-ushare │ │ ├── luci-vnstat │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── vnstat.lua │ │ │ │ ├── model │ │ │ │ │ └── cbi │ │ │ │ │ │ └── vnstat.lua │ │ │ │ └── view │ │ │ │ │ └── vnstat.htm │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-vnstat │ │ ├── luci-voice-core │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── luci_voice.lua │ │ │ │ └── view │ │ │ │ └── luci_voice │ │ │ │ ├── index.htm │ │ │ │ └── phone_index.htm │ │ ├── luci-voice-diag │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── luci_voice │ │ │ │ │ └── luci_voice_diag.lua │ │ │ │ └── view │ │ │ │ └── luci_voice │ │ │ │ └── diag_index.htm │ │ ├── luci-watchcat │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── watchcat.lua │ │ │ │ └── model │ │ │ │ │ └── cbi │ │ │ │ │ └── watchcat │ │ │ │ │ └── watchcat.lua │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-watchcat │ │ ├── luci-wol │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── wol.lua │ │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── wol.lua │ │ ├── luci-wshaper │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── wshaper.lua │ │ │ │ └── model │ │ │ │ │ └── cbi │ │ │ │ │ └── wshaper.lua │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── wshaper │ │ └── myapplication │ │ │ └── Makefile │ ├── build │ │ ├── config.mk │ │ ├── gccconfig.mk │ │ ├── hostenv.sh │ │ ├── i18n-init.sh │ │ ├── i18n-po2lua.pl │ │ ├── i18n-scan.pl │ │ ├── i18n-sync.sh │ │ ├── i18n-update.pl │ │ ├── luci.cgi │ │ ├── lucid.lua │ │ ├── makedocs.sh │ │ ├── mkbasepot.sh │ │ ├── mkversion.sh │ │ ├── module.mk │ │ ├── setup.lua │ │ └── zoneinfo2lua.pl │ ├── contrib │ │ ├── fwd │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── fwd.c │ │ │ │ ├── fwd.h │ │ │ │ ├── fwd_addr.c │ │ │ │ ├── fwd_addr.h │ │ │ │ ├── fwd_config.c │ │ │ │ ├── fwd_config.h │ │ │ │ ├── fwd_ipc.c │ │ │ │ ├── fwd_ipc.h │ │ │ │ ├── fwd_rules.c │ │ │ │ ├── fwd_rules.h │ │ │ │ ├── fwd_utils.c │ │ │ │ ├── fwd_utils.h │ │ │ │ ├── fwd_xtables.c │ │ │ │ ├── fwd_xtables.h │ │ │ │ ├── ucix.c │ │ │ │ └── ucix.h │ │ ├── lar │ │ │ ├── Makefile │ │ │ ├── cli.c │ │ │ ├── lar.c │ │ │ ├── lar.h │ │ │ ├── lar.pl │ │ │ ├── larlib.c │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ └── openwrt │ │ │ │ └── 050-lar-source-loader.patch │ │ ├── luadoc │ │ │ ├── Makefile │ │ │ ├── hostfiles │ │ │ │ └── bin │ │ │ │ │ └── luadoc │ │ │ └── lua │ │ │ │ └── luadoc │ │ │ │ ├── config.lua │ │ │ │ ├── doclet │ │ │ │ ├── debug.lua │ │ │ │ ├── formatter.lua │ │ │ │ ├── html.lua │ │ │ │ ├── html │ │ │ │ │ ├── constant.lp │ │ │ │ │ ├── file.lp │ │ │ │ │ ├── function.lp │ │ │ │ │ ├── index.lp │ │ │ │ │ ├── luadoc.css │ │ │ │ │ ├── menu.lp │ │ │ │ │ ├── module.lp │ │ │ │ │ └── table.lp │ │ │ │ └── raw.lua │ │ │ │ ├── init.lua │ │ │ │ ├── lp.lua │ │ │ │ ├── taglet │ │ │ │ ├── standard.lua │ │ │ │ └── standard │ │ │ │ │ └── tags.lua │ │ │ │ └── util.lua │ │ ├── luasrcdiet │ │ │ ├── Makefile │ │ │ └── lua │ │ │ │ ├── COPYRIGHT │ │ │ │ ├── LuaSrcDiet.lua │ │ │ │ ├── llex.lua │ │ │ │ ├── lparser.lua │ │ │ │ ├── optlex.lua │ │ │ │ └── optparser.lua │ │ ├── package │ │ │ ├── Makefile │ │ │ ├── community-profiles │ │ │ │ ├── Makefile │ │ │ │ └── files │ │ │ │ │ └── etc │ │ │ │ │ └── config │ │ │ │ │ ├── profile_Freifunk │ │ │ │ │ ├── profile_aachen │ │ │ │ │ ├── profile_arig_arad │ │ │ │ │ ├── profile_arig_neot_semadar │ │ │ │ │ ├── profile_arig_tel-aviv │ │ │ │ │ ├── profile_augsburg │ │ │ │ │ ├── profile_bayreuth │ │ │ │ │ ├── profile_bensheim │ │ │ │ │ ├── profile_bergischesland │ │ │ │ │ ├── profile_berlin │ │ │ │ │ ├── profile_carbodebit │ │ │ │ │ ├── profile_duesseldorf │ │ │ │ │ ├── profile_evernet │ │ │ │ │ ├── profile_franken │ │ │ │ │ ├── profile_gadow │ │ │ │ │ ├── profile_guifibages │ │ │ │ │ ├── profile_halle │ │ │ │ │ ├── profile_hannover │ │ │ │ │ ├── profile_heppenheim │ │ │ │ │ ├── profile_jena │ │ │ │ │ ├── profile_kiberpipa │ │ │ │ │ ├── profile_l59 │ │ │ │ │ ├── profile_leipzig │ │ │ │ │ ├── profile_mainz │ │ │ │ │ ├── profile_marburg │ │ │ │ │ ├── profile_neuss │ │ │ │ │ ├── profile_oldenburg │ │ │ │ │ ├── profile_openwireless_bern │ │ │ │ │ ├── profile_pberg │ │ │ │ │ ├── profile_piraten_dresden │ │ │ │ │ ├── profile_potsdam │ │ │ │ │ ├── profile_rosbach │ │ │ │ │ ├── profile_seefeld │ │ │ │ │ ├── profile_stuttgart │ │ │ │ │ ├── profile_weimar │ │ │ │ │ ├── profile_weinstadt │ │ │ │ │ └── profile_wlanljubljana │ │ │ ├── freifunk-common │ │ │ │ ├── Makefile │ │ │ │ ├── files │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── freifunk │ │ │ │ │ │ ├── init.d │ │ │ │ │ │ │ └── freifunk │ │ │ │ │ │ ├── rc.local.d │ │ │ │ │ │ │ └── 01-config-migration │ │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ │ └── freifunk │ │ │ │ │ └── usr │ │ │ │ │ │ ├── bin │ │ │ │ │ │ ├── ffdzero │ │ │ │ │ │ ├── neigh.sh │ │ │ │ │ │ └── watch.sh │ │ │ │ │ │ └── sbin │ │ │ │ │ │ └── ff_olsr_watchdog │ │ │ │ └── ipkg │ │ │ │ │ └── postinst │ │ │ ├── freifunk-firewall │ │ │ │ ├── Makefile │ │ │ │ └── files │ │ │ │ │ └── etc │ │ │ │ │ ├── firewall.freifunk │ │ │ │ │ └── hotplug.d │ │ │ │ │ └── firewall │ │ │ │ │ └── 23-restricted-wan │ │ │ ├── freifunk-gwcheck │ │ │ │ ├── Makefile │ │ │ │ ├── files │ │ │ │ │ ├── etc │ │ │ │ │ │ └── config │ │ │ │ │ │ │ └── freifunk-gwcheck │ │ │ │ │ └── usr │ │ │ │ │ │ └── sbin │ │ │ │ │ │ └── ff_olsr_test_gw.sh │ │ │ │ ├── ipkg │ │ │ │ │ ├── postinst │ │ │ │ │ └── postrm │ │ │ │ └── root │ │ │ │ │ └── etc │ │ │ │ │ └── uci-defaults │ │ │ │ │ └── freifunk-gwcheck │ │ │ ├── freifunk-mapupdate │ │ │ │ ├── Makefile │ │ │ │ ├── files │ │ │ │ │ ├── etc │ │ │ │ │ │ └── config │ │ │ │ │ │ │ └── freifunk-mapupdate │ │ │ │ │ └── usr │ │ │ │ │ │ └── sbin │ │ │ │ │ │ └── ff_mapupdate.sh │ │ │ │ ├── ipkg │ │ │ │ │ ├── postinst │ │ │ │ │ └── postrm │ │ │ │ └── root │ │ │ │ │ └── etc │ │ │ │ │ └── uci-defaults │ │ │ │ │ └── freifunk-mapupdate │ │ │ ├── freifunk-p2pblock │ │ │ │ ├── Makefile │ │ │ │ └── files │ │ │ │ │ ├── freifunk-p2pblock.config │ │ │ │ │ └── freifunk-p2pblock.init │ │ │ ├── freifunk-policyrouting │ │ │ │ ├── Makefile │ │ │ │ └── files │ │ │ │ │ └── etc │ │ │ │ │ ├── config │ │ │ │ │ └── freifunk-policyrouting │ │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── firewall │ │ │ │ │ │ └── 24-policyrouting │ │ │ │ │ └── iface │ │ │ │ │ │ └── 30-policyrouting │ │ │ │ │ ├── init.d │ │ │ │ │ └── freifunk-policyrouting │ │ │ │ │ ├── rc.d │ │ │ │ │ └── S60-freifunk-policyrouting │ │ │ │ │ └── uci-defaults │ │ │ │ │ └── freifunk-policyrouting │ │ │ ├── freifunk-watchdog │ │ │ │ ├── Makefile │ │ │ │ ├── files │ │ │ │ │ ├── freifunk-watchdog.config │ │ │ │ │ └── freifunk-watchdog.init │ │ │ │ └── src │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ucix.c │ │ │ │ │ ├── ucix.h │ │ │ │ │ ├── watchdog.c │ │ │ │ │ ├── watchdog.h │ │ │ │ │ └── wireless.22.h │ │ │ ├── luci │ │ │ │ └── Makefile │ │ │ ├── meshwizard │ │ │ │ ├── Makefile │ │ │ │ └── files │ │ │ │ │ ├── etc │ │ │ │ │ └── config │ │ │ │ │ │ └── meshwizard │ │ │ │ │ └── usr │ │ │ │ │ └── bin │ │ │ │ │ └── meshwizard │ │ │ │ │ ├── functions.sh │ │ │ │ │ ├── helpers │ │ │ │ │ ├── check-range-in-range.sh │ │ │ │ │ ├── common.awk │ │ │ │ │ ├── gen_auto-ipv6-dhcpv6-ip.sh │ │ │ │ │ ├── gen_bssid.sh │ │ │ │ │ ├── gen_dhcp_ip.sh │ │ │ │ │ ├── initial_config.sh │ │ │ │ │ ├── ipcalc-cidr.sh │ │ │ │ │ ├── read_defaults.sh │ │ │ │ │ ├── rename-wifi.sh │ │ │ │ │ ├── restore_default_config.sh │ │ │ │ │ ├── setup_auto-ipv6-interface.sh │ │ │ │ │ ├── setup_auto-ipv6.sh │ │ │ │ │ ├── setup_dhcp.sh │ │ │ │ │ ├── setup_dnsmasq.sh │ │ │ │ │ ├── setup_firewall.sh │ │ │ │ │ ├── setup_firewall_interface.sh │ │ │ │ │ ├── setup_lan_ipv6.sh │ │ │ │ │ ├── setup_lan_static.sh │ │ │ │ │ ├── setup_network.sh │ │ │ │ │ ├── setup_olsrd.sh │ │ │ │ │ ├── setup_olsrd_interface.sh │ │ │ │ │ ├── setup_policyrouting.sh │ │ │ │ │ ├── setup_splash.sh │ │ │ │ │ ├── setup_ssh.sh │ │ │ │ │ ├── setup_system.sh │ │ │ │ │ ├── setup_uhttpd.sh │ │ │ │ │ ├── setup_wan_dhcp.sh │ │ │ │ │ ├── setup_wan_static.sh │ │ │ │ │ ├── setup_widgets.sh │ │ │ │ │ ├── setup_wifi.sh │ │ │ │ │ └── supports_vap.sh │ │ │ │ │ └── wizard.sh │ │ │ └── remote-update │ │ │ │ ├── Makefile │ │ │ │ └── files │ │ │ │ └── usr │ │ │ │ └── sbin │ │ │ │ └── remote-update │ │ ├── uci │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ └── hostfiles │ │ │ │ ├── bin │ │ │ │ └── uci │ │ │ │ └── etc │ │ │ │ └── config │ │ │ │ ├── batmand │ │ │ │ ├── ddns │ │ │ │ ├── dhcp │ │ │ │ ├── dropbear │ │ │ │ ├── firewall │ │ │ │ ├── fstab │ │ │ │ ├── httpd │ │ │ │ ├── luci_devinfo │ │ │ │ ├── mactodevinfo │ │ │ │ ├── network │ │ │ │ ├── ntpclient │ │ │ │ ├── qos │ │ │ │ ├── system │ │ │ │ ├── upnpd │ │ │ │ └── wireless │ │ └── uhttpd │ │ │ ├── Makefile │ │ │ └── patches │ │ │ ├── 001-pass-env.patch │ │ │ ├── 002-link-order.patch │ │ │ └── series │ ├── diff │ ├── i18n │ │ ├── catalan │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-catalan │ │ ├── chinese │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-chinese │ │ ├── english │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-english │ │ ├── french │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-french │ │ ├── german │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-german │ │ ├── greek │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-greek │ │ ├── hebrew │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-hebrew │ │ ├── hungarian │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-hungarian │ │ ├── italian │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-italian │ │ ├── japanese │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-japanese │ │ ├── malay │ │ │ ├── Makefile │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-malay │ │ ├── norwegian │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-norwegian │ │ ├── polish │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-polish │ │ ├── portuguese-brazilian │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-portuguese_brazilian │ │ ├── portuguese │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-portuguese │ │ ├── romanian │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-romanian │ │ ├── russian │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-russian │ │ ├── spanish │ │ │ ├── Makefile │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-spanish │ │ ├── ukrainian │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-i18n-ukrainian │ │ └── vietnamese │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ └── postinst │ │ │ └── root │ │ │ └── etc │ │ │ └── uci-defaults │ │ │ └── luci-i18n-vietnamese │ ├── libs │ │ ├── core │ │ │ ├── Makefile │ │ │ ├── luasrc │ │ │ │ ├── ccache.lua │ │ │ │ ├── debug.lua │ │ │ │ ├── fs.lua │ │ │ │ ├── init.lua │ │ │ │ ├── ip.lua │ │ │ │ ├── ltn12.lua │ │ │ │ ├── model │ │ │ │ │ ├── firewall.lua │ │ │ │ │ ├── network.lua │ │ │ │ │ └── uci.lua │ │ │ │ ├── store.lua │ │ │ │ ├── util.lua │ │ │ │ └── version.lua │ │ │ └── root │ │ │ │ ├── etc │ │ │ │ └── config │ │ │ │ │ └── ucitrack │ │ │ │ └── sbin │ │ │ │ └── luci-reload │ │ ├── fastindex │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── fastindex.c │ │ │ │ └── list.h │ │ ├── httpclient │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── httpclient.lua │ │ │ │ └── httpclient │ │ │ │ └── receiver.lua │ │ ├── ipkg │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ └── model │ │ │ │ └── ipkg.lua │ │ ├── json │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ └── json.lua │ │ ├── lucid-http │ │ │ ├── Makefile │ │ │ ├── docs │ │ │ │ └── OVERVIEW │ │ │ └── luasrc │ │ │ │ └── lucid │ │ │ │ ├── http.lua │ │ │ │ └── http │ │ │ │ ├── DirectoryPublisher.lua │ │ │ │ ├── LuciWebPublisher.lua │ │ │ │ ├── Redirector.lua │ │ │ │ ├── handler │ │ │ │ ├── catchall.lua │ │ │ │ ├── file.lua │ │ │ │ └── luci.lua │ │ │ │ └── server.lua │ │ ├── lucid-rpc │ │ │ ├── Makefile │ │ │ ├── docs │ │ │ │ └── OVERVIEW │ │ │ └── luasrc │ │ │ │ └── lucid │ │ │ │ ├── rpc.lua │ │ │ │ └── rpc │ │ │ │ ├── ruci.lua │ │ │ │ ├── server.lua │ │ │ │ └── system.lua │ │ ├── lucid │ │ │ ├── Makefile │ │ │ ├── docs │ │ │ │ └── OVERVIEW │ │ │ ├── hostfiles │ │ │ │ └── etc │ │ │ │ │ └── config │ │ │ │ │ └── lucid │ │ │ ├── luasrc │ │ │ │ ├── lucid.lua │ │ │ │ └── lucid │ │ │ │ │ └── tcpserver.lua │ │ │ └── root │ │ │ │ └── etc │ │ │ │ ├── config │ │ │ │ └── lucid │ │ │ │ └── init.d │ │ │ │ └── lucid │ │ ├── nixio │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── NOTICE │ │ │ ├── README │ │ │ ├── axTLS │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── bindings │ │ │ │ │ ├── Config.in │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── csharp │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── axTLS.cs │ │ │ │ │ ├── generate_SWIG_interface.pl │ │ │ │ │ ├── generate_interface.pl │ │ │ │ │ ├── java │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── SSL.java │ │ │ │ │ │ ├── SSLCTX.java │ │ │ │ │ │ ├── SSLClient.java │ │ │ │ │ │ ├── SSLReadHolder.java │ │ │ │ │ │ ├── SSLServer.java │ │ │ │ │ │ └── SSLUtil.java │ │ │ │ │ ├── lua │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── perl │ │ │ │ │ │ └── Makefile │ │ │ │ │ └── vbnet │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── axTLSvb.vb │ │ │ │ ├── config │ │ │ │ │ ├── .config │ │ │ │ │ ├── Config.in │ │ │ │ │ ├── JMeter.jmx │ │ │ │ │ ├── Rules.mak │ │ │ │ │ ├── axhttpd.aip │ │ │ │ │ ├── axtls.RES │ │ │ │ │ ├── axtls.rc │ │ │ │ │ ├── config.h │ │ │ │ │ ├── linuxconfig │ │ │ │ │ ├── makefile.conf │ │ │ │ │ ├── makefile.dotnet.conf │ │ │ │ │ ├── makefile.java.conf │ │ │ │ │ ├── makefile.post │ │ │ │ │ ├── scripts │ │ │ │ │ │ └── config │ │ │ │ │ │ │ ├── Kconfig-language.txt │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── conf.c │ │ │ │ │ │ │ ├── confdata.c │ │ │ │ │ │ │ ├── expr.c │ │ │ │ │ │ │ ├── expr.h │ │ │ │ │ │ │ ├── lex.zconf.c_shipped │ │ │ │ │ │ │ ├── lkc.h │ │ │ │ │ │ │ ├── lkc_proto.h │ │ │ │ │ │ │ ├── lxdialog │ │ │ │ │ │ │ ├── BIG.FAT.WARNING │ │ │ │ │ │ │ ├── checklist.c │ │ │ │ │ │ │ ├── colors.h │ │ │ │ │ │ │ ├── dialog.h │ │ │ │ │ │ │ ├── inputbox.c │ │ │ │ │ │ │ ├── menubox.c │ │ │ │ │ │ │ ├── msgbox.c │ │ │ │ │ │ │ ├── textbox.c │ │ │ │ │ │ │ ├── util.c │ │ │ │ │ │ │ └── yesno.c │ │ │ │ │ │ │ ├── mconf.c │ │ │ │ │ │ │ ├── menu.c │ │ │ │ │ │ │ ├── mkconfigs │ │ │ │ │ │ │ ├── symbol.c │ │ │ │ │ │ │ ├── util.c │ │ │ │ │ │ │ ├── zconf.l │ │ │ │ │ │ │ ├── zconf.tab.c_shipped │ │ │ │ │ │ │ ├── zconf.tab.h_shipped │ │ │ │ │ │ │ └── zconf.y │ │ │ │ │ └── win32config │ │ │ │ ├── crypto │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── aes.c │ │ │ │ │ ├── bigint.c │ │ │ │ │ ├── bigint.h │ │ │ │ │ ├── bigint_impl.h │ │ │ │ │ ├── crypto.h │ │ │ │ │ ├── crypto_misc.c │ │ │ │ │ ├── hmac.c │ │ │ │ │ ├── md2.c │ │ │ │ │ ├── md5.c │ │ │ │ │ ├── rc4.c │ │ │ │ │ ├── rsa.c │ │ │ │ │ └── sha1.c │ │ │ │ ├── docsrc │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── axTLS.dox │ │ │ │ │ ├── doco_footer.html │ │ │ │ │ └── images │ │ │ │ │ │ ├── axolotl.jpg │ │ │ │ │ │ └── tsbasbw.gif │ │ │ │ ├── httpd │ │ │ │ │ ├── Config.in │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── axhttp.h │ │ │ │ │ ├── axhttpd.c │ │ │ │ │ ├── htpasswd.c │ │ │ │ │ ├── kepler-1.1-snapshot-20070521-1825.tar.gz │ │ │ │ │ ├── kepler.patch │ │ │ │ │ ├── proc.c │ │ │ │ │ └── tdate_parse.c │ │ │ │ ├── samples │ │ │ │ │ ├── Config.in │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── c │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── axssl.c │ │ │ │ │ ├── csharp │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── axssl.cs │ │ │ │ │ ├── java │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── axssl.java │ │ │ │ │ │ └── manifest.mf │ │ │ │ │ ├── lua │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── axssl.lua │ │ │ │ │ ├── perl │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── axssl.pl │ │ │ │ │ └── vbnet │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── axssl.vb │ │ │ │ ├── ssl │ │ │ │ │ ├── BigIntConfig.in │ │ │ │ │ ├── Config.in │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── asn1.c │ │ │ │ │ ├── cert.h │ │ │ │ │ ├── crypto_misc.h │ │ │ │ │ ├── gen_cert.c │ │ │ │ │ ├── loader.c │ │ │ │ │ ├── openssl.c │ │ │ │ │ ├── os_port.c │ │ │ │ │ ├── os_port.h │ │ │ │ │ ├── p12.c │ │ │ │ │ ├── private_key.h │ │ │ │ │ ├── ssl.h │ │ │ │ │ ├── test │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── axTLS.ca_key.pem │ │ │ │ │ │ ├── axTLS.ca_x509.cer │ │ │ │ │ │ ├── axTLS.ca_x509.pem │ │ │ │ │ │ ├── axTLS.device_key │ │ │ │ │ │ ├── axTLS.device_key.pem │ │ │ │ │ │ ├── axTLS.encrypted.p8 │ │ │ │ │ │ ├── axTLS.encrypted_pem.p8 │ │ │ │ │ │ ├── axTLS.key_1024 │ │ │ │ │ │ ├── axTLS.key_1024.pem │ │ │ │ │ │ ├── axTLS.key_2048 │ │ │ │ │ │ ├── axTLS.key_2048.pem │ │ │ │ │ │ ├── axTLS.key_4096 │ │ │ │ │ │ ├── axTLS.key_4096.pem │ │ │ │ │ │ ├── axTLS.key_512 │ │ │ │ │ │ ├── axTLS.key_512.pem │ │ │ │ │ │ ├── axTLS.key_aes128.pem │ │ │ │ │ │ ├── axTLS.key_aes256.pem │ │ │ │ │ │ ├── axTLS.noname.p12 │ │ │ │ │ │ ├── axTLS.unencrypted.p8 │ │ │ │ │ │ ├── axTLS.unencrypted_pem.p8 │ │ │ │ │ │ ├── axTLS.withCA.p12 │ │ │ │ │ │ ├── axTLS.withoutCA.p12 │ │ │ │ │ │ ├── axTLS.x509_1024.cer │ │ │ │ │ │ ├── axTLS.x509_1024.pem │ │ │ │ │ │ ├── axTLS.x509_2048.cer │ │ │ │ │ │ ├── axTLS.x509_2048.pem │ │ │ │ │ │ ├── axTLS.x509_4096.cer │ │ │ │ │ │ ├── axTLS.x509_4096.pem │ │ │ │ │ │ ├── axTLS.x509_512.cer │ │ │ │ │ │ ├── axTLS.x509_512.pem │ │ │ │ │ │ ├── axTLS.x509_aes128.pem │ │ │ │ │ │ ├── axTLS.x509_aes256.pem │ │ │ │ │ │ ├── axTLS.x509_bad_after.pem │ │ │ │ │ │ ├── axTLS.x509_bad_before.pem │ │ │ │ │ │ ├── axTLS.x509_device.cer │ │ │ │ │ │ ├── axTLS.x509_device.pem │ │ │ │ │ │ ├── datatest.c │ │ │ │ │ │ ├── datatest.c.old │ │ │ │ │ │ ├── deutsche_telecom.x509_ca │ │ │ │ │ │ ├── equifax.x509_ca │ │ │ │ │ │ ├── gnutls.cer │ │ │ │ │ │ ├── header_issue.dat │ │ │ │ │ │ ├── killopenssl.sh │ │ │ │ │ │ ├── make_certs.sh │ │ │ │ │ │ ├── microsoft.x509_ca │ │ │ │ │ │ ├── microsoft.x509_ca.pem │ │ │ │ │ │ ├── ms_iis.cer │ │ │ │ │ │ ├── perf_bigint.c │ │ │ │ │ │ ├── socgen.cer │ │ │ │ │ │ ├── ssltest.c │ │ │ │ │ │ ├── ssltest.c.bak │ │ │ │ │ │ ├── test_axssl.sh │ │ │ │ │ │ ├── thawte.x509_ca │ │ │ │ │ │ ├── verisign.x509_ca │ │ │ │ │ │ ├── verisign.x509_ca.pem │ │ │ │ │ │ ├── verisign.x509_my_cert │ │ │ │ │ │ └── verisign.x509_my_cert.pem │ │ │ │ │ ├── tls1.c │ │ │ │ │ ├── tls1.h │ │ │ │ │ ├── tls1_clnt.c │ │ │ │ │ ├── tls1_svr.c │ │ │ │ │ ├── version.h │ │ │ │ │ └── x509.c │ │ │ │ └── www │ │ │ │ │ ├── bin │ │ │ │ │ └── .htaccess │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── index.html │ │ │ │ │ ├── lua │ │ │ │ │ ├── download.lua │ │ │ │ │ ├── env.lua │ │ │ │ │ ├── overview.lp │ │ │ │ │ ├── prepara_sql2.lua │ │ │ │ │ ├── test_conc.lua │ │ │ │ │ ├── test_cookies.lp │ │ │ │ │ ├── test_cookies.lua │ │ │ │ │ ├── test_err.lua │ │ │ │ │ ├── test_fs.lua │ │ │ │ │ ├── test_htk.lua │ │ │ │ │ ├── test_lib.lua │ │ │ │ │ ├── test_main.html │ │ │ │ │ ├── test_main.lp │ │ │ │ │ ├── test_main.lua │ │ │ │ │ ├── test_session.lua │ │ │ │ │ ├── test_sql.lua │ │ │ │ │ ├── test_sql2.lua │ │ │ │ │ └── test_variables.lp │ │ │ │ │ └── test_dir │ │ │ │ │ ├── bin │ │ │ │ │ └── .htaccess │ │ │ │ │ ├── no_http │ │ │ │ │ ├── .htaccess │ │ │ │ │ ├── .htpasswd │ │ │ │ │ └── index.html │ │ │ │ │ └── no_ssl │ │ │ │ │ ├── .htaccess │ │ │ │ │ └── index.html │ │ │ ├── axtls-config │ │ │ │ ├── .config │ │ │ │ └── config.h │ │ │ ├── axtls-root │ │ │ │ └── etc │ │ │ │ │ └── nixio │ │ │ │ │ └── rsa_main.der │ │ │ ├── docsrc │ │ │ │ ├── CHANGELOG.lua │ │ │ │ ├── README.lua │ │ │ │ ├── nixio.CryptoHash.lua │ │ │ │ ├── nixio.File.lua │ │ │ │ ├── nixio.Socket.lua │ │ │ │ ├── nixio.TLSContext.lua │ │ │ │ ├── nixio.TLSSocket.lua │ │ │ │ ├── nixio.UnifiedIO.lua │ │ │ │ ├── nixio.bin.lua │ │ │ │ ├── nixio.bit.lua │ │ │ │ ├── nixio.crypto.lua │ │ │ │ ├── nixio.fs.lua │ │ │ │ └── nixio.lua │ │ │ ├── lua │ │ │ │ ├── bit.lua │ │ │ │ └── nixio │ │ │ │ │ ├── fs.lua │ │ │ │ │ └── util.lua │ │ │ ├── nixio-0.3-1.rockspec │ │ │ ├── root │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── luci-add-conffiles.sh │ │ │ ├── src │ │ │ │ ├── address.c │ │ │ │ ├── axtls-compat.c │ │ │ │ ├── axtls-compat.h │ │ │ │ ├── binary.c │ │ │ │ ├── bind.c │ │ │ │ ├── bit.c │ │ │ │ ├── cyassl-compat.c │ │ │ │ ├── cyassl-compat.h │ │ │ │ ├── file.c │ │ │ │ ├── fs.c │ │ │ │ ├── io.c │ │ │ │ ├── mingw-compat.c │ │ │ │ ├── mingw-compat.h │ │ │ │ ├── nixio-tls.h │ │ │ │ ├── nixio.c │ │ │ │ ├── nixio.h │ │ │ │ ├── poll.c │ │ │ │ ├── process.c │ │ │ │ ├── protoent.c │ │ │ │ ├── socket.c │ │ │ │ ├── sockopt.c │ │ │ │ ├── splice.c │ │ │ │ ├── syslog.c │ │ │ │ ├── tls-context.c │ │ │ │ ├── tls-crypto.c │ │ │ │ ├── tls-socket.c │ │ │ │ └── user.c │ │ │ └── standalone.mk │ │ ├── px5g │ │ │ ├── Makefile │ │ │ ├── lua │ │ │ │ └── px5g │ │ │ │ │ └── util.lua │ │ │ ├── root │ │ │ │ └── usr │ │ │ │ │ └── sbin │ │ │ │ │ └── px5g-genkeys │ │ │ └── src │ │ │ │ ├── library │ │ │ │ ├── bignum.c │ │ │ │ ├── havege.c │ │ │ │ ├── rsa.c │ │ │ │ ├── sha1.c │ │ │ │ ├── timing.c │ │ │ │ └── x509write.c │ │ │ │ ├── polarssl │ │ │ │ ├── bignum.h │ │ │ │ ├── bn_mul.h │ │ │ │ ├── config.h │ │ │ │ ├── havege.h │ │ │ │ ├── rsa.h │ │ │ │ ├── sha1.h │ │ │ │ ├── timing.h │ │ │ │ └── x509.h │ │ │ │ ├── px5g.c │ │ │ │ └── px5g.h │ │ ├── rpcc │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── rpcc.lua │ │ │ │ └── rpcc │ │ │ │ └── ruci.lua │ │ ├── sgi-cgi │ │ │ ├── Makefile │ │ │ ├── htdocs │ │ │ │ └── cgi-bin │ │ │ │ │ └── luci │ │ │ └── luasrc │ │ │ │ └── sgi │ │ │ │ └── cgi.lua │ │ ├── sgi-luci │ │ │ ├── Makefile │ │ │ ├── hostfiles │ │ │ │ └── usr │ │ │ │ │ └── lib │ │ │ │ │ └── lucittpd │ │ │ │ │ └── plugins │ │ │ │ │ └── luci-webui.lua │ │ │ ├── luasrc │ │ │ │ └── ttpd │ │ │ │ │ └── handler │ │ │ │ │ └── luci.lua │ │ │ └── root │ │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── lucittpd │ │ │ │ └── plugins │ │ │ │ └── luci-webui.lua │ │ ├── sgi-uhttpd │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ └── sgi │ │ │ │ └── uhttpd.lua │ │ ├── sgi-wsapi │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ └── sgi │ │ │ │ └── wsapi.lua │ │ ├── sys │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── sys.lua │ │ │ │ └── sys │ │ │ │ ├── iptparser.lua │ │ │ │ ├── zoneinfo.lua │ │ │ │ └── zoneinfo │ │ │ │ ├── tzdata.lua │ │ │ │ └── tzoffset.lua │ │ └── web │ │ │ ├── Makefile │ │ │ ├── htdocs │ │ │ └── luci-static │ │ │ │ └── resources │ │ │ │ ├── cbi.js │ │ │ │ └── cbi │ │ │ │ ├── add.gif │ │ │ │ ├── apply.gif │ │ │ │ ├── arrow.gif │ │ │ │ ├── down.gif │ │ │ │ ├── download.gif │ │ │ │ ├── edit.gif │ │ │ │ ├── fieldadd.gif │ │ │ │ ├── file.gif │ │ │ │ ├── find.gif │ │ │ │ ├── folder.gif │ │ │ │ ├── help.gif │ │ │ │ ├── key.gif │ │ │ │ ├── link.gif │ │ │ │ ├── reload.gif │ │ │ │ ├── remove.gif │ │ │ │ ├── reset.gif │ │ │ │ ├── save.gif │ │ │ │ ├── up.gif │ │ │ │ └── user.gif │ │ │ ├── luasrc │ │ │ ├── cacheloader.lua │ │ │ ├── cbi.lua │ │ │ ├── cbi │ │ │ │ └── datatypes.lua │ │ │ ├── config.lua │ │ │ ├── dispatcher.lua │ │ │ ├── http.lua │ │ │ ├── http │ │ │ │ ├── protocol.lua │ │ │ │ └── protocol │ │ │ │ │ ├── conditionals.lua │ │ │ │ │ ├── date.lua │ │ │ │ │ └── mime.lua │ │ │ ├── i18n.lua │ │ │ ├── sauth.lua │ │ │ ├── template.lua │ │ │ └── view │ │ │ │ └── cbi │ │ │ │ ├── apply_xhr.htm │ │ │ │ ├── browser.htm │ │ │ │ ├── button.htm │ │ │ │ ├── cell_valuefooter.htm │ │ │ │ ├── cell_valueheader.htm │ │ │ │ ├── compound.htm │ │ │ │ ├── delegator.htm │ │ │ │ ├── dvalue.htm │ │ │ │ ├── dynlist.htm │ │ │ │ ├── filebrowser.htm │ │ │ │ ├── firewall_zoneforwards.htm │ │ │ │ ├── firewall_zonelist.htm │ │ │ │ ├── footer.htm │ │ │ │ ├── full_valuefooter.htm │ │ │ │ ├── full_valueheader.htm │ │ │ │ ├── fvalue.htm │ │ │ │ ├── header.htm │ │ │ │ ├── lvalue.htm │ │ │ │ ├── map.htm │ │ │ │ ├── mvalue.htm │ │ │ │ ├── network_ifacelist.htm │ │ │ │ ├── network_netinfo.htm │ │ │ │ ├── network_netlist.htm │ │ │ │ ├── nsection.htm │ │ │ │ ├── nullsection.htm │ │ │ │ ├── simpleform.htm │ │ │ │ ├── tabcontainer.htm │ │ │ │ ├── tabmenu.htm │ │ │ │ ├── tblsection.htm │ │ │ │ ├── tsection.htm │ │ │ │ ├── tvalue.htm │ │ │ │ ├── ucisection.htm │ │ │ │ ├── upload.htm │ │ │ │ ├── value.htm │ │ │ │ ├── valuefooter.htm │ │ │ │ └── valueheader.htm │ │ │ ├── root │ │ │ ├── etc │ │ │ │ └── config │ │ │ │ │ └── luci │ │ │ └── lib │ │ │ │ └── uci │ │ │ │ └── upload │ │ │ │ └── .gitignore │ │ │ ├── src │ │ │ ├── po2lmo.c │ │ │ ├── template_lmo.c │ │ │ ├── template_lmo.h │ │ │ ├── template_lualib.c │ │ │ ├── template_lualib.h │ │ │ ├── template_parser.c │ │ │ ├── template_parser.h │ │ │ ├── template_utils.c │ │ │ └── template_utils.h │ │ │ └── standalone.mk │ ├── modules │ │ ├── admin-core │ │ │ ├── Makefile │ │ │ ├── ipkg │ │ │ │ └── postinst │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── admin │ │ │ │ │ │ └── servicectl.lua │ │ │ │ ├── tools │ │ │ │ │ ├── status.lua │ │ │ │ │ └── webadmin.lua │ │ │ │ └── view │ │ │ │ │ ├── error404.htm │ │ │ │ │ ├── error500.htm │ │ │ │ │ ├── footer.htm │ │ │ │ │ ├── header.htm │ │ │ │ │ ├── indexer.htm │ │ │ │ │ └── sysauth.htm │ │ │ └── root │ │ │ │ ├── etc │ │ │ │ └── init.d │ │ │ │ │ ├── luci_dhcp_migrate │ │ │ │ │ └── luci_fixtime │ │ │ │ └── www │ │ │ │ └── index.html │ │ ├── admin-full │ │ │ ├── Makefile │ │ │ ├── htdocs │ │ │ │ └── luci-static │ │ │ │ │ └── resources │ │ │ │ │ ├── bandwidth.svg │ │ │ │ │ ├── connections.svg │ │ │ │ │ ├── load.svg │ │ │ │ │ ├── wifirate.svg │ │ │ │ │ └── wireless.svg │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── admin │ │ │ │ │ │ ├── filebrowser.lua │ │ │ │ │ │ ├── index.lua │ │ │ │ │ │ ├── network.lua │ │ │ │ │ │ ├── status.lua │ │ │ │ │ │ ├── system.lua │ │ │ │ │ │ └── uci.lua │ │ │ │ ├── model │ │ │ │ │ └── cbi │ │ │ │ │ │ ├── admin_network │ │ │ │ │ │ ├── dhcp.lua │ │ │ │ │ │ ├── hosts.lua │ │ │ │ │ │ ├── iface_add.lua │ │ │ │ │ │ ├── ifaces.lua │ │ │ │ │ │ ├── ipv6.lua │ │ │ │ │ │ ├── network.lua │ │ │ │ │ │ ├── proto_ahcp.lua │ │ │ │ │ │ ├── routes.lua │ │ │ │ │ │ ├── vlan.lua │ │ │ │ │ │ ├── wifi.lua │ │ │ │ │ │ └── wifi_add.lua │ │ │ │ │ │ ├── admin_status │ │ │ │ │ │ └── processes.lua │ │ │ │ │ │ └── admin_system │ │ │ │ │ │ ├── admin.lua │ │ │ │ │ │ ├── backupfiles.lua │ │ │ │ │ │ ├── buttons.lua │ │ │ │ │ │ ├── crontab.lua │ │ │ │ │ │ ├── fstab.lua │ │ │ │ │ │ ├── fstab │ │ │ │ │ │ ├── mount.lua │ │ │ │ │ │ └── swap.lua │ │ │ │ │ │ ├── ipkg.lua │ │ │ │ │ │ ├── leds.lua │ │ │ │ │ │ ├── startup.lua │ │ │ │ │ │ └── system.lua │ │ │ │ └── view │ │ │ │ │ ├── admin_network │ │ │ │ │ ├── diagnostics.htm │ │ │ │ │ ├── iface_overview.htm │ │ │ │ │ ├── iface_status.htm │ │ │ │ │ ├── lease_status.htm │ │ │ │ │ ├── switch_status.htm │ │ │ │ │ ├── wifi_join.htm │ │ │ │ │ ├── wifi_overview.htm │ │ │ │ │ └── wifi_status.htm │ │ │ │ │ ├── admin_status │ │ │ │ │ ├── bandwidth.htm │ │ │ │ │ ├── connections.htm │ │ │ │ │ ├── dmesg.htm │ │ │ │ │ ├── index.htm │ │ │ │ │ ├── iptables.htm │ │ │ │ │ ├── load.htm │ │ │ │ │ ├── routes.htm │ │ │ │ │ ├── syslog.htm │ │ │ │ │ └── wireless.htm │ │ │ │ │ ├── admin_system │ │ │ │ │ ├── applyreboot.htm │ │ │ │ │ ├── backupfiles.htm │ │ │ │ │ ├── clock_status.htm │ │ │ │ │ ├── flashops.htm │ │ │ │ │ ├── ipkg.htm │ │ │ │ │ ├── packages.htm │ │ │ │ │ ├── reboot.htm │ │ │ │ │ └── upgrade.htm │ │ │ │ │ └── admin_uci │ │ │ │ │ ├── apply.htm │ │ │ │ │ ├── changelog.htm │ │ │ │ │ ├── changes.htm │ │ │ │ │ └── revert.htm │ │ │ └── src │ │ │ │ └── luci-bwc.c │ │ ├── admin-mini │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── mini │ │ │ │ │ ├── index.lua │ │ │ │ │ ├── network.lua │ │ │ │ │ └── system.lua │ │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── mini │ │ │ │ │ ├── dhcp.lua │ │ │ │ │ ├── index.lua │ │ │ │ │ ├── luci.lua │ │ │ │ │ ├── network.lua │ │ │ │ │ ├── passwd.lua │ │ │ │ │ ├── system.lua │ │ │ │ │ └── wifi.lua │ │ │ │ └── view │ │ │ │ └── mini │ │ │ │ ├── applyreboot.htm │ │ │ │ ├── backup.htm │ │ │ │ ├── index.htm │ │ │ │ ├── reboot.htm │ │ │ │ └── upgrade.htm │ │ ├── failsafe │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── failsafe │ │ │ │ │ └── failsafe.lua │ │ │ │ └── view │ │ │ │ └── failsafe │ │ │ │ ├── applyreboot.htm │ │ │ │ ├── flashops.htm │ │ │ │ ├── reboot.htm │ │ │ │ └── upgrade.htm │ │ ├── freifunk │ │ │ ├── Makefile │ │ │ ├── htdocs │ │ │ │ └── luci-static │ │ │ │ │ ├── flashing.html │ │ │ │ │ └── resources │ │ │ │ │ ├── OSMLatLon.htm │ │ │ │ │ ├── flashing.gif │ │ │ │ │ ├── freifunk-map │ │ │ │ │ ├── hna.gif │ │ │ │ │ └── node.gif │ │ │ │ │ └── osm.js │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── freifunk │ │ │ │ │ ├── freifunk.lua │ │ │ │ │ └── remote_update.lua │ │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── freifunk │ │ │ │ │ ├── basics.lua │ │ │ │ │ ├── contact.lua │ │ │ │ │ ├── profile.lua │ │ │ │ │ ├── profile_expert.lua │ │ │ │ │ └── user_index.lua │ │ │ │ └── view │ │ │ │ ├── cbi │ │ │ │ └── osmll_value.htm │ │ │ │ ├── freifunk-map │ │ │ │ ├── frame.htm │ │ │ │ └── map.htm │ │ │ │ └── freifunk │ │ │ │ ├── adminindex.htm │ │ │ │ ├── contact.htm │ │ │ │ ├── index.htm │ │ │ │ ├── profile_error.htm │ │ │ │ ├── public_status.htm │ │ │ │ └── remote_update.htm │ │ ├── niu │ │ │ ├── COPYING.icons │ │ │ ├── Makefile │ │ │ ├── htdocs │ │ │ │ └── luci-static │ │ │ │ │ └── resources │ │ │ │ │ ├── icons32 │ │ │ │ │ ├── folder.png │ │ │ │ │ ├── network-wireless.png │ │ │ │ │ ├── network-workgroup.png │ │ │ │ │ ├── preferences-system-network.png │ │ │ │ │ └── preferences-system.png │ │ │ │ │ └── niu.css │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── niu │ │ │ │ │ │ ├── dashboard.lua │ │ │ │ │ │ ├── network.lua │ │ │ │ │ │ ├── system.lua │ │ │ │ │ │ ├── traffic.lua │ │ │ │ │ │ └── wireless.lua │ │ │ │ ├── model │ │ │ │ │ └── cbi │ │ │ │ │ │ └── niu │ │ │ │ │ │ ├── network │ │ │ │ │ │ ├── assign.lua │ │ │ │ │ │ ├── assign1.lua │ │ │ │ │ │ ├── ddns.lua │ │ │ │ │ │ ├── ddns1.lua │ │ │ │ │ │ ├── etherwan.lua │ │ │ │ │ │ ├── lan.lua │ │ │ │ │ │ ├── lan1.lua │ │ │ │ │ │ ├── wan.lua │ │ │ │ │ │ ├── wandevice.lua │ │ │ │ │ │ ├── wlanwan.lua │ │ │ │ │ │ └── wlanwanscan.lua │ │ │ │ │ │ ├── system │ │ │ │ │ │ ├── general.lua │ │ │ │ │ │ ├── general1.lua │ │ │ │ │ │ └── reboot.lua │ │ │ │ │ │ ├── traffic │ │ │ │ │ │ ├── portfw.lua │ │ │ │ │ │ ├── portfw1.lua │ │ │ │ │ │ ├── qos.lua │ │ │ │ │ │ ├── qos1.lua │ │ │ │ │ │ ├── routes.lua │ │ │ │ │ │ └── routes1.lua │ │ │ │ │ │ └── wireless │ │ │ │ │ │ ├── ap.lua │ │ │ │ │ │ ├── ap1.lua │ │ │ │ │ │ ├── apdevice.lua │ │ │ │ │ │ ├── brdevice.lua │ │ │ │ │ │ └── bridge.lua │ │ │ │ ├── niulib.lua │ │ │ │ └── view │ │ │ │ │ └── niu │ │ │ │ │ ├── dashboard.htm │ │ │ │ │ ├── network.htm │ │ │ │ │ ├── network │ │ │ │ │ ├── rtable.htm │ │ │ │ │ ├── warn_ip_change.htm │ │ │ │ │ └── wlanwanscan.htm │ │ │ │ │ ├── null.htm │ │ │ │ │ ├── system.htm │ │ │ │ │ ├── system │ │ │ │ │ ├── backup.htm │ │ │ │ │ ├── reboot.htm │ │ │ │ │ └── upgrade.htm │ │ │ │ │ ├── traffic.htm │ │ │ │ │ └── traffic │ │ │ │ │ └── conntrack.htm │ │ │ └── root │ │ │ │ └── etc │ │ │ │ └── uci-defaults │ │ │ │ └── luci-niu-firstrun │ │ ├── rpc │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── controller │ │ │ │ └── rpc.lua │ │ │ │ ├── jsonrpc.lua │ │ │ │ └── jsonrpcbind │ │ │ │ └── uci.lua │ │ └── secn │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ ├── model │ │ │ └── cbi │ │ │ │ └── secn │ │ │ │ ├── ap.lua │ │ │ │ ├── lan.lua │ │ │ │ ├── mesh.lua │ │ │ │ └── network.lua │ │ │ └── view │ │ │ └── mini │ │ │ ├── applyreboot.htm │ │ │ ├── backup.htm │ │ │ ├── index.htm │ │ │ ├── reboot.htm │ │ │ └── upgrade.htm │ ├── po │ │ ├── ca │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── cs │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── de │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── el │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── en │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── es │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── fr │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── he │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── hu │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── it │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── ja │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── ms │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── no │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── pl │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── pt │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── pt_BR │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── ro │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── ru │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── templates │ │ │ ├── ahcp.pot │ │ │ ├── asterisk.pot │ │ │ ├── base.pot │ │ │ ├── commands.pot │ │ │ ├── coovachilli.pot │ │ │ ├── ddns.pot │ │ │ ├── diag_core.pot │ │ │ ├── diag_devinfo.pot │ │ │ ├── ffwizard.pot │ │ │ ├── firewall.pot │ │ │ ├── freifunk-policyrouting.pot │ │ │ ├── freifunk.pot │ │ │ ├── hd_idle.pot │ │ │ ├── meshwizard.pot │ │ │ ├── minidlna.pot │ │ │ ├── mmc_over_gpio.pot │ │ │ ├── multiwan.pot │ │ │ ├── ntpc.pot │ │ │ ├── olsr.pot │ │ │ ├── openvpn.pot │ │ │ ├── p2pblock.pot │ │ │ ├── p910nd.pot │ │ │ ├── pbx-voicemail.pot │ │ │ ├── pbx.pot │ │ │ ├── polipo.pot │ │ │ ├── qos.pot │ │ │ ├── radvd.pot │ │ │ ├── rrdtool.pot │ │ │ ├── samba.pot │ │ │ ├── splash.pot │ │ │ ├── statistics.pot │ │ │ ├── tinyproxy.pot │ │ │ ├── transmission.pot │ │ │ ├── upnp.pot │ │ │ ├── ushare.pot │ │ │ ├── uvc_streamer.pot │ │ │ ├── vnstat.pot │ │ │ ├── voice_core.pot │ │ │ ├── voice_diag.pot │ │ │ ├── watchcat.pot │ │ │ ├── wol.pot │ │ │ └── wshaper.pot │ │ ├── tr │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── uk │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ ├── vi │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ │ └── zh_CN │ │ │ ├── ahcp.po │ │ │ ├── asterisk.po │ │ │ ├── base.po │ │ │ ├── commands.po │ │ │ ├── coovachilli.po │ │ │ ├── ddns.po │ │ │ ├── diag_core.po │ │ │ ├── diag_devinfo.po │ │ │ ├── ffwizard.po │ │ │ ├── firewall.po │ │ │ ├── freifunk-policyrouting.po │ │ │ ├── freifunk.po │ │ │ ├── hd_idle.po │ │ │ ├── meshwizard.po │ │ │ ├── minidlna.po │ │ │ ├── mmc_over_gpio.po │ │ │ ├── multiwan.po │ │ │ ├── ntpc.po │ │ │ ├── olsr.po │ │ │ ├── openvpn.po │ │ │ ├── p2pblock.po │ │ │ ├── p910nd.po │ │ │ ├── pbx-voicemail.po │ │ │ ├── pbx.po │ │ │ ├── polipo.po │ │ │ ├── qos.po │ │ │ ├── radvd.po │ │ │ ├── rrdtool.po │ │ │ ├── samba.po │ │ │ ├── splash.po │ │ │ ├── statistics.po │ │ │ ├── tinyproxy.po │ │ │ ├── transmission.po │ │ │ ├── upnp.po │ │ │ ├── ushare.po │ │ │ ├── uvc_streamer.po │ │ │ ├── vnstat.po │ │ │ ├── voice_core.po │ │ │ ├── voice_diag.po │ │ │ ├── watchcat.po │ │ │ ├── wol.po │ │ │ └── wshaper.po │ ├── protocols │ │ ├── 3g │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── admin_network │ │ │ │ └── proto_3g.lua │ │ ├── core │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── admin_network │ │ │ │ │ ├── proto_dhcp.lua │ │ │ │ │ ├── proto_none.lua │ │ │ │ │ └── proto_static.lua │ │ │ │ └── tools │ │ │ │ └── proto.lua │ │ ├── ipv6 │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ └── model │ │ │ │ ├── cbi │ │ │ │ └── admin_network │ │ │ │ │ ├── proto_6in4.lua │ │ │ │ │ ├── proto_6rd.lua │ │ │ │ │ ├── proto_6to4.lua │ │ │ │ │ ├── proto_dhcpv6.lua │ │ │ │ │ └── proto_dslite.lua │ │ │ │ └── network │ │ │ │ ├── proto_4x6.lua │ │ │ │ ├── proto_6x4.lua │ │ │ │ └── proto_dhcpv6.lua │ │ ├── ppp │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ │ └── model │ │ │ │ ├── cbi │ │ │ │ └── admin_network │ │ │ │ │ ├── proto_l2tp.lua │ │ │ │ │ ├── proto_ppp.lua │ │ │ │ │ ├── proto_pppoa.lua │ │ │ │ │ ├── proto_pppoe.lua │ │ │ │ │ └── proto_pptp.lua │ │ │ │ └── network │ │ │ │ └── proto_ppp.lua │ │ └── relay │ │ │ ├── Makefile │ │ │ └── luasrc │ │ │ └── model │ │ │ ├── cbi │ │ │ └── admin_network │ │ │ │ └── proto_relay.lua │ │ │ └── network │ │ │ └── proto_relay.lua │ └── themes │ │ ├── base │ │ ├── Makefile │ │ └── htdocs │ │ │ └── luci-static │ │ │ └── resources │ │ │ ├── icons │ │ │ ├── bridge.png │ │ │ ├── bridge_disabled.png │ │ │ ├── encryption.png │ │ │ ├── encryption_disabled.png │ │ │ ├── ethernet.png │ │ │ ├── ethernet_disabled.png │ │ │ ├── loading.gif │ │ │ ├── port_down.png │ │ │ ├── port_up.png │ │ │ ├── signal-0-25.png │ │ │ ├── signal-0.png │ │ │ ├── signal-25-50.png │ │ │ ├── signal-50-75.png │ │ │ ├── signal-75-100.png │ │ │ ├── signal-none.png │ │ │ ├── switch.png │ │ │ ├── switch_disabled.png │ │ │ ├── tunnel.png │ │ │ ├── tunnel_disabled.png │ │ │ ├── vlan.png │ │ │ ├── vlan_disabled.png │ │ │ ├── wifi.png │ │ │ ├── wifi_big.png │ │ │ ├── wifi_big_disabled.png │ │ │ └── wifi_disabled.png │ │ │ └── xhr.js │ │ ├── bootstrap │ │ ├── Makefile │ │ ├── htdocs │ │ │ └── luci-static │ │ │ │ └── bootstrap │ │ │ │ ├── cascade.css │ │ │ │ ├── favicon.ico │ │ │ │ └── html5.js │ │ ├── ipkg │ │ │ └── postinst │ │ ├── luasrc │ │ │ └── view │ │ │ │ └── themes │ │ │ │ └── bootstrap │ │ │ │ ├── footer.htm │ │ │ │ └── header.htm │ │ └── root │ │ │ └── etc │ │ │ └── uci-defaults │ │ │ └── luci-theme-bootstrap │ │ ├── freifunk-bno │ │ ├── Makefile │ │ ├── htdocs │ │ │ └── luci-static │ │ │ │ └── freifunk-bno │ │ │ │ ├── cascade.css │ │ │ │ └── images │ │ │ │ ├── bgoption.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── header-back.gif │ │ │ │ ├── header-left.gif │ │ │ │ ├── header-right.gif │ │ │ │ ├── logo.gif │ │ │ │ ├── main-back.png │ │ │ │ └── schriftzug.gif │ │ ├── ipkg │ │ │ └── postinst │ │ ├── luasrc │ │ │ └── view │ │ │ │ └── themes │ │ │ │ └── freifunk-bno │ │ │ │ ├── footer.htm │ │ │ │ └── header.htm │ │ └── root │ │ │ └── etc │ │ │ └── uci-defaults │ │ │ └── luci-theme-freifunk-bno │ │ ├── freifunk-generic │ │ ├── Makefile │ │ ├── htdocs │ │ │ └── luci-static │ │ │ │ └── freifunk-generic │ │ │ │ ├── bg.jpg │ │ │ │ ├── cascade.css │ │ │ │ ├── header.jpg │ │ │ │ ├── ie7.css │ │ │ │ ├── logo.jpg │ │ │ │ ├── mobile.css │ │ │ │ └── smallscreen.css │ │ ├── ipkg │ │ │ └── postinst │ │ ├── luasrc │ │ │ └── view │ │ │ │ └── themes │ │ │ │ └── freifunk-generic │ │ │ │ ├── footer.htm │ │ │ │ └── header.htm │ │ └── root │ │ │ └── etc │ │ │ └── uci-defaults │ │ │ └── luci-theme-freifunk-generic │ │ └── openwrt │ │ ├── Makefile │ │ ├── htdocs │ │ └── luci-static │ │ │ └── openwrt.org │ │ │ ├── cascade.css │ │ │ ├── ie6.css │ │ │ ├── ie7.css │ │ │ ├── ie8.css │ │ │ └── tabbg.png │ │ ├── ipkg │ │ └── postinst │ │ ├── luasrc │ │ └── view │ │ │ └── themes │ │ │ └── openwrt.org │ │ │ ├── footer.htm │ │ │ └── header.htm │ │ └── root │ │ └── etc │ │ └── uci-defaults │ │ └── luci-theme-openwrt ├── luci-app-dragino-voip-webpanel │ ├── Makefile │ └── files │ │ ├── etc │ │ └── config │ │ │ ├── dial-rules │ │ │ └── voip │ │ └── usr │ │ ├── bin │ │ ├── config2asterisk │ │ ├── config2clients │ │ ├── config2extension │ │ └── config2servers │ │ └── lib │ │ └── lua │ │ ├── dragino │ │ └── asterisk_ami.lua │ │ └── luci │ │ ├── controller │ │ └── admin │ │ │ └── voip.lua │ │ ├── model │ │ └── cbi │ │ │ └── admin_voip │ │ │ ├── clients.lua │ │ │ ├── dial_rules.lua │ │ │ ├── fxs.lua │ │ │ ├── general.lua │ │ │ ├── servers.lua │ │ │ └── sub │ │ │ ├── client.lua │ │ │ ├── dial_rule.lua │ │ │ └── server.lua │ │ └── view │ │ └── admin_voip │ │ └── index.htm ├── ntpclient │ ├── Makefile │ ├── files │ │ ├── ntpclient.config │ │ └── ntpclient.hotplug │ └── patches │ │ └── 100-daemon.patch └── rrdtool-1.0.x │ ├── Makefile │ └── patches │ ├── 001-no_ordering_cd_joke.patch │ └── 002-no_timezone.patch ├── packages_12.09 ├── .gitignore ├── admin │ ├── debootstrap │ │ ├── Makefile │ │ ├── files │ │ │ └── pkgdetails.c │ │ └── patches │ │ │ └── 100-busybox_fix.patch │ ├── gkrellmd │ │ ├── Makefile │ │ ├── files │ │ │ └── gkrellmd.init │ │ └── patches │ │ │ └── 100-conf.patch │ ├── htop │ │ └── Makefile │ ├── monit │ │ ├── Makefile │ │ ├── files │ │ │ └── monit.init │ │ └── patches │ │ │ ├── 001-no_sslv2.patch │ │ │ └── 002-uclibc_loadavg.patch │ ├── muninlite │ │ ├── Makefile │ │ ├── files │ │ │ └── etc │ │ │ │ └── xinetd.d │ │ │ │ └── munin │ │ └── patches │ │ │ ├── 001-no_disks.patch │ │ │ ├── 002-hostname.patch │ │ │ ├── 100-fix-no-ethtool.patch │ │ │ ├── 200-add-tap-dev.patch │ │ │ └── 210-add-bridge-devs.patch │ ├── nagios-plugins │ │ ├── Makefile │ │ └── patches │ │ │ ├── 002-plugins.patch │ │ │ └── 003-pgsl-header-fix.patch │ ├── nagios │ │ └── Makefile │ ├── nrpe │ │ ├── Makefile │ │ ├── files │ │ │ ├── nrpe.cfg │ │ │ └── nrpe.init │ │ └── patches │ │ │ └── 100-openssl-dh.patch │ ├── nsca │ │ └── Makefile │ ├── osiris │ │ ├── Makefile │ │ ├── files │ │ │ └── osirisd.init │ │ └── patches │ │ │ ├── 001-configure-cross.patch │ │ │ ├── 002-osirisd-pidfile.patch │ │ │ ├── 003-openssl-0.9.8+.patch │ │ │ ├── 004-no_openssl_ripe.patch │ │ │ ├── 006-mod_nvram.patch │ │ │ ├── 007-mod_uptime.patch │ │ │ └── 010-dont-add-host-include-paths.patch │ ├── ostiary │ │ ├── Makefile │ │ └── files │ │ │ ├── ostiaryd.init │ │ │ ├── ssh_disable │ │ │ └── ssh_enable │ ├── pmacct │ │ ├── Makefile │ │ └── files │ │ │ ├── nfacctd.conf │ │ │ ├── nfacctd.default │ │ │ ├── nfacctd.init │ │ │ ├── pmacctd.conf │ │ │ ├── pmacctd.default │ │ │ ├── pmacctd.init │ │ │ ├── sfacctd.conf │ │ │ ├── sfacctd.default │ │ │ ├── sfacctd.init │ │ │ ├── uacctd.conf │ │ │ ├── uacctd.default │ │ │ └── uacctd.init │ ├── sudo │ │ ├── Makefile │ │ └── files │ │ │ └── sudo.init │ ├── syslog-ng │ │ ├── Makefile │ │ ├── files │ │ │ ├── syslog-ng.conf │ │ │ └── syslog-ng.init │ │ └── patches │ │ │ └── 001-no_lfl.patch │ ├── syslog-ng3 │ │ ├── Makefile │ │ └── files │ │ │ ├── syslog-ng.conf │ │ │ └── syslog-ng.init │ └── zabbix │ │ ├── Makefile │ │ ├── files │ │ ├── zabbix_agentd.conf │ │ └── zabbix_agentd.init │ │ └── patches │ │ ├── 001-cross_compile.patch │ │ ├── 002-fix-res_send-on-uclibc.patch │ │ └── 002-uclibc_loadavg.patch ├── devel │ ├── binutils │ │ └── Makefile │ ├── build-essential │ │ ├── Makefile │ │ └── files │ │ │ └── usr │ │ │ └── src │ │ │ └── hello │ │ │ └── hello.c │ ├── cppunit │ │ └── Makefile │ ├── diffutils │ │ └── Makefile │ ├── dmalloc │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-configure_pagesize.patch │ │ │ ├── 110-configure_cxx.patch │ │ │ ├── 120-makefile_shared.patch │ │ │ ├── 130-makefile_destdir.patch │ │ │ ├── 200-fix_return_address.patch │ │ │ ├── 210-fix_threads.patch │ │ │ ├── 300-fix_summarize_script.patch │ │ │ └── 400-undef-strndup.patch │ ├── electric-fence │ │ └── Makefile │ ├── gcc │ │ └── Makefile │ ├── ksymoops │ │ └── Makefile │ ├── make │ │ └── Makefile │ ├── oprofile │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-use_insmod_instead_of_modprobe.patch │ │ │ └── 101-remove_24_support.patch │ ├── patch │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-install.patch │ └── perf │ │ └── Makefile ├── ipv6 │ ├── 6scripts │ │ ├── Makefile │ │ └── files │ │ │ ├── 6bridge.conf │ │ │ ├── 6bridge.init │ │ │ ├── 6tunnel.conf │ │ │ ├── 6tunnel.init │ │ │ └── he-tun.ppp │ ├── 6tunnel │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-arm-fix-optc-initialization.patch │ ├── ahcpd │ │ ├── Makefile │ │ └── files │ │ │ ├── ahcpd.config │ │ │ └── ahcpd.init │ ├── aiccu │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-cross_compile.patch │ │ │ ├── 200-add_dn_skipname.patch │ │ │ └── 300-resolver-uclibc.patch │ ├── dhcp6 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-opt_flags.patch │ │ │ ├── 002-gcc_lvalue.patch │ │ │ └── 003-debug.patch │ ├── dibbler │ │ ├── Makefile │ │ └── files │ │ │ ├── dibbler-client.init │ │ │ ├── dibbler-relay.init │ │ │ └── dibbler-server.init │ ├── gw6c │ │ ├── Makefile │ │ └── files │ │ │ ├── gw6c.config │ │ │ ├── gw6c.init │ │ │ └── openwrt.sh │ ├── ipv6calc │ │ └── Makefile │ ├── miredo │ │ ├── Makefile │ │ ├── files │ │ │ ├── client-hook │ │ │ ├── miredo-server.init │ │ │ └── miredo.init │ │ └── patches │ │ │ ├── 100-uclibc.patch │ │ │ ├── 110-fix_compile_error.patch │ │ │ └── 120-automake-compat.patch │ ├── mrd6 │ │ ├── Makefile │ │ ├── files │ │ │ ├── mrd6.conf │ │ │ └── mrd6.init │ │ └── patches │ │ │ ├── 001-add_missing_include.patch │ │ │ ├── 002-missing_netlink_defs.patch │ │ │ ├── 003-debian.patch │ │ │ └── 004-ambiguous_call_fix.patch │ ├── ndisc │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-favor_bsd.patch │ │ │ └── 110-strverscmp.patch │ ├── ndppd │ │ ├── Makefile │ │ └── files │ │ │ └── ndppd.init │ ├── ptrtd │ │ ├── Makefile │ │ ├── files │ │ │ └── ptrtd.init │ │ └── patches │ │ │ └── 100-ptrtd-0.5.2-openwrt.patch │ ├── radvd │ │ ├── Makefile │ │ ├── files │ │ │ ├── radvd.config │ │ │ └── radvd.init │ │ └── patches │ │ │ └── 100-silent-netlink-config-reload.patch │ ├── send │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-libnetfilter_queue_update.patch │ │ │ ├── 002-handle_max_bits_conf.patch │ │ │ ├── 003-keysig_8bytes_alignment.patch │ │ │ ├── 004-always_link_with_ncurses.patch │ │ │ ├── 005-use-bundled-libconfig.patch │ │ │ └── 006-openssl-1.0.0-compat.patch │ ├── shorewall6-lite │ │ ├── Makefile │ │ ├── files │ │ │ ├── hostname │ │ │ ├── hotplug_iface │ │ │ ├── shorewall-lite.init │ │ │ └── vardir │ │ └── patches │ │ │ ├── 110-MODULESDIR.patch │ │ │ └── 120-LOGFILE.patch │ ├── tayga │ │ ├── Makefile │ │ └── files │ │ │ ├── tayga.hotplug │ │ │ └── tayga.sh │ ├── thc-ipv6 │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-optional-openssl.patch │ ├── totd │ │ ├── Makefile │ │ ├── files │ │ │ ├── totd.conf │ │ │ └── totd.init │ │ └── patches │ │ │ └── 001-no_warning_as_errors.patch │ ├── tspc │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-debian_patches.patch │ ├── tunslip6 │ │ └── Makefile │ └── wide-dhcpv6 │ │ ├── Makefile │ │ ├── files │ │ ├── dhcp6c-dnsmasq.hotplug │ │ ├── dhcp6c-radvd.hotplug │ │ ├── dhcp6c-state │ │ ├── dhcp6c.config │ │ ├── dhcp6c.hotplug │ │ ├── dhcp6c.init │ │ ├── dhcp6s.config │ │ ├── dhcp6s.hotplug │ │ └── dhcp6s.init │ │ └── patches │ │ ├── 000-cftoken-noyywrap.patch │ │ ├── 001-linux_old_compat.patch │ │ └── 002-fix-dprintf-clash.patch ├── lang │ ├── 4th │ │ └── Makefile │ ├── arm │ │ └── Makefile │ ├── cython │ │ └── Makefile │ ├── distribute │ │ └── Makefile │ ├── egenix-mx │ │ └── Makefile │ ├── eggdrop │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-makefile_in.patch │ │ │ ├── 002-eggdrop_h.patch │ │ │ ├── 003-language_c.patch │ │ │ └── 004-main_c.patch │ ├── erlang │ │ ├── Makefile │ │ └── patches │ │ │ ├── 101-emulator_includes.patch │ │ │ └── 103-disable_emacs.patch │ ├── gst-python │ │ └── Makefile │ ├── ipython │ │ └── Makefile │ ├── jamvm │ │ └── Makefile │ ├── jsonpath │ │ └── Makefile │ ├── kid │ │ ├── Makefile │ │ └── patches │ │ │ └── 000-setup.patch │ ├── logilab-astng │ │ └── Makefile │ ├── logilab-common │ │ └── Makefile │ ├── lsqlite3 │ │ └── Makefile │ ├── luaexpat │ │ ├── Makefile │ │ ├── files │ │ │ └── compat-5.1r5 │ │ │ │ ├── compat-5.1.c │ │ │ │ ├── compat-5.1.h │ │ │ │ └── compat-5.1.lua │ │ └── patches │ │ │ └── 001-compile-fix.patch │ ├── luafilesystem │ │ └── Makefile │ ├── luaposix │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-eglibc-compat.patch │ ├── luaprofiler │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-link.patch │ ├── luasec │ │ └── Makefile │ ├── luasoap │ │ └── Makefile │ ├── luasocket │ │ └── Makefile │ ├── luasql │ │ └── Makefile │ ├── mako │ │ └── Makefile │ ├── numpy │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-compile.patch │ ├── perl-compress-bzip2 │ │ └── Makefile │ ├── perl-dbi │ │ └── Makefile │ ├── perl-html-parser │ │ └── Makefile │ ├── perl-html-tagset │ │ └── Makefile │ ├── perl-html-tree │ │ └── Makefile │ ├── perl-lockfile-simple │ │ └── Makefile │ ├── perl-net-telnet │ │ └── Makefile │ ├── perl-uri │ │ └── Makefile │ ├── perl-www-curl │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-perl-www-curl_disable_curl-config_hack.patch │ ├── perl-www-mechanize │ │ └── Makefile │ ├── perl-www │ │ └── Makefile │ ├── perl │ │ ├── Makefile │ │ ├── files │ │ │ ├── Module │ │ │ │ └── ScanDeps.pm │ │ │ ├── config.sh-arm.in │ │ │ ├── config.sh-armeb.in │ │ │ ├── config.sh-avr32.in │ │ │ ├── config.sh-i486.in │ │ │ ├── config.sh-mips.in │ │ │ ├── config.sh-mipsel.in │ │ │ ├── config.sh-powerpc.in │ │ │ ├── perlmod-deps.sh │ │ │ ├── scan-perlbase.sh │ │ │ └── strippm.sh │ │ ├── patches │ │ │ ├── 100-static_uudmap.patch │ │ │ ├── 101-fix-cross-compile-endianness-detection.patch │ │ │ └── 200-host-libc-dir-moved-debian+derivatives.patch │ │ ├── perlbase.mk │ │ └── perlmod.mk │ ├── php-pear-db │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-php5-deprecation-fixes.patch │ ├── php-pear-xmlrpc │ │ └── Makefile │ ├── php-pear │ │ ├── Makefile │ │ └── patches │ │ │ └── 000-remove_deprecation_messages.patch │ ├── php4 │ │ ├── Makefile │ │ ├── files │ │ │ ├── php.ini │ │ │ └── php.init │ │ └── patches │ │ │ ├── 002-configure.patch │ │ │ ├── 003-dns_skipname.patch │ │ │ ├── 004-uts_domainname.patch │ │ │ ├── 100-compile_fix.patch │ │ │ └── 110-openssl-1.0.0-compat.patch │ ├── php5 │ │ ├── Makefile │ │ ├── files │ │ │ ├── php.ini │ │ │ ├── php5-fastcgi.config │ │ │ └── php5-fastcgi.init │ │ ├── patches │ │ │ ├── 005-APC.patch │ │ │ ├── 010-PECL-dio.patch │ │ │ ├── 011-PECL-dio-additional-baudrates.patch │ │ │ ├── 020-PECL-add-libevent.patch │ │ │ ├── 030-PECL-add-http.patch │ │ │ ├── 090-restore-sqlite2.patch │ │ │ ├── 091-fix-sqlite2.patch │ │ │ ├── 101-fix_membar_producer_link_error_gcc3x.patch │ │ │ ├── 102-debian_patches_use_embedded_timezonedb.patch │ │ │ ├── 103-debian_patches_use_embedded_timezonedb.patch │ │ │ └── 950-Fix-dl-cross-compiling-issue.patch │ │ └── pecl.mk │ ├── psycopg │ │ └── Makefile │ ├── pybluez │ │ └── Makefile │ ├── pyclips │ │ └── Makefile │ ├── pyevent │ │ ├── Makefile │ │ └── patches │ │ │ ├── 000-libenevt_path_from_env.patch │ │ │ └── 001-event-pyx-python25.patch │ ├── pygobject │ │ ├── Makefile │ │ └── patches │ │ │ └── 010-binary-constants-module.patch │ ├── pymysql │ │ ├── Makefile │ │ └── patches │ │ │ ├── 000-setup.patch │ │ │ └── 010-threadsafe.patch │ ├── pyopenssl │ │ └── Makefile │ ├── pypcap │ │ ├── Makefile │ │ └── patches │ │ │ ├── 000-no_cpickle.patch │ │ │ └── 001-python2_5.patch │ ├── pyrrd │ │ ├── Makefile │ │ └── patches │ │ │ ├── 101-cross.patch │ │ │ └── 200-fetch.patch │ ├── pyserial │ │ └── Makefile │ ├── pysqlite │ │ ├── Makefile │ │ └── files │ │ │ └── setup.cfg.in │ ├── python-cjson │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-unicode-buffer-overflow.patch │ ├── python-crypto │ │ └── Makefile │ ├── python-curl │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-no_static.patch │ ├── python-dbus │ │ └── Makefile │ ├── python-django │ │ └── Makefile │ ├── python-eeml │ │ ├── Makefile │ │ └── patches │ │ │ └── 101-cross.patch │ ├── python-flup │ │ └── Makefile │ ├── python-ifconfig │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-errorcheck.patch │ │ │ └── 002-checkflags-up.patch │ ├── python-imaging-library │ │ ├── Makefile │ │ └── patches │ │ │ └── 101-cross_compile.patch │ ├── python-json │ │ └── Makefile │ ├── python-mimms │ │ └── Makefile │ ├── python-pyosc │ │ └── Makefile │ ├── python-sip │ │ ├── Makefile │ │ ├── files │ │ │ ├── python-sip-package.mk │ │ │ └── sipconfig.macros.template │ │ └── patches │ │ │ └── 100-cross-compile.patch │ ├── python-webpy │ │ └── Makefile │ ├── python │ │ ├── Makefile │ │ ├── files │ │ │ └── python-package.mk │ │ └── patches │ │ │ ├── 000-cross-compile.patch │ │ │ ├── 020-dont-compile-python-files.patch │ │ │ ├── 030-fixup-include-dirs.patch │ │ │ ├── 040-dont-import-cross-compiled-modules.patch │ │ │ ├── 070-dont-clean-ipkg-install.patch │ │ │ ├── 080-distutils-dont_adjust_files.patch │ │ │ ├── 110-enable-zlib.patch │ │ │ ├── 120-force-internal-modules-for-hashlib.patch │ │ │ ├── 130-readline-setup.patch │ │ │ ├── 140-verbose-sharedmods.patch │ │ │ └── 150-no-sqlite-rpath.patch │ ├── python2-chardet │ │ └── Makefile │ ├── pyusb │ │ └── Makefile │ ├── pyxdg │ │ └── Makefile │ ├── pyyaml │ │ └── Makefile │ ├── ruby │ │ ├── Makefile │ │ └── patches │ │ │ └── 0001-Add-option-which-enable-SSLv2-support.patch │ ├── sigscheme │ │ └── Makefile │ ├── simplejson │ │ └── Makefile │ ├── sqlite3-ruby │ │ └── Makefile │ ├── tcl │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-disable_tzdata_and_msgs_install.patch │ │ │ └── 200-fix_mips_build.patch │ ├── telepathy-python │ │ └── Makefile │ ├── twisted │ │ ├── Makefile │ │ └── patches │ │ │ ├── 000-select_submodules.patch │ │ │ └── 001-dont_use_zope.patch │ ├── urbi │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-no_examples.patch │ │ │ └── 005-fix-gcc_4_3-compile.patch │ ├── xapian-bindings │ │ └── Makefile │ └── yapsnmp │ │ ├── Makefile │ │ └── patches │ │ ├── 000-compile_fix.patch │ │ └── 001-automake-compat.patch ├── libs │ ├── aalib │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-destdir.patch │ ├── alsa-lib │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-link_fix.patch │ │ │ ├── 003-mips-atomic-static-inline.patch │ │ │ └── 004-ccache.patch │ ├── apr-util │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-automake-compat.patch │ ├── apr │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-autoconf-compat.patch │ │ │ └── 101-fix_apr_time_now.patch │ ├── argp-standalone │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-throw-in-funcdef.patch │ ├── argtable │ │ └── Makefile │ ├── avahi │ │ ├── Makefile │ │ ├── files │ │ │ ├── avahi-daemon.conf │ │ │ ├── avahi-daemon.init │ │ │ ├── service-http │ │ │ └── service-ssh │ │ └── patches │ │ │ └── 010-step_back_autotools-no-gettext.patch │ ├── axtls │ │ ├── Makefile │ │ ├── files │ │ │ └── config │ │ └── patches │ │ │ ├── 001-opt_flags.patch │ │ │ └── 002-axhttpd_install.patch │ ├── bluez-libs │ │ ├── Makefile │ │ └── patches │ │ │ └── 010-dont-override-libdir.patch │ ├── boost │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-do-not-use-librt.patch │ ├── c-ares │ │ └── Makefile │ ├── cgilib │ │ ├── Makefile │ │ └── patches │ │ │ ├── 200-cgitest_bugfix.patch │ │ │ └── 300-cpp_bugfix.patch │ ├── check │ │ └── Makefile │ ├── classpath │ │ ├── Makefile │ │ └── patches │ │ │ └── 000-fix_include.patch │ ├── clearsilver │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-gcc-vs-dollar-cc.patch │ │ │ ├── 002-make-install-depends.patch │ │ │ ├── 003-disable-tests.patch │ │ │ ├── 100-remove_warnings.patch │ │ │ ├── 101-fix_content_type_ff3.patch │ │ │ └── 102-add_x_requested_http_headers.patch │ ├── clinkc │ │ └── Makefile │ ├── confuse │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-no_werror.patch │ ├── credis │ │ ├── Makefile │ │ └── patches │ │ │ └── 200-Makefile.patch │ ├── curl │ │ ├── Makefile │ │ └── patches │ │ │ └── 200-no_docs_tests.patch │ ├── cyrus-sasl │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-automake-compat.patch │ │ │ └── 200-fix_avr32_compile.patch │ ├── db47 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-sequence_lock.patch │ │ │ ├── 002-lock.patch │ │ │ └── 003-dead_lock.patch │ ├── dbus-glib │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-cross.patch │ │ │ └── 003-disable-tests-docs-examples.patch │ ├── elfutils │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-elfutils-portability.patch │ │ │ ├── 002-no_tests.patch │ │ │ ├── 003-no_warnings_as_errors.patch │ │ │ ├── 004-memcpy_def.patch │ │ │ ├── 005-only_libdw_libelf.patch │ │ │ └── 006-libdw_LIBS.patch │ ├── eventlog │ │ └── Makefile │ ├── expat │ │ └── Makefile │ ├── ezxml │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-cross_compile.patch │ │ │ ├── 101-build_shared.patch │ │ │ ├── 200-ezxml_parse_str.patch │ │ │ ├── 201-ezxml_int.patch │ │ │ ├── 202-ezxml_child.patch │ │ │ └── 203-ezxml_cut.patch │ ├── faad2 │ │ └── Makefile │ ├── fcgi │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-fcgio-int-type-fix.patch │ │ │ └── 110-no_examples.patch │ ├── fftw3 │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-makefile.patch │ ├── file │ │ └── Makefile │ ├── flac │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-no-docs-and-examples.patch │ │ │ ├── 002-no-utility.patch │ │ │ └── 010-automake-compat.patch │ ├── freetype │ │ └── Makefile │ ├── fribidi │ │ └── Makefile │ ├── ftplib │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-fix_ascii_read_without_eol.patch │ │ │ └── 002-check_getserv_by_name.patch │ ├── gd │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-configure_fix.patch │ │ │ └── 101-gdlib-config.patch │ ├── gdbm │ │ └── Makefile │ ├── gettext-full │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-autotools.patch │ │ │ ├── 001-no_examples_and_tests.patch │ │ │ ├── 003-gettext-error_print_progname.patch │ │ │ ├── 004-gnulib-uclibc-sched_param-def.patch │ │ │ ├── 005-uclibc-0.9.30-compat.patch │ │ │ ├── 100-error_progname.patch │ │ │ ├── 120-uclibc-nolocale.patch │ │ │ ├── 150-disable_libxml_iconv.patch │ │ │ └── 160-eglibc_stdio.patch │ ├── gettext │ │ ├── Makefile │ │ └── src │ │ │ ├── include │ │ │ └── libintl.h │ │ │ └── m4 │ │ │ ├── codeset.m4 │ │ │ ├── gettext.m4 │ │ │ ├── intl.m4 │ │ │ ├── intldir.m4 │ │ │ ├── intlmacosx.m4 │ │ │ ├── lcmessage.m4 │ │ │ ├── nls.m4 │ │ │ └── po.m4 │ ├── giflib │ │ └── Makefile │ ├── glib │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-automake-compat.patch │ │ │ ├── 002-glibconfig-sysdefs.h.patch │ │ │ ├── 003-gcc-3.4-compat.patch │ │ │ └── 004-underquoted-glib.m4.patch │ ├── glib2 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-automake-compat.patch │ │ │ ├── 002-missing-gthread-include.patch │ │ │ ├── 010-move-iconv-to-libs.patch │ │ │ └── 020-no-docs-tests-translations.patch │ ├── glibmm │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-disable-examples-tests-doc-tools-scripts.patch │ ├── gmp │ │ └── Makefile │ ├── gnutls │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-no_doc_tests_po.patch │ ├── gperf │ │ └── Makefile │ ├── gpgme │ │ └── Makefile │ ├── gsl │ │ └── Makefile │ ├── gsm │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-debian-libsgm-1.0.10-13.patch │ ├── howl │ │ ├── Makefile │ │ ├── files │ │ │ ├── autoipd.init │ │ │ ├── mDNSResponder.conf │ │ │ ├── mDNSResponder.init │ │ │ └── nifd.init │ │ └── patches │ │ │ ├── 001-config.patch │ │ │ ├── 002-debug_log.patch │ │ │ ├── 003-proto_fix.patch │ │ │ └── 004-linux_types.patch │ ├── id3lib │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-missing_include.patch │ │ │ ├── 120-fix-configure-remove-check-for-iomanip_h.patch │ │ │ ├── 130-fix-includes.patch │ │ │ └── 140-dont-build-examples.patch │ ├── iksemel │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-missing-macros.patch │ ├── intltool │ │ └── Makefile │ ├── jansson │ │ ├── Makefile │ │ └── patches │ │ │ ├── 01-jansson-add-jason_object_deep_update.patch │ │ │ └── 100-add-jason_object_deep_update.patch │ ├── jpeg │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-allow-ccache.patch │ │ │ └── 200-crop.patch │ ├── keynote │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-build.patch │ │ │ └── 002-cross_compile.patch │ ├── ldns │ │ └── Makefile │ ├── leptonica │ │ └── Makefile │ ├── libIDL2 │ │ └── Makefile │ ├── libaio │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-arches_from_debian_package_0.3.106-8.patch │ │ │ └── 002-avr32_support.patch │ ├── libamsel │ │ └── Makefile │ ├── libao │ │ └── Makefile │ ├── libart │ │ └── Makefile │ ├── libassuan │ │ └── Makefile │ ├── libatomicops │ │ └── Makefile │ ├── libaudiofile │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-audiofile-config-libdirs.patch │ ├── libcap │ │ └── Makefile │ ├── libcelt │ │ └── Makefile │ ├── libcli │ │ └── Makefile │ ├── libconfig │ │ └── Makefile │ ├── libcroco │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-automake-compat.patch │ ├── libcrypto++ │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-strict_gcc43_include.patch │ │ │ ├── 002-cryptest_data_files_location.patch │ │ │ └── 003-autoconf_files.patch │ ├── libcunit │ │ └── Makefile │ ├── libdaemon │ │ └── Makefile │ ├── libdaq │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-cross-compile-test.patch │ ├── libdbi │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-no_docs.patch │ ├── libdirectfb │ │ ├── Makefile │ │ └── patches │ │ │ └── disable-asm.patch │ ├── libdlna │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-configure_fix.patch │ │ │ ├── 200-parallel-build.patch │ │ │ └── 300-ffmpeg_compat.patch │ ├── libdmapsharing │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-diable_pixbuf.patch │ ├── libdnet │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-dnet_config.patch │ │ │ ├── 002-fix_avr32_compile.patch │ │ │ └── 010-gcc4.patch │ ├── libdvbpsi │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-no_doc_examples.patch │ ├── libdvdread │ │ └── Makefile │ ├── libelf │ │ └── Makefile │ ├── libevent │ │ └── Makefile │ ├── libevent2 │ │ └── Makefile │ ├── libexif │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-no_doc.patch │ ├── libffi │ │ └── Makefile │ ├── libfreecwmp │ │ └── Makefile │ ├── libfreefare │ │ └── Makefile │ ├── libfreenect │ │ └── Makefile │ ├── libftdi │ │ └── Makefile │ ├── libgcrypt │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-no_docs_tests.patch │ ├── libgpg-error │ │ └── Makefile │ ├── libgphoto2 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-automake-compat.patch │ │ │ └── 002-no-tests-docs-examples-translations.patch │ ├── libgssapi │ │ └── Makefile │ ├── libiconv-full │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-strip_charsets.patch │ │ │ ├── 101-autotools.patch │ │ │ ├── 103-configure_ac_fix.patch │ │ │ └── 200-work-with-libtool2.patch │ ├── libiconv │ │ ├── COPYING │ │ ├── COPYRIGHT │ │ ├── Makefile │ │ └── src │ │ │ ├── iconv.c │ │ │ ├── include │ │ │ ├── charmaps.h │ │ │ ├── charmaps │ │ │ │ ├── iso-8859-10.h │ │ │ │ ├── iso-8859-13.h │ │ │ │ ├── iso-8859-14.h │ │ │ │ ├── iso-8859-16.h │ │ │ │ ├── iso-8859-2.h │ │ │ │ ├── iso-8859-3.h │ │ │ │ ├── iso-8859-4.h │ │ │ │ ├── iso-8859-5.h │ │ │ │ ├── iso-8859-6.h │ │ │ │ ├── iso-8859-7.h │ │ │ │ ├── iso-8859-8.h │ │ │ │ ├── iso-8859-9.h │ │ │ │ ├── koi8-r.h │ │ │ │ ├── windows-1250.h │ │ │ │ ├── windows-1251.h │ │ │ │ ├── windows-1252.h │ │ │ │ ├── windows-1253.h │ │ │ │ ├── windows-1254.h │ │ │ │ ├── windows-1255.h │ │ │ │ ├── windows-1256.h │ │ │ │ ├── windows-1257.h │ │ │ │ ├── windows-1258.h │ │ │ │ └── windows-874.h │ │ │ └── iconv.h │ │ │ └── m4 │ │ │ └── iconv.m4 │ ├── libid3tag │ │ └── Makefile │ ├── libidn │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-remove-libtool.patch │ │ │ └── 002-disable-po-docs-examples.patch │ ├── libimobiledevice │ │ └── Makefile │ ├── libinklevel │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-configure.patch │ │ │ ├── 002-disable_parport.patch │ │ │ └── 003-fix_usb_device_location.patch │ ├── liblo │ │ └── Makefile │ ├── libmad │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-mips_removal_h_constraint.patch │ ├── libmbus │ │ └── Makefile │ ├── libmcrypt │ │ └── Makefile │ ├── libmicrohttpd │ │ └── Makefile │ ├── libmicroxml │ │ └── Makefile │ ├── libmikmod │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-disable-doc.patch │ │ │ └── 003-automake-compat.patch │ ├── libmms │ │ └── Makefile │ ├── libmnl │ │ └── Makefile │ ├── libmodbus │ │ └── Makefile │ ├── libmpcdec │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-automake-compat.patch │ │ │ └── 100-fixed_point.patch │ ├── libmpd │ │ └── Makefile │ ├── libmpdclient │ │ └── Makefile │ ├── libmpeg2 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 101-ppc_no_altivec.patch │ │ │ └── 102-arm_data_preload_check.patch │ ├── libnatpmp │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-cross_compile.patch │ ├── libnet-1.0.x │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-debian_subset.patch.gz │ │ │ └── 150-portability.patch │ ├── libnet-1.1.x │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-debian-subset.patch │ │ │ ├── 150-portability.patch │ │ │ └── 160-endian_cache.patch │ ├── libnetfilter-conntrack │ │ └── Makefile │ ├── libnetfilter-log │ │ └── Makefile │ ├── libnetfilter-queue │ │ └── Makefile │ ├── libnfc │ │ └── Makefile │ ├── libnfnetlink │ │ └── Makefile │ ├── libnfsidmap │ │ ├── Makefile │ │ └── patches │ │ │ └── 000-no-getgrouplist.patch │ ├── libnids │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-no_asm_for_i386.patch │ │ │ ├── 002-configure.patch │ │ │ └── 003-missing_else.patch │ ├── libogg │ │ └── Makefile │ ├── liboil │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-no-tools-docs-examples.patch │ │ │ └── 002-pkgconfig.patch │ ├── libol │ │ └── Makefile │ ├── liboping │ │ ├── Makefile │ │ └── patches │ │ │ └── 01-no-werror.patch │ ├── libosip2 │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-automake-compat.patch │ ├── libowfat │ │ └── Makefile │ ├── libpam │ │ ├── Makefile │ │ └── patches │ │ │ ├── 000-OE-libpam-xtests.patch │ │ │ ├── 000-OE-pam-no-innetgr.patch │ │ │ ├── 001-no_nis.patch │ │ │ ├── 002-no_yywrap.patch │ │ │ ├── 003-no_doc.patch │ │ │ ├── 004-fix_lib64.patch │ │ │ ├── 005-fix_ruserok.patch │ │ │ └── 006-fix_xdr.patch │ ├── libpar2 │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-par2cmdline-0.4-packed.patch │ ├── libpfm │ │ └── Makefile │ ├── libplist │ │ └── Makefile │ ├── libpng │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-config_fix.patch │ │ │ └── 200-CVE-2011-3026.patch │ ├── libpthread-stubs │ │ └── Makefile │ ├── libptmalloc3 │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-nothreads.patch │ ├── librpcsecgss │ │ └── Makefile │ ├── librsync │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-4gb_files.patch │ ├── libsamplerate │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-fix-m4-loop.patch │ ├── libsdl │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-automake-compat.patch │ ├── libsdl_mixer │ │ ├── Makefile │ │ ├── files │ │ │ └── sdl-config │ │ └── patches │ │ │ ├── 001-automake-compat.patch │ │ │ └── 002-fix-linking.patch │ ├── libsdl_sound │ │ └── Makefile │ ├── libshout │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-ogg-c.patch │ │ │ ├── 110-shout-ogg-c.patch │ │ │ ├── 120-vorbis-c.patch │ │ │ └── 140-no_example_doc_win32.patch │ ├── libsigc++ │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-no_doc_tests_examples.patch │ ├── libsml │ │ ├── Makefile │ │ └── patches │ │ │ ├── 010-no-examples-tests.patch │ │ │ ├── 020-ldflags.patch │ │ │ └── 030-cross-compile.patch │ ├── libsndfile │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-automake-compat.patch │ ├── libsoup │ │ └── Makefile │ ├── libspe2 │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-remove_tls_requirement.patch │ ├── libsrtp │ │ ├── Makefile │ │ └── patches │ │ │ ├── 1003_fix_mips_namespace_collision.patch │ │ │ ├── 1005_fix_data_alignment.patch │ │ │ ├── 1007_update_Doxyfile.patch │ │ │ └── 1008_shared-lib.patch │ ├── libssh2 │ │ └── Makefile │ ├── libsynce │ │ └── Makefile │ ├── libtasn1 │ │ └── Makefile │ ├── libtheora │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-no_docs_tests.patch │ ├── libtorrent │ │ ├── Makefile │ │ └── patches │ │ │ ├── 000-upstream-gcc46-fixes.patch │ │ │ ├── 100-fix_cross_compile.patch │ │ │ └── 120-fix-ipv6_socket_datagram.patch │ ├── libtwin │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-compile_fix.patch │ ├── libupnp │ │ └── Makefile │ ├── libusb-1.0 │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-timerfd.patch │ ├── libusb │ │ ├── Makefile │ │ └── patches │ │ │ ├── 000-debian_packed.patch │ │ │ ├── 001-debian_ansi_types.patch │ │ │ ├── 002-no_libusbpp.patch │ │ │ ├── 003-automake-compat.patch │ │ │ └── 004-no_unused.patch │ ├── libv4l │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-no-shm_open-fix.patch │ │ │ ├── 002-allow-disabling-libjpeg.patch │ │ │ ├── 003-add-missing-libs.patch │ │ │ └── 004-disable-qv4l2.patch │ ├── libvncserver │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-automake-compat.patch │ │ │ └── 100-noexamples.patch │ ├── libvorbis │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-automake-compat.patch │ ├── libvorbisidec │ │ └── Makefile │ ├── libxapian │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-missing_includes.patch │ │ │ └── 002-xapian_config_no_ltlibs.patch │ ├── libxml2 │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-debian_CVEs.patch │ ├── libxslt │ │ └── Makefile │ ├── libyaml │ │ └── Makefile │ ├── libzip │ │ └── Makefile │ ├── libzstream │ │ └── Makefile │ ├── lzo │ │ └── Makefile │ ├── matrixssl │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-matrixssl_1.2.4.patch │ │ │ └── 200-compile-fixes.patch │ ├── mxml │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-targets.patch │ ├── mysql │ │ ├── Makefile │ │ ├── conf │ │ │ └── my.cnf │ │ ├── files │ │ │ ├── lex_hash.h │ │ │ └── mysqld.init │ │ └── patches │ │ │ ├── 500-cross_compile.patch │ │ │ ├── 501-disable-pthread-and-tests.patch │ │ │ └── 502-fix-hostname.patch │ ├── nacl │ │ ├── Makefile │ │ └── do-openwrt │ ├── neon │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-automake-compat.patch │ ├── newt │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-compile-fix-broken-makefile.patch │ │ │ └── 110-disable-snackmodule-python.patch │ ├── nmeap │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-no_test.patch │ ├── opal │ │ ├── Makefile │ │ └── patches │ │ │ └── 010-fix-gcc_4_3-compile.patch │ ├── opencdk │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-fix-tests-build │ │ │ └── 200-verify-clearsigned.patch │ ├── openh323 │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-configure.patch │ ├── openldap │ │ ├── Makefile │ │ ├── files │ │ │ └── ldap.init │ │ └── patches │ │ │ ├── 001-automake-compat.patch │ │ │ ├── 020-autofs-schema.patch │ │ │ └── 750-no-strip.patch │ ├── orbit2 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-remove-libtool.patch │ │ │ └── 010-dont-run-testprograms.patch │ ├── ortp │ │ └── Makefile │ ├── ossp-js │ │ └── Makefile │ ├── pcre │ │ ├── Makefile │ │ └── patches │ │ │ └── 750-pcre_config_cross.patch │ ├── phidget21 │ │ └── Makefile │ ├── poco │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-sharedmemory.patch │ ├── polarssl │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-disable-testsuites.patch │ │ │ ├── 200-reduce_config.patch │ │ │ ├── 300-openssl_cipher_name_compat.patch │ │ │ └── 310-fix_blowfish_key_len.patch │ ├── popt │ │ ├── Makefile │ │ └── patches │ │ │ └── 002-no-intl.patch │ ├── postgresql │ │ ├── Makefile │ │ ├── files │ │ │ ├── postgresql.config │ │ │ └── postgresql.init │ │ └── patches │ │ │ ├── 200-ranlib.patch │ │ │ └── 800-busybox-default-pager.patch │ ├── protobuf-c │ │ └── Makefile │ ├── protobuf │ │ └── Makefile │ ├── pthsem │ │ └── Makefile │ ├── ptlib │ │ ├── Makefile │ │ └── patches │ │ │ ├── 010-fix-gcc_4_3-compile.patch │ │ │ └── 020-uclibc-res_nsearch.patch │ ├── pwlib │ │ ├── Makefile │ │ └── patches │ │ │ └── 002-lib_mak.patch │ ├── radiusclient-ng │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-cross_compile.patch │ ├── radlib │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-cross_compile_link_bug.patch │ ├── rblibtorrent │ │ ├── Makefile │ │ └── patches │ │ │ └── enable-shared-linking.patch │ ├── re │ │ └── Makefile │ ├── rem │ │ └── Makefile │ ├── rrdtool-1.0.x │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-no_ordering_cd_joke.patch │ │ │ ├── 002-no_timezone.patch │ │ │ ├── 020-x86-float-cast.patch │ │ │ └── 030-pod2man-stderr.patch │ ├── sctp │ │ └── Makefile │ ├── serdisplib │ │ └── Makefile │ ├── shflags │ │ ├── Makefile │ │ └── patches │ │ │ └── 000-strip.patch │ ├── slang2 │ │ ├── Makefile │ │ └── files │ │ │ └── ncurses5-config │ ├── spandsp │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-compile-fixes.patch │ ├── speex │ │ └── Makefile │ ├── sqlite2 │ │ └── Makefile │ ├── sqlite3 │ │ └── Makefile │ ├── st2205tool │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-base-makefile.patch │ │ │ ├── 110-libst-makefile.patch │ │ │ └── 120-setpic-makefile.patch │ ├── sysfsutils │ │ ├── Makefile │ │ └── patches │ │ │ └── 200-mnt_path_check.patch │ ├── taglib │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-uclibc++-compat.patch │ ├── tcp_wrappers │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-debian_subset.patch │ │ │ ├── 002-opt_cflags.patch │ │ │ ├── 003-scaffold_malloc.patch │ │ │ └── 004-ipv4_prefix.patch │ ├── tiff │ │ └── Makefile │ ├── tokyocabinet │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-remove_extra_paths_from_configure.patch │ │ │ └── 200-uclibc_0.9.30_compat.patch │ ├── ucl │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-autoconf-compat.patch │ ├── unixodbc │ │ ├── Makefile │ │ └── files │ │ │ └── unixodbc_conf.h │ ├── ustl │ │ ├── Makefile │ │ ├── files │ │ │ ├── Common.mk │ │ │ └── config.h │ │ └── patches │ │ │ ├── 001-install-DESTDIR.patch │ │ │ ├── 002-install_path.patch │ │ │ └── 003-fix_stream_bounds_check_dep.patch │ ├── vips │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-no_cpp.patch │ ├── wt │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-fix_random_dev.patch │ ├── wxbase │ │ └── Makefile │ ├── xmlrpc-c │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-config.mk.in.patch │ │ │ └── 002-automake-compat.patch │ ├── xmpp4r │ │ └── Makefile │ ├── zaptel-1.4.x │ │ ├── Makefile │ │ ├── files │ │ │ └── 10-create-device-node │ │ └── patches │ │ │ ├── 002-upstream_hrtimer.patch │ │ │ ├── 100-no_hrtimer_on_x86_only.patch │ │ │ ├── 200-Makefile-pwd.patch │ │ │ ├── 330-uname_m.patch │ │ │ ├── 340-2.6.32.patch │ │ │ ├── 350-2.6.34.patch │ │ │ ├── 360-slab.patch │ │ │ ├── 370-2.6.36.patch │ │ │ ├── 371-3.x.patch │ │ │ ├── 380-use_cross_ar.patch │ │ │ └── 390-include_spinlock_h.patch │ └── zaptel │ │ ├── Makefile │ │ └── patches │ │ └── 110-Makefile-tonezone_install.patch ├── mail │ ├── dovecot │ │ ├── Makefile │ │ ├── files │ │ │ └── dovecot.init │ │ └── patches │ │ │ ├── 001-configure_in.patch │ │ │ └── 002-example_conf.patch │ ├── fetchmail │ │ └── Makefile │ ├── imapfilter │ │ ├── Makefile │ │ └── patches │ │ │ └── 010-pathnames.patch │ ├── mini_sendmail │ │ ├── Makefile │ │ └── patches │ │ │ ├── 200-fullname.patch │ │ │ └── 500-flags.patch │ ├── msmtp │ │ └── Makefile │ ├── mutt │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-no_po_and_docs.patch │ ├── nullmailer │ │ └── Makefile │ ├── procmail │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-procmail_openwrt.patch │ │ │ └── 100-rename_getline.patch │ ├── ssmtp │ │ └── Makefile │ └── xmail │ │ ├── Makefile │ │ ├── files │ │ ├── xmail.config │ │ └── xmail.init │ │ └── patches │ │ ├── 010-Makefile.common.patch │ │ ├── 020-Makefile.lnx.patch │ │ ├── 030-sysmachine.patch │ │ └── 040-honour_opt_flags.patch ├── multimedia │ ├── crtmpserver │ │ ├── Makefile │ │ └── patches │ │ │ ├── 010-link-crypt-for-lua.patch │ │ │ ├── 020-add-rpath.patch │ │ │ ├── 030-default-config.patch │ │ │ ├── 040-use-select.patch │ │ │ ├── 050-add-missing-make-defines.patch │ │ │ └── 060-add-dl-for-crypto.patch │ ├── darkice │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-upstream_svn_r494.patch │ ├── ffmpeg │ │ ├── Config.in │ │ └── Makefile │ ├── fswebcam │ │ └── Makefile │ ├── ftpd-topfield │ │ ├── Makefile │ │ ├── files │ │ │ ├── ftpd-topfield.config │ │ │ └── ftpd-topfield.init │ │ └── patches │ │ │ └── 001-kernel_header_rename.patch │ ├── gmediaserver │ │ ├── Makefile │ │ ├── files │ │ │ ├── gmediaserver.config │ │ │ └── gmediaserver.init │ │ └── patches │ │ │ └── 010-compile-fixes.patch │ ├── gphoto2 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-automake-compat.patch │ │ │ ├── 002-disable-docs-translations.patch │ │ │ └── 100-gpdebug.patch │ ├── graphicsmagick │ │ └── Makefile │ ├── gst-ffmpeg │ │ ├── Config.in │ │ └── Makefile │ ├── gst-plugins-bad │ │ ├── Makefile │ │ └── patches │ │ │ └── 000-gettext.patch │ ├── gst-plugins-base │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-no_docs.patch │ │ │ ├── 002-no_tests.patch │ │ │ └── 003-no_translations.patch │ ├── gst-plugins-good │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-no_docs.patch │ │ │ ├── 002-no_tests.patch │ │ │ └── 003-no_translations.patch │ ├── gst-plugins-ugly │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-no_docs.patch │ │ │ ├── 002-no_tests.patch │ │ │ └── 003-no_translations.patch │ ├── gstreamer │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-no_docs.patch │ │ │ ├── 002-no_tests.patch │ │ │ └── 003-no_translations.patch │ ├── hasciicam │ │ └── Makefile │ ├── icecast │ │ ├── Makefile │ │ ├── libvorbisidec.mk │ │ └── patches │ │ │ ├── 001-icecast-2.3.0-tremor.patch │ │ │ └── 010-fix_libcurl_test_crap.patch │ ├── imagemagick │ │ └── Makefile │ ├── kissdx │ │ ├── Makefile │ │ └── files │ │ │ ├── kissdx.config │ │ │ └── kissdx.init │ ├── minidlna │ │ ├── Makefile │ │ ├── files │ │ │ ├── minidlna.config │ │ │ └── minidlna.init │ │ └── patches │ │ │ ├── 010-genconfig-checks.patch │ │ │ ├── 020-makefile-tweaks.patch │ │ │ └── 030-missing-include.patch │ ├── mjpg-streamer │ │ ├── Makefile │ │ └── files │ │ │ ├── mjpg-streamer.config │ │ │ ├── mjpg-streamer.hotplug │ │ │ └── mjpg-streamer.init │ ├── motion │ │ ├── Makefile │ │ └── patches │ │ │ └── 002-honor_cppflags.patch │ ├── peercast │ │ ├── Makefile │ │ └── files │ │ │ ├── peercast.ini │ │ │ └── peercast.init │ ├── puppy │ │ └── Makefile │ └── ushare │ │ ├── Makefile │ │ ├── files │ │ ├── ushare.config │ │ └── ushare.init │ │ └── patches │ │ ├── 100-configure_grep_fix.patch │ │ └── 200-compile-fixes.patch ├── net │ ├── aircrack-ng │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-add-ignore-channel-negative-1.patch │ ├── aircrack-ptw │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-smaller.patch │ ├── airpwn │ │ └── Makefile │ ├── amule │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-no_backtrace.patch │ ├── amwall │ │ ├── Makefile │ │ └── patches │ │ │ └── 010-compile_fix.patch │ ├── aodv-uu │ │ ├── Makefile │ │ ├── files │ │ │ └── aodv-uu.modules │ │ └── patches │ │ │ ├── 001-normalize.patch │ │ │ ├── 002-linux_2.6.19_ip_route_me_harder_change.patch │ │ │ ├── 003-linux_2.6.19_security_netlink_recv_change.patch │ │ │ ├── 004-linux_2.6.19_includes.patch │ │ │ └── 005-linux_2.6.22_skbuff.patch │ ├── aoetools │ │ └── Makefile │ ├── apache │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-Makefile_in.patch │ │ │ ├── 002-test_char_h.patch │ │ │ ├── 003-logdir_fix.patch │ │ │ ├── 004-pidfile_fix.patch │ │ │ └── 005-httpd_conf.patch │ ├── apcupsd │ │ ├── Makefile │ │ ├── files │ │ │ ├── apccontrol │ │ │ ├── apcupsd.conf │ │ │ ├── apcupsd.init │ │ │ ├── apcupsd_mail.conf │ │ │ ├── changeme │ │ │ ├── commfailure │ │ │ ├── commok │ │ │ ├── offbattery │ │ │ └── onbattery │ │ └── patches │ │ │ └── 010-fix-include-paths.patch │ ├── apf │ │ └── Makefile │ ├── appweb │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-add-ipv6-in-configure.patch │ ├── aprx │ │ ├── Makefile │ │ ├── files │ │ │ └── aprx.init │ │ └── patches │ │ │ └── 100-Makefile_in.patch │ ├── aria2 │ │ └── Makefile │ ├── arpd │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-configure_no_bpf.patch │ │ │ ├── 002-function_string.patch │ │ │ ├── 003-pcap_and_arg.patch │ │ │ ├── 004-no_dnet_config_check.patch │ │ │ └── 005-remove-dropped-libevent-features.patch │ ├── arpwatch │ │ ├── Makefile │ │ └── files │ │ │ └── arpwatch.init │ ├── asterisk-1.8.x │ │ ├── Makefile │ │ ├── files │ │ │ ├── asterisk.default │ │ │ └── asterisk.init │ │ ├── patches │ │ │ ├── 100-build_tools-iconv.patch │ │ │ ├── 200-addons-defaultenable.patch │ │ │ ├── 500-nres.patch │ │ │ ├── 600-CVE-2012-2186.patch │ │ │ └── 700-enable-chan_dahdi.patch │ │ └── src-lantiq │ │ │ ├── channels │ │ │ └── chan_lantiq.c │ │ │ └── configs │ │ │ └── lantiq.conf.sample │ ├── asterisk-chan-sccp-b │ │ ├── Makefile │ │ ├── files │ │ │ └── sccp.openwrt.conf │ │ └── patches │ │ │ ├── 200-register-file-version.patch │ │ │ └── 300-stdarg.patch │ ├── atftp │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-mconfig.patch │ │ │ ├── 110-services.patch │ │ │ ├── 120-retry_setting.patch │ │ │ └── 130-missing_include.patch │ ├── autossh │ │ ├── Makefile │ │ └── files │ │ │ ├── autossh.config │ │ │ ├── autossh.hotplug │ │ │ └── autossh.init │ ├── axel │ │ └── Makefile │ ├── babel │ │ ├── Makefile │ │ └── files │ │ │ ├── babeld.conf │ │ │ ├── babeld.config │ │ │ └── babeld.init │ ├── bahamut │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-cross_compile.patch │ │ │ ├── 002-glibc_fix.patch │ │ │ └── 010-dont-use-host-zlib.patch │ ├── baresip │ │ ├── Makefile │ │ ├── files │ │ │ └── baresip.init │ │ └── patches │ │ │ └── 100-videodev-compat.patch │ ├── bind │ │ ├── Makefile │ │ ├── files │ │ │ ├── bind │ │ │ │ ├── db.0 │ │ │ │ ├── db.127 │ │ │ │ ├── db.255 │ │ │ │ ├── db.local │ │ │ │ ├── db.root │ │ │ │ └── named.conf.example │ │ │ └── named.init │ │ └── patches │ │ │ ├── 001-no-tests.patch │ │ │ └── 002-no-ecdsa-testing.patch │ ├── bing │ │ └── Makefile │ ├── bird │ │ ├── Makefile │ │ ├── files │ │ │ ├── bird4.conf │ │ │ ├── bird4.init │ │ │ ├── bird4loop │ │ │ ├── bird6.conf │ │ │ ├── bird6.init │ │ │ └── bird6loop │ │ └── patches │ │ │ └── 0001-change_config_name.patch │ ├── bitchx │ │ ├── Makefile │ │ ├── files │ │ │ ├── bitchxrc │ │ │ └── bitchxrc.init │ │ └── patches │ │ │ ├── 001-fix_declarations.patch │ │ │ └── 002-tparm.patch │ ├── bitlbee │ │ ├── Makefile │ │ ├── files │ │ │ └── bitlbee.init │ │ └── patches │ │ │ └── 100-cross_compile_configure_fix │ ├── bmon │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-bugfixes.patch │ ├── btpd │ │ ├── Makefile │ │ ├── files │ │ │ ├── btpd.config │ │ │ └── btpd.init │ │ └── patches │ │ │ ├── 000-sha1.diff │ │ │ ├── 001-gettime.patch │ │ │ ├── 002-config.h.patch │ │ │ └── 100-clock.diff │ ├── bwm │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-debian.patch │ ├── bwping │ │ └── Makefile │ ├── cbtt │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-compile.patch │ ├── cdp │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-compile_fixes.patch │ ├── chaosvpn │ │ ├── Makefile │ │ ├── files │ │ │ ├── chaosvpn.hotplug │ │ │ ├── chaosvpn.init │ │ │ └── chaosvpn_config.sh │ │ └── patches │ │ │ └── 001-dist-makefile.patch │ ├── chillispot │ │ ├── Makefile │ │ ├── files │ │ │ └── chillispot.init │ │ └── patches │ │ │ ├── 001-endian_fix.patch │ │ │ ├── 102-less_memory-footprint.patch │ │ │ ├── 110-macallowed_fix.patch │ │ │ ├── 120-fix_bufferoverflow.patch │ │ │ ├── 150-chillispot-rmtctrl.patch │ │ │ └── 200-gcc_fix.patch │ ├── chrony │ │ ├── Makefile │ │ ├── files │ │ │ ├── chrony.conf │ │ │ ├── chrony.keys │ │ │ ├── ntpd.config │ │ │ ├── ntpd.hotplug │ │ │ └── ntpd.init │ │ └── patches │ │ │ ├── 001-crosscompile.patch │ │ │ └── 002-ipv6_disabled_fixes.patch │ ├── cifs-utils │ │ └── Makefile │ ├── click │ │ ├── Makefile │ │ ├── files │ │ │ └── roofnet.init │ │ └── patches │ │ │ ├── 100-compile_fix.patch │ │ │ └── 110-multithread_fix.patch │ ├── cmdftp │ │ └── Makefile │ ├── conntrack-tools │ │ └── Makefile │ ├── coova-chilli │ │ └── Makefile │ ├── corkscrew │ │ └── Makefile │ ├── crowdcontrol │ │ └── Makefile │ ├── ctorrent │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-CVE-2009-1759.patch │ │ │ └── 100-negative-ints.patch │ ├── cups-bjnp │ │ └── Makefile │ ├── cups │ │ ├── Makefile │ │ ├── files │ │ │ ├── cupsd.init │ │ │ └── etc │ │ │ │ └── cups │ │ │ │ ├── classes.conf │ │ │ │ ├── client.conf │ │ │ │ ├── cupsd.conf │ │ │ │ └── printers.conf │ │ └── patches │ │ │ ├── 100-makefile-targets.patch │ │ │ ├── 140-uname.patch │ │ │ ├── 150-64bit_host_fix.patch │ │ │ └── 160-ppdc.patch │ ├── curlftpfs │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-uclibc_mod.patch │ ├── cutter │ │ └── Makefile │ ├── daemonlogger │ │ └── Makefile │ ├── dansguardian │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-include_dir.patch │ ├── dante │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-automake-compat.patch │ │ │ ├── 100-do-not-use-defdname.patch │ │ │ └── 200-fix-RTLD_NEXT.patch │ ├── darkstat │ │ ├── Makefile │ │ └── files │ │ │ ├── darkstat.config │ │ │ └── darkstat.init │ ├── ddns-scripts │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── ddns │ │ │ └── hotplug.d │ │ │ │ └── iface │ │ │ │ └── 25-ddns │ │ │ └── usr │ │ │ └── lib │ │ │ └── ddns │ │ │ ├── dynamic_dns_functions.sh │ │ │ ├── dynamic_dns_updater.sh │ │ │ ├── services │ │ │ └── url_escape.sed │ ├── deluge │ │ ├── Makefile │ │ └── files │ │ │ ├── deluge.config │ │ │ └── deluge.init │ ├── dhcp-forwarder │ │ ├── Makefile │ │ └── files │ │ │ └── dhcp-fwd.init │ ├── dhcpcd │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-run_dir.patch │ ├── dircproxy │ │ └── Makefile │ ├── ditg │ │ └── Makefile │ ├── djbdns │ │ ├── Changelog │ │ ├── Makefile │ │ ├── README │ │ ├── files │ │ │ ├── axfrdns.init │ │ │ ├── axfrdns │ │ │ │ └── tcp │ │ │ ├── djbdns.conf │ │ │ ├── dnscache.init │ │ │ ├── dnscache │ │ │ │ ├── dnsroots.global │ │ │ │ ├── ignoreip-update │ │ │ │ └── servers │ │ │ │ │ └── @ │ │ │ ├── dnsqrx │ │ │ ├── dnsroots-update │ │ │ ├── rbldns.init │ │ │ ├── rbldns │ │ │ │ └── data │ │ │ ├── tinydns.init │ │ │ ├── tinydns │ │ │ │ ├── add-alias │ │ │ │ ├── add-childns │ │ │ │ ├── add-host │ │ │ │ ├── add-mx │ │ │ │ ├── add-ns │ │ │ │ └── data │ │ │ └── walldns.init │ │ └── patches │ │ │ ├── 010-crosscompile.patch │ │ │ ├── 020-dnsroots-update.patch │ │ │ ├── 030-srv-records-and-axfrget.patch │ │ │ ├── 040-dnscache-less-chatty-log.patch │ │ │ ├── 050-tinydns-mmap-leak.patch │ │ │ ├── 060-dnscache-big-udp-packets.patch │ │ │ ├── 070-dnscache-dpos-tcp-servfail.patch │ │ │ ├── 080-dnscache-cache-negatives.patch │ │ │ ├── 090-tinydns-one-second.patch │ │ │ ├── 110-dnscache-cachestats.patch │ │ │ ├── 120-compiler-temporary-filename.patch │ │ │ ├── 140-dnsnamex-extra-command.patch │ │ │ ├── 200-dnscache-cname-handling.patch │ │ │ ├── 210-dnscache-strict-forwardonly.patch │ │ │ ├── 220-dnscacheip-space-separator.patch │ │ │ ├── 230-tinydns-data-semantic-error.patch │ │ │ ├── 240-tinydns-alias-chain-truncation.patch │ │ │ ├── 250-dnscache-slogging.patch │ │ │ ├── 260-dnsfilter-replace.patch │ │ │ ├── 270-dnscache-sigpipe-fix.patch │ │ │ ├── 280-dnscache-ignoreip2.patch │ │ │ ├── 300-bugfix-dnscache-dempsky-poison.patch │ │ │ ├── 310-bugfix-dnscache-merge-outgoing-requests.patch │ │ │ └── 320-bugfix-dnscache-cache-soa-records.patch │ ├── dmapd │ │ ├── Makefile │ │ ├── files │ │ │ └── dmapd.init │ │ └── patches │ │ │ └── 001-dmapd_conf.patch │ ├── dns2tcp │ │ └── Makefile │ ├── dsl-qos-queue │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-cross_compile.patch │ │ │ ├── 002-include.patch │ │ │ ├── 010-ports_fix.patch │ │ │ └── 020-fix_shebang_line.patch │ ├── dsniff │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-arpspoof_fix.patch │ │ │ ├── 001-decode_pop.patch │ │ │ ├── 001-dns.patch │ │ │ ├── 003-gdbm.patch │ │ │ ├── 004-no_yp.patch │ │ │ ├── 005-openssl_fix.patch │ │ │ ├── 006-pcap_header.patch │ │ │ ├── 007-time_h.patch │ │ │ ├── 008-md5_include.patch │ │ │ └── 010-clk-tck-fix.patch │ ├── dudders │ │ ├── Makefile │ │ └── files │ │ │ ├── dudders.config │ │ │ └── dudders.hotplug │ ├── e169-stats │ │ ├── Makefile │ │ └── patches │ │ │ └── 01-make.patch │ ├── ekg │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-compile-fixes.patch │ ├── elinks │ │ ├── Makefile │ │ └── patches │ │ │ └── 002-fix_avr32_compile │ ├── etherpuppet │ │ └── Makefile │ ├── etherwake │ │ ├── Makefile │ │ ├── files │ │ │ ├── etherwake.config │ │ │ └── etherwake.init │ │ └── patches │ │ │ └── 100-no_ether_hostton.patch │ ├── ethtool │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-ixp4xx.patch │ ├── ettercap │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-cross_compiling.patch │ │ │ ├── 002-libnet_check_honor_ldflags.patch │ │ │ └── 003-automake-compat.patch │ ├── ez-ipupdate │ │ ├── Makefile │ │ ├── files │ │ │ ├── ez-ipupdate.config │ │ │ ├── ez-ipupdate.hotplug │ │ │ └── ez-ipupdate.init │ │ └── patches │ │ │ ├── 001-debian_subset.patch │ │ │ ├── 002-ez_ipupdate_everydns.patch │ │ │ ├── 003-dnsexit.patch │ │ │ └── 004-zoneedit.patch │ ├── faifa │ │ └── Makefile │ ├── fakeidentd │ │ ├── Makefile │ │ └── files │ │ │ └── fakeidentd.init │ ├── flow-tools │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-cross_compile_configure_fix.patch │ │ │ ├── 002-flex_lib.patch │ │ │ ├── 010-python_script_location_fix.patch │ │ │ ├── 020-invalid_lvalue_in_assignment.patch │ │ │ ├── 030-avoid_external_debug_var.patch │ │ │ ├── 050-fix-64bit_temp_time_t.patch │ │ │ ├── 060-fix_uninitialized_var_in_flow_send.patch │ │ │ ├── 070-extra_ftpdu_verify_debugging.patch │ │ │ └── 080-fix_uninitialized_var_in_flow_export.patch │ ├── fping │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-debian.patch │ ├── fprobe-ulog │ │ └── Makefile │ ├── fprobe │ │ └── Makefile │ ├── freepops │ │ └── Makefile │ ├── freeradius2 │ │ ├── Makefile │ │ ├── files │ │ │ └── radiusd.init │ │ └── patches │ │ │ ├── 001-fix-makefile.patch │ │ │ ├── 002-config.patch │ │ │ ├── 004-ldap_configure.patch │ │ │ └── 008-honor_ccpflags.patch │ ├── freeswitch │ │ ├── Makefile │ │ ├── files │ │ │ ├── etc.minimal │ │ │ │ ├── autoload_configs │ │ │ │ │ ├── acl.conf.xml │ │ │ │ │ ├── callcenter.conf.xml │ │ │ │ │ ├── console.conf.xml │ │ │ │ │ ├── dingaling.conf.xml │ │ │ │ │ ├── event_socket.conf.xml │ │ │ │ │ ├── local_stream.conf.xml │ │ │ │ │ ├── lua.conf.xml │ │ │ │ │ ├── modules.conf.xml │ │ │ │ │ ├── post_load_modules.conf.xml │ │ │ │ │ ├── sofia.conf.xml │ │ │ │ │ ├── spandsp.conf.xml │ │ │ │ │ ├── switch.conf.xml │ │ │ │ │ └── timezones.conf.xml │ │ │ │ ├── dialplan │ │ │ │ │ ├── default.xml │ │ │ │ │ ├── default │ │ │ │ │ │ └── PLACEHOLDER │ │ │ │ │ ├── public.xml │ │ │ │ │ └── public │ │ │ │ │ │ └── PLACEHOLDER │ │ │ │ ├── directory │ │ │ │ │ ├── default.xml │ │ │ │ │ └── default │ │ │ │ │ │ ├── 1000.xml │ │ │ │ │ │ ├── 1001.xml │ │ │ │ │ │ ├── 1002.xml │ │ │ │ │ │ ├── 1003.xml │ │ │ │ │ │ ├── 1004.xml │ │ │ │ │ │ └── default.xml │ │ │ │ ├── freeswitch.xml │ │ │ │ ├── fur_elise.ttml │ │ │ │ ├── jingle_profiles │ │ │ │ │ ├── client.xml │ │ │ │ │ └── server.xml │ │ │ │ ├── mime.types │ │ │ │ ├── sip_profiles │ │ │ │ │ ├── external.xml │ │ │ │ │ ├── external │ │ │ │ │ │ └── example.xml │ │ │ │ │ ├── internal.xml │ │ │ │ │ └── internal │ │ │ │ │ │ └── example.xml │ │ │ │ ├── tetris.ttml │ │ │ │ ├── tones.conf │ │ │ │ └── vars.xml │ │ │ ├── etc.packages │ │ │ │ ├── blacklist │ │ │ │ │ ├── autoload_configs │ │ │ │ │ │ └── blacklist.conf.xml │ │ │ │ │ └── blacklists │ │ │ │ │ │ └── blocked.list │ │ │ │ ├── cdr_csv │ │ │ │ │ └── autoload_configs │ │ │ │ │ │ └── cdr_csv.conf.xml │ │ │ │ ├── cdr_pg_csv │ │ │ │ │ └── autoload_configs │ │ │ │ │ │ └── cdr_pg_csv.conf.xml │ │ │ │ ├── event_multicast │ │ │ │ │ └── autoload_configs │ │ │ │ │ │ └── event_multicast.conf.xml │ │ │ │ ├── http_cache │ │ │ │ │ └── autoload_configs │ │ │ │ │ │ └── http_cache.conf.xml │ │ │ │ ├── logfile │ │ │ │ │ └── autoload_configs │ │ │ │ │ │ └── logfile.conf.xml │ │ │ │ ├── pocketsphinx │ │ │ │ │ └── autoload_configs │ │ │ │ │ │ └── pocketsphinx.conf.xml │ │ │ │ ├── rtmp │ │ │ │ │ └── autoload_configs │ │ │ │ │ │ └── rtmp.conf.xml │ │ │ │ ├── say-de │ │ │ │ │ └── lang │ │ │ │ │ │ └── de │ │ │ │ │ │ ├── de.xml │ │ │ │ │ │ ├── demo │ │ │ │ │ │ └── demo.xml │ │ │ │ │ │ └── vm │ │ │ │ │ │ └── tts.xml │ │ │ │ ├── say-en │ │ │ │ │ └── lang │ │ │ │ │ │ └── en │ │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── demo-ivr.xml │ │ │ │ │ │ └── demo.xml │ │ │ │ │ │ ├── dir │ │ │ │ │ │ ├── sounds.xml │ │ │ │ │ │ └── tts.xml │ │ │ │ │ │ ├── en.xml │ │ │ │ │ │ ├── ivr │ │ │ │ │ │ └── sounds.xml │ │ │ │ │ │ └── vm │ │ │ │ │ │ ├── sounds.xml │ │ │ │ │ │ └── tts.xml │ │ │ │ ├── say-fr │ │ │ │ │ └── lang │ │ │ │ │ │ └── fr │ │ │ │ │ │ ├── demo │ │ │ │ │ │ └── demo.xml │ │ │ │ │ │ ├── dir │ │ │ │ │ │ ├── sounds.xml │ │ │ │ │ │ └── tts.xml │ │ │ │ │ │ ├── fr.xml │ │ │ │ │ │ └── vm │ │ │ │ │ │ └── sounds.xml │ │ │ │ ├── say-he │ │ │ │ │ └── lang │ │ │ │ │ │ └── he │ │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── demo-ivr.xml │ │ │ │ │ │ └── demo.xml │ │ │ │ │ │ ├── dir │ │ │ │ │ │ └── sounds.xml │ │ │ │ │ │ ├── he.xml │ │ │ │ │ │ └── vm │ │ │ │ │ │ └── sounds.xml │ │ │ │ ├── say-ru │ │ │ │ │ └── lang │ │ │ │ │ │ └── ru │ │ │ │ │ │ ├── demo │ │ │ │ │ │ ├── demo-ivr.xml │ │ │ │ │ │ └── demo.xml │ │ │ │ │ │ ├── dir │ │ │ │ │ │ ├── sounds.xml │ │ │ │ │ │ └── tts.xml │ │ │ │ │ │ ├── ru.xml │ │ │ │ │ │ └── vm │ │ │ │ │ │ ├── sounds.xml │ │ │ │ │ │ └── tts.xml │ │ │ │ ├── sms │ │ │ │ │ └── chatplan │ │ │ │ │ │ └── default.xml │ │ │ │ ├── syslog │ │ │ │ │ └── autoload_configs │ │ │ │ │ │ └── syslog.conf.xml │ │ │ │ ├── tts_commandline │ │ │ │ │ └── autoload_configs │ │ │ │ │ │ └── tts_commandline.conf.xml │ │ │ │ ├── unimrcp │ │ │ │ │ └── autoload_configs │ │ │ │ │ │ └── unimrcp.conf.xml │ │ │ │ ├── voicemail │ │ │ │ │ └── autoload_configs │ │ │ │ │ │ └── voicemail.conf.xml │ │ │ │ └── xml-cdr │ │ │ │ │ └── autoload_configs │ │ │ │ │ └── xml_cdr.conf.xml │ │ │ ├── freeswitch.config │ │ │ ├── freeswitch.default │ │ │ ├── freeswitch.hotplug │ │ │ └── freeswitch.init │ │ └── patches │ │ │ ├── 000-build-openwrt_rules.mk.patch │ │ │ ├── 001-build-modules_conf_in.patch │ │ │ ├── 002-Makefile.am.patch │ │ │ ├── 003-libs-esl-Makefile.patch │ │ │ ├── 004-src-mod-applications-mod_mp4-mp4_helper_hpp.patch │ │ │ ├── 005-src-mod-codecs-mod_opus-Makefile.patch │ │ │ ├── 006-src-include-timerfd_wrap_h.patch │ │ │ ├── 007-src-mod-endpoints-mod_gsmopen-Makefile.patch │ │ │ ├── 008-src-mod-event_handlers-mod_snmp-Makefile.patch │ │ │ ├── 009-src-mod-codecs-mod_silk-Makefile.patch │ │ │ └── 010-ppc_asm.patch │ ├── frickin │ │ ├── Makefile │ │ └── files │ │ │ ├── frickin.config │ │ │ └── frickin.init │ ├── fwknop │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-fix_config.patch │ │ │ └── 002-fix_init.patch │ ├── gatling │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-fix_ld_libs.patch │ │ │ ├── 002-fix_flags.patch │ │ │ └── 010-add_semicolon.patch │ ├── gesftpserver │ │ └── Makefile │ ├── git │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-convert_builtin.patch │ ├── gpsd │ │ ├── Makefile │ │ └── files │ │ │ ├── gpsd.config │ │ │ ├── gpsd.hotplug │ │ │ └── gpsd.init │ ├── haproxy │ │ ├── Makefile │ │ ├── files │ │ │ ├── haproxy.cfg │ │ │ ├── haproxy.hotplug │ │ │ └── haproxy.init │ │ └── patches │ │ │ └── 001-haproxy-1.4.x-sendproxy.patch │ ├── hiawatha │ │ └── Makefile │ ├── horst │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-compile-fixes.patch │ ├── hping3 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-makefile.patch │ │ │ ├── 101-endianness.patch │ │ │ └── 102-lib_rename.patch │ ├── hsflowd │ │ ├── Makefile │ │ ├── files │ │ │ ├── hsflowd.config │ │ │ ├── hsflowd.init │ │ │ └── sflowovsd.init │ │ └── patches │ │ │ ├── 100-crosscompile.patch │ │ │ ├── 200-uclibc-compat.patch │ │ │ ├── 300-config_files_path.patch │ │ │ └── 400-sflowovsd_assert.patch │ ├── htpdate │ │ ├── Makefile │ │ ├── files │ │ │ ├── htpdate.default │ │ │ └── htpdate.init │ │ └── patches │ │ │ └── 100-adjtimex.patch │ ├── httping │ │ ├── Makefile │ │ └── patches │ │ │ └── 002-version.patch │ ├── httptunnel │ │ ├── Makefile │ │ └── files │ │ │ ├── httptunnel.config │ │ │ └── httptunnel.init │ ├── icmptx │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-cross_compile.patch │ ├── ifstat │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-configure_cross.patch │ ├── iftop │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-debian_armeb.patch │ │ │ ├── 002-debian_frozen_order.patch │ │ │ ├── 003-debian_arm.patch │ │ │ ├── 004-debian_bar_display.patch │ │ │ └── 005-debian_bar_bytes.patch │ ├── igmpproxy │ │ ├── Makefile │ │ ├── files │ │ │ ├── igmpproxy.config │ │ │ └── igmpproxy.init │ │ └── patches │ │ │ ├── 001-Send-IGMP-packets-with-IP-Router-Alert-option-RFC-21.patch │ │ │ ├── 002-Change-default-interface-state-to-disabled-wrt-29458.patch │ │ │ ├── 003-Restrict-igmp-reports-for-downstream-interfaces-wrt-.patch │ │ │ ├── 004-Restrict-igmp-reports-forwarding-to-upstream-interfa.patch │ │ │ └── 100-use-monotic-clock-instead-of-time-of-day.patch │ ├── imsnif │ │ ├── Makefile │ │ ├── files │ │ │ └── imsnif │ │ └── patches │ │ │ └── 001-openwrt_paths.patch │ ├── imspector │ │ ├── Makefile │ │ ├── files │ │ │ ├── imspector.config │ │ │ └── imspector.init │ │ └── patches │ │ │ └── 010-openssl-1.0.0-compat.patch │ ├── iodine │ │ ├── Makefile │ │ ├── files │ │ │ ├── iodined.config │ │ │ └── iodined.init │ │ └── patches │ │ │ └── 010-cross-compile.patch │ ├── ipcad │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-honor_cppflags.patch │ │ │ └── 010-no-host-includes.patch │ ├── iperf │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-set-report-next-time-in-single-thread-mode.patch │ ├── ipkungfu │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-replace-modprobe-with-insmod.patch │ ├── ipsec-tools │ │ ├── Makefile │ │ ├── files │ │ │ └── racoon.init │ │ └── patches │ │ │ ├── 001-ipsec-tools-def-psk.patch │ │ │ ├── 001-no_libfl.patch │ │ │ ├── 002-patch8-utmp.patch │ │ │ ├── 003-microsoft-fqdn-in-main.patch │ │ │ └── 005-isakmp-fix.patch │ ├── ipset │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-export.h.patch │ │ │ ├── 200-remove-ipv6_addr_copy.patch │ │ │ └── 210-fix-ipv6_skip_exthdr.patch │ ├── iptables-snmp │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-use_libiptc.patch │ ├── iptraf │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-cross_compile.patch │ │ │ ├── 002-ifaces.patch │ │ │ ├── 003-exit_menu.patch │ │ │ ├── 004-includes_fix.patch │ │ │ ├── 005-atheros.patch │ │ │ └── 005-no_size_cmd.patch │ ├── ipupdate │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-name_conflict.patch │ │ │ └── 200-byteorder.patch │ ├── iputils │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-iputils.patch │ │ │ ├── 002-fix-ipv6.patch │ │ │ ├── 003-fix-makefile.patch │ │ │ ├── 010-ping6_uclibc_resolv.patch │ │ │ └── 011-ping6_use_gnu_source.patch │ ├── irssi-glib1 │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-cross_compiling_fix.patch │ ├── irssi │ │ └── Makefile │ ├── isakmpd │ │ ├── Makefile │ │ └── patches │ │ │ ├── 010-debian_3.patch │ │ │ ├── 020-standardize.patch │ │ │ ├── 030-openssl_hashes.patch │ │ │ ├── 040-security_fix.patch │ │ │ └── 050-ar_cross.patch │ ├── isc-dhcp │ │ ├── Makefile │ │ ├── files │ │ │ ├── dhclient-script │ │ │ ├── dhclient.init │ │ │ ├── dhclient6.conf │ │ │ ├── dhclient6.init │ │ │ ├── dhcpd.conf │ │ │ ├── dhcpd.init │ │ │ ├── dhcpd6.conf │ │ │ └── dhcpd6.init │ │ └── patches │ │ │ └── 000-compile.patch │ ├── jtg │ │ └── Makefile │ ├── kamailio │ │ ├── Makefile │ │ ├── files │ │ │ ├── kamailio.default │ │ │ └── kamailio.init │ │ └── patches │ │ │ ├── 005-config_h.patch │ │ │ └── 007-modules_build.patch │ ├── kamailio3 │ │ ├── Makefile │ │ ├── files │ │ │ ├── kamailio.default │ │ │ └── kamailio.init │ │ └── patches │ │ │ └── 100-cross_compile.patch │ ├── karma │ │ └── Makefile │ ├── keepalived │ │ ├── Makefile │ │ └── files │ │ │ └── keepalived.init │ ├── kismet │ │ ├── Makefile │ │ ├── files │ │ │ ├── ap_manuf │ │ │ ├── client_manuf │ │ │ ├── kismet.conf │ │ │ ├── kismet_drone.conf │ │ │ └── kismet_ui.conf │ │ └── patches │ │ │ └── 010-dont-add-host-include-paths.patch │ ├── knock │ │ ├── Makefile │ │ └── patches │ │ │ └── 010_eglibc_define_PATH_MAX.patch │ ├── krb5 │ │ ├── Makefile │ │ ├── files │ │ │ └── krb5kdc │ │ └── patches │ │ │ ├── 001-fix-build-warning.patch │ │ │ ├── 001-krb5kdc-dir-to-etc.patch │ │ │ └── 002-MITKRB5-SA-2011-002.patch │ ├── l2tpd │ │ ├── Makefile │ │ ├── files │ │ │ ├── l2tpd.conf │ │ │ ├── l2tpd.init │ │ │ └── options.l2tpd │ │ └── patches │ │ │ ├── 001-debian-2.patch │ │ │ ├── 002-debian-2-pty-rev.patch │ │ │ ├── 003-jacco-pty.patch │ │ │ ├── 004-gcc4.patch │ │ │ ├── 004-nonblock.patch │ │ │ └── 005-df-disable.patch │ ├── l2tpns │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-honor_includes_no_fifo_scheduler.patch │ ├── l2tpv3tun │ │ ├── Makefile │ │ ├── files │ │ │ └── l2tp.sh │ │ └── patches │ │ │ ├── 010-custom_ifname.patch │ │ │ └── 100-nl_handle_alloc.patch │ ├── l7-protocols │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-testing_crosscompile.patch │ │ │ ├── 101-testing-timeit.patch │ │ │ └── 102-testing-doallspeeds.patch │ ├── leafnode │ │ ├── Makefile │ │ └── files │ │ │ ├── leafnode.init │ │ │ ├── news │ │ │ └── nntp │ ├── lft │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-no_strip.patch │ ├── lftp │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-libintl.patch │ ├── lighttpd │ │ ├── Makefile │ │ └── files │ │ │ ├── lighttpd.conf │ │ │ └── lighttpd.init │ ├── linuxigd │ │ ├── Makefile │ │ ├── files │ │ │ ├── upnpd.conf │ │ │ └── upnpd.init │ │ └── patches │ │ │ ├── 001-iptables_defs.patch │ │ │ ├── 002-netfilter_nat_headers.patch │ │ │ ├── 003-Makefile-fix.patch │ │ │ ├── 004-iptables-1.4.3.2-compat.patch │ │ │ └── 005-includes.patch │ ├── lispmob │ │ └── Makefile │ ├── live │ │ ├── Makefile │ │ └── patches │ │ │ └── 101-openwrt.patch │ ├── lldpd │ │ ├── Makefile │ │ ├── files │ │ │ ├── lldpd.config │ │ │ └── lldpd.init │ │ └── patches │ │ │ ├── 001-no-multiuser.patch │ │ │ └── 002-no-stack-protector.patch │ ├── lsm │ │ ├── Makefile │ │ └── files │ │ │ ├── connections.conf │ │ │ ├── lsm.conf │ │ │ ├── lsm.init │ │ │ └── lsm_script │ ├── mac-to-devinfo │ │ ├── Makefile │ │ └── files │ │ │ ├── clean-devinfo │ │ │ ├── devinfo-functions.sh │ │ │ ├── ip-to-devinfo │ │ │ ├── mac-to-devinfo │ │ │ ├── macdevdb │ │ │ ├── mactodevinfo │ │ │ ├── netdiscover-to-devinfo │ │ │ ├── netsmap-to-devinfo │ │ │ ├── prep-devinfo │ │ │ └── smap-to-devinfo │ ├── madwimax │ │ ├── Makefile │ │ ├── files │ │ │ ├── 20-madwimax │ │ │ ├── event.sh │ │ │ └── madwimax.init │ │ └── patches │ │ │ └── 001-fix_detection_on_be.patch │ ├── maradns │ │ ├── Makefile │ │ ├── files │ │ │ ├── maradns.init │ │ │ └── mararc │ │ └── patches │ │ │ └── 001-cross_compile_fix.patch │ ├── matrixtunnel │ │ └── Makefile │ ├── mdk3 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-radiotap_needs_types_h.patch │ │ │ └── 010-fix-dependencies.patch │ ├── mdnsresponder │ │ ├── Makefile │ │ ├── files │ │ │ ├── mDNSResponder.conf │ │ │ ├── mDNSResponder.init │ │ │ └── mdnsd.init │ │ └── patches │ │ │ ├── 001-cross_compile.patch │ │ │ └── 002-uclibc.patch │ ├── memcached │ │ ├── Makefile │ │ ├── files │ │ │ ├── memcached.config │ │ │ └── memcached.init │ │ └── patches │ │ │ └── 100-fix_iov_max.patch │ ├── mercurial │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-no_bzip2.patch │ ├── mgen │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-ipv6.patch │ ├── miau │ │ ├── Makefile │ │ └── files │ │ │ └── miau.init │ ├── miax │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-cross.patch │ ├── mii-tool │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-include_linux_sockios.patch │ ├── mini_httpd │ │ ├── Makefile │ │ ├── files │ │ │ ├── matrixssl_helper.c │ │ │ ├── matrixssl_helper.h │ │ │ ├── mini_httpd-ssl.conf │ │ │ ├── mini_httpd.conf │ │ │ ├── mini_httpd.default │ │ │ ├── mini_httpd.init │ │ │ └── mini_httpd.pem │ │ └── patches │ │ │ ├── 001-cgi_path.patch │ │ │ └── 500-matrixssl.patch │ ├── mini_snmpd │ │ ├── Makefile │ │ ├── files │ │ │ ├── mini_snmpd.config │ │ │ └── mini_snmpd.init │ │ └── patches │ │ │ ├── 100-dualstack.patch │ │ │ ├── 101-opt_flags.patch │ │ │ ├── 102-mib_fix_uninitialized_memory.patch │ │ │ └── 103-mib_encode_snmp_element_oid_fix.patch │ ├── miniupnpc │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-no_minixml_test.patch │ │ │ └── 200-miniupnpc_desc.patch │ ├── miniupnpd │ │ ├── Makefile │ │ ├── files │ │ │ ├── firewall.include │ │ │ ├── miniupnpd.defaults │ │ │ ├── miniupnpd.hotplug │ │ │ ├── miniupnpd.init │ │ │ └── upnpd.config │ │ └── patches │ │ │ └── 100-gracefully-handle-missing-ipv6.patch │ ├── mosquitto │ │ ├── Makefile │ │ ├── files │ │ │ └── mosquitto.init │ │ └── patches │ │ │ ├── 100-disable-memory-reporting.patch │ │ │ └── 101-disable-docbook.patch │ ├── mrtg │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-rm-printf-longlong-fmt-test.patch │ ├── mtr │ │ ├── Makefile │ │ └── patches │ │ │ ├── 501-dns.patch │ │ │ ├── 502-fix-res_ninit.patch │ │ │ ├── 520-libresolv_fix.patch │ │ │ └── 521-gtk_fix.patch │ ├── multiwan │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── multiwan │ │ │ └── init.d │ │ │ │ └── multiwan │ │ │ └── usr │ │ │ └── bin │ │ │ └── multiwan │ ├── mutella │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-no_backtrace.patch │ │ │ ├── 002-gcc4_fixes.patch │ │ │ ├── 003-gcc4_3_fixes.patch │ │ │ └── 004-no-host-paths.patch │ ├── mvprelay │ │ └── Makefile │ ├── n2n │ │ ├── Makefile │ │ └── files │ │ │ ├── n2n.config │ │ │ └── n2n.init │ ├── natpmp │ │ ├── Makefile │ │ └── files │ │ │ ├── natpmp.config │ │ │ └── natpmp.init │ ├── nbd │ │ └── Makefile │ ├── nbtscan │ │ └── Makefile │ ├── ncftp │ │ └── Makefile │ ├── ndyndns │ │ ├── Makefile │ │ ├── files │ │ │ ├── ndyndns.conf.sample │ │ │ └── ndyndns.init │ │ └── patches │ │ │ ├── 010-dont-add-host-includes.patch │ │ │ └── 020-ndyndns.patch │ ├── net-snmp │ │ ├── Makefile │ │ ├── files │ │ │ ├── snmpd.conf │ │ │ ├── snmpd.default │ │ │ └── snmpd.init │ │ └── patches │ │ │ ├── 100-debian-statistics.patch │ │ │ ├── 110-debian-makefiles.patch │ │ │ ├── 120-debian-searchdirs.patch │ │ │ ├── 130-debian-extramibs.patch │ │ │ ├── 140-debian-docfiles.patch │ │ │ ├── 150-debian-defaultconfig.patch │ │ │ ├── 160-no_ldconfig.patch │ │ │ ├── 170-ldflags.patch │ │ │ └── 750-ieee802dot11.patch │ ├── net-tools │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-config.patch │ │ │ └── 002-compile-fixes.patch │ ├── netatalk │ │ ├── Makefile │ │ ├── files │ │ │ ├── AppleVolumes.default │ │ │ ├── afpd.conf │ │ │ └── afpd.init │ │ └── patches │ │ │ └── 001-automake-compat.patch │ ├── netcat │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-netcat_flag_count.patch │ ├── netdiscover │ │ ├── Makefile │ │ └── patches │ │ │ ├── 00-add-machine-ouput.patch │ │ │ └── 01-initfix+end-fix.patch │ ├── netio │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-Makefile.patch │ ├── netperf │ │ ├── Makefile │ │ ├── files │ │ │ └── netserver.init │ │ └── patches │ │ │ └── 001-dccp.patch │ ├── netpipe │ │ └── Makefile │ ├── netstat-nat │ │ └── Makefile │ ├── nfs-kernel-server │ │ ├── Makefile │ │ ├── files │ │ │ ├── nfsd.exports │ │ │ └── nfsd.init │ │ └── patches │ │ │ ├── 100-nfs_utils_uclibc.patch │ │ │ ├── 101-no_malloc_h.patch │ │ │ └── 200-osd_login-install.patch │ ├── nfs-server │ │ ├── Makefile │ │ ├── files │ │ │ ├── nfsd.exports │ │ │ └── nfsd.init │ │ └── patches │ │ │ ├── 001-build_config.patch │ │ │ ├── 002-cross_compile_fix.patch │ │ │ ├── 003-debian_subset.patch │ │ │ ├── 004-gcc34_fix.patch │ │ │ └── 005-remove_warning.patch │ ├── nginx │ │ ├── Config.in │ │ ├── Makefile │ │ ├── files │ │ │ └── nginx.init │ │ └── patches │ │ │ ├── 101-feature_test_fix.patch │ │ │ ├── 102-sizeof_test_fix.patch │ │ │ ├── 103-sys_nerr.patch │ │ │ └── 200-config.patch │ ├── ngircd │ │ ├── Makefile │ │ └── files │ │ │ └── ngircd.init │ ├── ngrep │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-makefile_in.patch │ │ │ └── 001-ngrep.patch │ ├── nmap │ │ └── Makefile │ ├── nocatauth │ │ ├── Makefile │ │ ├── files │ │ │ └── nocatauth-gateway │ │ └── patches │ │ │ ├── 001-ptp-local.patch │ │ │ ├── 002-openwrt.patch │ │ │ ├── 003-fix-module-loading │ │ │ └── 004-fw_detect.patch │ ├── nocatsplash │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-openwrt_firewall.patch │ ├── nodogsplash │ │ ├── Makefile │ │ ├── files │ │ │ └── nodogsplash.init │ │ └── patches │ │ │ ├── 001-crash_on_missing_rdir_param.patch │ │ │ └── 002-deprecated_iptables_syntax.patch │ ├── nprobe │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-automake-compat.patch │ │ │ ├── 002-path_to_pcap.patch │ │ │ └── 003-ipv6_fix.patch │ ├── nstx │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-debian_changes.patch │ ├── ntpclient │ │ ├── Makefile │ │ ├── files │ │ │ ├── ntpclient.config │ │ │ └── ntpclient.hotplug │ │ └── patches │ │ │ └── 100-daemon.patch │ ├── ntpd │ │ ├── Makefile │ │ └── files │ │ │ ├── ntp.conf │ │ │ ├── ntpd.hotplug │ │ │ ├── ntpd.init │ │ │ └── ntpdate.init │ ├── ntripcaster │ │ └── Makefile │ ├── ntripclient │ │ └── Makefile │ ├── ntripserver │ │ └── Makefile │ ├── nufw │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-no_doc_tests.patch │ │ │ └── 002-debian_fixes.patch │ ├── nuttcp │ │ └── Makefile │ ├── nzbget │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-openssl-1.0.0-compat.patch │ ├── nzbgetweb │ │ ├── Makefile │ │ └── files │ │ │ ├── httpd.conf │ │ │ └── lib │ │ │ ├── xmlrpc.inc │ │ │ ├── xmlrpc_wrappers.inc │ │ │ └── xmlrpcs.inc │ ├── obfsproxy │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-no-werror.patch │ │ │ └── 002-no-build-hardening.patch │ ├── oidentd │ │ ├── Makefile │ │ └── files │ │ │ └── oidentd.init │ ├── openconnect │ │ ├── Makefile │ │ ├── files │ │ │ ├── openconnect.sh │ │ │ └── vpnc-script │ │ └── patches │ │ │ └── 100-passwd_file.patch │ ├── opendchub │ │ └── Makefile │ ├── openl2tp │ │ ├── Makefile │ │ ├── patches │ │ │ ├── 001-makefile.patch │ │ │ ├── 002-no_libfl.patch │ │ │ └── 010-ppp_unix.patch │ │ └── src │ │ │ ├── l2tp_rpc.h │ │ │ ├── l2tp_rpc_client.c │ │ │ ├── l2tp_rpc_server.c │ │ │ └── l2tp_rpc_xdr.c │ ├── opennhrp │ │ ├── Makefile │ │ └── files │ │ │ └── opennhrp.init │ ├── openntpd │ │ ├── Makefile │ │ ├── files │ │ │ ├── ntpd.conf │ │ │ ├── ntpd.config │ │ │ ├── ntpd.hotplug │ │ │ └── ntpd.init │ │ └── patches │ │ │ ├── 001-adjtimex_linux.patch │ │ │ ├── 002-save_freq_drift.patch │ │ │ └── 003-no_permission_check.patch │ ├── openrrcp │ │ └── Makefile │ ├── openser │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-openser_cfg.patch │ │ │ ├── 002-sc.patch │ │ │ ├── 003-makefile_defs.patch │ │ │ ├── 004-cfg_lex.patch │ │ │ ├── 005-config_h.patch │ │ │ ├── 006-sc_dbtext.patch │ │ │ └── 007-modules_build.patch │ ├── opensips │ │ ├── Makefile │ │ ├── files │ │ │ ├── opensips.default │ │ │ └── opensips.init │ │ └── patches │ │ │ ├── 001-no_rej.patch │ │ │ ├── 005-config_h.patch │ │ │ └── 007-modules_build.patch │ ├── openslp │ │ ├── Makefile │ │ └── files │ │ │ └── etc │ │ │ ├── init.d │ │ │ └── slpd │ │ │ ├── slp.conf │ │ │ ├── slp.reg │ │ │ └── slp.spi │ ├── openssh │ │ ├── Makefile │ │ ├── files │ │ │ └── sshd.init │ │ └── patches │ │ │ ├── 100-no_cast_fix.patch │ │ │ ├── 110-no_ripemd_fix.patch │ │ │ ├── 130-implicit_memset_decl_fix.patch │ │ │ ├── 140-pam_uclibc_pthreads_fix.patch │ │ │ └── 200-dscp-qos.patch │ ├── openswan │ │ ├── Makefile │ │ ├── files │ │ │ ├── ipsec.conf │ │ │ ├── ipsec.config │ │ │ ├── ipsec.init │ │ │ ├── ipsec.secrets │ │ │ └── ipsec.upgrade │ │ └── patches │ │ │ ├── 100-cross_compile.patch │ │ │ ├── 120-no_manpages.patch │ │ │ └── 140-generated_autoconf.patch │ ├── openvpn-devel │ │ ├── Config-nossl.in │ │ ├── Config-openssl.in │ │ ├── Config-polarssl.in │ │ ├── Makefile │ │ └── files │ ├── openvpn │ │ ├── Config.in │ │ ├── Makefile │ │ ├── files │ │ │ ├── easy-rsa.index │ │ │ ├── easy-rsa.serial │ │ │ ├── openvpn.config │ │ │ ├── openvpn.init │ │ │ └── openvpn.upgrade │ │ └── patches │ │ │ └── 001-easy_rsa.patch │ ├── p910nd │ │ ├── Makefile │ │ └── files │ │ │ ├── p910nd.config │ │ │ └── p910nd.init │ ├── paris-traceroute │ │ └── Makefile │ ├── parprouted │ │ ├── Makefile │ │ ├── files │ │ │ ├── parprouted.config │ │ │ └── parprouted.init │ │ └── patches │ │ │ └── 001-parprouted.patch │ ├── pcapsipdump │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-cross_compile.patch │ │ │ └── 002-elif_else_replacement.patch │ ├── pdnsd │ │ ├── Makefile │ │ └── files │ │ │ └── pdnsd.init │ ├── peerguardian │ │ ├── Makefile │ │ ├── files │ │ │ └── peerguardian.init │ │ └── patches │ │ │ ├── 001-no_host_includes.patch │ │ │ ├── 002-new_libipq.patch │ │ │ └── 003-gcc_4_3-compile-fix.patch │ ├── peervpn │ │ └── Makefile │ ├── pen │ │ └── Makefile │ ├── pepperspot │ │ ├── Makefile │ │ ├── files │ │ │ └── pepperspot.init │ │ └── patches │ │ │ ├── 101-cflags.patch │ │ │ ├── 102-no_warnings.patch │ │ │ └── 110-fix-compile.patch │ ├── pepsal │ │ └── Makefile │ ├── polipo │ │ ├── Makefile │ │ └── files │ │ │ ├── polipo.config │ │ │ └── polipo.init │ ├── portmap │ │ ├── Makefile │ │ ├── files │ │ │ └── portmap.init │ │ └── patches │ │ │ └── 101-no_pie.patch │ ├── portsentry │ │ ├── Makefile │ │ ├── files │ │ │ └── portsentry.init │ │ └── patches │ │ │ ├── 100-conf_location.patch │ │ │ └── 101-postsentry_c.patch │ ├── pptpd │ │ ├── Makefile │ │ ├── files │ │ │ ├── options.pptpd │ │ │ ├── pptpd.conf │ │ │ └── pptpd.init │ │ └── patches │ │ │ ├── 001-bad_pqueue_debug.patch │ │ │ ├── 002-makefile_fix.patch │ │ │ └── 003-opt_flags.patch │ ├── privoxy │ │ ├── Makefile │ │ └── files │ │ │ ├── privoxy.config │ │ │ └── privoxy.init │ ├── proftpd │ │ ├── Makefile │ │ ├── files │ │ │ └── proftpd.init │ │ └── patches │ │ │ ├── 001-automake-compat.patch │ │ │ └── 002-mempcpy_def.patch │ ├── prosody │ │ ├── Makefile │ │ ├── files │ │ │ └── prosody.init │ │ └── patches │ │ │ └── 001-conf.patch │ ├── psybnc │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-makefile.patch │ │ │ ├── 002-conf.patch │ │ │ ├── 003-psybnc.patch │ │ │ ├── 004-start_script.patch │ │ │ └── 005-fix_endianess_detection.patch │ ├── ptpd │ │ ├── Makefile │ │ └── files │ │ │ └── ptpd.init │ ├── ptunnel │ │ ├── Makefile │ │ ├── files │ │ │ ├── ptunnel.config │ │ │ └── ptunnel.init │ │ └── patches │ │ │ ├── 001-prefix.patch │ │ │ └── 002-no_selinux.patch │ ├── pure-ftpd │ │ ├── Makefile │ │ ├── files │ │ │ ├── pure-ftpd.config │ │ │ └── pure-ftpd.init │ │ └── patches │ │ │ └── 010-dont-add-host-paths.patch │ ├── pyload │ │ ├── Makefile │ │ └── files │ │ │ └── pyload.init │ ├── pyrit │ │ └── Makefile │ ├── qolyester │ │ └── Makefile │ ├── quagga │ │ ├── Makefile │ │ ├── files │ │ │ ├── quagga │ │ │ ├── quagga.conf │ │ │ └── quagga.init │ │ └── patches │ │ │ ├── 001-bgpd-fix-args-consolidation.patch │ │ │ ├── 002-fix-metric-output.patch │ │ │ ├── 003-bgpd-fix-route-map-match-peer-local.patch │ │ │ ├── 004-fix-sockunion-memleaks.patch │ │ │ ├── 005-zebra-connected-in-mrib.patch │ │ │ ├── 006-fix-no-ipv6.patch │ │ │ ├── 007-drop-heuristic-ipv6-recognition.patch │ │ │ ├── 008-fix-thread_cancel_event.patch │ │ │ ├── 009-bgpd-fix-vpn4-soft-reconfiguration.patch │ │ │ ├── 010-bgpd-fix-struct-attr_extra-leak.patch │ │ │ ├── 011-isisd-fix-typo.patch │ │ │ ├── 110-fix_ipctl_forwarding.patch │ │ │ ├── 120-quagga_manet.patch │ │ │ ├── 130-fix_cpp.patch │ │ │ ├── 140-holdtimer-set.patch │ │ │ ├── 150-no-cross-fs-link.patch │ │ │ ├── 160-pgbgp.patch │ │ │ ├── 161-pgbgp-addon.patch │ │ │ └── 170-use-supported-pagers.patch │ ├── quicktun │ │ ├── Makefile │ │ └── files │ │ │ ├── quicktun.config │ │ │ └── quicktun.init │ ├── raddump │ │ └── Makefile │ ├── radsecproxy │ │ ├── Makefile │ │ ├── files │ │ │ └── radsecproxy.init │ │ └── patches │ │ │ └── 100-missing-return.patch │ ├── rarpd │ │ ├── Makefile │ │ └── files │ │ │ ├── rarpd.config │ │ │ └── rarpd.init │ ├── reaim │ │ ├── Makefile │ │ ├── files │ │ │ └── reaim.init │ │ └── patches │ │ │ └── 501-cross_compile-install.patch │ ├── reaver │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-wpscrack-big-endian-fixes.patch │ │ │ ├── 0002-Use-the-current-directory-for-storing-and-loading-se.patch │ │ │ └── 0003-wash-wpsmon-use-less-useless-spaces-in-output-to-fit.patch │ ├── redir │ │ ├── Makefile │ │ └── patches │ │ │ ├── 00_honor_copts.patch │ │ │ ├── 01_fix_max_bandwidth_docs.patch │ │ │ ├── 02_use_ntohs.patch │ │ │ ├── 03_fix_tcp_wrappers.patch │ │ │ ├── 04_fix_timeouts.patch │ │ │ └── 06_fix_shaper_buffer.patch │ ├── remotefs │ │ ├── Makefile │ │ └── files │ │ │ └── rfsd │ ├── restund │ │ ├── Makefile │ │ └── files │ │ │ └── restund.init │ ├── rinetd │ │ ├── Makefile │ │ ├── files │ │ │ ├── rinetd.config │ │ │ └── rinetd.init │ │ └── patches │ │ │ └── 001-crosscompile.patch │ ├── rp-l2tp │ │ ├── Makefile │ │ ├── files │ │ │ └── rp-l2tpd.init │ │ └── patches │ │ │ └── 001-cross.patch │ ├── rp-pppoe │ │ ├── Makefile │ │ ├── files │ │ │ ├── pppoe-client.init │ │ │ ├── pppoe-relay.default │ │ │ ├── pppoe-relay.init │ │ │ ├── pppoe-server.default │ │ │ └── pppoe-server.init │ │ └── patches │ │ │ └── 100-configure.patch │ ├── rrs │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-shell.patch │ │ │ ├── 002-no_sslv2.patch │ │ │ └── 003-honour_copts.patch │ ├── rssh │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-destdir.patch │ ├── rsync │ │ ├── Makefile │ │ └── files │ │ │ ├── rsyncd.conf │ │ │ └── rsyncd.init │ ├── rtorrent │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-fix-cross_compile.patch │ │ │ └── 120-fix-ncurses.patch │ ├── rtpproxy │ │ └── Makefile │ ├── samba36 │ │ ├── Makefile │ │ ├── files │ │ │ ├── samba.config │ │ │ ├── samba.init │ │ │ └── smb.conf.template │ │ └── patches │ │ │ ├── 100-configure_fixes.patch │ │ │ ├── 110-multicall.patch │ │ │ ├── 111-owrt_smbpasswd.patch │ │ │ ├── 120-add_missing_ifdef.patch │ │ │ ├── 200-remove_printer_support.patch │ │ │ ├── 210-remove_ad_support.patch │ │ │ ├── 220-remove_services.patch │ │ │ ├── 230-remove_winreg_support.patch │ │ │ ├── 240-remove_dfs_api.patch │ │ │ ├── 250-remove_domain_logon.patch │ │ │ ├── 260-remove_samr.patch │ │ │ ├── 270-remove_registry_backend.patch │ │ │ ├── 280-strip_srvsvc.patch │ │ │ ├── 290-remove_lsa.patch │ │ │ ├── 300-assert_debug_level.patch │ │ │ ├── 310-remove_error_strings.patch │ │ │ ├── 320-debug_level_checks.patch │ │ │ └── 330-librpc_default_print.patch │ ├── scanlogd │ │ ├── Makefile │ │ └── files │ │ │ └── scanlogd.init │ ├── scdp │ │ └── Makefile │ ├── seeks │ │ ├── Makefile │ │ ├── files │ │ │ └── seeks.init │ │ └── patches │ │ │ ├── 050-better_icu_detection.patch │ │ │ ├── 100-no_tests-and-add-iconv-link.patch │ │ │ └── 200-add_pcre_headers_to_plugins.patch │ ├── ser2net │ │ └── Makefile │ ├── serialoverip │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-compile-fixes.patch │ ├── shat │ │ └── Makefile │ ├── shorewall-lite │ │ ├── Makefile │ │ ├── files │ │ │ ├── hostname │ │ │ ├── hotplug_iface │ │ │ ├── lsm_script │ │ │ ├── shorewall-lite.init │ │ │ └── vardir │ │ └── patches │ │ │ ├── 110-MODULESDIR.patch │ │ │ └── 120-LOGFILE.patch │ ├── sipp │ │ └── Makefile │ ├── siproxd │ │ ├── Makefile │ │ ├── files │ │ │ ├── siproxd.config │ │ │ └── siproxd.init │ │ └── patches │ │ │ └── 010-fix-bogus-libltdl-dependency.patch │ ├── sipsak │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-ssp.patch │ │ │ └── 002-no_cares_ruli.patch │ ├── slurm │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-no_host_curses.patch │ ├── smap │ │ ├── Makefile │ │ └── patches │ │ │ ├── 00-fix-broadcast.patch │ │ │ ├── 01-add-tecom-supported-header.patch │ │ │ └── 02-segfault-and-toofast-bugfixes.patch │ ├── smcroute │ │ ├── Makefile │ │ ├── files │ │ │ └── smcroute.init │ │ └── patches │ │ │ ├── 001-socket_path.patch │ │ │ └── 002-optimize_size.patch │ ├── smtptrapd │ │ ├── Makefile │ │ ├── files │ │ │ └── smtptrapd.init │ │ └── patches │ │ │ └── 200-missing_opt.patch │ ├── snort-wireless │ │ ├── Makefile │ │ ├── files │ │ │ ├── snort-wireless.default │ │ │ └── snort-wireless.init │ │ └── patches │ │ │ ├── 500-no-config-search.patch │ │ │ └── 750-lightweight-config.patch │ ├── snort │ │ ├── Makefile │ │ ├── files │ │ │ ├── snort.bin │ │ │ ├── snort.default │ │ │ ├── snort.init │ │ │ └── snort.local.rules │ │ └── patches │ │ │ ├── 001-automake-compat.patch │ │ │ ├── 100-INADDR_NONE.patch │ │ │ ├── 101-PCAP.patch │ │ │ ├── 150-config-preprocessors-disable.patch │ │ │ ├── 160-mysql_cross_compiling_checks.patch │ │ │ └── 200-snortsam.patch │ ├── socat │ │ ├── Makefile │ │ └── patches │ │ │ └── 501-honor_ldflags.patch │ ├── softflowd │ │ ├── Makefile │ │ └── files │ │ │ ├── softflowd.config │ │ │ └── softflowd.init │ ├── spawn-fcgi │ │ └── Makefile │ ├── speedtouch-usb-firmware │ │ └── Makefile │ ├── squid │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-cross_compile.patch │ │ │ ├── 002-no_sslv2.patch │ │ │ ├── 003-configure.patch │ │ │ ├── 004-include-autoconf.patch │ │ │ └── 005-lib-makefile.patch │ ├── srelay │ │ ├── Makefile │ │ └── files │ │ │ ├── srelay.conf │ │ │ └── srelay.init │ ├── sscep │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-certnanny.patch │ ├── sshfs │ │ └── Makefile │ ├── sshtunnel │ │ ├── Makefile │ │ └── files │ │ │ ├── sshtunnel.init │ │ │ ├── sshtunnel.sh │ │ │ └── uci_sshtunnel │ ├── sslcat │ │ └── Makefile │ ├── sslh │ │ ├── Makefile │ │ ├── files │ │ │ ├── sslh.config │ │ │ └── sslh.init │ │ └── patches │ │ │ └── 001-no_sslh_select.patch │ ├── sslsniff │ │ ├── Makefile │ │ └── patches │ │ │ └── 01-cross-compile.patch │ ├── sslstrip │ │ └── Makefile │ ├── ssltunnel │ │ └── Makefile │ ├── strongswan │ │ ├── Config.in │ │ ├── Makefile │ │ ├── files │ │ │ ├── ipsec.init │ │ │ ├── ipsec.secrets │ │ │ └── ipsec.user │ │ └── patches │ │ │ ├── 100-method_name_fix.patch │ │ │ ├── 201-kmodloader.patch │ │ │ ├── 203-uci.patch │ │ │ └── 300-include-ipsec-user-script.patch │ ├── stun │ │ ├── Makefile │ │ ├── files │ │ │ ├── stund.config │ │ │ └── stund.init │ │ └── patches │ │ │ ├── 001-fix_non_i386.patch │ │ │ └── 002-linking_order.patch │ ├── stunnel │ │ ├── Makefile │ │ ├── files │ │ │ └── stunnel.init │ │ └── patches │ │ │ ├── 001-remove-libtool.patch │ │ │ ├── 100-cross-compile.patch │ │ │ ├── 101-no-comp.patch │ │ │ ├── 102-no-ssl2.patch │ │ │ ├── 103-no-zlib-link.patch │ │ │ ├── 104-fix-paths.patch │ │ │ ├── 105-stunnel-conf.patch │ │ │ └── 106-stunnel-xforwardedfor.patch │ ├── subversion │ │ ├── Makefile │ │ └── files │ │ │ ├── subversion.config │ │ │ └── subversion.init │ ├── synce-dccm │ │ └── Makefile │ ├── tcpdump │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-remove_pcap_debug.patch │ │ │ ├── 002-remove_static_libpcap_check.patch │ │ │ ├── 004-fix_3g_iface.patch │ │ │ └── 100-tcpdump_mini.patch │ ├── tcptraceroute │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-configure_cross_compile.patch │ ├── tctool │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001_Makefile_fix.diff │ │ │ └── 005-fix-gcc_4_3-compile.patch │ ├── tftp-hpa │ │ ├── Makefile │ │ └── files │ │ │ └── tftpd-hpa.init │ ├── tig │ │ └── Makefile │ ├── tinc │ │ ├── Makefile │ │ └── files │ │ │ ├── tinc.config │ │ │ ├── tinc.init │ │ │ └── tinc.upgrade │ ├── tinyproxy │ │ ├── Makefile │ │ ├── files │ │ │ ├── tinyproxy.config │ │ │ └── tinyproxy.init │ │ └── patches │ │ │ ├── 010-no-docs-and-tests.patch │ │ │ ├── 020-config_and_pid-path.patch │ │ │ ├── 030-allow_bind_in_transparent_mode.patch │ │ │ ├── 040-fix_url_filter_in_transparent_mode.patch │ │ │ └── 120-fix_INET6.patch │ ├── tmsnc │ │ └── Makefile │ ├── tor-alpha │ │ ├── Makefile │ │ ├── files │ │ │ └── tor.init │ │ └── patches │ │ │ └── 001-torrc.patch │ ├── tor │ │ ├── Makefile │ │ ├── files │ │ │ └── tor.init │ │ └── patches │ │ │ └── 001-torrc.patch │ ├── transmission │ │ ├── Makefile │ │ ├── files │ │ │ ├── transmission.config │ │ │ └── transmission.init │ │ └── patches │ │ │ └── 010_libtransmission_fallocate64_eglibc.patch │ ├── transocks │ │ └── Makefile │ ├── tsocks │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-no_static.patch │ ├── ttcp │ │ ├── Makefile │ │ └── ttcp.c │ ├── uanytun │ │ ├── Makefile │ │ └── files │ │ │ ├── uanytun-nocrypt.config │ │ │ ├── uanytun.config │ │ │ └── uanytun.init │ ├── ucarp │ │ ├── Makefile │ │ ├── files │ │ │ ├── ucarp.conf │ │ │ └── ucarp.init │ │ └── patches │ │ │ └── 100-configure-cross-compilation.patch │ ├── ucspi-tcp │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-cross_compile.patch │ ├── udp-broadcast-relay │ │ └── Makefile │ ├── udpcast │ │ └── Makefile │ ├── udpxy │ │ ├── Makefile │ │ └── files │ │ │ └── udpxy.init │ ├── uftp │ │ └── Makefile │ ├── uhub │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-user_struct.patch │ ├── ulogd │ │ ├── Makefile │ │ ├── files │ │ │ ├── ulogd.default │ │ │ └── ulogd.init │ │ └── patches │ │ │ ├── 001-pcap_flags.patch │ │ │ ├── 002-inc.patch │ │ │ └── 003-fix-bad-rpath.patch │ ├── umurmur │ │ └── Makefile │ ├── unbound │ │ ├── Makefile │ │ ├── files │ │ │ ├── named.cache │ │ │ ├── root.key │ │ │ └── unbound.init │ │ └── patches │ │ │ └── 001-conf.patch │ ├── unfs3 │ │ ├── Makefile │ │ ├── files │ │ │ ├── unfs3.exports │ │ │ └── unfs3.init │ │ └── patches │ │ │ └── 100-no_lfl.patch │ ├── uob-nomad │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-inet_sr.patch │ │ │ ├── 002-hostname.patch │ │ │ ├── 003-conf.patch │ │ │ └── 004-linux26_header_fix.patch │ ├── updatedd │ │ ├── Makefile │ │ ├── files │ │ │ ├── updatedd.config │ │ │ ├── updatedd.hotplug │ │ │ └── updatedd.init │ │ └── patches │ │ │ ├── 001-service_libname.patch │ │ │ ├── 002-ovh-dyndnshost.patch │ │ │ ├── 003-zoneedit-url-fix.patch │ │ │ └── 004-fix_liberty_dep.patch │ ├── usbip │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-upstream_svn_r99.diff │ │ │ └── 002-upstream_svn_r152.patch │ ├── uucp │ │ └── Makefile │ ├── vblade │ │ ├── Makefile │ │ └── files │ │ │ ├── vblade.config │ │ │ └── vblade.init │ ├── veth │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-veth-makefile-cflags.patch │ │ │ └── 200-drop-multicast.patch │ ├── vgp │ │ └── Makefile │ ├── vnc-reflector │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-honor_include_lib_path.patch │ ├── vncrepeater │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-uclibcxx_linking.patch │ ├── vnstat │ │ ├── Makefile │ │ ├── files │ │ │ ├── vnstat.config │ │ │ ├── vnstat.defaults │ │ │ └── vnstat.init │ │ └── patches │ │ │ ├── 001-conf.patch │ │ │ ├── 002-no_install_strip.patch │ │ │ ├── 003-no_install_uname.patch │ │ │ └── 004-install_bsd_fix.patch │ ├── vpnc-scripts │ │ ├── Makefile │ │ └── files │ │ │ └── etc │ │ │ └── vpnc │ │ │ └── connect.d │ │ │ └── ifstate │ ├── vpnc │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-cross.patch │ │ │ ├── 002-vpn_script.patch │ │ │ └── 003-no_makeman.patch │ ├── vpzone │ │ ├── Makefile │ │ ├── files │ │ │ ├── vpzone.conf │ │ │ └── vpzone.init │ │ └── patches │ │ │ ├── 001-no_werror.patch │ │ │ └── 002-ipv6_inc_fix.patch │ ├── vrrpd │ │ ├── Makefile │ │ └── files │ │ │ ├── vrrpd.config │ │ │ └── vrrpd.init │ ├── vsftpd │ │ ├── Makefile │ │ ├── files │ │ │ ├── vsftpd.conf │ │ │ └── vsftpd.init │ │ └── patches │ │ │ ├── 001-destdir.patch │ │ │ ├── 002-find_libs.patch │ │ │ ├── 003-chroot.patch │ │ │ └── 004-disable-capabilities.patch │ ├── vtun │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-lzo2.patch │ ├── wavemon │ │ └── Makefile │ ├── wccpd │ │ └── Makefile │ ├── wdiag │ │ └── Makefile │ ├── weechat │ │ └── Makefile │ ├── wget │ │ └── Makefile │ ├── wifidog │ │ ├── Makefile │ │ └── files │ │ │ ├── wifidog.conf │ │ │ └── wifidog.init │ ├── wing │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ └── uci-defaults │ │ │ │ └── wing │ │ │ ├── lib │ │ │ └── netifd │ │ │ │ └── proto │ │ │ │ └── wing.sh │ │ │ └── usr │ │ │ └── bin │ │ │ └── wing_status │ ├── wiviz │ │ ├── Makefile │ │ ├── files │ │ │ └── www │ │ │ │ ├── cgi-bin │ │ │ │ └── wiviz │ │ │ │ │ ├── get.cgi │ │ │ │ │ └── set.cgi │ │ │ │ └── wiviz │ │ │ │ ├── adhoc-idle.gif │ │ │ │ ├── adhoc-idle.png │ │ │ │ ├── adhoc.gif │ │ │ │ ├── adhoc.png │ │ │ │ ├── ap-idle.gif │ │ │ │ ├── ap-idle.png │ │ │ │ ├── ap-wep-idle.gif │ │ │ │ ├── ap-wep-idle.png │ │ │ │ ├── ap-wep.gif │ │ │ │ ├── ap-wep.png │ │ │ │ ├── ap.gif │ │ │ │ ├── ap.png │ │ │ │ ├── pip-idle.gif │ │ │ │ ├── pip-idle.png │ │ │ │ ├── pip.gif │ │ │ │ ├── pip.png │ │ │ │ ├── station-idle.gif │ │ │ │ ├── station-idle.png │ │ │ │ ├── station.gif │ │ │ │ ├── station.png │ │ │ │ ├── wiviz.css │ │ │ │ ├── wiviz.html │ │ │ │ └── wiviz.js │ │ └── src │ │ │ ├── Makefile │ │ │ ├── channelhopper.c │ │ │ ├── channelhopper.h │ │ │ ├── structs.h │ │ │ ├── wiviz.c │ │ │ ├── wl_access.c │ │ │ └── wl_access.h │ ├── wknock │ │ └── Makefile │ ├── wol │ │ ├── Makefile │ │ └── files │ │ │ ├── wol.config │ │ │ └── wol.init │ ├── wput │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-socketlib.diff │ │ │ └── 102-wput.diff │ ├── wrt-radauth │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-ldpath.patch │ ├── wshaper │ │ ├── Makefile │ │ └── files │ │ │ ├── wshaper.config │ │ │ ├── wshaper.htb │ │ │ └── wshaper.init │ ├── xinetd │ │ ├── Makefile │ │ ├── files │ │ │ ├── xinetd.conf │ │ │ └── xinetd.init │ │ └── patches │ │ │ ├── 001-ar.patch │ │ │ ├── 002-destdir.patch │ │ │ └── 003-rpc_fix.patch │ ├── xl2tpd │ │ ├── Makefile │ │ ├── README │ │ ├── files │ │ │ ├── l2tp.sh │ │ │ ├── options.xl2tpd │ │ │ ├── xl2tp-secrets │ │ │ ├── xl2tpd.conf │ │ │ ├── xl2tpd.conf.sample │ │ │ └── xl2tpd.init │ │ └── patches │ │ │ ├── 100-makefile_opt_flags.patch │ │ │ ├── 110-makefile_dont_build_pfc.patch │ │ │ ├── 120-kernel-mode-l2tp.patch │ │ │ └── 130-no-kill-ipparam.patch │ ├── xsupplicant │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-no-lfl.patch │ │ │ ├── 002-disable-procfs-check.patch │ │ │ ├── 003-compile_fix.patch │ │ │ ├── 005-no_private_linux_header_includes.patch │ │ │ └── 006-no_wireless_h.patch │ ├── xtables-addons │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-no_depmod.patch │ │ │ ├── 002-fix-kernel-version-detection.patch │ │ │ ├── 003-redundant-bracket.patch │ │ │ ├── 004-linux_3_3_compat.patch │ │ │ ├── 005-powerpc_includes.patch │ │ │ ├── 100-add-rtsp-conntrack.patch │ │ │ ├── 200-add-lua-packetscript.patch │ │ │ ├── 201-fix-lua-packetscript.patch │ │ │ └── 300-geoip-endian-detection.patch │ ├── yaddns │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── ddns │ │ │ └── hotplug.d │ │ │ │ └── iface │ │ │ │ └── 25-ddns │ │ │ └── usr │ │ │ └── lib │ │ │ └── ddns │ │ │ └── services │ ├── yafc │ │ └── Makefile │ ├── yate │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-add_dn_skipname_missing_from_many_libresolv.patch │ └── znc │ │ ├── Makefile │ │ ├── files │ │ ├── znc.conf │ │ └── znc.init │ │ └── patches │ │ ├── 001-move_rootcheck_after_config.patch │ │ ├── 002-Uclibcpp_build_fix.patch │ │ └── 003-Reduce_rebuild_time.patch ├── skels │ ├── Makefile.template │ └── files │ │ ├── package.conf │ │ └── package.init ├── sound │ ├── cmus │ │ ├── Makefile │ │ └── patches │ │ │ └── 010-do_not_use_ACS_VLINE.patch │ ├── empcd │ │ └── Makefile │ ├── flite │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-shared_libs │ ├── ices │ │ └── Makefile │ ├── lame │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-automake-compat.patch │ ├── listener │ │ ├── Makefile │ │ ├── files │ │ │ └── listener.conf │ │ └── patches │ │ │ └── 100-makefile.patch │ ├── madplay │ │ └── Makefile │ ├── mocp │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-moc-ffmpeg-update.patch │ ├── mpc │ │ ├── Makefile │ │ └── files │ │ │ └── pls-handler.sh │ ├── mpd │ │ ├── Makefile │ │ ├── files │ │ │ ├── mpd.init │ │ │ └── mpd.service │ │ └── patches │ │ │ └── 100-compile-fixes.patch │ ├── mpdas │ │ ├── Makefile │ │ ├── files │ │ │ ├── mpdas.init │ │ │ └── mpdasrc │ │ └── patches │ │ │ └── 001-flags.patch │ ├── mt-daapd │ │ ├── Makefile │ │ └── files │ │ │ └── mt-daapd.init │ ├── pianobar │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-verbose.patch │ │ │ └── 002-force-symlinks.patch │ ├── pulseaudio │ │ ├── Makefile │ │ ├── files │ │ │ └── pulseaudio.init │ │ └── patches │ │ │ └── 001-no_default_64mb_alloc.patch │ ├── scmpc │ │ ├── Makefile │ │ ├── files │ │ │ └── scmpc.init │ │ └── patches │ │ │ └── 100-Rules.patch │ ├── shell-fm │ │ ├── Makefile │ │ └── files │ │ │ ├── shell-fm.init │ │ │ └── shell-fm.rc │ ├── sox │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-cross_compile.patch │ │ │ └── 010-fix_uclibc_build_issue.patch │ └── streamripper │ │ └── Makefile └── utils │ ├── acpid │ ├── Makefile │ └── files │ │ ├── acpid.hotplug │ │ ├── acpid.init │ │ └── default │ ├── alsa-utils │ ├── Makefile │ └── patches │ │ └── 100-uClibc-compat.patch │ ├── anyremote │ ├── Makefile │ ├── files │ │ ├── anyremote.cfg │ │ └── anyremote.init │ └── patches │ │ └── 010-dont-add-host-includes.patch │ ├── ap51-flash │ ├── Makefile │ └── files │ │ ├── ap51-flash.config │ │ ├── ap51-flash.init │ │ └── ap51-flash.sh │ ├── at │ ├── Makefile │ ├── files │ │ └── atd.init │ └── patches │ │ ├── 100-cross-compile.patch │ │ └── 110-getloadavg.patch │ ├── avrusbboot │ ├── Makefile │ └── patches │ │ ├── 001-fix_makefile.patch │ │ └── 002-fix_compilation.patch │ ├── bandwidthd │ ├── Makefile │ ├── files │ │ ├── bandwidthd.config │ │ ├── bandwidthd.init │ │ └── logo.gif │ └── patches │ │ ├── 010-dont-add-host-paths.patch │ │ └── 100-fix_config_file_location │ ├── bash-completion │ └── Makefile │ ├── bash │ ├── Makefile │ └── patches │ │ ├── 001-compile-fix.patch │ │ ├── 002-force-internal-readline.patch │ │ ├── 101-upstream-bash42-001.patch │ │ ├── 102-upstream-bash42-002.patch │ │ ├── 103-upstream-bash42-003.patch │ │ ├── 104-upstream-bash42-004.patch │ │ ├── 105-upstream-bash42-005.patch │ │ ├── 106-upstream-bash42-006.patch │ │ ├── 107-upstream-bash42-007.patch │ │ ├── 108-upstream-bash42-008.patch │ │ ├── 109-upstream-bash42-009.patch │ │ ├── 110-upstream-bash42-010.patch │ │ ├── 111-upstream-bash42-011.patch │ │ ├── 112-upstream-bash42-012.patch │ │ ├── 113-upstream-bash42-013.patch │ │ ├── 114-upstream-bash42-014.patch │ │ ├── 115-upstream-bash42-015.patch │ │ ├── 116-upstream-bash42-016.patch │ │ ├── 117-upstream-bash42-017.patch │ │ ├── 118-upstream-bash42-018.patch │ │ ├── 119-upstream-bash42-019.patch │ │ ├── 120-upstream-bash42-020.patch │ │ ├── 121-upstream-bash42-021.patch │ │ ├── 122-upstream-bash42-022.patch │ │ ├── 123-upstream-bash42-023.patch │ │ ├── 124-upstream-bash42-024.patch │ │ ├── 125-upstream-bash42-025.patch │ │ ├── 126-upstream-bash42-026.patch │ │ ├── 127-upstream-bash42-027.patch │ │ ├── 128-upstream-bash42-028.patch │ │ └── 129-no_doc.patch │ ├── bc │ ├── Makefile │ └── patches │ │ └── 001-disable-doc.patch │ ├── bemused │ ├── Makefile │ ├── files │ │ ├── bemused-bookmarks │ │ ├── bemused.conf │ │ └── bemused.init │ └── patches │ │ ├── 110-missing_includes.patch │ │ └── 200-cxx-compile-fixes.patch │ ├── bluelog │ ├── Makefile │ └── files │ │ └── bluelog.init │ ├── bluez-hcidump │ └── Makefile │ ├── bluez-utils │ ├── Makefile │ ├── files │ │ ├── bluetooth.config │ │ ├── bluetooth.dbus │ │ ├── bluez-utils.init │ │ └── givepin │ └── patches │ │ ├── 001-include_limits.patch │ │ ├── 002-hcid_pin_helper.patch │ │ ├── 100-enokey.patch │ │ └── 200-uart-speed.patch │ ├── boblight │ ├── Makefile │ └── files │ │ └── boblight.init │ ├── bonnie++ │ ├── Makefile │ └── patches │ │ ├── 001-cross_compile_fix.patch │ │ └── 002-add-verbose-error-messages.patch │ ├── boxbackup │ ├── Makefile │ └── files │ │ ├── bbstoreaccounts │ │ ├── bbstored.config │ │ ├── bbstored.init │ │ └── bbstored.sh │ ├── bsdiff │ ├── Makefile │ └── patches │ │ └── 001-makefile.patch │ ├── btrfs-progs │ ├── Makefile │ ├── files │ │ └── btrfs-scan.init │ └── patches │ │ └── 001-Makefile-gcc-fix │ ├── byobu │ └── Makefile │ ├── bzip2 │ └── Makefile │ ├── calcurse │ └── Makefile │ ├── calvaria │ ├── Makefile │ └── files │ │ └── src │ │ ├── Makefile │ │ ├── cal2p54.c │ │ └── calvaria.c │ ├── ccid │ └── Makefile │ ├── ccrypt │ ├── Makefile │ └── patches │ │ └── 001-no-intl.patch │ ├── cdparanoia │ ├── Makefile │ └── patches │ │ ├── 002-fixbecrash-private-keyword.patch │ │ └── 010-fix_configure.patch │ ├── cksfv │ └── Makefile │ ├── clish │ └── Makefile │ ├── cmdpad │ ├── Makefile │ ├── files │ │ └── cmdpad.init │ └── patches │ │ ├── 100-Makefile.patch │ │ ├── 120-kernel26-compat.patch │ │ ├── 130-no_zombie.patch │ │ └── 140-compile_fix.patch │ ├── collectd │ ├── Makefile │ ├── files │ │ ├── collectd.conf │ │ └── collectd.init │ └── patches │ │ ├── 001-undefined-AM_PATH_LIBGCRYPT.patch │ │ ├── 003-remove-werror.patch │ │ ├── 100-rrdtool-add-rrasingle-option.patch │ │ ├── 110-net-device-stats.patch │ │ ├── 120-fix_kernel_2.6.37.patch │ │ ├── 130-fix_netlink_kernel_3.3-patch │ │ ├── 200-fix-git-describe-error.patch │ │ ├── 400-fix-olsrd-get-all.patch │ │ └── 900-add-iwinfo-plugin.patch │ ├── coreutils │ ├── Makefile │ └── patches │ │ ├── 001-no_docs_man_tests.patch │ │ └── 002-fix_compile_with_uclibc.patch │ ├── cpusage │ ├── Makefile │ └── src │ │ └── cpusage.c │ ├── crypto-tools │ └── Makefile │ ├── cryptsetup │ └── Makefile │ ├── cwiid │ ├── Makefile │ └── patches │ │ └── 100-dump_gtk_wmdemo.patch │ ├── daemontools │ ├── Makefile │ └── patches │ │ ├── crosscompile.patch │ │ └── svscanboot.patch │ ├── dash │ └── Makefile │ ├── dbus │ ├── Makefile │ └── files │ │ ├── dbus-launch │ │ └── dbus.init │ ├── deco │ ├── Makefile │ └── patches │ │ └── 100-tty.c.patch │ ├── devio │ └── Makefile │ ├── devmem2 │ ├── Makefile │ └── src │ │ ├── Makefile │ │ └── devmem2.c │ ├── dfu-util │ ├── Makefile │ └── patches │ │ └── 001-no_static_binary.patch │ ├── dialog │ └── Makefile │ ├── digitemp │ └── Makefile │ ├── dir300-flash │ └── Makefile │ ├── disktype │ └── Makefile │ ├── dmidecode │ └── Makefile │ ├── dosfstools │ ├── Makefile │ ├── files │ │ └── dosfsck.sh │ └── patches │ │ └── 002-linux_26_headers.patch │ ├── dstat │ └── Makefile │ ├── dt │ └── Makefile │ ├── dtach │ └── Makefile │ ├── empty │ └── Makefile │ ├── event_test │ ├── Makefile │ └── src │ │ ├── Makefile │ │ └── evtest.c │ ├── fancontroled │ ├── Makefile │ └── files │ │ └── fancontroled.init │ ├── firmwarehotplug │ ├── Makefile │ └── patches │ │ ├── 001-no_documentation.patch │ │ └── 100-compile-fixes.patch │ ├── flashrom │ └── Makefile │ ├── fortune-mod │ ├── Makefile │ └── patches │ │ └── 01-strfile-64bit-fix │ ├── fowsr │ └── Makefile │ ├── foxboard-utils │ └── Makefile │ ├── freecwmp │ ├── Config.in │ ├── Makefile │ └── files │ │ └── freecwmpd.init │ ├── fxload │ ├── Makefile │ └── patches │ │ └── 010-compile_fix.patch │ ├── gadgetfs-test │ ├── Makefile │ └── patches │ │ └── 001-linux_usb_org_2007_11_29.patch │ ├── gawk │ └── Makefile │ ├── gnokii │ └── Makefile │ ├── gnupg │ └── Makefile │ ├── gnuplot │ ├── Makefile │ └── patches │ │ └── 010-Makefile.in.patch │ ├── gpiotoggling │ └── Makefile │ ├── gzip │ ├── Makefile │ └── patches │ │ └── 001-rsyncable.patch │ ├── haserl │ └── Makefile │ ├── haveged │ ├── Makefile │ └── files │ │ └── haveged.init │ ├── hd-idle │ ├── Makefile │ └── files │ │ ├── hd-idle.config │ │ └── hd-idle.init │ ├── hdparm │ └── Makefile │ ├── heyu │ ├── Makefile │ ├── files │ │ └── x10.conf │ └── patches │ │ └── 001-avoid_configure.patch │ ├── hplip │ ├── Makefile │ └── files │ │ ├── 20-hplip │ │ └── hplib.conf │ ├── huaweiaktbbo │ ├── Makefile │ └── src │ │ └── huaweiAktBbo.c │ ├── i2c-tools │ ├── Makefile │ └── patches │ │ └── 100-linux_include.patch │ ├── ink │ └── Makefile │ ├── input-utils │ ├── Makefile │ └── patches │ │ ├── 001-EVIOCGKEYCODE2.patch │ │ └── 002-version-check.patch │ ├── io │ ├── Makefile │ └── src │ │ └── io.c │ ├── ipmitool │ ├── Makefile │ └── patches │ │ ├── 100-cubic_root.patch │ │ └── 101-cross_compile.patch │ ├── joe │ ├── Makefile │ └── patches │ │ └── 001-mathaway.patch │ ├── klish │ └── Makefile │ ├── kmemtrace-user │ └── Makefile │ ├── lcd4linux-tew673gru │ ├── Makefile │ └── files │ │ ├── lcd4linux_tew673gru.conf │ │ ├── openwrt_220x176.png │ │ └── tew673gru-lcd │ ├── lcd4linux │ ├── Config.in │ ├── Makefile │ ├── files │ │ └── lcd4linux.init │ └── patches │ │ ├── 100-drv_RouterBoard.patch │ │ ├── 110-uclibc-logarithm-fix.patch │ │ ├── 120-remove-as-needed-linker-option.patch │ │ ├── 140-no_repnop_T6963.patch │ │ ├── 150-addlibmpdclient.patch │ │ ├── 160-uinput_defs.patch │ │ ├── 170-add-generic-spidev-driver.patch │ │ ├── 171-allow-to-specify-drv_generic_graphic_real_clear.patch │ │ └── 172-add-TEW673GRU-driver.patch │ ├── lcdproc │ ├── Makefile │ └── files │ │ ├── LCDd │ │ ├── lcdexec │ │ ├── lcdproc │ │ └── lcdvc │ ├── less │ └── Makefile │ ├── lilo │ ├── Makefile │ └── files │ │ ├── README │ │ ├── bdlilo.conf │ │ ├── boot.msg │ │ ├── lilo.conf │ │ └── mkbootable │ ├── lirc │ └── Makefile │ ├── lm-sensors │ ├── Makefile │ └── files │ │ └── sensors.conf │ ├── lmbench │ ├── Makefile │ └── patches │ │ ├── 001-fix_socklen_t_define.patch │ │ ├── 002-install-cache.patch │ │ ├── 003-add-LDLIBS.patch │ │ └── 100-bw_mem-add-newline-after-usage.patch │ ├── logrotate │ ├── Makefile │ └── files │ │ └── logrotate.conf │ ├── loop-aes │ ├── Makefile │ └── patches │ │ └── 001-no_sync.patch │ ├── lrzsz │ ├── Makefile │ └── patches │ │ └── 100-install_delete_fix.patch │ ├── lsof │ ├── Makefile │ └── patches │ │ ├── 001-lsof_makefile.patch │ │ ├── 002-lsof_noportmap.patch │ │ ├── 003-lsof_selinux.patch │ │ └── 004-lsof_ccv.patch │ ├── lvm2 │ ├── Makefile │ ├── files │ │ └── lvm2.init │ └── patches │ │ └── 000-compile.patch │ ├── macchanger │ └── Makefile │ ├── maemo-kexec │ ├── Config.in │ ├── Makefile │ └── files │ │ └── sbin │ │ └── bootmaemo │ ├── mc │ ├── Config.in │ └── Makefile │ ├── md5deep │ ├── Makefile │ └── patches │ │ └── 101-cross_compile.patch │ ├── mdadm │ ├── Makefile │ └── patches │ │ ├── 000-compile.patch │ │ └── 100-cross_compile.patch │ ├── memtester │ ├── Makefile │ └── patches │ │ └── 100-quiet.diff │ ├── mg │ └── Makefile │ ├── mgetty │ ├── Makefile │ └── patches │ │ └── 001-mgetty.patch │ ├── microcom │ ├── Makefile │ └── patches │ │ └── 001-cross_compile.patch │ ├── minicom │ ├── Makefile │ └── patches │ │ └── 010-resolve-getline-conflict.patch │ ├── mksh │ ├── Makefile │ └── patches │ │ └── 100-dot_mkshrc │ ├── msr-tools │ ├── Makefile │ └── patches │ │ └── 100-multiprocessor.patch │ ├── mtd-utils │ ├── Makefile │ └── patches │ │ ├── 100-mtd-debug-add-bad-block-counter.patch │ │ ├── 130-lzma_jffs2.patch │ │ ├── 131-fix_lib_compile.patch │ │ ├── 135-mkubifs_optional_lzo.patch │ │ ├── 136-mkubifs-fix-rinoperm-options.patch │ │ ├── 137-mkubifs-allow-to-overwrite-volume-data.patch │ │ └── 150-fix_ubi-utils_static.patch │ ├── nano │ └── Makefile │ ├── ntfs-3g │ ├── Makefile │ └── patches-2011.4.12 │ │ └── 001-options.patch │ ├── ntfsprogs │ ├── Makefile │ └── patches │ │ └── 001-autoconf_fixes.patch │ ├── nvramtool │ └── Makefile │ ├── open2300 │ ├── Makefile │ └── patches │ │ ├── x1.patch │ │ └── x2.patch │ ├── owfs │ └── Makefile │ ├── oww │ ├── Makefile │ └── files │ │ └── oww.init │ ├── pciutils │ ├── Makefile │ └── patches │ │ ├── 100-remove-no-timestamping.patch │ │ ├── 101-no-strip.patch │ │ ├── 102-compressed-ids.patch │ │ ├── 103-relative-path-ids.patch │ │ └── 104-resolv.patch │ ├── pcmciautils │ ├── Makefile │ └── files │ │ └── etc │ │ ├── hotplug.d │ │ ├── pcmcia │ │ │ └── pcmcia.agent │ │ └── pcmcia_socket │ │ │ └── pcmcia_socket.agent │ │ └── init.d │ │ ├── pcmcia │ │ └── pcmcia_socket │ ├── pcsc-lite │ ├── Makefile │ └── files │ │ └── pcscd.init │ ├── petitboot │ ├── Makefile │ ├── files │ │ └── petitboot.init │ ├── patches │ │ ├── 010-petitboot-fixups.diff │ │ └── 020-petitboot-fix-pb-twin.diff │ └── petitboot-config.in │ ├── picocom │ └── Makefile │ ├── pipacs │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── parser.c │ │ ├── parser.h │ │ └── pipacs.c │ ├── powertop │ ├── Makefile │ └── patches │ │ ├── 100-no-wide-ncurses.patch │ │ └── 200-no-gettext.patch │ ├── pps-tools │ ├── Makefile │ └── patches │ │ └── 001-source.patch │ ├── procps │ ├── Makefile │ └── patches │ │ ├── 010-make_fix.patch │ │ └── 020_hz_fix.patch │ ├── psmisc │ └── Makefile │ ├── psplash │ ├── Makefile │ ├── files │ │ ├── image_480x640.h │ │ ├── image_generic.h │ │ └── psplash.init │ └── patches │ │ ├── 000-adjust-for-openwrt.patch │ │ └── 001-hide-msgfield-and-progressbar.patch │ ├── pv │ └── Makefile │ ├── pwcrypt │ └── Makefile │ ├── pwgen │ └── Makefile │ ├── rcs │ ├── Makefile │ └── patches │ │ ├── 000-debian.patch │ │ └── 100-cross_compile.patch │ ├── rdiff-backup │ ├── Makefile │ └── patches │ │ └── 001-python_path.patch │ ├── reiserfsprogs │ └── Makefile │ ├── remind │ └── Makefile │ ├── restorefactory │ ├── Makefile │ └── files │ │ ├── hotplug_restorefactory │ │ └── uci_defaults_restorefactory │ ├── rng-tools │ ├── Makefile │ └── files │ │ └── rngd.init │ ├── rrdcollect │ ├── Makefile │ └── files │ │ ├── rrd.conf │ │ ├── rrd.sh │ │ ├── rrdcollect.conf │ │ └── rrdcollect.init │ ├── rrdtool │ ├── Makefile │ └── patches │ │ ├── 010-dont-add-host-include-paths.patch │ │ ├── 020-x86-float-cast.patch │ │ └── 030-automake-compat.patch │ ├── rsyncrypto │ └── Makefile │ ├── sane-backends │ ├── Makefile │ └── patches │ │ ├── 000-upstream-libv4l.patch │ │ ├── 001-upstream-keep-usb-device.patch │ │ ├── 002-remove-uneeded.patch │ │ ├── 010-dont-add-host-include-path.patch │ │ └── 020-non-i386-qcam.patch │ ├── schedtools │ └── Makefile │ ├── scponly │ ├── Makefile │ └── patches │ │ └── 001-elif_else_replacement.patch │ ├── screen │ ├── Makefile │ ├── files │ │ └── etc │ │ │ └── screenrc │ └── patches │ │ └── 100-cross_compile_fix.patch │ ├── sdparm │ └── Makefile │ ├── sed │ └── Makefile │ ├── setpwc │ └── Makefile │ ├── setserial │ ├── Makefile │ ├── files │ │ ├── setserial.config │ │ └── setserial.init │ └── patches │ │ └── 100-compile-fixes.patch │ ├── sg3-utils │ └── Makefile │ ├── shadow │ ├── Makefile │ └── patches │ │ └── 004-disable-ruser-lookup.patch │ ├── sierra-pcmcia │ └── Makefile │ ├── sispmctl │ └── Makefile │ ├── smartmontools │ ├── Makefile │ └── files │ │ ├── smartd.conf │ │ └── smartd.init │ ├── ssldump │ ├── Makefile │ └── patches │ │ └── 001-missing_headers.patch │ ├── strace │ ├── Makefile │ └── patches-4.5.16 │ │ ├── 001-arm_eabi_syscalls.patch │ │ ├── 002-arm_bad_syscall.patch │ │ ├── 003-avr32_support.patch │ │ ├── 004-mips64_support.patch │ │ ├── 004-no_cacheflush.patch │ │ └── 010-cris_support.patch │ ├── stress │ └── Makefile │ ├── sysstat │ ├── Makefile │ └── files │ │ ├── config │ │ └── sysstat.init │ ├── tar │ └── Makefile │ ├── taskwarrior │ └── Makefile │ ├── tcpser │ └── Makefile │ ├── tcsh │ ├── Makefile │ └── patches │ │ ├── 001-gethost │ │ └── 002-NLS │ ├── tesseract │ └── Makefile │ ├── testusb │ ├── Makefile │ └── src │ │ └── testusb.c │ ├── time │ ├── Makefile │ └── patches │ │ ├── 001-fix-configure.patch │ │ └── 002-fix-rusage.patch │ ├── tmux │ ├── Makefile │ └── patches │ │ └── 100-b64_ntop-conflict.patch │ ├── triggerhappy │ ├── Makefile │ ├── files │ │ ├── triggerhappy-example.conf │ │ ├── triggerhappy.hotplug │ │ └── triggerhappy.init │ └── patches │ │ └── 100-fix-LINUX_INPUT_H.patch │ ├── unrar │ └── Makefile │ ├── unzip │ └── Makefile │ ├── upx │ ├── Makefile │ └── patches │ │ └── 100-disable_doc.patch │ ├── usb-modeswitch-data │ └── Makefile │ ├── usb-modeswitch │ ├── Makefile │ └── files │ │ └── modeswitch.hotplug │ ├── usbmuxd │ └── Makefile │ ├── usbutils │ ├── Makefile │ └── patches │ │ ├── 100-ids-relative-path.patch │ │ └── 110-gzip-update-usbids.patch │ ├── valgrind │ ├── Makefile │ ├── files │ │ └── default.supp │ ├── patches │ │ ├── 100-fix_configure_check.patch │ │ └── 110-add_a_out_h.patch │ └── src │ │ └── abort.c │ ├── vim │ ├── Makefile │ ├── files │ │ ├── vimrc │ │ └── vimrc.full │ └── patches │ │ └── 001-cross_compile.patch │ ├── watchcat │ ├── Makefile │ └── files │ │ ├── initd_watchcat │ │ ├── uci_defaults_watchcat │ │ └── watchcat.sh │ ├── wattsup │ ├── Makefile │ └── src │ │ ├── Makefile │ │ └── wattsup.c │ ├── wifitoggle │ ├── Makefile │ └── files │ │ ├── wifitoggle.config │ │ └── wifitoggle.hotplug │ ├── wview │ ├── Makefile │ ├── files │ │ └── etc │ │ │ └── init.d │ │ │ └── wview │ └── patches │ │ ├── 010-fix-cross-compile.patch │ │ └── 020-use-standard-awk.patch │ ├── wx200d │ └── Makefile │ ├── xdelta3 │ ├── Makefile │ └── patches │ │ └── 001-decrease-default-window-size.patch │ ├── zile │ └── Makefile │ ├── zip │ └── Makefile │ └── zoneinfo │ └── Makefile ├── platform └── target │ └── linux │ └── ar71xx │ ├── base-files │ ├── etc │ │ ├── diag.sh │ │ └── uci-defaults │ │ │ └── leds │ └── lib │ │ ├── ar71xx.sh │ │ └── upgrade │ │ └── platform.sh │ ├── config-3.3 │ ├── files │ └── arch │ │ └── mips │ │ └── ath79 │ │ └── mach-dragino2.c │ ├── generic │ └── profiles │ │ └── dragino.mk │ ├── image │ └── Makefile │ └── patches-3.3 │ ├── 619-MIPS-ath79-Linino-uart-fix-baudrate.patch │ ├── 700-MIPS-ath79-dragino2.machine.patch │ └── 903-ar933x_uart_baud_max_step_fix.patch └── set_up_build_enviroment.sh /.config.IoT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/.config.IoT -------------------------------------------------------------------------------- /.config.fxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/.config.fxs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /ms14 2 | /image 3 | *~ -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/INSTALL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/README.md -------------------------------------------------------------------------------- /files-IoT/bin/generate-extension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/bin/generate-extension.sh -------------------------------------------------------------------------------- /files-IoT/bin/get-reg-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/bin/get-reg-status.sh -------------------------------------------------------------------------------- /files-IoT/bin/rssi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/bin/rssi.sh -------------------------------------------------------------------------------- /files-IoT/bin/savedhcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/bin/savedhcp.sh -------------------------------------------------------------------------------- /files-IoT/bin/setdhcpsubnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/bin/setdhcpsubnet.sh -------------------------------------------------------------------------------- /files-IoT/bin/testgw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/bin/testgw.sh -------------------------------------------------------------------------------- /files-IoT/etc/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/banner -------------------------------------------------------------------------------- /files-IoT/etc/config/batman-adv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/config/batman-adv -------------------------------------------------------------------------------- /files-IoT/etc/config/dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/config/dhcp -------------------------------------------------------------------------------- /files-IoT/etc/config/firewall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/config/firewall -------------------------------------------------------------------------------- /files-IoT/etc/config/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/config/fstab -------------------------------------------------------------------------------- /files-IoT/etc/config/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/config/network -------------------------------------------------------------------------------- /files-IoT/etc/config/secn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/config/secn -------------------------------------------------------------------------------- /files-IoT/etc/config/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/config/system -------------------------------------------------------------------------------- /files-IoT/etc/config/ucitrack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/config/ucitrack -------------------------------------------------------------------------------- /files-IoT/etc/config/uhttpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/config/uhttpd -------------------------------------------------------------------------------- /files-IoT/etc/config/wireless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/config/wireless -------------------------------------------------------------------------------- /files-IoT/etc/init.d/asterisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/init.d/asterisk -------------------------------------------------------------------------------- /files-IoT/etc/init.d/boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/init.d/boot -------------------------------------------------------------------------------- /files-IoT/etc/init.d/chk-passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/init.d/chk-passwd -------------------------------------------------------------------------------- /files-IoT/etc/init.d/config_secn-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/init.d/config_secn-2 -------------------------------------------------------------------------------- /files-IoT/etc/init.d/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/init.d/network -------------------------------------------------------------------------------- /files-IoT/etc/init.d/setdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/init.d/setdate -------------------------------------------------------------------------------- /files-IoT/etc/opkg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/opkg.conf -------------------------------------------------------------------------------- /files-IoT/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/passwd -------------------------------------------------------------------------------- /files-IoT/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/profile -------------------------------------------------------------------------------- /files-IoT/etc/rc.d/K98boot: -------------------------------------------------------------------------------- 1 | ../init.d/boot -------------------------------------------------------------------------------- /files-IoT/etc/rc.d/S10boot: -------------------------------------------------------------------------------- 1 | ../init.d/boot -------------------------------------------------------------------------------- /files-IoT/etc/rc.d/S15vt_setdate: -------------------------------------------------------------------------------- 1 | ../init.d/setdate -------------------------------------------------------------------------------- /files-IoT/etc/rc.d/S18rename-wifi-ap-ssid: -------------------------------------------------------------------------------- 1 | ../init.d/rename-wifi-ap-ssid -------------------------------------------------------------------------------- /files-IoT/etc/rc.d/S40vt_generate-lastoctet-extension: -------------------------------------------------------------------------------- 1 | ../init.d/generate-lastoctet-extension -------------------------------------------------------------------------------- /files-IoT/etc/rc.d/S49vt_chk-passwd: -------------------------------------------------------------------------------- 1 | ../init.d/chk-passwd -------------------------------------------------------------------------------- /files-IoT/etc/rc.d/S98vt_20_set-mesh-gw-mode.sh: -------------------------------------------------------------------------------- 1 | ../init.d/set-mesh-gw-mode.sh -------------------------------------------------------------------------------- /files-IoT/etc/rc.d/S98vt_90_config_secn-2: -------------------------------------------------------------------------------- 1 | ../init.d/config_secn-2 -------------------------------------------------------------------------------- /files-IoT/etc/rc.d/S99asterisk: -------------------------------------------------------------------------------- 1 | ../init.d/asterisk -------------------------------------------------------------------------------- /files-IoT/etc/secn_version: -------------------------------------------------------------------------------- 1 | Version 2 | Build date 3 | 4 | -------------------------------------------------------------------------------- /files-IoT/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/etc/shadow -------------------------------------------------------------------------------- /files-IoT/lib/batman-adv/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/lib/batman-adv/config.sh -------------------------------------------------------------------------------- /files-IoT/usr/bin/blink-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/usr/bin/blink-start -------------------------------------------------------------------------------- /files-IoT/usr/bin/blink-stop: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "none" > /sys/class/leds/dragino2:red:usb/trigger 4 | 5 | -------------------------------------------------------------------------------- /files-IoT/usr/bin/check_net_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/usr/bin/check_net_status -------------------------------------------------------------------------------- /files-IoT/usr/bin/config_secn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/usr/bin/config_secn -------------------------------------------------------------------------------- /files-IoT/usr/bin/kill-bridge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/usr/bin/kill-bridge -------------------------------------------------------------------------------- /files-IoT/usr/bin/run-bridge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/usr/bin/run-bridge -------------------------------------------------------------------------------- /files-IoT/www/cgi-bin/.htpasswd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files-IoT/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/www/index.html -------------------------------------------------------------------------------- /files-IoT/www/lib/checkip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/www/lib/checkip.js -------------------------------------------------------------------------------- /files-IoT/www/lib/checkip.js.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/www/lib/checkip.js.bak -------------------------------------------------------------------------------- /files-IoT/www/lib/configstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/www/lib/configstyle.css -------------------------------------------------------------------------------- /files-IoT/www/lib/jquery-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/www/lib/jquery-latest.js -------------------------------------------------------------------------------- /files-IoT/www/lib/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-IoT/www/lib/tabs.js -------------------------------------------------------------------------------- /files-fxs/bin/generate-extension.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/bin/generate-extension.sh -------------------------------------------------------------------------------- /files-fxs/bin/get-reg-status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/bin/get-reg-status.sh -------------------------------------------------------------------------------- /files-fxs/bin/rssi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/bin/rssi.sh -------------------------------------------------------------------------------- /files-fxs/bin/savedhcp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/bin/savedhcp.sh -------------------------------------------------------------------------------- /files-fxs/bin/setdhcpsubnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/bin/setdhcpsubnet.sh -------------------------------------------------------------------------------- /files-fxs/bin/testgw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/bin/testgw.sh -------------------------------------------------------------------------------- /files-fxs/etc/asterisk/chan_dahdi.conf: -------------------------------------------------------------------------------- 1 | #include /tmp/dragino2-si3217x-asterisk-chan-dahdi.conf 2 | -------------------------------------------------------------------------------- /files-fxs/etc/asterisk/iax.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/asterisk/iax.conf -------------------------------------------------------------------------------- /files-fxs/etc/asterisk/logger.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/asterisk/logger.conf -------------------------------------------------------------------------------- /files-fxs/etc/asterisk/manager.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/asterisk/manager.conf -------------------------------------------------------------------------------- /files-fxs/etc/asterisk/modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/asterisk/modules.conf -------------------------------------------------------------------------------- /files-fxs/etc/asterisk/rtp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/asterisk/rtp.conf -------------------------------------------------------------------------------- /files-fxs/etc/asterisk/sip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/asterisk/sip.conf -------------------------------------------------------------------------------- /files-fxs/etc/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/banner -------------------------------------------------------------------------------- /files-fxs/etc/config/batman-adv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/config/batman-adv -------------------------------------------------------------------------------- /files-fxs/etc/config/dhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/config/dhcp -------------------------------------------------------------------------------- /files-fxs/etc/config/firewall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/config/firewall -------------------------------------------------------------------------------- /files-fxs/etc/config/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/config/fstab -------------------------------------------------------------------------------- /files-fxs/etc/config/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/config/network -------------------------------------------------------------------------------- /files-fxs/etc/config/secn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/config/secn -------------------------------------------------------------------------------- /files-fxs/etc/config/system: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/config/system -------------------------------------------------------------------------------- /files-fxs/etc/config/ucitrack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/config/ucitrack -------------------------------------------------------------------------------- /files-fxs/etc/config/uhttpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/config/uhttpd -------------------------------------------------------------------------------- /files-fxs/etc/config/wireless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/config/wireless -------------------------------------------------------------------------------- /files-fxs/etc/init.d/asterisk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/init.d/asterisk -------------------------------------------------------------------------------- /files-fxs/etc/init.d/boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/init.d/boot -------------------------------------------------------------------------------- /files-fxs/etc/init.d/chk-passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/init.d/chk-passwd -------------------------------------------------------------------------------- /files-fxs/etc/init.d/config_secn-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/init.d/config_secn-2 -------------------------------------------------------------------------------- /files-fxs/etc/init.d/network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/init.d/network -------------------------------------------------------------------------------- /files-fxs/etc/init.d/setdate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/init.d/setdate -------------------------------------------------------------------------------- /files-fxs/etc/opkg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/opkg.conf -------------------------------------------------------------------------------- /files-fxs/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/passwd -------------------------------------------------------------------------------- /files-fxs/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/profile -------------------------------------------------------------------------------- /files-fxs/etc/rc.d/K98boot: -------------------------------------------------------------------------------- 1 | ../init.d/boot -------------------------------------------------------------------------------- /files-fxs/etc/rc.d/S10boot: -------------------------------------------------------------------------------- 1 | ../init.d/boot -------------------------------------------------------------------------------- /files-fxs/etc/rc.d/S15vt_setdate: -------------------------------------------------------------------------------- 1 | ../init.d/setdate -------------------------------------------------------------------------------- /files-fxs/etc/rc.d/S18rename-wifi-ap-ssid: -------------------------------------------------------------------------------- 1 | ../init.d/rename-wifi-ap-ssid -------------------------------------------------------------------------------- /files-fxs/etc/rc.d/S40vt_generate-lastoctet-extension: -------------------------------------------------------------------------------- 1 | ../init.d/generate-lastoctet-extension -------------------------------------------------------------------------------- /files-fxs/etc/rc.d/S49vt_chk-passwd: -------------------------------------------------------------------------------- 1 | ../init.d/chk-passwd -------------------------------------------------------------------------------- /files-fxs/etc/rc.d/S61dragino2-si3217x: -------------------------------------------------------------------------------- 1 | ../init.d/dragino2-si3217x -------------------------------------------------------------------------------- /files-fxs/etc/rc.d/S98vt_20_set-mesh-gw-mode.sh: -------------------------------------------------------------------------------- 1 | ../init.d/set-mesh-gw-mode.sh -------------------------------------------------------------------------------- /files-fxs/etc/rc.d/S98vt_90_config_secn-2: -------------------------------------------------------------------------------- 1 | ../init.d/config_secn-2 -------------------------------------------------------------------------------- /files-fxs/etc/rc.d/S99asterisk: -------------------------------------------------------------------------------- 1 | ../init.d/asterisk -------------------------------------------------------------------------------- /files-fxs/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/etc/shadow -------------------------------------------------------------------------------- /files-fxs/lib/batman-adv/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/lib/batman-adv/config.sh -------------------------------------------------------------------------------- /files-fxs/usr/bin/blink-start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/usr/bin/blink-start -------------------------------------------------------------------------------- /files-fxs/usr/bin/blink-stop: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "none" > /sys/class/leds/dragino2:red:usb/trigger 4 | 5 | -------------------------------------------------------------------------------- /files-fxs/usr/bin/check_net_status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/usr/bin/check_net_status -------------------------------------------------------------------------------- /files-fxs/usr/bin/config_secn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/usr/bin/config_secn -------------------------------------------------------------------------------- /files-fxs/usr/bin/kill-bridge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/usr/bin/kill-bridge -------------------------------------------------------------------------------- /files-fxs/usr/bin/run-bridge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/usr/bin/run-bridge -------------------------------------------------------------------------------- /files-fxs/www/cgi-bin/.htpasswd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files-fxs/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/www/index.html -------------------------------------------------------------------------------- /files-fxs/www/lib/checkip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/www/lib/checkip.js -------------------------------------------------------------------------------- /files-fxs/www/lib/checkip.js.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/www/lib/checkip.js.bak -------------------------------------------------------------------------------- /files-fxs/www/lib/configstyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/www/lib/configstyle.css -------------------------------------------------------------------------------- /files-fxs/www/lib/jquery-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/www/lib/jquery-latest.js -------------------------------------------------------------------------------- /files-fxs/www/lib/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/files-fxs/www/lib/tabs.js -------------------------------------------------------------------------------- /package/avrdude/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/avrdude/Makefile -------------------------------------------------------------------------------- /package/avrdude/files/avrdude.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/avrdude/files/avrdude.conf -------------------------------------------------------------------------------- /package/cpu-mcu-bridge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/cpu-mcu-bridge/Makefile -------------------------------------------------------------------------------- /package/ddns-scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/ddns-scripts/Makefile -------------------------------------------------------------------------------- /package/dragino2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/dragino2/LICENSE -------------------------------------------------------------------------------- /package/dragino2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/dragino2/Makefile -------------------------------------------------------------------------------- /package/helloworld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/helloworld/Makefile -------------------------------------------------------------------------------- /package/helloworld/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/helloworld/src/Makefile -------------------------------------------------------------------------------- /package/helloworld/src/helloworld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/helloworld/src/helloworld.c -------------------------------------------------------------------------------- /package/libusb-compat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/libusb-compat/Makefile -------------------------------------------------------------------------------- /package/luci-0.11/.buildpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/.buildpath -------------------------------------------------------------------------------- /package/luci-0.11/.cproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/.cproject -------------------------------------------------------------------------------- /package/luci-0.11/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/.gitignore -------------------------------------------------------------------------------- /package/luci-0.11/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/.project -------------------------------------------------------------------------------- /package/luci-0.11/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/INSTALL -------------------------------------------------------------------------------- /package/luci-0.11/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/LICENSE -------------------------------------------------------------------------------- /package/luci-0.11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/Makefile -------------------------------------------------------------------------------- /package/luci-0.11/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/NOTICE -------------------------------------------------------------------------------- /package/luci-0.11/THANKYOU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/THANKYOU -------------------------------------------------------------------------------- /package/luci-0.11/applications/luci-ahcp/luasrc/view/admin_status/index/ahcp.htm: -------------------------------------------------------------------------------- 1 | <%+ahcp_status%> 2 | -------------------------------------------------------------------------------- /package/luci-0.11/applications/luci-freifunk-widgets/root/lib/upgrade/keep.d/freifunk-widgets: -------------------------------------------------------------------------------- 1 | /usr/share/customtext 2 | -------------------------------------------------------------------------------- /package/luci-0.11/applications/luci-ltqtapi/luasrc/view/admin_status/index/telephony.htm: -------------------------------------------------------------------------------- 1 | <%+telephony_status%> 2 | -------------------------------------------------------------------------------- /package/luci-0.11/applications/luci-minidlna/luasrc/view/admin_status/index/minidlna.htm: -------------------------------------------------------------------------------- 1 | <%+minidlna_status%> 2 | -------------------------------------------------------------------------------- /package/luci-0.11/applications/luci-multiwan/luasrc/view/admin_status/index/multiwan.htm: -------------------------------------------------------------------------------- 1 | <%+multiwan_status%> 2 | -------------------------------------------------------------------------------- /package/luci-0.11/applications/luci-olsr/htdocs/cgi-bin-nodes.html: -------------------------------------------------------------------------------- 1 | cgi-bin-status.html -------------------------------------------------------------------------------- /package/luci-0.11/applications/luci-olsr/root/etc/config/luci_olsr: -------------------------------------------------------------------------------- 1 | config 'olsr' 'general' 2 | option 'resolve' '1' 3 | -------------------------------------------------------------------------------- /package/luci-0.11/applications/luci-pbx/root/etc/config/pbx: -------------------------------------------------------------------------------- 1 | config 'main' 'connection_status' 2 | -------------------------------------------------------------------------------- /package/luci-0.11/applications/luci-pbx/root/etc/config/pbx-google: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/luci-0.11/applications/luci-pbx/root/etc/config/pbx-voip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/luci-0.11/applications/luci-pbx/root/etc/pbx-asterisk/extensions_disa_header.conf.TEMPLATE: -------------------------------------------------------------------------------- 1 | [disa-call-context] 2 | -------------------------------------------------------------------------------- /package/luci-0.11/applications/luci-sensor/root/etc/rc.d/S99iotd: -------------------------------------------------------------------------------- 1 | ../init.d/iotd -------------------------------------------------------------------------------- /package/luci-0.11/applications/luci-splash/root/etc/config/luci_splash: -------------------------------------------------------------------------------- 1 | config core general 2 | option leasetime 1 -------------------------------------------------------------------------------- /package/luci-0.11/applications/luci-upnp/luasrc/view/admin_status/index/upnp.htm: -------------------------------------------------------------------------------- 1 | <%+upnp_status%> 2 | -------------------------------------------------------------------------------- /package/luci-0.11/build/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/build/config.mk -------------------------------------------------------------------------------- /package/luci-0.11/build/hostenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/build/hostenv.sh -------------------------------------------------------------------------------- /package/luci-0.11/build/luci.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/build/luci.cgi -------------------------------------------------------------------------------- /package/luci-0.11/build/lucid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/build/lucid.lua -------------------------------------------------------------------------------- /package/luci-0.11/build/makedocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/build/makedocs.sh -------------------------------------------------------------------------------- /package/luci-0.11/build/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/build/module.mk -------------------------------------------------------------------------------- /package/luci-0.11/build/setup.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/build/setup.lua -------------------------------------------------------------------------------- /package/luci-0.11/contrib/lar/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/contrib/lar/cli.c -------------------------------------------------------------------------------- /package/luci-0.11/contrib/lar/lar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/contrib/lar/lar.c -------------------------------------------------------------------------------- /package/luci-0.11/contrib/lar/lar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/contrib/lar/lar.h -------------------------------------------------------------------------------- /package/luci-0.11/contrib/lar/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/contrib/lar/md5.c -------------------------------------------------------------------------------- /package/luci-0.11/contrib/lar/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/contrib/lar/md5.h -------------------------------------------------------------------------------- /package/luci-0.11/contrib/uci/.gitignore: -------------------------------------------------------------------------------- 1 | uci-* 2 | uci.git 3 | *.tar.gz 4 | patches/series 5 | -------------------------------------------------------------------------------- /package/luci-0.11/diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/diff -------------------------------------------------------------------------------- /package/luci-0.11/libs/nixio/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/libs/nixio/NOTICE -------------------------------------------------------------------------------- /package/luci-0.11/libs/nixio/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/libs/nixio/README -------------------------------------------------------------------------------- /package/luci-0.11/libs/nixio/axTLS/samples/java/manifest.mf: -------------------------------------------------------------------------------- 1 | Main-Class: axssl 2 | -------------------------------------------------------------------------------- /package/luci-0.11/libs/nixio/axTLS/ssl/version.h: -------------------------------------------------------------------------------- 1 | #define AXTLS_VERSION "1.2.1" 2 | -------------------------------------------------------------------------------- /package/luci-0.11/libs/nixio/axTLS/www/bin/.htaccess: -------------------------------------------------------------------------------- 1 | Deny all 2 | 3 | -------------------------------------------------------------------------------- /package/luci-0.11/libs/nixio/axTLS/www/test_dir/bin/.htaccess: -------------------------------------------------------------------------------- 1 | Deny all 2 | -------------------------------------------------------------------------------- /package/luci-0.11/libs/nixio/axTLS/www/test_dir/no_http/.htaccess: -------------------------------------------------------------------------------- 1 | SSLRequireSSL 2 | -------------------------------------------------------------------------------- /package/luci-0.11/libs/nixio/axTLS/www/test_dir/no_ssl/.htaccess: -------------------------------------------------------------------------------- 1 | SSLDenySSL 2 | -------------------------------------------------------------------------------- /package/luci-0.11/libs/sys/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/libs/sys/Makefile -------------------------------------------------------------------------------- /package/luci-0.11/libs/web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/libs/web/Makefile -------------------------------------------------------------------------------- /package/luci-0.11/libs/web/luasrc/view/cbi/compound.htm: -------------------------------------------------------------------------------- 1 | <%- self:render_children() %> 2 | -------------------------------------------------------------------------------- /package/luci-0.11/libs/web/root/lib/uci/upload/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/luci-0.11/modules/niu/luasrc/view/niu/null.htm: -------------------------------------------------------------------------------- 1 | NULL -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/asterisk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/commands.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/ffwizard.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/ffwizard.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/firewall.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/freifunk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/hd_idle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/hd_idle.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/minidlna.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/minidlna.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/multiwan.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/multiwan.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/openvpn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/openvpn.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/p2pblock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/p2pblock.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/rrdtool.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/rrdtool.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/watchcat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ca/wshaper.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ca/wshaper.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/asterisk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/commands.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/ffwizard.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/ffwizard.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/firewall.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/freifunk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/hd_idle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/hd_idle.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/minidlna.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/minidlna.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/multiwan.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/multiwan.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/openvpn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/openvpn.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/p2pblock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/p2pblock.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/rrdtool.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/rrdtool.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/watchcat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/cs/wshaper.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/cs/wshaper.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/asterisk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/commands.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/ffwizard.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/ffwizard.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/firewall.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/freifunk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/hd_idle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/hd_idle.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/minidlna.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/minidlna.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/multiwan.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/multiwan.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/openvpn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/openvpn.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/p2pblock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/p2pblock.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/rrdtool.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/rrdtool.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/watchcat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/de/wshaper.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/de/wshaper.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/asterisk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/commands.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/ffwizard.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/ffwizard.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/firewall.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/freifunk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/hd_idle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/hd_idle.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/minidlna.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/minidlna.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/multiwan.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/multiwan.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/openvpn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/openvpn.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/p2pblock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/p2pblock.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/rrdtool.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/rrdtool.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/watchcat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/el/wshaper.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/el/wshaper.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/asterisk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/commands.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/ffwizard.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/ffwizard.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/firewall.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/freifunk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/hd_idle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/hd_idle.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/minidlna.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/minidlna.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/multiwan.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/multiwan.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/openvpn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/openvpn.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/p2pblock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/p2pblock.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/rrdtool.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/rrdtool.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/watchcat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/en/wshaper.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/en/wshaper.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/asterisk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/commands.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/ffwizard.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/ffwizard.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/firewall.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/freifunk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/hd_idle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/hd_idle.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/minidlna.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/minidlna.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/multiwan.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/multiwan.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/openvpn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/openvpn.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/p2pblock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/p2pblock.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/rrdtool.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/rrdtool.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/watchcat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/es/wshaper.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/es/wshaper.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/asterisk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/commands.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/ffwizard.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/ffwizard.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/firewall.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/freifunk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/hd_idle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/hd_idle.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/minidlna.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/minidlna.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/multiwan.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/multiwan.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/openvpn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/openvpn.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/p2pblock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/p2pblock.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/rrdtool.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/rrdtool.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/watchcat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/fr/wshaper.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/fr/wshaper.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/asterisk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/commands.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/ffwizard.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/ffwizard.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/firewall.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/freifunk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/hd_idle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/hd_idle.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/minidlna.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/minidlna.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/multiwan.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/multiwan.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/openvpn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/openvpn.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/p2pblock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/p2pblock.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/rrdtool.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/rrdtool.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/watchcat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/he/wshaper.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/he/wshaper.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/asterisk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/commands.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/ffwizard.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/ffwizard.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/firewall.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/freifunk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/hd_idle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/hd_idle.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/minidlna.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/minidlna.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/multiwan.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/multiwan.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/openvpn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/openvpn.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/p2pblock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/p2pblock.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/rrdtool.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/rrdtool.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/watchcat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/hu/wshaper.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/hu/wshaper.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/asterisk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/commands.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/ffwizard.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/ffwizard.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/firewall.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/freifunk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/hd_idle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/hd_idle.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/minidlna.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/minidlna.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/multiwan.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/multiwan.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/openvpn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/openvpn.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/p2pblock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/p2pblock.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/rrdtool.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/rrdtool.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/watchcat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/it/wshaper.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/it/wshaper.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/asterisk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/commands.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/ffwizard.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/ffwizard.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/firewall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/firewall.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/freifunk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/freifunk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/hd_idle.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/hd_idle.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/minidlna.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/minidlna.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/multiwan.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/multiwan.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/openvpn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/openvpn.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/p2pblock.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/p2pblock.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/rrdtool.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/rrdtool.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/watchcat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/watchcat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ja/wshaper.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ja/wshaper.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ms/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ms/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ms/asterisk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ms/asterisk.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ms/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ms/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ms/commands.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ms/commands.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ms/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ms/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ms/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ms/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ms/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ms/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ms/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ms/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ms/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ms/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ms/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ms/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ms/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ms/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ms/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ms/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ms/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ms/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ms/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ms/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ms/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ms/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ms/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ms/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ms/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ms/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ms/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ms/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/no/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/no/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/no/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/no/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/no/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/no/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/no/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/no/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/no/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/no/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/no/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/no/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/no/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/no/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/no/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/no/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/no/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/no/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/no/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/no/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/no/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/no/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/no/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/no/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/no/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/no/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/no/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/no/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/no/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/no/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/no/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/no/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pl/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pl/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pl/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pl/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pl/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pl/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pl/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pl/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pl/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pl/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pl/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pl/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pl/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pl/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pl/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pl/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pl/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pl/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pl/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pl/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pl/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pl/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pl/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pl/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pl/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pl/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pl/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pl/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pl/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pl/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pl/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pl/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt_BR/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt_BR/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt_BR/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt_BR/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/pt_BR/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/pt_BR/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ro/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ro/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ro/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ro/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ro/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ro/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ro/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ro/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ro/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ro/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ro/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ro/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ro/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ro/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ro/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ro/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ro/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ro/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ro/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ro/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ro/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ro/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ro/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ro/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ro/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ro/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ro/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ro/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ro/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ro/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ro/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ro/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ru/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ru/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ru/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ru/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ru/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ru/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ru/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ru/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ru/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ru/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ru/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ru/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ru/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ru/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ru/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ru/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ru/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ru/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ru/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ru/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ru/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ru/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ru/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ru/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ru/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ru/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ru/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ru/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ru/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ru/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/ru/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/ru/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/templates/asterisk.pot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/luci-0.11/po/tr/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/tr/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/tr/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/tr/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/tr/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/tr/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/tr/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/tr/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/tr/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/tr/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/tr/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/tr/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/tr/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/tr/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/tr/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/tr/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/tr/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/tr/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/tr/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/tr/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/tr/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/tr/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/tr/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/tr/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/tr/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/tr/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/tr/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/tr/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/tr/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/tr/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/tr/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/tr/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/uk/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/uk/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/uk/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/uk/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/uk/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/uk/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/uk/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/uk/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/uk/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/uk/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/uk/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/uk/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/uk/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/uk/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/uk/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/uk/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/uk/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/uk/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/uk/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/uk/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/uk/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/uk/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/uk/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/uk/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/uk/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/uk/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/uk/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/uk/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/uk/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/uk/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/uk/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/uk/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/vi/ahcp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/vi/ahcp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/vi/base.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/vi/base.po -------------------------------------------------------------------------------- /package/luci-0.11/po/vi/ddns.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/vi/ddns.po -------------------------------------------------------------------------------- /package/luci-0.11/po/vi/ntpc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/vi/ntpc.po -------------------------------------------------------------------------------- /package/luci-0.11/po/vi/olsr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/vi/olsr.po -------------------------------------------------------------------------------- /package/luci-0.11/po/vi/p910nd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/vi/p910nd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/vi/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/vi/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/vi/polipo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/vi/polipo.po -------------------------------------------------------------------------------- /package/luci-0.11/po/vi/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/vi/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/vi/radvd.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/vi/radvd.po -------------------------------------------------------------------------------- /package/luci-0.11/po/vi/samba.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/vi/samba.po -------------------------------------------------------------------------------- /package/luci-0.11/po/vi/splash.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/vi/splash.po -------------------------------------------------------------------------------- /package/luci-0.11/po/vi/upnp.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/vi/upnp.po -------------------------------------------------------------------------------- /package/luci-0.11/po/vi/ushare.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/vi/ushare.po -------------------------------------------------------------------------------- /package/luci-0.11/po/vi/vnstat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/vi/vnstat.po -------------------------------------------------------------------------------- /package/luci-0.11/po/vi/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/vi/wol.po -------------------------------------------------------------------------------- /package/luci-0.11/po/zh_CN/pbx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/zh_CN/pbx.po -------------------------------------------------------------------------------- /package/luci-0.11/po/zh_CN/qos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/zh_CN/qos.po -------------------------------------------------------------------------------- /package/luci-0.11/po/zh_CN/wol.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/luci-0.11/po/zh_CN/wol.po -------------------------------------------------------------------------------- /package/luci-app-dragino-voip-webpanel/files/etc/config/dial-rules: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /package/ntpclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/ntpclient/Makefile -------------------------------------------------------------------------------- /package/rrdtool-1.0.x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/package/rrdtool-1.0.x/Makefile -------------------------------------------------------------------------------- /packages_12.09/.gitignore: -------------------------------------------------------------------------------- 1 | *.orig 2 | *.rej 3 | -------------------------------------------------------------------------------- /packages_12.09/admin/monit/patches/001-no_sslv2.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages_12.09/admin/monit/patches/002-uclibc_loadavg.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages_12.09/admin/pmacct/files/nfacctd.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-f /etc/nfacctd.conf" 2 | -------------------------------------------------------------------------------- /packages_12.09/admin/pmacct/files/pmacctd.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-f /etc/pmacctd.conf" 2 | -------------------------------------------------------------------------------- /packages_12.09/admin/pmacct/files/sfacctd.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-f /etc/sfacctd.conf" 2 | -------------------------------------------------------------------------------- /packages_12.09/admin/pmacct/files/uacctd.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-f /etc/uacctd.conf" 2 | -------------------------------------------------------------------------------- /packages_12.09/devel/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/devel/gcc/Makefile -------------------------------------------------------------------------------- /packages_12.09/ipv6/gw6c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/ipv6/gw6c/Makefile -------------------------------------------------------------------------------- /packages_12.09/ipv6/mrd6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/ipv6/mrd6/Makefile -------------------------------------------------------------------------------- /packages_12.09/ipv6/send/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/ipv6/send/Makefile -------------------------------------------------------------------------------- /packages_12.09/ipv6/shorewall6-lite/files/hostname: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat /proc/sys/kernel/hostname 3 | -------------------------------------------------------------------------------- /packages_12.09/ipv6/totd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/ipv6/totd/Makefile -------------------------------------------------------------------------------- /packages_12.09/ipv6/tspc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/ipv6/tspc/Makefile -------------------------------------------------------------------------------- /packages_12.09/lang/4th/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/lang/4th/Makefile -------------------------------------------------------------------------------- /packages_12.09/lang/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/lang/arm/Makefile -------------------------------------------------------------------------------- /packages_12.09/lang/kid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/lang/kid/Makefile -------------------------------------------------------------------------------- /packages_12.09/lang/mako/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/lang/mako/Makefile -------------------------------------------------------------------------------- /packages_12.09/lang/perl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/lang/perl/Makefile -------------------------------------------------------------------------------- /packages_12.09/lang/php4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/lang/php4/Makefile -------------------------------------------------------------------------------- /packages_12.09/lang/php5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/lang/php5/Makefile -------------------------------------------------------------------------------- /packages_12.09/lang/php5/pecl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/lang/php5/pecl.mk -------------------------------------------------------------------------------- /packages_12.09/lang/ruby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/lang/ruby/Makefile -------------------------------------------------------------------------------- /packages_12.09/lang/tcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/lang/tcl/Makefile -------------------------------------------------------------------------------- /packages_12.09/lang/urbi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/lang/urbi/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/apr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/apr/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/curl/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/db47/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/db47/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/fcgi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/fcgi/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/file/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/flac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/flac/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/gd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/gd/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/gdbm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/gdbm/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/glib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/glib/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/gmp/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/gsl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/gsl/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/gsm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/gsm/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/howl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/howl/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/jpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/jpeg/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/ldns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/ldns/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/lzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/lzo/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/mxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/mxml/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/nacl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/nacl/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/neon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/neon/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/newt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/newt/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/opal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/opal/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/ortp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/ortp/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/pcre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/pcre/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/poco/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/poco/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/popt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/popt/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/re/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/re/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/rem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/rem/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/sctp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/sctp/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/tiff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/tiff/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/ucl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/ucl/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/ustl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/ustl/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/vips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/vips/Makefile -------------------------------------------------------------------------------- /packages_12.09/libs/wt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/libs/wt/Makefile -------------------------------------------------------------------------------- /packages_12.09/mail/mutt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/mail/mutt/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/amule/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/amule/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/aodv-uu/files/aodv-uu.modules: -------------------------------------------------------------------------------- 1 | kaodv 2 | -------------------------------------------------------------------------------- /packages_12.09/net/apf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/apf/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/aprx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/aprx/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/aria2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/aria2/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/arpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/arpd/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/atftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/atftp/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/axel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/axel/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/babel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/babel/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/bind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/bind/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/bing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/bing/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/bird/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/bird/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/bmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/bmon/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/btpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/btpd/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/bwm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/bwm/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/cbtt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/cbtt/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/cdp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/cdp/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/chrony/files/chrony.keys: -------------------------------------------------------------------------------- 1 | 1 chronyc 2 | -------------------------------------------------------------------------------- /packages_12.09/net/click/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/click/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/cups/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/cups/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/dante/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/dante/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/ditg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/ditg/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/djbdns/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/djbdns/README -------------------------------------------------------------------------------- /packages_12.09/net/djbdns/files/dnscache/dnsroots.global: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages_12.09/net/djbdns/files/dnscache/servers/@: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages_12.09/net/dmapd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/dmapd/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/ekg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/ekg/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/faifa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/faifa/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/fping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/fping/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/freeswitch/files/etc.minimal/dialplan/default/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages_12.09/net/freeswitch/files/etc.minimal/dialplan/public/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages_12.09/net/freeswitch/files/etc.packages/blacklist/blacklists/blocked.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages_12.09/net/git/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/git/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/gpsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/gpsd/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/horst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/horst/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/iftop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/iftop/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/ipcad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/ipcad/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/iperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/iperf/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/ipset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/ipset/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/irssi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/irssi/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/jtg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/jtg/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/karma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/karma/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/knock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/knock/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/krb5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/krb5/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/krb5/patches/001-krb5kdc-dir-to-etc.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages_12.09/net/krb5/patches/002-MITKRB5-SA-2011-002.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages_12.09/net/l2tpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/l2tpd/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/lft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/lft/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/lftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/lftp/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/live/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/live/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/lldpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/lldpd/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/lsm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/lsm/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/mac-to-devinfo/files/mactodevinfo: -------------------------------------------------------------------------------- 1 | package mactodevinfo 2 | 3 | -------------------------------------------------------------------------------- /packages_12.09/net/mdk3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/mdk3/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/mgen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/mgen/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/miau/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/miau/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/miax/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/miax/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/mini_httpd/files/mini_httpd.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-C /etc/mini_httpd.conf" 2 | -------------------------------------------------------------------------------- /packages_12.09/net/mrtg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/mrtg/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/mtr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/mtr/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/n2n/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/n2n/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/nbd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/nbd/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/ncftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/ncftp/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/net-snmp/files/snmpd.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-Lf /dev/null -p /var/run/snmpd.pid" 2 | -------------------------------------------------------------------------------- /packages_12.09/net/netatalk/files/AppleVolumes.default: -------------------------------------------------------------------------------- 1 | - 2 | /tmp Temp allow:root,nobody cnidscheme:dbd 3 | -------------------------------------------------------------------------------- /packages_12.09/net/netio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/netio/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/nfs-kernel-server/files/nfsd.exports: -------------------------------------------------------------------------------- 1 | /mnt *(ro,all_squash,insecure,sync) 2 | -------------------------------------------------------------------------------- /packages_12.09/net/nfs-server/files/nfsd.exports: -------------------------------------------------------------------------------- 1 | /mnt (ro,all_squash,insecure) 2 | -------------------------------------------------------------------------------- /packages_12.09/net/nginx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/nginx/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/ngrep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/ngrep/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/nmap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/nmap/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/nstx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/nstx/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/ntpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/ntpd/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/nufw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/nufw/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/nzbgetweb/files/httpd.conf: -------------------------------------------------------------------------------- 1 | *.php:/usr/bin/php-cgi -------------------------------------------------------------------------------- /packages_12.09/net/openslp/files/etc/slp.spi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages_12.09/net/openvpn-devel/files: -------------------------------------------------------------------------------- 1 | ../openvpn/files -------------------------------------------------------------------------------- /packages_12.09/net/openvpn/files/easy-rsa.index: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages_12.09/net/openvpn/files/easy-rsa.serial: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /packages_12.09/net/openvpn/files/openvpn.upgrade: -------------------------------------------------------------------------------- 1 | /etc/openvpn/ 2 | -------------------------------------------------------------------------------- /packages_12.09/net/pdnsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/pdnsd/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/pen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/pen/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/pptpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/pptpd/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/ptpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/ptpd/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/ptunnel/files/ptunnel.config: -------------------------------------------------------------------------------- 1 | config ptunnel 2 | option interface 'lan' 3 | -------------------------------------------------------------------------------- /packages_12.09/net/pyrit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/pyrit/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/rarpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/rarpd/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/reaim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/reaim/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/redir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/redir/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/rp-pppoe/files/pppoe-relay.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-C eth2 -S vlan1" 2 | -------------------------------------------------------------------------------- /packages_12.09/net/rp-pppoe/files/pppoe-server.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-C MyRouter -I eth2" 2 | -------------------------------------------------------------------------------- /packages_12.09/net/rrs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/rrs/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/rssh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/rssh/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/rsync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/rsync/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/scdp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/scdp/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/seeks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/seeks/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/shat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/shat/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/shorewall-lite/files/hostname: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat /proc/sys/kernel/hostname 3 | -------------------------------------------------------------------------------- /packages_12.09/net/sipp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/sipp/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/slurm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/slurm/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/smap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/smap/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/snort/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/snort/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/socat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/socat/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/squid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/squid/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/srelay/files/srelay.conf: -------------------------------------------------------------------------------- 1 | # allow local subnet to access socks proxy 2 | 192.168.1.0/24 any - 3 | -------------------------------------------------------------------------------- /packages_12.09/net/sscep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/sscep/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/sshfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/sshfs/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/sslh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/sslh/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/stun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/stun/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/tig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/tig/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/tinc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/tinc/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/tinc/files/tinc.upgrade: -------------------------------------------------------------------------------- 1 | /etc/tinc/ 2 | -------------------------------------------------------------------------------- /packages_12.09/net/tmsnc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/tmsnc/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/tor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/tor/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/ttcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/ttcp/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/ttcp/ttcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/ttcp/ttcp.c -------------------------------------------------------------------------------- /packages_12.09/net/ucarp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/ucarp/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/udpxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/udpxy/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/uftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/uftp/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/uhub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/uhub/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/ulogd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/ulogd/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/ulogd/files/ulogd.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-d" -------------------------------------------------------------------------------- /packages_12.09/net/unfs3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/unfs3/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/unfs3/files/unfs3.exports: -------------------------------------------------------------------------------- 1 | /mnt (ro,all_squash,insecure) 2 | -------------------------------------------------------------------------------- /packages_12.09/net/usbip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/usbip/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/uucp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/uucp/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/veth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/veth/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/vgp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/vgp/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/vpnc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/vpnc/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/vrrpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/vrrpd/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/vtun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/vtun/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/wccpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/wccpd/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/wdiag/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/wdiag/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/wget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/wget/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/wing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/wing/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/wiviz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/wiviz/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/wol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/wol/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/wput/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/wput/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/xinetd/files/xinetd.conf: -------------------------------------------------------------------------------- 1 | defaults 2 | { 3 | 4 | } 5 | 6 | includedir /etc/xinetd.d 7 | -------------------------------------------------------------------------------- /packages_12.09/net/xl2tpd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/xl2tpd/README -------------------------------------------------------------------------------- /packages_12.09/net/yafc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/yafc/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/yate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/yate/Makefile -------------------------------------------------------------------------------- /packages_12.09/net/znc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/net/znc/Makefile -------------------------------------------------------------------------------- /packages_12.09/sound/mpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/sound/mpc/Makefile -------------------------------------------------------------------------------- /packages_12.09/sound/mpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/sound/mpd/Makefile -------------------------------------------------------------------------------- /packages_12.09/sound/sox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/sound/sox/Makefile -------------------------------------------------------------------------------- /packages_12.09/utils/at/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/utils/at/Makefile -------------------------------------------------------------------------------- /packages_12.09/utils/bc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/utils/bc/Makefile -------------------------------------------------------------------------------- /packages_12.09/utils/dt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/utils/dt/Makefile -------------------------------------------------------------------------------- /packages_12.09/utils/hplip/files/hplib.conf: -------------------------------------------------------------------------------- 1 | # Load the hplib driver 2 | hpaio 3 | -------------------------------------------------------------------------------- /packages_12.09/utils/ink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/utils/ink/Makefile -------------------------------------------------------------------------------- /packages_12.09/utils/io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/utils/io/Makefile -------------------------------------------------------------------------------- /packages_12.09/utils/io/src/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/utils/io/src/io.c -------------------------------------------------------------------------------- /packages_12.09/utils/joe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/utils/joe/Makefile -------------------------------------------------------------------------------- /packages_12.09/utils/mc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/utils/mc/Config.in -------------------------------------------------------------------------------- /packages_12.09/utils/mc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/utils/mc/Makefile -------------------------------------------------------------------------------- /packages_12.09/utils/mg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/utils/mg/Makefile -------------------------------------------------------------------------------- /packages_12.09/utils/oww/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/utils/oww/Makefile -------------------------------------------------------------------------------- /packages_12.09/utils/pv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/utils/pv/Makefile -------------------------------------------------------------------------------- /packages_12.09/utils/rcs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/utils/rcs/Makefile -------------------------------------------------------------------------------- /packages_12.09/utils/screen/files/etc/screenrc: -------------------------------------------------------------------------------- 1 | startup_message off 2 | -------------------------------------------------------------------------------- /packages_12.09/utils/sed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/utils/sed/Makefile -------------------------------------------------------------------------------- /packages_12.09/utils/smartmontools/files/smartd.conf: -------------------------------------------------------------------------------- 1 | /dev/hdb -H 2 | -------------------------------------------------------------------------------- /packages_12.09/utils/tar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/utils/tar/Makefile -------------------------------------------------------------------------------- /packages_12.09/utils/upx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/utils/upx/Makefile -------------------------------------------------------------------------------- /packages_12.09/utils/valgrind/src/abort.c: -------------------------------------------------------------------------------- 1 | void abort(void) 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /packages_12.09/utils/vim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/utils/vim/Makefile -------------------------------------------------------------------------------- /packages_12.09/utils/zip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/packages_12.09/utils/zip/Makefile -------------------------------------------------------------------------------- /set_up_build_enviroment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dragino/dragino2/HEAD/set_up_build_enviroment.sh --------------------------------------------------------------------------------