├── .gitignore ├── README.md ├── 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 ├── arduino ├── cpu-mcu-bridge │ └── Makefile ├── luci-app-arduino-webpanel │ └── Makefile ├── node-bleno │ └── Makefile ├── node-noble │ └── Makefile ├── node-serialport │ ├── Makefile │ └── patches │ │ └── package.json.patch ├── node-socket.io-client-legacy │ └── Makefile ├── node-socket.io-client │ └── Makefile ├── node-socket.io-legacy │ └── Makefile ├── node-socket.io │ └── Makefile ├── node-sqlite3 │ ├── Makefile │ └── patches │ │ └── package.json.patch ├── node-ws │ └── Makefile ├── node │ ├── Makefile │ ├── files │ │ └── node │ └── patches │ │ └── 001_crypto.patch ├── spacebrew │ └── Makefile ├── temboo │ └── Makefile ├── uSDaemon │ ├── Makefile │ └── files │ │ ├── etc │ │ └── init.d │ │ │ └── usd │ │ ├── lib │ │ └── functions │ │ │ └── post_mount.sh │ │ └── sbin │ │ └── uSDaemon ├── v8m-rb │ ├── Makefile │ └── patches │ │ ├── gcc48_warning.patch │ │ └── v8.REPLACE_INVALID_UTF8.patch ├── yun-conf │ ├── Makefile │ ├── create_certificate.sh │ └── files │ │ └── etc │ │ ├── LININO_CONTRIBUTORS.TXT │ │ ├── arduino │ │ ├── Caterina-Yun.hex │ │ ├── gpg_gen_key_batch │ │ ├── openwrt-yun-release │ │ ├── optiboot_atmega328.hex │ │ ├── wifi_error_reasons.csv.gz │ │ ├── wifi_error_statuses.csv.gz │ │ └── wifi_timezones.csv.gz │ │ ├── avahi │ │ └── services │ │ │ └── arduino.service │ │ ├── config │ │ └── arduino │ │ ├── httpd.conf │ │ └── triggerhappy │ │ └── triggers.d │ │ └── reset.conf └── yun-scripts │ ├── Makefile │ └── files │ ├── etc │ └── init.d │ │ ├── delete_uhttpd_cert │ │ ├── generate_new_gpg_key │ │ ├── handle_wifi_reset │ │ ├── rename-wifi-if-access-point │ │ └── rngd-turn-off │ └── usr │ └── bin │ ├── blink-start │ ├── blink-stop │ ├── boot-complete-notify │ ├── extract-built-date │ ├── extract-built-date-from-sysupgrade-image │ ├── kill-bridge │ ├── merge-sketch-with-bootloader.lua │ ├── pretty-wifi-info.lua │ ├── reset-mcu │ ├── reset-to-factory-anyway │ ├── run-avrdude │ ├── run-bridge │ ├── run-sysupgrade │ ├── special-storage-available │ ├── update-file-available │ ├── upgrade-all │ ├── wifi-live-or-reset │ ├── wifi-reset-and-reboot │ ├── wifi-reset-button-pressed │ └── wifi-reset-button-released ├── 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 └── yun-gcc │ ├── Makefile │ └── patches │ ├── fenv.diff │ └── mpfr.diff ├── 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 │ │ └── 000-ignore_wide_getaddrinfo_while_crosscompiling.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-ssh │ └── patches │ │ └── 010-step_back_autotools-no-gettext.patch ├── axtls │ ├── Makefile │ ├── files │ │ └── config │ └── patches │ │ ├── 001-opt_flags.patch │ │ └── 002-axhttpd_install.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 │ └── 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 ├── avrdude ├── Makefile ├── files │ └── avrdude.conf └── patches │ └── silent_bitbang_cmd.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 └── Makefile ├── 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 │ └── 110-deprecated_hci_remote_name.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 /.gitignore: -------------------------------------------------------------------------------- 1 | *.orig 2 | *.rej 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/README.md -------------------------------------------------------------------------------- /admin/debootstrap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/admin/debootstrap/Makefile -------------------------------------------------------------------------------- /admin/gkrellmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/admin/gkrellmd/Makefile -------------------------------------------------------------------------------- /admin/htop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/admin/htop/Makefile -------------------------------------------------------------------------------- /admin/monit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/admin/monit/Makefile -------------------------------------------------------------------------------- /admin/monit/patches/001-no_sslv2.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/monit/patches/002-uclibc_loadavg.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin/muninlite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/admin/muninlite/Makefile -------------------------------------------------------------------------------- /admin/nagios/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/admin/nagios/Makefile -------------------------------------------------------------------------------- /admin/nrpe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/admin/nrpe/Makefile -------------------------------------------------------------------------------- /admin/nrpe/files/nrpe.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/admin/nrpe/files/nrpe.cfg -------------------------------------------------------------------------------- /admin/nrpe/files/nrpe.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/admin/nrpe/files/nrpe.init -------------------------------------------------------------------------------- /admin/nsca/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/admin/nsca/Makefile -------------------------------------------------------------------------------- /admin/osiris/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/admin/osiris/Makefile -------------------------------------------------------------------------------- /admin/ostiary/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/admin/ostiary/Makefile -------------------------------------------------------------------------------- /admin/pmacct/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/admin/pmacct/Makefile -------------------------------------------------------------------------------- /admin/pmacct/files/nfacctd.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-f /etc/nfacctd.conf" 2 | -------------------------------------------------------------------------------- /admin/pmacct/files/pmacctd.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-f /etc/pmacctd.conf" 2 | -------------------------------------------------------------------------------- /admin/pmacct/files/sfacctd.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-f /etc/sfacctd.conf" 2 | -------------------------------------------------------------------------------- /admin/pmacct/files/uacctd.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-f /etc/uacctd.conf" 2 | -------------------------------------------------------------------------------- /admin/sudo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/admin/sudo/Makefile -------------------------------------------------------------------------------- /admin/sudo/files/sudo.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/admin/sudo/files/sudo.init -------------------------------------------------------------------------------- /admin/syslog-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/admin/syslog-ng/Makefile -------------------------------------------------------------------------------- /admin/syslog-ng3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/admin/syslog-ng3/Makefile -------------------------------------------------------------------------------- /admin/zabbix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/admin/zabbix/Makefile -------------------------------------------------------------------------------- /arduino/node-bleno/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/arduino/node-bleno/Makefile -------------------------------------------------------------------------------- /arduino/node-noble/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/arduino/node-noble/Makefile -------------------------------------------------------------------------------- /arduino/node-ws/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/arduino/node-ws/Makefile -------------------------------------------------------------------------------- /arduino/node/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/arduino/node/Makefile -------------------------------------------------------------------------------- /arduino/node/files/node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/arduino/node/files/node -------------------------------------------------------------------------------- /arduino/spacebrew/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/arduino/spacebrew/Makefile -------------------------------------------------------------------------------- /arduino/temboo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/arduino/temboo/Makefile -------------------------------------------------------------------------------- /arduino/uSDaemon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/arduino/uSDaemon/Makefile -------------------------------------------------------------------------------- /arduino/v8m-rb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/arduino/v8m-rb/Makefile -------------------------------------------------------------------------------- /arduino/yun-conf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/arduino/yun-conf/Makefile -------------------------------------------------------------------------------- /arduino/yun-conf/files/etc/arduino/openwrt-yun-release: -------------------------------------------------------------------------------- 1 | built=DATE 2 | -------------------------------------------------------------------------------- /devel/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/devel/binutils/Makefile -------------------------------------------------------------------------------- /devel/cppunit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/devel/cppunit/Makefile -------------------------------------------------------------------------------- /devel/diffutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/devel/diffutils/Makefile -------------------------------------------------------------------------------- /devel/dmalloc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/devel/dmalloc/Makefile -------------------------------------------------------------------------------- /devel/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/devel/gcc/Makefile -------------------------------------------------------------------------------- /devel/ksymoops/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/devel/ksymoops/Makefile -------------------------------------------------------------------------------- /devel/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/devel/make/Makefile -------------------------------------------------------------------------------- /devel/oprofile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/devel/oprofile/Makefile -------------------------------------------------------------------------------- /devel/patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/devel/patch/Makefile -------------------------------------------------------------------------------- /devel/perf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/devel/perf/Makefile -------------------------------------------------------------------------------- /devel/yun-gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/devel/yun-gcc/Makefile -------------------------------------------------------------------------------- /ipv6/6scripts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/6scripts/Makefile -------------------------------------------------------------------------------- /ipv6/6tunnel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/6tunnel/Makefile -------------------------------------------------------------------------------- /ipv6/ahcpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/ahcpd/Makefile -------------------------------------------------------------------------------- /ipv6/ahcpd/files/ahcpd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/ahcpd/files/ahcpd.init -------------------------------------------------------------------------------- /ipv6/aiccu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/aiccu/Makefile -------------------------------------------------------------------------------- /ipv6/dhcp6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/dhcp6/Makefile -------------------------------------------------------------------------------- /ipv6/dibbler/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/dibbler/Makefile -------------------------------------------------------------------------------- /ipv6/gw6c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/gw6c/Makefile -------------------------------------------------------------------------------- /ipv6/gw6c/files/gw6c.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/gw6c/files/gw6c.config -------------------------------------------------------------------------------- /ipv6/gw6c/files/gw6c.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/gw6c/files/gw6c.init -------------------------------------------------------------------------------- /ipv6/gw6c/files/openwrt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/gw6c/files/openwrt.sh -------------------------------------------------------------------------------- /ipv6/ipv6calc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/ipv6calc/Makefile -------------------------------------------------------------------------------- /ipv6/miredo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/miredo/Makefile -------------------------------------------------------------------------------- /ipv6/mrd6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/mrd6/Makefile -------------------------------------------------------------------------------- /ipv6/mrd6/files/mrd6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/mrd6/files/mrd6.conf -------------------------------------------------------------------------------- /ipv6/mrd6/files/mrd6.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/mrd6/files/mrd6.init -------------------------------------------------------------------------------- /ipv6/ndisc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/ndisc/Makefile -------------------------------------------------------------------------------- /ipv6/ndppd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/ndppd/Makefile -------------------------------------------------------------------------------- /ipv6/ndppd/files/ndppd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/ndppd/files/ndppd.init -------------------------------------------------------------------------------- /ipv6/ptrtd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/ptrtd/Makefile -------------------------------------------------------------------------------- /ipv6/ptrtd/files/ptrtd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/ptrtd/files/ptrtd.init -------------------------------------------------------------------------------- /ipv6/radvd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/radvd/Makefile -------------------------------------------------------------------------------- /ipv6/radvd/files/radvd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/radvd/files/radvd.init -------------------------------------------------------------------------------- /ipv6/send/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/send/Makefile -------------------------------------------------------------------------------- /ipv6/shorewall6-lite/files/hostname: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat /proc/sys/kernel/hostname 3 | -------------------------------------------------------------------------------- /ipv6/tayga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/tayga/Makefile -------------------------------------------------------------------------------- /ipv6/tayga/files/tayga.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/tayga/files/tayga.sh -------------------------------------------------------------------------------- /ipv6/thc-ipv6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/thc-ipv6/Makefile -------------------------------------------------------------------------------- /ipv6/totd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/totd/Makefile -------------------------------------------------------------------------------- /ipv6/totd/files/totd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/totd/files/totd.conf -------------------------------------------------------------------------------- /ipv6/tspc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/tspc/Makefile -------------------------------------------------------------------------------- /ipv6/tunslip6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/ipv6/tunslip6/Makefile -------------------------------------------------------------------------------- /lang/4th/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/4th/Makefile -------------------------------------------------------------------------------- /lang/arm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/arm/Makefile -------------------------------------------------------------------------------- /lang/cython/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/cython/Makefile -------------------------------------------------------------------------------- /lang/distribute/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/distribute/Makefile -------------------------------------------------------------------------------- /lang/egenix-mx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/egenix-mx/Makefile -------------------------------------------------------------------------------- /lang/eggdrop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/eggdrop/Makefile -------------------------------------------------------------------------------- /lang/erlang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/erlang/Makefile -------------------------------------------------------------------------------- /lang/gst-python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/gst-python/Makefile -------------------------------------------------------------------------------- /lang/ipython/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/ipython/Makefile -------------------------------------------------------------------------------- /lang/jamvm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/jamvm/Makefile -------------------------------------------------------------------------------- /lang/jsonpath/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/jsonpath/Makefile -------------------------------------------------------------------------------- /lang/kid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/kid/Makefile -------------------------------------------------------------------------------- /lang/lsqlite3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/lsqlite3/Makefile -------------------------------------------------------------------------------- /lang/luaexpat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/luaexpat/Makefile -------------------------------------------------------------------------------- /lang/luaposix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/luaposix/Makefile -------------------------------------------------------------------------------- /lang/luasec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/luasec/Makefile -------------------------------------------------------------------------------- /lang/luasoap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/luasoap/Makefile -------------------------------------------------------------------------------- /lang/luasocket/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/luasocket/Makefile -------------------------------------------------------------------------------- /lang/luasql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/luasql/Makefile -------------------------------------------------------------------------------- /lang/mako/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/mako/Makefile -------------------------------------------------------------------------------- /lang/numpy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/numpy/Makefile -------------------------------------------------------------------------------- /lang/perl-dbi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/perl-dbi/Makefile -------------------------------------------------------------------------------- /lang/perl-uri/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/perl-uri/Makefile -------------------------------------------------------------------------------- /lang/perl-www/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/perl-www/Makefile -------------------------------------------------------------------------------- /lang/perl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/perl/Makefile -------------------------------------------------------------------------------- /lang/perl/perlbase.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/perl/perlbase.mk -------------------------------------------------------------------------------- /lang/perl/perlmod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/perl/perlmod.mk -------------------------------------------------------------------------------- /lang/php-pear/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/php-pear/Makefile -------------------------------------------------------------------------------- /lang/php4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/php4/Makefile -------------------------------------------------------------------------------- /lang/php4/files/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/php4/files/php.ini -------------------------------------------------------------------------------- /lang/php4/files/php.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/php4/files/php.init -------------------------------------------------------------------------------- /lang/php5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/php5/Makefile -------------------------------------------------------------------------------- /lang/php5/files/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/php5/files/php.ini -------------------------------------------------------------------------------- /lang/php5/pecl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/php5/pecl.mk -------------------------------------------------------------------------------- /lang/psycopg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/psycopg/Makefile -------------------------------------------------------------------------------- /lang/pybluez/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/pybluez/Makefile -------------------------------------------------------------------------------- /lang/pyclips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/pyclips/Makefile -------------------------------------------------------------------------------- /lang/pyevent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/pyevent/Makefile -------------------------------------------------------------------------------- /lang/pygobject/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/pygobject/Makefile -------------------------------------------------------------------------------- /lang/pymysql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/pymysql/Makefile -------------------------------------------------------------------------------- /lang/pyopenssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/pyopenssl/Makefile -------------------------------------------------------------------------------- /lang/pypcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/pypcap/Makefile -------------------------------------------------------------------------------- /lang/pyrrd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/pyrrd/Makefile -------------------------------------------------------------------------------- /lang/pyserial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/pyserial/Makefile -------------------------------------------------------------------------------- /lang/pysqlite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/pysqlite/Makefile -------------------------------------------------------------------------------- /lang/python-sip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/python-sip/Makefile -------------------------------------------------------------------------------- /lang/python/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/python/Makefile -------------------------------------------------------------------------------- /lang/pyusb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/pyusb/Makefile -------------------------------------------------------------------------------- /lang/pyxdg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/pyxdg/Makefile -------------------------------------------------------------------------------- /lang/pyyaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/pyyaml/Makefile -------------------------------------------------------------------------------- /lang/ruby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/ruby/Makefile -------------------------------------------------------------------------------- /lang/sigscheme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/sigscheme/Makefile -------------------------------------------------------------------------------- /lang/simplejson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/simplejson/Makefile -------------------------------------------------------------------------------- /lang/tcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/tcl/Makefile -------------------------------------------------------------------------------- /lang/twisted/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/twisted/Makefile -------------------------------------------------------------------------------- /lang/urbi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/urbi/Makefile -------------------------------------------------------------------------------- /lang/yapsnmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/lang/yapsnmp/Makefile -------------------------------------------------------------------------------- /libs/aalib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/aalib/Makefile -------------------------------------------------------------------------------- /libs/alsa-lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/alsa-lib/Makefile -------------------------------------------------------------------------------- /libs/apr-util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/apr-util/Makefile -------------------------------------------------------------------------------- /libs/apr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/apr/Makefile -------------------------------------------------------------------------------- /libs/argtable/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/argtable/Makefile -------------------------------------------------------------------------------- /libs/avahi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/avahi/Makefile -------------------------------------------------------------------------------- /libs/axtls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/axtls/Makefile -------------------------------------------------------------------------------- /libs/axtls/files/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/axtls/files/config -------------------------------------------------------------------------------- /libs/boost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/boost/Makefile -------------------------------------------------------------------------------- /libs/c-ares/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/c-ares/Makefile -------------------------------------------------------------------------------- /libs/cgilib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/cgilib/Makefile -------------------------------------------------------------------------------- /libs/check/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/check/Makefile -------------------------------------------------------------------------------- /libs/classpath/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/classpath/Makefile -------------------------------------------------------------------------------- /libs/clinkc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/clinkc/Makefile -------------------------------------------------------------------------------- /libs/confuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/confuse/Makefile -------------------------------------------------------------------------------- /libs/credis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/credis/Makefile -------------------------------------------------------------------------------- /libs/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/curl/Makefile -------------------------------------------------------------------------------- /libs/cyrus-sasl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/cyrus-sasl/Makefile -------------------------------------------------------------------------------- /libs/db47/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/db47/Makefile -------------------------------------------------------------------------------- /libs/dbus-glib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/dbus-glib/Makefile -------------------------------------------------------------------------------- /libs/elfutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/elfutils/Makefile -------------------------------------------------------------------------------- /libs/eventlog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/eventlog/Makefile -------------------------------------------------------------------------------- /libs/expat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/expat/Makefile -------------------------------------------------------------------------------- /libs/ezxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/ezxml/Makefile -------------------------------------------------------------------------------- /libs/faad2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/faad2/Makefile -------------------------------------------------------------------------------- /libs/fcgi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/fcgi/Makefile -------------------------------------------------------------------------------- /libs/fftw3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/fftw3/Makefile -------------------------------------------------------------------------------- /libs/file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/file/Makefile -------------------------------------------------------------------------------- /libs/flac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/flac/Makefile -------------------------------------------------------------------------------- /libs/freetype/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/freetype/Makefile -------------------------------------------------------------------------------- /libs/fribidi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/fribidi/Makefile -------------------------------------------------------------------------------- /libs/ftplib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/ftplib/Makefile -------------------------------------------------------------------------------- /libs/gd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/gd/Makefile -------------------------------------------------------------------------------- /libs/gdbm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/gdbm/Makefile -------------------------------------------------------------------------------- /libs/gettext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/gettext/Makefile -------------------------------------------------------------------------------- /libs/giflib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/giflib/Makefile -------------------------------------------------------------------------------- /libs/glib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/glib/Makefile -------------------------------------------------------------------------------- /libs/glib2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/glib2/Makefile -------------------------------------------------------------------------------- /libs/glibmm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/glibmm/Makefile -------------------------------------------------------------------------------- /libs/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/gmp/Makefile -------------------------------------------------------------------------------- /libs/gnutls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/gnutls/Makefile -------------------------------------------------------------------------------- /libs/gperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/gperf/Makefile -------------------------------------------------------------------------------- /libs/gpgme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/gpgme/Makefile -------------------------------------------------------------------------------- /libs/gsl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/gsl/Makefile -------------------------------------------------------------------------------- /libs/gsm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/gsm/Makefile -------------------------------------------------------------------------------- /libs/howl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/howl/Makefile -------------------------------------------------------------------------------- /libs/id3lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/id3lib/Makefile -------------------------------------------------------------------------------- /libs/iksemel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/iksemel/Makefile -------------------------------------------------------------------------------- /libs/intltool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/intltool/Makefile -------------------------------------------------------------------------------- /libs/jansson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/jansson/Makefile -------------------------------------------------------------------------------- /libs/jpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/jpeg/Makefile -------------------------------------------------------------------------------- /libs/keynote/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/keynote/Makefile -------------------------------------------------------------------------------- /libs/ldns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/ldns/Makefile -------------------------------------------------------------------------------- /libs/leptonica/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/leptonica/Makefile -------------------------------------------------------------------------------- /libs/libIDL2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libIDL2/Makefile -------------------------------------------------------------------------------- /libs/libaio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libaio/Makefile -------------------------------------------------------------------------------- /libs/libamsel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libamsel/Makefile -------------------------------------------------------------------------------- /libs/libao/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libao/Makefile -------------------------------------------------------------------------------- /libs/libart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libart/Makefile -------------------------------------------------------------------------------- /libs/libassuan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libassuan/Makefile -------------------------------------------------------------------------------- /libs/libcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libcap/Makefile -------------------------------------------------------------------------------- /libs/libcelt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libcelt/Makefile -------------------------------------------------------------------------------- /libs/libcli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libcli/Makefile -------------------------------------------------------------------------------- /libs/libconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libconfig/Makefile -------------------------------------------------------------------------------- /libs/libcroco/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libcroco/Makefile -------------------------------------------------------------------------------- /libs/libcunit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libcunit/Makefile -------------------------------------------------------------------------------- /libs/libdaemon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libdaemon/Makefile -------------------------------------------------------------------------------- /libs/libdaq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libdaq/Makefile -------------------------------------------------------------------------------- /libs/libdbi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libdbi/Makefile -------------------------------------------------------------------------------- /libs/libdlna/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libdlna/Makefile -------------------------------------------------------------------------------- /libs/libdnet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libdnet/Makefile -------------------------------------------------------------------------------- /libs/libdvbpsi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libdvbpsi/Makefile -------------------------------------------------------------------------------- /libs/libdvdread/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libdvdread/Makefile -------------------------------------------------------------------------------- /libs/libelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libelf/Makefile -------------------------------------------------------------------------------- /libs/libevent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libevent/Makefile -------------------------------------------------------------------------------- /libs/libevent2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libevent2/Makefile -------------------------------------------------------------------------------- /libs/libexif/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libexif/Makefile -------------------------------------------------------------------------------- /libs/libffi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libffi/Makefile -------------------------------------------------------------------------------- /libs/libftdi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libftdi/Makefile -------------------------------------------------------------------------------- /libs/libgcrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libgcrypt/Makefile -------------------------------------------------------------------------------- /libs/libgphoto2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libgphoto2/Makefile -------------------------------------------------------------------------------- /libs/libgssapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libgssapi/Makefile -------------------------------------------------------------------------------- /libs/libiconv/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libiconv/COPYING -------------------------------------------------------------------------------- /libs/libiconv/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libiconv/COPYRIGHT -------------------------------------------------------------------------------- /libs/libiconv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libiconv/Makefile -------------------------------------------------------------------------------- /libs/libid3tag/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libid3tag/Makefile -------------------------------------------------------------------------------- /libs/libidn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libidn/Makefile -------------------------------------------------------------------------------- /libs/liblo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/liblo/Makefile -------------------------------------------------------------------------------- /libs/libmad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libmad/Makefile -------------------------------------------------------------------------------- /libs/libmbus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libmbus/Makefile -------------------------------------------------------------------------------- /libs/libmcrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libmcrypt/Makefile -------------------------------------------------------------------------------- /libs/libmikmod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libmikmod/Makefile -------------------------------------------------------------------------------- /libs/libmms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libmms/Makefile -------------------------------------------------------------------------------- /libs/libmnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libmnl/Makefile -------------------------------------------------------------------------------- /libs/libmodbus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libmodbus/Makefile -------------------------------------------------------------------------------- /libs/libmpcdec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libmpcdec/Makefile -------------------------------------------------------------------------------- /libs/libmpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libmpd/Makefile -------------------------------------------------------------------------------- /libs/libmpeg2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libmpeg2/Makefile -------------------------------------------------------------------------------- /libs/libnatpmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libnatpmp/Makefile -------------------------------------------------------------------------------- /libs/libnfc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libnfc/Makefile -------------------------------------------------------------------------------- /libs/libnids/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libnids/Makefile -------------------------------------------------------------------------------- /libs/libogg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libogg/Makefile -------------------------------------------------------------------------------- /libs/liboil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/liboil/Makefile -------------------------------------------------------------------------------- /libs/libol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libol/Makefile -------------------------------------------------------------------------------- /libs/liboping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/liboping/Makefile -------------------------------------------------------------------------------- /libs/libosip2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libosip2/Makefile -------------------------------------------------------------------------------- /libs/libowfat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libowfat/Makefile -------------------------------------------------------------------------------- /libs/libpam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libpam/Makefile -------------------------------------------------------------------------------- /libs/libpar2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libpar2/Makefile -------------------------------------------------------------------------------- /libs/libpfm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libpfm/Makefile -------------------------------------------------------------------------------- /libs/libplist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libplist/Makefile -------------------------------------------------------------------------------- /libs/libpng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libpng/Makefile -------------------------------------------------------------------------------- /libs/librsync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/librsync/Makefile -------------------------------------------------------------------------------- /libs/libsdl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libsdl/Makefile -------------------------------------------------------------------------------- /libs/libshout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libshout/Makefile -------------------------------------------------------------------------------- /libs/libsigc++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libsigc++/Makefile -------------------------------------------------------------------------------- /libs/libsml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libsml/Makefile -------------------------------------------------------------------------------- /libs/libsndfile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libsndfile/Makefile -------------------------------------------------------------------------------- /libs/libsoup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libsoup/Makefile -------------------------------------------------------------------------------- /libs/libspe2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libspe2/Makefile -------------------------------------------------------------------------------- /libs/libsrtp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libsrtp/Makefile -------------------------------------------------------------------------------- /libs/libssh2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libssh2/Makefile -------------------------------------------------------------------------------- /libs/libsynce/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libsynce/Makefile -------------------------------------------------------------------------------- /libs/libtasn1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libtasn1/Makefile -------------------------------------------------------------------------------- /libs/libtheora/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libtheora/Makefile -------------------------------------------------------------------------------- /libs/libtorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libtorrent/Makefile -------------------------------------------------------------------------------- /libs/libtwin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libtwin/Makefile -------------------------------------------------------------------------------- /libs/libupnp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libupnp/Makefile -------------------------------------------------------------------------------- /libs/libusb-1.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libusb-1.0/Makefile -------------------------------------------------------------------------------- /libs/libusb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libusb/Makefile -------------------------------------------------------------------------------- /libs/libv4l/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libv4l/Makefile -------------------------------------------------------------------------------- /libs/libvorbis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libvorbis/Makefile -------------------------------------------------------------------------------- /libs/libxapian/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libxapian/Makefile -------------------------------------------------------------------------------- /libs/libxml2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libxml2/Makefile -------------------------------------------------------------------------------- /libs/libxslt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libxslt/Makefile -------------------------------------------------------------------------------- /libs/libyaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libyaml/Makefile -------------------------------------------------------------------------------- /libs/libzip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libzip/Makefile -------------------------------------------------------------------------------- /libs/libzstream/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/libzstream/Makefile -------------------------------------------------------------------------------- /libs/lzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/lzo/Makefile -------------------------------------------------------------------------------- /libs/matrixssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/matrixssl/Makefile -------------------------------------------------------------------------------- /libs/mxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/mxml/Makefile -------------------------------------------------------------------------------- /libs/mysql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/mysql/Makefile -------------------------------------------------------------------------------- /libs/mysql/conf/my.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/mysql/conf/my.cnf -------------------------------------------------------------------------------- /libs/nacl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/nacl/Makefile -------------------------------------------------------------------------------- /libs/nacl/do-openwrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/nacl/do-openwrt -------------------------------------------------------------------------------- /libs/neon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/neon/Makefile -------------------------------------------------------------------------------- /libs/newt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/newt/Makefile -------------------------------------------------------------------------------- /libs/nmeap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/nmeap/Makefile -------------------------------------------------------------------------------- /libs/opal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/opal/Makefile -------------------------------------------------------------------------------- /libs/opencdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/opencdk/Makefile -------------------------------------------------------------------------------- /libs/openh323/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/openh323/Makefile -------------------------------------------------------------------------------- /libs/openldap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/openldap/Makefile -------------------------------------------------------------------------------- /libs/orbit2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/orbit2/Makefile -------------------------------------------------------------------------------- /libs/ortp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/ortp/Makefile -------------------------------------------------------------------------------- /libs/ossp-js/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/ossp-js/Makefile -------------------------------------------------------------------------------- /libs/pcre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/pcre/Makefile -------------------------------------------------------------------------------- /libs/phidget21/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/phidget21/Makefile -------------------------------------------------------------------------------- /libs/poco/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/poco/Makefile -------------------------------------------------------------------------------- /libs/polarssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/polarssl/Makefile -------------------------------------------------------------------------------- /libs/popt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/popt/Makefile -------------------------------------------------------------------------------- /libs/postgresql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/postgresql/Makefile -------------------------------------------------------------------------------- /libs/protobuf-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/protobuf-c/Makefile -------------------------------------------------------------------------------- /libs/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/protobuf/Makefile -------------------------------------------------------------------------------- /libs/pthsem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/pthsem/Makefile -------------------------------------------------------------------------------- /libs/ptlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/ptlib/Makefile -------------------------------------------------------------------------------- /libs/pwlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/pwlib/Makefile -------------------------------------------------------------------------------- /libs/radlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/radlib/Makefile -------------------------------------------------------------------------------- /libs/re/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/re/Makefile -------------------------------------------------------------------------------- /libs/rem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/rem/Makefile -------------------------------------------------------------------------------- /libs/sctp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/sctp/Makefile -------------------------------------------------------------------------------- /libs/serdisplib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/serdisplib/Makefile -------------------------------------------------------------------------------- /libs/shflags/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/shflags/Makefile -------------------------------------------------------------------------------- /libs/slang2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/slang2/Makefile -------------------------------------------------------------------------------- /libs/spandsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/spandsp/Makefile -------------------------------------------------------------------------------- /libs/speex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/speex/Makefile -------------------------------------------------------------------------------- /libs/sqlite2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/sqlite2/Makefile -------------------------------------------------------------------------------- /libs/sqlite3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/sqlite3/Makefile -------------------------------------------------------------------------------- /libs/st2205tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/st2205tool/Makefile -------------------------------------------------------------------------------- /libs/sysfsutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/sysfsutils/Makefile -------------------------------------------------------------------------------- /libs/taglib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/taglib/Makefile -------------------------------------------------------------------------------- /libs/tiff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/tiff/Makefile -------------------------------------------------------------------------------- /libs/ucl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/ucl/Makefile -------------------------------------------------------------------------------- /libs/unixodbc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/unixodbc/Makefile -------------------------------------------------------------------------------- /libs/ustl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/ustl/Makefile -------------------------------------------------------------------------------- /libs/ustl/files/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/ustl/files/config.h -------------------------------------------------------------------------------- /libs/vips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/vips/Makefile -------------------------------------------------------------------------------- /libs/wt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/wt/Makefile -------------------------------------------------------------------------------- /libs/wxbase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/wxbase/Makefile -------------------------------------------------------------------------------- /libs/xmlrpc-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/xmlrpc-c/Makefile -------------------------------------------------------------------------------- /libs/xmpp4r/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/xmpp4r/Makefile -------------------------------------------------------------------------------- /libs/zaptel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/libs/zaptel/Makefile -------------------------------------------------------------------------------- /mail/dovecot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/mail/dovecot/Makefile -------------------------------------------------------------------------------- /mail/fetchmail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/mail/fetchmail/Makefile -------------------------------------------------------------------------------- /mail/imapfilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/mail/imapfilter/Makefile -------------------------------------------------------------------------------- /mail/msmtp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/mail/msmtp/Makefile -------------------------------------------------------------------------------- /mail/mutt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/mail/mutt/Makefile -------------------------------------------------------------------------------- /mail/nullmailer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/mail/nullmailer/Makefile -------------------------------------------------------------------------------- /mail/procmail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/mail/procmail/Makefile -------------------------------------------------------------------------------- /mail/ssmtp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/mail/ssmtp/Makefile -------------------------------------------------------------------------------- /mail/xmail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/mail/xmail/Makefile -------------------------------------------------------------------------------- /net/aircrack-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/aircrack-ng/Makefile -------------------------------------------------------------------------------- /net/airpwn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/airpwn/Makefile -------------------------------------------------------------------------------- /net/amule/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/amule/Makefile -------------------------------------------------------------------------------- /net/amwall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/amwall/Makefile -------------------------------------------------------------------------------- /net/aodv-uu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/aodv-uu/Makefile -------------------------------------------------------------------------------- /net/aodv-uu/files/aodv-uu.modules: -------------------------------------------------------------------------------- 1 | kaodv 2 | -------------------------------------------------------------------------------- /net/aoetools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/aoetools/Makefile -------------------------------------------------------------------------------- /net/apache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/apache/Makefile -------------------------------------------------------------------------------- /net/apcupsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/apcupsd/Makefile -------------------------------------------------------------------------------- /net/apcupsd/files/commok: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/apcupsd/files/commok -------------------------------------------------------------------------------- /net/apf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/apf/Makefile -------------------------------------------------------------------------------- /net/appweb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/appweb/Makefile -------------------------------------------------------------------------------- /net/aprx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/aprx/Makefile -------------------------------------------------------------------------------- /net/aprx/files/aprx.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/aprx/files/aprx.init -------------------------------------------------------------------------------- /net/aria2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/aria2/Makefile -------------------------------------------------------------------------------- /net/arpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/arpd/Makefile -------------------------------------------------------------------------------- /net/arpwatch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/arpwatch/Makefile -------------------------------------------------------------------------------- /net/atftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/atftp/Makefile -------------------------------------------------------------------------------- /net/autossh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/autossh/Makefile -------------------------------------------------------------------------------- /net/axel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/axel/Makefile -------------------------------------------------------------------------------- /net/babel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/babel/Makefile -------------------------------------------------------------------------------- /net/bahamut/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/bahamut/Makefile -------------------------------------------------------------------------------- /net/baresip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/baresip/Makefile -------------------------------------------------------------------------------- /net/bind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/bind/Makefile -------------------------------------------------------------------------------- /net/bind/files/bind/db.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/bind/files/bind/db.0 -------------------------------------------------------------------------------- /net/bing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/bing/Makefile -------------------------------------------------------------------------------- /net/bird/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/bird/Makefile -------------------------------------------------------------------------------- /net/bird/files/bird4loop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/bird/files/bird4loop -------------------------------------------------------------------------------- /net/bird/files/bird6loop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/bird/files/bird6loop -------------------------------------------------------------------------------- /net/bitchx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/bitchx/Makefile -------------------------------------------------------------------------------- /net/bitlbee/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/bitlbee/Makefile -------------------------------------------------------------------------------- /net/bmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/bmon/Makefile -------------------------------------------------------------------------------- /net/btpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/btpd/Makefile -------------------------------------------------------------------------------- /net/btpd/files/btpd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/btpd/files/btpd.init -------------------------------------------------------------------------------- /net/bwm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/bwm/Makefile -------------------------------------------------------------------------------- /net/bwping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/bwping/Makefile -------------------------------------------------------------------------------- /net/cbtt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/cbtt/Makefile -------------------------------------------------------------------------------- /net/cdp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/cdp/Makefile -------------------------------------------------------------------------------- /net/chaosvpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/chaosvpn/Makefile -------------------------------------------------------------------------------- /net/chillispot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/chillispot/Makefile -------------------------------------------------------------------------------- /net/chrony/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/chrony/Makefile -------------------------------------------------------------------------------- /net/chrony/files/chrony.keys: -------------------------------------------------------------------------------- 1 | 1 chronyc 2 | -------------------------------------------------------------------------------- /net/cifs-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/cifs-utils/Makefile -------------------------------------------------------------------------------- /net/click/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/click/Makefile -------------------------------------------------------------------------------- /net/cmdftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/cmdftp/Makefile -------------------------------------------------------------------------------- /net/corkscrew/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/corkscrew/Makefile -------------------------------------------------------------------------------- /net/ctorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ctorrent/Makefile -------------------------------------------------------------------------------- /net/cups-bjnp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/cups-bjnp/Makefile -------------------------------------------------------------------------------- /net/cups/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/cups/Makefile -------------------------------------------------------------------------------- /net/curlftpfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/curlftpfs/Makefile -------------------------------------------------------------------------------- /net/cutter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/cutter/Makefile -------------------------------------------------------------------------------- /net/dante/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/dante/Makefile -------------------------------------------------------------------------------- /net/darkstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/darkstat/Makefile -------------------------------------------------------------------------------- /net/deluge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/deluge/Makefile -------------------------------------------------------------------------------- /net/dhcpcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/dhcpcd/Makefile -------------------------------------------------------------------------------- /net/dircproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/dircproxy/Makefile -------------------------------------------------------------------------------- /net/ditg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ditg/Makefile -------------------------------------------------------------------------------- /net/djbdns/Changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/djbdns/Changelog -------------------------------------------------------------------------------- /net/djbdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/djbdns/Makefile -------------------------------------------------------------------------------- /net/djbdns/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/djbdns/README -------------------------------------------------------------------------------- /net/djbdns/files/dnscache/dnsroots.global: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/djbdns/files/dnscache/servers/@: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/djbdns/files/dnsqrx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/djbdns/files/dnsqrx -------------------------------------------------------------------------------- /net/dmapd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/dmapd/Makefile -------------------------------------------------------------------------------- /net/dns2tcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/dns2tcp/Makefile -------------------------------------------------------------------------------- /net/dsniff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/dsniff/Makefile -------------------------------------------------------------------------------- /net/dudders/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/dudders/Makefile -------------------------------------------------------------------------------- /net/e169-stats/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/e169-stats/Makefile -------------------------------------------------------------------------------- /net/ekg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ekg/Makefile -------------------------------------------------------------------------------- /net/elinks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/elinks/Makefile -------------------------------------------------------------------------------- /net/etherpuppet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/etherpuppet/Makefile -------------------------------------------------------------------------------- /net/etherwake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/etherwake/Makefile -------------------------------------------------------------------------------- /net/ethtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ethtool/Makefile -------------------------------------------------------------------------------- /net/ettercap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ettercap/Makefile -------------------------------------------------------------------------------- /net/ez-ipupdate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ez-ipupdate/Makefile -------------------------------------------------------------------------------- /net/faifa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/faifa/Makefile -------------------------------------------------------------------------------- /net/fakeidentd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/fakeidentd/Makefile -------------------------------------------------------------------------------- /net/flow-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/flow-tools/Makefile -------------------------------------------------------------------------------- /net/fping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/fping/Makefile -------------------------------------------------------------------------------- /net/fprobe-ulog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/fprobe-ulog/Makefile -------------------------------------------------------------------------------- /net/fprobe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/fprobe/Makefile -------------------------------------------------------------------------------- /net/freepops/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/freepops/Makefile -------------------------------------------------------------------------------- /net/freeradius2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/freeradius2/Makefile -------------------------------------------------------------------------------- /net/freeswitch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/freeswitch/Makefile -------------------------------------------------------------------------------- /net/freeswitch/files/etc.minimal/dialplan/default/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/freeswitch/files/etc.minimal/dialplan/public/PLACEHOLDER: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/freeswitch/files/etc.packages/blacklist/blacklists/blocked.list: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/frickin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/frickin/Makefile -------------------------------------------------------------------------------- /net/fwknop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/fwknop/Makefile -------------------------------------------------------------------------------- /net/gatling/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/gatling/Makefile -------------------------------------------------------------------------------- /net/git/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/git/Makefile -------------------------------------------------------------------------------- /net/gpsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/gpsd/Makefile -------------------------------------------------------------------------------- /net/gpsd/files/gpsd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/gpsd/files/gpsd.init -------------------------------------------------------------------------------- /net/haproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/haproxy/Makefile -------------------------------------------------------------------------------- /net/hiawatha/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/hiawatha/Makefile -------------------------------------------------------------------------------- /net/horst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/horst/Makefile -------------------------------------------------------------------------------- /net/hping3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/hping3/Makefile -------------------------------------------------------------------------------- /net/hsflowd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/hsflowd/Makefile -------------------------------------------------------------------------------- /net/htpdate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/htpdate/Makefile -------------------------------------------------------------------------------- /net/httping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/httping/Makefile -------------------------------------------------------------------------------- /net/httptunnel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/httptunnel/Makefile -------------------------------------------------------------------------------- /net/icmptx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/icmptx/Makefile -------------------------------------------------------------------------------- /net/ifstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ifstat/Makefile -------------------------------------------------------------------------------- /net/iftop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/iftop/Makefile -------------------------------------------------------------------------------- /net/igmpproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/igmpproxy/Makefile -------------------------------------------------------------------------------- /net/imsnif/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/imsnif/Makefile -------------------------------------------------------------------------------- /net/imsnif/files/imsnif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/imsnif/files/imsnif -------------------------------------------------------------------------------- /net/imspector/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/imspector/Makefile -------------------------------------------------------------------------------- /net/iodine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/iodine/Makefile -------------------------------------------------------------------------------- /net/ipcad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ipcad/Makefile -------------------------------------------------------------------------------- /net/iperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/iperf/Makefile -------------------------------------------------------------------------------- /net/ipkungfu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ipkungfu/Makefile -------------------------------------------------------------------------------- /net/ipsec-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ipsec-tools/Makefile -------------------------------------------------------------------------------- /net/ipset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ipset/Makefile -------------------------------------------------------------------------------- /net/iptraf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/iptraf/Makefile -------------------------------------------------------------------------------- /net/ipupdate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ipupdate/Makefile -------------------------------------------------------------------------------- /net/iputils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/iputils/Makefile -------------------------------------------------------------------------------- /net/irssi-glib1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/irssi-glib1/Makefile -------------------------------------------------------------------------------- /net/irssi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/irssi/Makefile -------------------------------------------------------------------------------- /net/isakmpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/isakmpd/Makefile -------------------------------------------------------------------------------- /net/isc-dhcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/isc-dhcp/Makefile -------------------------------------------------------------------------------- /net/jtg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/jtg/Makefile -------------------------------------------------------------------------------- /net/kamailio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/kamailio/Makefile -------------------------------------------------------------------------------- /net/kamailio3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/kamailio3/Makefile -------------------------------------------------------------------------------- /net/karma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/karma/Makefile -------------------------------------------------------------------------------- /net/keepalived/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/keepalived/Makefile -------------------------------------------------------------------------------- /net/kismet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/kismet/Makefile -------------------------------------------------------------------------------- /net/knock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/knock/Makefile -------------------------------------------------------------------------------- /net/krb5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/krb5/Makefile -------------------------------------------------------------------------------- /net/krb5/files/krb5kdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/krb5/files/krb5kdc -------------------------------------------------------------------------------- /net/krb5/patches/001-krb5kdc-dir-to-etc.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/krb5/patches/002-MITKRB5-SA-2011-002.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/l2tpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/l2tpd/Makefile -------------------------------------------------------------------------------- /net/l2tpns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/l2tpns/Makefile -------------------------------------------------------------------------------- /net/l2tpv3tun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/l2tpv3tun/Makefile -------------------------------------------------------------------------------- /net/leafnode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/leafnode/Makefile -------------------------------------------------------------------------------- /net/leafnode/files/news: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/leafnode/files/news -------------------------------------------------------------------------------- /net/leafnode/files/nntp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/leafnode/files/nntp -------------------------------------------------------------------------------- /net/lft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/lft/Makefile -------------------------------------------------------------------------------- /net/lftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/lftp/Makefile -------------------------------------------------------------------------------- /net/lighttpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/lighttpd/Makefile -------------------------------------------------------------------------------- /net/linuxigd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/linuxigd/Makefile -------------------------------------------------------------------------------- /net/lispmob/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/lispmob/Makefile -------------------------------------------------------------------------------- /net/live/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/live/Makefile -------------------------------------------------------------------------------- /net/lldpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/lldpd/Makefile -------------------------------------------------------------------------------- /net/lsm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/lsm/Makefile -------------------------------------------------------------------------------- /net/lsm/files/lsm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/lsm/files/lsm.conf -------------------------------------------------------------------------------- /net/lsm/files/lsm.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/lsm/files/lsm.init -------------------------------------------------------------------------------- /net/lsm/files/lsm_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/lsm/files/lsm_script -------------------------------------------------------------------------------- /net/mac-to-devinfo/files/mactodevinfo: -------------------------------------------------------------------------------- 1 | package mactodevinfo 2 | 3 | -------------------------------------------------------------------------------- /net/madwimax/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/madwimax/Makefile -------------------------------------------------------------------------------- /net/maradns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/maradns/Makefile -------------------------------------------------------------------------------- /net/maradns/files/mararc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/maradns/files/mararc -------------------------------------------------------------------------------- /net/mdk3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/mdk3/Makefile -------------------------------------------------------------------------------- /net/memcached/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/memcached/Makefile -------------------------------------------------------------------------------- /net/mercurial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/mercurial/Makefile -------------------------------------------------------------------------------- /net/mgen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/mgen/Makefile -------------------------------------------------------------------------------- /net/miau/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/miau/Makefile -------------------------------------------------------------------------------- /net/miau/files/miau.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/miau/files/miau.init -------------------------------------------------------------------------------- /net/miax/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/miax/Makefile -------------------------------------------------------------------------------- /net/mii-tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/mii-tool/Makefile -------------------------------------------------------------------------------- /net/mini_httpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/mini_httpd/Makefile -------------------------------------------------------------------------------- /net/mini_httpd/files/mini_httpd.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-C /etc/mini_httpd.conf" 2 | -------------------------------------------------------------------------------- /net/mini_snmpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/mini_snmpd/Makefile -------------------------------------------------------------------------------- /net/miniupnpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/miniupnpc/Makefile -------------------------------------------------------------------------------- /net/miniupnpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/miniupnpd/Makefile -------------------------------------------------------------------------------- /net/mosquitto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/mosquitto/Makefile -------------------------------------------------------------------------------- /net/mrtg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/mrtg/Makefile -------------------------------------------------------------------------------- /net/mtr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/mtr/Makefile -------------------------------------------------------------------------------- /net/multiwan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/multiwan/Makefile -------------------------------------------------------------------------------- /net/mutella/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/mutella/Makefile -------------------------------------------------------------------------------- /net/mvprelay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/mvprelay/Makefile -------------------------------------------------------------------------------- /net/n2n/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/n2n/Makefile -------------------------------------------------------------------------------- /net/n2n/files/n2n.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/n2n/files/n2n.config -------------------------------------------------------------------------------- /net/n2n/files/n2n.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/n2n/files/n2n.init -------------------------------------------------------------------------------- /net/natpmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/natpmp/Makefile -------------------------------------------------------------------------------- /net/nbd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/nbd/Makefile -------------------------------------------------------------------------------- /net/nbtscan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/nbtscan/Makefile -------------------------------------------------------------------------------- /net/ncftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ncftp/Makefile -------------------------------------------------------------------------------- /net/ndyndns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ndyndns/Makefile -------------------------------------------------------------------------------- /net/net-snmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/net-snmp/Makefile -------------------------------------------------------------------------------- /net/net-snmp/files/snmpd.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-Lf /dev/null -p /var/run/snmpd.pid" 2 | -------------------------------------------------------------------------------- /net/net-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/net-tools/Makefile -------------------------------------------------------------------------------- /net/netatalk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/netatalk/Makefile -------------------------------------------------------------------------------- /net/netatalk/files/AppleVolumes.default: -------------------------------------------------------------------------------- 1 | - 2 | /tmp Temp allow:root,nobody cnidscheme:dbd 3 | -------------------------------------------------------------------------------- /net/netcat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/netcat/Makefile -------------------------------------------------------------------------------- /net/netdiscover/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/netdiscover/Makefile -------------------------------------------------------------------------------- /net/netio/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/netio/Config.in -------------------------------------------------------------------------------- /net/netio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/netio/Makefile -------------------------------------------------------------------------------- /net/netperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/netperf/Makefile -------------------------------------------------------------------------------- /net/netpipe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/netpipe/Makefile -------------------------------------------------------------------------------- /net/netstat-nat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/netstat-nat/Makefile -------------------------------------------------------------------------------- /net/nfs-kernel-server/files/nfsd.exports: -------------------------------------------------------------------------------- 1 | /mnt *(ro,all_squash,insecure,sync) 2 | -------------------------------------------------------------------------------- /net/nfs-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/nfs-server/Makefile -------------------------------------------------------------------------------- /net/nfs-server/files/nfsd.exports: -------------------------------------------------------------------------------- 1 | /mnt (ro,all_squash,insecure) 2 | -------------------------------------------------------------------------------- /net/nginx/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/nginx/Config.in -------------------------------------------------------------------------------- /net/nginx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/nginx/Makefile -------------------------------------------------------------------------------- /net/ngircd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ngircd/Makefile -------------------------------------------------------------------------------- /net/ngrep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ngrep/Makefile -------------------------------------------------------------------------------- /net/nmap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/nmap/Makefile -------------------------------------------------------------------------------- /net/nocatauth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/nocatauth/Makefile -------------------------------------------------------------------------------- /net/nocatsplash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/nocatsplash/Makefile -------------------------------------------------------------------------------- /net/nodogsplash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/nodogsplash/Makefile -------------------------------------------------------------------------------- /net/nprobe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/nprobe/Makefile -------------------------------------------------------------------------------- /net/nstx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/nstx/Makefile -------------------------------------------------------------------------------- /net/ntpclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ntpclient/Makefile -------------------------------------------------------------------------------- /net/ntpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ntpd/Makefile -------------------------------------------------------------------------------- /net/ntpd/files/ntp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ntpd/files/ntp.conf -------------------------------------------------------------------------------- /net/ntpd/files/ntpd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ntpd/files/ntpd.init -------------------------------------------------------------------------------- /net/ntripcaster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ntripcaster/Makefile -------------------------------------------------------------------------------- /net/ntripclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ntripclient/Makefile -------------------------------------------------------------------------------- /net/ntripserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ntripserver/Makefile -------------------------------------------------------------------------------- /net/nufw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/nufw/Makefile -------------------------------------------------------------------------------- /net/nuttcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/nuttcp/Makefile -------------------------------------------------------------------------------- /net/nzbget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/nzbget/Makefile -------------------------------------------------------------------------------- /net/nzbgetweb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/nzbgetweb/Makefile -------------------------------------------------------------------------------- /net/nzbgetweb/files/httpd.conf: -------------------------------------------------------------------------------- 1 | *.php:/usr/bin/php-cgi -------------------------------------------------------------------------------- /net/obfsproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/obfsproxy/Makefile -------------------------------------------------------------------------------- /net/oidentd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/oidentd/Makefile -------------------------------------------------------------------------------- /net/openconnect/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/openconnect/Makefile -------------------------------------------------------------------------------- /net/opendchub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/opendchub/Makefile -------------------------------------------------------------------------------- /net/openl2tp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/openl2tp/Makefile -------------------------------------------------------------------------------- /net/opennhrp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/opennhrp/Makefile -------------------------------------------------------------------------------- /net/openntpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/openntpd/Makefile -------------------------------------------------------------------------------- /net/openrrcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/openrrcp/Makefile -------------------------------------------------------------------------------- /net/openser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/openser/Makefile -------------------------------------------------------------------------------- /net/opensips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/opensips/Makefile -------------------------------------------------------------------------------- /net/openslp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/openslp/Makefile -------------------------------------------------------------------------------- /net/openslp/files/etc/slp.spi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/openssh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/openssh/Makefile -------------------------------------------------------------------------------- /net/openswan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/openswan/Makefile -------------------------------------------------------------------------------- /net/openvpn-devel/files: -------------------------------------------------------------------------------- 1 | ../openvpn/files -------------------------------------------------------------------------------- /net/openvpn/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/openvpn/Config.in -------------------------------------------------------------------------------- /net/openvpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/openvpn/Makefile -------------------------------------------------------------------------------- /net/openvpn/files/easy-rsa.index: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/openvpn/files/easy-rsa.serial: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /net/openvpn/files/openvpn.upgrade: -------------------------------------------------------------------------------- 1 | /etc/openvpn/ 2 | -------------------------------------------------------------------------------- /net/p910nd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/p910nd/Makefile -------------------------------------------------------------------------------- /net/parprouted/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/parprouted/Makefile -------------------------------------------------------------------------------- /net/pcapsipdump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/pcapsipdump/Makefile -------------------------------------------------------------------------------- /net/pdnsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/pdnsd/Makefile -------------------------------------------------------------------------------- /net/peervpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/peervpn/Makefile -------------------------------------------------------------------------------- /net/pen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/pen/Makefile -------------------------------------------------------------------------------- /net/pepperspot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/pepperspot/Makefile -------------------------------------------------------------------------------- /net/pepsal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/pepsal/Makefile -------------------------------------------------------------------------------- /net/polipo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/polipo/Makefile -------------------------------------------------------------------------------- /net/portmap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/portmap/Makefile -------------------------------------------------------------------------------- /net/portsentry/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/portsentry/Makefile -------------------------------------------------------------------------------- /net/pptpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/pptpd/Makefile -------------------------------------------------------------------------------- /net/privoxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/privoxy/Makefile -------------------------------------------------------------------------------- /net/proftpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/proftpd/Makefile -------------------------------------------------------------------------------- /net/prosody/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/prosody/Makefile -------------------------------------------------------------------------------- /net/psybnc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/psybnc/Makefile -------------------------------------------------------------------------------- /net/ptpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ptpd/Makefile -------------------------------------------------------------------------------- /net/ptpd/files/ptpd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ptpd/files/ptpd.init -------------------------------------------------------------------------------- /net/ptunnel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ptunnel/Makefile -------------------------------------------------------------------------------- /net/ptunnel/files/ptunnel.config: -------------------------------------------------------------------------------- 1 | config ptunnel 2 | option interface 'lan' 3 | -------------------------------------------------------------------------------- /net/pure-ftpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/pure-ftpd/Makefile -------------------------------------------------------------------------------- /net/pyload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/pyload/Makefile -------------------------------------------------------------------------------- /net/pyrit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/pyrit/Makefile -------------------------------------------------------------------------------- /net/qolyester/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/qolyester/Makefile -------------------------------------------------------------------------------- /net/quagga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/quagga/Makefile -------------------------------------------------------------------------------- /net/quagga/files/quagga: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/quagga/files/quagga -------------------------------------------------------------------------------- /net/quicktun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/quicktun/Makefile -------------------------------------------------------------------------------- /net/raddump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/raddump/Makefile -------------------------------------------------------------------------------- /net/radsecproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/radsecproxy/Makefile -------------------------------------------------------------------------------- /net/rarpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/rarpd/Makefile -------------------------------------------------------------------------------- /net/reaim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/reaim/Makefile -------------------------------------------------------------------------------- /net/reaver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/reaver/Makefile -------------------------------------------------------------------------------- /net/redir/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/redir/Makefile -------------------------------------------------------------------------------- /net/remotefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/remotefs/Makefile -------------------------------------------------------------------------------- /net/remotefs/files/rfsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/remotefs/files/rfsd -------------------------------------------------------------------------------- /net/restund/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/restund/Makefile -------------------------------------------------------------------------------- /net/rinetd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/rinetd/Makefile -------------------------------------------------------------------------------- /net/rp-l2tp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/rp-l2tp/Makefile -------------------------------------------------------------------------------- /net/rp-pppoe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/rp-pppoe/Makefile -------------------------------------------------------------------------------- /net/rp-pppoe/files/pppoe-relay.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-C eth2 -S vlan1" 2 | -------------------------------------------------------------------------------- /net/rp-pppoe/files/pppoe-server.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-C MyRouter -I eth2" 2 | -------------------------------------------------------------------------------- /net/rrs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/rrs/Makefile -------------------------------------------------------------------------------- /net/rssh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/rssh/Makefile -------------------------------------------------------------------------------- /net/rsync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/rsync/Makefile -------------------------------------------------------------------------------- /net/rtorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/rtorrent/Makefile -------------------------------------------------------------------------------- /net/rtpproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/rtpproxy/Makefile -------------------------------------------------------------------------------- /net/samba36/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/samba36/Makefile -------------------------------------------------------------------------------- /net/scanlogd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/scanlogd/Makefile -------------------------------------------------------------------------------- /net/scdp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/scdp/Makefile -------------------------------------------------------------------------------- /net/seeks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/seeks/Makefile -------------------------------------------------------------------------------- /net/ser2net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ser2net/Makefile -------------------------------------------------------------------------------- /net/shat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/shat/Makefile -------------------------------------------------------------------------------- /net/shorewall-lite/files/hostname: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat /proc/sys/kernel/hostname 3 | -------------------------------------------------------------------------------- /net/sipp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/sipp/Makefile -------------------------------------------------------------------------------- /net/siproxd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/siproxd/Makefile -------------------------------------------------------------------------------- /net/sipsak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/sipsak/Makefile -------------------------------------------------------------------------------- /net/slurm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/slurm/Makefile -------------------------------------------------------------------------------- /net/smap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/smap/Makefile -------------------------------------------------------------------------------- /net/smcroute/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/smcroute/Makefile -------------------------------------------------------------------------------- /net/smtptrapd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/smtptrapd/Makefile -------------------------------------------------------------------------------- /net/snort/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/snort/Makefile -------------------------------------------------------------------------------- /net/socat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/socat/Makefile -------------------------------------------------------------------------------- /net/softflowd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/softflowd/Makefile -------------------------------------------------------------------------------- /net/spawn-fcgi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/spawn-fcgi/Makefile -------------------------------------------------------------------------------- /net/squid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/squid/Makefile -------------------------------------------------------------------------------- /net/srelay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/srelay/Makefile -------------------------------------------------------------------------------- /net/srelay/files/srelay.conf: -------------------------------------------------------------------------------- 1 | # allow local subnet to access socks proxy 2 | 192.168.1.0/24 any - 3 | -------------------------------------------------------------------------------- /net/sscep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/sscep/Makefile -------------------------------------------------------------------------------- /net/sshfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/sshfs/Makefile -------------------------------------------------------------------------------- /net/sshtunnel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/sshtunnel/Makefile -------------------------------------------------------------------------------- /net/sslcat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/sslcat/Makefile -------------------------------------------------------------------------------- /net/sslh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/sslh/Makefile -------------------------------------------------------------------------------- /net/sslh/files/sslh.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/sslh/files/sslh.init -------------------------------------------------------------------------------- /net/sslsniff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/sslsniff/Makefile -------------------------------------------------------------------------------- /net/sslstrip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/sslstrip/Makefile -------------------------------------------------------------------------------- /net/ssltunnel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ssltunnel/Makefile -------------------------------------------------------------------------------- /net/strongswan/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/strongswan/Config.in -------------------------------------------------------------------------------- /net/strongswan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/strongswan/Makefile -------------------------------------------------------------------------------- /net/stun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/stun/Makefile -------------------------------------------------------------------------------- /net/stunnel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/stunnel/Makefile -------------------------------------------------------------------------------- /net/subversion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/subversion/Makefile -------------------------------------------------------------------------------- /net/synce-dccm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/synce-dccm/Makefile -------------------------------------------------------------------------------- /net/tcpdump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/tcpdump/Makefile -------------------------------------------------------------------------------- /net/tctool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/tctool/Makefile -------------------------------------------------------------------------------- /net/tftp-hpa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/tftp-hpa/Makefile -------------------------------------------------------------------------------- /net/tig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/tig/Makefile -------------------------------------------------------------------------------- /net/tinc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/tinc/Makefile -------------------------------------------------------------------------------- /net/tinc/files/tinc.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/tinc/files/tinc.init -------------------------------------------------------------------------------- /net/tinc/files/tinc.upgrade: -------------------------------------------------------------------------------- 1 | /etc/tinc/ 2 | -------------------------------------------------------------------------------- /net/tinyproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/tinyproxy/Makefile -------------------------------------------------------------------------------- /net/tmsnc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/tmsnc/Makefile -------------------------------------------------------------------------------- /net/tor-alpha/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/tor-alpha/Makefile -------------------------------------------------------------------------------- /net/tor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/tor/Makefile -------------------------------------------------------------------------------- /net/tor/files/tor.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/tor/files/tor.init -------------------------------------------------------------------------------- /net/transocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/transocks/Makefile -------------------------------------------------------------------------------- /net/tsocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/tsocks/Makefile -------------------------------------------------------------------------------- /net/ttcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ttcp/Makefile -------------------------------------------------------------------------------- /net/ttcp/ttcp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ttcp/ttcp.c -------------------------------------------------------------------------------- /net/uanytun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/uanytun/Makefile -------------------------------------------------------------------------------- /net/ucarp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ucarp/Makefile -------------------------------------------------------------------------------- /net/ucspi-tcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ucspi-tcp/Makefile -------------------------------------------------------------------------------- /net/udpcast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/udpcast/Makefile -------------------------------------------------------------------------------- /net/udpxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/udpxy/Makefile -------------------------------------------------------------------------------- /net/uftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/uftp/Makefile -------------------------------------------------------------------------------- /net/uhub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/uhub/Makefile -------------------------------------------------------------------------------- /net/ulogd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/ulogd/Makefile -------------------------------------------------------------------------------- /net/ulogd/files/ulogd.default: -------------------------------------------------------------------------------- 1 | OPTIONS="-d" -------------------------------------------------------------------------------- /net/umurmur/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/umurmur/Makefile -------------------------------------------------------------------------------- /net/unbound/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/unbound/Makefile -------------------------------------------------------------------------------- /net/unfs3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/unfs3/Makefile -------------------------------------------------------------------------------- /net/unfs3/files/unfs3.exports: -------------------------------------------------------------------------------- 1 | /mnt (ro,all_squash,insecure) 2 | -------------------------------------------------------------------------------- /net/uob-nomad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/uob-nomad/Makefile -------------------------------------------------------------------------------- /net/updatedd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/updatedd/Makefile -------------------------------------------------------------------------------- /net/usbip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/usbip/Makefile -------------------------------------------------------------------------------- /net/uucp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/uucp/Makefile -------------------------------------------------------------------------------- /net/vblade/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/vblade/Makefile -------------------------------------------------------------------------------- /net/veth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/veth/Makefile -------------------------------------------------------------------------------- /net/vgp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/vgp/Makefile -------------------------------------------------------------------------------- /net/vncrepeater/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/vncrepeater/Makefile -------------------------------------------------------------------------------- /net/vnstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/vnstat/Makefile -------------------------------------------------------------------------------- /net/vpnc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/vpnc/Makefile -------------------------------------------------------------------------------- /net/vpzone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/vpzone/Makefile -------------------------------------------------------------------------------- /net/vrrpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/vrrpd/Makefile -------------------------------------------------------------------------------- /net/vsftpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/vsftpd/Makefile -------------------------------------------------------------------------------- /net/vtun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/vtun/Makefile -------------------------------------------------------------------------------- /net/wavemon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/wavemon/Makefile -------------------------------------------------------------------------------- /net/wccpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/wccpd/Makefile -------------------------------------------------------------------------------- /net/wdiag/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/wdiag/Makefile -------------------------------------------------------------------------------- /net/weechat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/weechat/Makefile -------------------------------------------------------------------------------- /net/wget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/wget/Makefile -------------------------------------------------------------------------------- /net/wifidog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/wifidog/Makefile -------------------------------------------------------------------------------- /net/wing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/wing/Makefile -------------------------------------------------------------------------------- /net/wiviz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/wiviz/Makefile -------------------------------------------------------------------------------- /net/wiviz/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/wiviz/src/Makefile -------------------------------------------------------------------------------- /net/wiviz/src/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/wiviz/src/structs.h -------------------------------------------------------------------------------- /net/wiviz/src/wiviz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/wiviz/src/wiviz.c -------------------------------------------------------------------------------- /net/wknock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/wknock/Makefile -------------------------------------------------------------------------------- /net/wol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/wol/Makefile -------------------------------------------------------------------------------- /net/wol/files/wol.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/wol/files/wol.config -------------------------------------------------------------------------------- /net/wol/files/wol.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/wol/files/wol.init -------------------------------------------------------------------------------- /net/wput/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/wput/Makefile -------------------------------------------------------------------------------- /net/wrt-radauth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/wrt-radauth/Makefile -------------------------------------------------------------------------------- /net/wshaper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/wshaper/Makefile -------------------------------------------------------------------------------- /net/xinetd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/xinetd/Makefile -------------------------------------------------------------------------------- /net/xinetd/files/xinetd.conf: -------------------------------------------------------------------------------- 1 | defaults 2 | { 3 | 4 | } 5 | 6 | includedir /etc/xinetd.d 7 | -------------------------------------------------------------------------------- /net/xl2tpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/xl2tpd/Makefile -------------------------------------------------------------------------------- /net/xl2tpd/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/xl2tpd/README -------------------------------------------------------------------------------- /net/xl2tpd/files/l2tp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/xl2tpd/files/l2tp.sh -------------------------------------------------------------------------------- /net/xsupplicant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/xsupplicant/Makefile -------------------------------------------------------------------------------- /net/yaddns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/yaddns/Makefile -------------------------------------------------------------------------------- /net/yafc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/yafc/Makefile -------------------------------------------------------------------------------- /net/yate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/yate/Makefile -------------------------------------------------------------------------------- /net/znc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/znc/Makefile -------------------------------------------------------------------------------- /net/znc/files/znc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/znc/files/znc.conf -------------------------------------------------------------------------------- /net/znc/files/znc.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/net/znc/files/znc.init -------------------------------------------------------------------------------- /skels/Makefile.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/skels/Makefile.template -------------------------------------------------------------------------------- /skels/files/package.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/skels/files/package.conf -------------------------------------------------------------------------------- /skels/files/package.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/skels/files/package.init -------------------------------------------------------------------------------- /sound/cmus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/sound/cmus/Makefile -------------------------------------------------------------------------------- /sound/empcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/sound/empcd/Makefile -------------------------------------------------------------------------------- /sound/flite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/sound/flite/Makefile -------------------------------------------------------------------------------- /sound/ices/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/sound/ices/Makefile -------------------------------------------------------------------------------- /sound/lame/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/sound/lame/Makefile -------------------------------------------------------------------------------- /sound/listener/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/sound/listener/Makefile -------------------------------------------------------------------------------- /sound/madplay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/sound/madplay/Makefile -------------------------------------------------------------------------------- /sound/mocp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/sound/mocp/Makefile -------------------------------------------------------------------------------- /sound/mpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/sound/mpc/Makefile -------------------------------------------------------------------------------- /sound/mpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/sound/mpd/Makefile -------------------------------------------------------------------------------- /sound/mpd/files/mpd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/sound/mpd/files/mpd.init -------------------------------------------------------------------------------- /sound/mpdas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/sound/mpdas/Makefile -------------------------------------------------------------------------------- /sound/mt-daapd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/sound/mt-daapd/Makefile -------------------------------------------------------------------------------- /sound/pianobar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/sound/pianobar/Makefile -------------------------------------------------------------------------------- /sound/scmpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/sound/scmpc/Makefile -------------------------------------------------------------------------------- /sound/shell-fm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/sound/shell-fm/Makefile -------------------------------------------------------------------------------- /sound/sox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/sound/sox/Makefile -------------------------------------------------------------------------------- /utils/acpid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/acpid/Makefile -------------------------------------------------------------------------------- /utils/anyremote/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/anyremote/Makefile -------------------------------------------------------------------------------- /utils/at/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/at/Makefile -------------------------------------------------------------------------------- /utils/at/files/atd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/at/files/atd.init -------------------------------------------------------------------------------- /utils/avrdude/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/avrdude/Makefile -------------------------------------------------------------------------------- /utils/bash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/bash/Makefile -------------------------------------------------------------------------------- /utils/bc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/bc/Makefile -------------------------------------------------------------------------------- /utils/bemused/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/bemused/Makefile -------------------------------------------------------------------------------- /utils/bluelog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/bluelog/Makefile -------------------------------------------------------------------------------- /utils/bluez/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/bluez/Makefile -------------------------------------------------------------------------------- /utils/boblight/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/boblight/Makefile -------------------------------------------------------------------------------- /utils/bonnie++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/bonnie++/Makefile -------------------------------------------------------------------------------- /utils/boxbackup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/boxbackup/Makefile -------------------------------------------------------------------------------- /utils/bsdiff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/bsdiff/Makefile -------------------------------------------------------------------------------- /utils/byobu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/byobu/Makefile -------------------------------------------------------------------------------- /utils/bzip2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/bzip2/Makefile -------------------------------------------------------------------------------- /utils/calcurse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/calcurse/Makefile -------------------------------------------------------------------------------- /utils/calvaria/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/calvaria/Makefile -------------------------------------------------------------------------------- /utils/ccid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/ccid/Makefile -------------------------------------------------------------------------------- /utils/ccrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/ccrypt/Makefile -------------------------------------------------------------------------------- /utils/cksfv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/cksfv/Makefile -------------------------------------------------------------------------------- /utils/clish/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/clish/Makefile -------------------------------------------------------------------------------- /utils/cmdpad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/cmdpad/Makefile -------------------------------------------------------------------------------- /utils/collectd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/collectd/Makefile -------------------------------------------------------------------------------- /utils/coreutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/coreutils/Makefile -------------------------------------------------------------------------------- /utils/cpusage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/cpusage/Makefile -------------------------------------------------------------------------------- /utils/cwiid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/cwiid/Makefile -------------------------------------------------------------------------------- /utils/dash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/dash/Makefile -------------------------------------------------------------------------------- /utils/dbus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/dbus/Makefile -------------------------------------------------------------------------------- /utils/deco/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/deco/Makefile -------------------------------------------------------------------------------- /utils/devio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/devio/Makefile -------------------------------------------------------------------------------- /utils/devmem2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/devmem2/Makefile -------------------------------------------------------------------------------- /utils/dfu-util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/dfu-util/Makefile -------------------------------------------------------------------------------- /utils/dialog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/dialog/Makefile -------------------------------------------------------------------------------- /utils/digitemp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/digitemp/Makefile -------------------------------------------------------------------------------- /utils/disktype/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/disktype/Makefile -------------------------------------------------------------------------------- /utils/dmidecode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/dmidecode/Makefile -------------------------------------------------------------------------------- /utils/dstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/dstat/Makefile -------------------------------------------------------------------------------- /utils/dt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/dt/Makefile -------------------------------------------------------------------------------- /utils/dtach/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/dtach/Makefile -------------------------------------------------------------------------------- /utils/empty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/empty/Makefile -------------------------------------------------------------------------------- /utils/flashrom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/flashrom/Makefile -------------------------------------------------------------------------------- /utils/fowsr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/fowsr/Makefile -------------------------------------------------------------------------------- /utils/freecwmp/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/freecwmp/Config.in -------------------------------------------------------------------------------- /utils/freecwmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/freecwmp/Makefile -------------------------------------------------------------------------------- /utils/fxload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/fxload/Makefile -------------------------------------------------------------------------------- /utils/gawk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/gawk/Makefile -------------------------------------------------------------------------------- /utils/gnokii/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/gnokii/Makefile -------------------------------------------------------------------------------- /utils/gnupg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/gnupg/Makefile -------------------------------------------------------------------------------- /utils/gnuplot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/gnuplot/Makefile -------------------------------------------------------------------------------- /utils/gzip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/gzip/Makefile -------------------------------------------------------------------------------- /utils/haserl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/haserl/Makefile -------------------------------------------------------------------------------- /utils/haveged/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/haveged/Makefile -------------------------------------------------------------------------------- /utils/hd-idle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/hd-idle/Makefile -------------------------------------------------------------------------------- /utils/hdparm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/hdparm/Makefile -------------------------------------------------------------------------------- /utils/heyu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/heyu/Makefile -------------------------------------------------------------------------------- /utils/hplip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/hplip/Makefile -------------------------------------------------------------------------------- /utils/hplip/files/hplib.conf: -------------------------------------------------------------------------------- 1 | # Load the hplib driver 2 | hpaio 3 | -------------------------------------------------------------------------------- /utils/i2c-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/i2c-tools/Makefile -------------------------------------------------------------------------------- /utils/ink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/ink/Makefile -------------------------------------------------------------------------------- /utils/io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/io/Makefile -------------------------------------------------------------------------------- /utils/io/src/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/io/src/io.c -------------------------------------------------------------------------------- /utils/ipmitool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/ipmitool/Makefile -------------------------------------------------------------------------------- /utils/joe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/joe/Makefile -------------------------------------------------------------------------------- /utils/klish/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/klish/Makefile -------------------------------------------------------------------------------- /utils/lcd4linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/lcd4linux/Makefile -------------------------------------------------------------------------------- /utils/lcdproc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/lcdproc/Makefile -------------------------------------------------------------------------------- /utils/lcdproc/files/LCDd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/lcdproc/files/LCDd -------------------------------------------------------------------------------- /utils/less/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/less/Makefile -------------------------------------------------------------------------------- /utils/lilo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/lilo/Makefile -------------------------------------------------------------------------------- /utils/lilo/files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/lilo/files/README -------------------------------------------------------------------------------- /utils/lirc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/lirc/Makefile -------------------------------------------------------------------------------- /utils/lmbench/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/lmbench/Makefile -------------------------------------------------------------------------------- /utils/logrotate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/logrotate/Makefile -------------------------------------------------------------------------------- /utils/loop-aes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/loop-aes/Makefile -------------------------------------------------------------------------------- /utils/lrzsz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/lrzsz/Makefile -------------------------------------------------------------------------------- /utils/lsof/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/lsof/Makefile -------------------------------------------------------------------------------- /utils/lvm2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/lvm2/Makefile -------------------------------------------------------------------------------- /utils/mc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/mc/Config.in -------------------------------------------------------------------------------- /utils/mc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/mc/Makefile -------------------------------------------------------------------------------- /utils/md5deep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/md5deep/Makefile -------------------------------------------------------------------------------- /utils/mdadm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/mdadm/Makefile -------------------------------------------------------------------------------- /utils/memtester/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/memtester/Makefile -------------------------------------------------------------------------------- /utils/mg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/mg/Makefile -------------------------------------------------------------------------------- /utils/mgetty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/mgetty/Makefile -------------------------------------------------------------------------------- /utils/microcom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/microcom/Makefile -------------------------------------------------------------------------------- /utils/minicom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/minicom/Makefile -------------------------------------------------------------------------------- /utils/mksh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/mksh/Makefile -------------------------------------------------------------------------------- /utils/msr-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/msr-tools/Makefile -------------------------------------------------------------------------------- /utils/mtd-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/mtd-utils/Makefile -------------------------------------------------------------------------------- /utils/nano/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/nano/Makefile -------------------------------------------------------------------------------- /utils/ntfs-3g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/ntfs-3g/Makefile -------------------------------------------------------------------------------- /utils/ntfsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/ntfsprogs/Makefile -------------------------------------------------------------------------------- /utils/nvramtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/nvramtool/Makefile -------------------------------------------------------------------------------- /utils/open2300/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/open2300/Makefile -------------------------------------------------------------------------------- /utils/owfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/owfs/Makefile -------------------------------------------------------------------------------- /utils/oww/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/oww/Makefile -------------------------------------------------------------------------------- /utils/oww/files/oww.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/oww/files/oww.init -------------------------------------------------------------------------------- /utils/pciutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/pciutils/Makefile -------------------------------------------------------------------------------- /utils/pcsc-lite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/pcsc-lite/Makefile -------------------------------------------------------------------------------- /utils/petitboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/petitboot/Makefile -------------------------------------------------------------------------------- /utils/picocom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/picocom/Makefile -------------------------------------------------------------------------------- /utils/pipacs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/pipacs/Makefile -------------------------------------------------------------------------------- /utils/powertop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/powertop/Makefile -------------------------------------------------------------------------------- /utils/pps-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/pps-tools/Makefile -------------------------------------------------------------------------------- /utils/procps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/procps/Makefile -------------------------------------------------------------------------------- /utils/psmisc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/psmisc/Makefile -------------------------------------------------------------------------------- /utils/psplash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/psplash/Makefile -------------------------------------------------------------------------------- /utils/pv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/pv/Makefile -------------------------------------------------------------------------------- /utils/pwcrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/pwcrypt/Makefile -------------------------------------------------------------------------------- /utils/pwgen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/pwgen/Makefile -------------------------------------------------------------------------------- /utils/rcs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/rcs/Makefile -------------------------------------------------------------------------------- /utils/remind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/remind/Makefile -------------------------------------------------------------------------------- /utils/rng-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/rng-tools/Makefile -------------------------------------------------------------------------------- /utils/rrdtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/rrdtool/Makefile -------------------------------------------------------------------------------- /utils/scponly/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/scponly/Makefile -------------------------------------------------------------------------------- /utils/screen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/screen/Makefile -------------------------------------------------------------------------------- /utils/screen/files/etc/screenrc: -------------------------------------------------------------------------------- 1 | startup_message off 2 | -------------------------------------------------------------------------------- /utils/sdparm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/sdparm/Makefile -------------------------------------------------------------------------------- /utils/sed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/sed/Makefile -------------------------------------------------------------------------------- /utils/setpwc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/setpwc/Makefile -------------------------------------------------------------------------------- /utils/setserial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/setserial/Makefile -------------------------------------------------------------------------------- /utils/sg3-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/sg3-utils/Makefile -------------------------------------------------------------------------------- /utils/shadow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/shadow/Makefile -------------------------------------------------------------------------------- /utils/sispmctl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/sispmctl/Makefile -------------------------------------------------------------------------------- /utils/smartmontools/files/smartd.conf: -------------------------------------------------------------------------------- 1 | /dev/hdb -H 2 | -------------------------------------------------------------------------------- /utils/ssldump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/ssldump/Makefile -------------------------------------------------------------------------------- /utils/strace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/strace/Makefile -------------------------------------------------------------------------------- /utils/stress/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/stress/Makefile -------------------------------------------------------------------------------- /utils/sysstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/sysstat/Makefile -------------------------------------------------------------------------------- /utils/tar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/tar/Makefile -------------------------------------------------------------------------------- /utils/tcpser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/tcpser/Makefile -------------------------------------------------------------------------------- /utils/tcsh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/tcsh/Makefile -------------------------------------------------------------------------------- /utils/tesseract/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/tesseract/Makefile -------------------------------------------------------------------------------- /utils/testusb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/testusb/Makefile -------------------------------------------------------------------------------- /utils/time/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/time/Makefile -------------------------------------------------------------------------------- /utils/tmux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/tmux/Makefile -------------------------------------------------------------------------------- /utils/unrar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/unrar/Makefile -------------------------------------------------------------------------------- /utils/unzip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/unzip/Makefile -------------------------------------------------------------------------------- /utils/upx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/upx/Makefile -------------------------------------------------------------------------------- /utils/usbmuxd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/usbmuxd/Makefile -------------------------------------------------------------------------------- /utils/usbutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/usbutils/Makefile -------------------------------------------------------------------------------- /utils/valgrind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/valgrind/Makefile -------------------------------------------------------------------------------- /utils/valgrind/src/abort.c: -------------------------------------------------------------------------------- 1 | void abort(void) 2 | { 3 | } 4 | -------------------------------------------------------------------------------- /utils/vim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/vim/Makefile -------------------------------------------------------------------------------- /utils/vim/files/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/vim/files/vimrc -------------------------------------------------------------------------------- /utils/watchcat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/watchcat/Makefile -------------------------------------------------------------------------------- /utils/wattsup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/wattsup/Makefile -------------------------------------------------------------------------------- /utils/wview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/wview/Makefile -------------------------------------------------------------------------------- /utils/wx200d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/wx200d/Makefile -------------------------------------------------------------------------------- /utils/xdelta3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/xdelta3/Makefile -------------------------------------------------------------------------------- /utils/zile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/zile/Makefile -------------------------------------------------------------------------------- /utils/zip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/zip/Makefile -------------------------------------------------------------------------------- /utils/zoneinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arduino/openwrt-packages-yun/HEAD/utils/zoneinfo/Makefile --------------------------------------------------------------------------------