├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ └── config.yml ├── pull_request_template.md └── workflows │ ├── check-autorelease-deprecation.yml │ ├── formal.yml │ ├── multi-arch-test-build.yml │ └── scripts │ └── ci_helpers.sh ├── .gitignore ├── .keys ├── 626471F1.asc └── D52BBB6B.asc ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── admin ├── atop │ └── Makefile ├── backuppc │ ├── Makefile │ ├── files │ │ ├── backuppc.init │ │ ├── backuppc.upgrade │ │ ├── fixup-config-pl.patch │ │ └── setuidwrapper.c │ └── patches │ │ └── 001-debian-fixes.patch ├── bottom │ └── Makefile ├── btop │ ├── Makefile │ ├── files │ │ ├── btop.sh │ │ └── btop.uci │ └── test.sh ├── debian-archive-keyring │ └── Makefile ├── debootstrap │ ├── Makefile │ ├── files │ │ └── pkgdetails.c │ └── patches │ │ └── 010-no-nvswitch.patch ├── fluent-bit │ └── Makefile ├── gkrellmd │ ├── Makefile │ ├── files │ │ └── gkrellmd.init │ └── patches │ │ └── 100-conf.patch ├── htop │ └── Makefile ├── ipmitool │ ├── Makefile │ └── patches │ │ ├── 0001-ID-461-OpenSSL-1.1-compatibility-error-storage-size-.patch │ │ ├── 0002-ID-461-Make-compiler-happier-about-changes-related-t.patch │ │ ├── 0003-ID-480-ipmitool-coredumps-in-EVP_CIPHER_CTX_init.patch │ │ ├── 0004-ID-480-Call-EVP_CIPHER_CTX_free-instead-of-EVP_CIPHE.patch │ │ ├── 0005-ipmitool-Fix-compile-with-deprecated-APIs-disabled.patch │ │ ├── 0006-CVE-2020-5208-fru-Fix-buffer-overflow-vulnerabilities.patch │ │ ├── 0007-CVE-2020-5208-fru-Fix-buffer-overflow-in-ipmi_spd_print_fru.patch │ │ ├── 0008-CVE-2020-5208-session-Fix-buffer-overflow-in-ipmi_get_session_info.patch │ │ ├── 0009-CVE-2020-5208-channel-Fix-buffer-overflow.patch │ │ ├── 0010-CVE-2020-5208-lanp-Fix-buffer-overflows-in-get_lan_param_select.patch │ │ ├── 0011-CVE-2020-5208-fru-sdr-Fix-id_string-buffer-overflows.patch │ │ └── 0012-gcc10.patch ├── monit │ ├── Makefile │ └── files │ │ └── monit.init ├── muninlite │ ├── Makefile │ └── files │ │ └── etc │ │ └── xinetd.d │ │ └── muninlite ├── netatop │ ├── Makefile │ └── patches │ │ ├── 010-daemon-makefile-ldflags.patch │ │ └── 100-fix-compilation-warning-fallthrough.patch ├── netdata │ ├── Makefile │ ├── files │ │ ├── netdata.conf │ │ └── netdata.init │ ├── patches │ │ ├── 001-disable-plugins-by-default.patch │ │ ├── 002-extra-patch-web_gui_main.js.patch │ │ ├── 003-patch-collectors_python.d.plugin_Makefile.am.patch │ │ ├── 004-patch-collectors_python.d.plugin_python__modules_bases_loaders.py.patch │ │ └── 005-freebsd.patch │ └── test.sh ├── nload │ ├── Makefile │ └── test.sh ├── nyx │ ├── Makefile │ └── patches │ │ └── 01-python311.patch ├── openwisp-config │ └── Makefile ├── openwisp-monitoring │ ├── Config.in │ └── Makefile ├── qbee-agent │ ├── Makefile │ └── files │ │ └── qbee-agent.init ├── rsyslog │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── 20_rsyslog │ │ ├── rsyslog.conf │ │ └── rsyslog.init ├── schroot │ ├── Config.in │ ├── Makefile │ ├── files │ │ └── schroot.init │ └── patches │ │ ├── 01-openwrt.patch │ │ ├── 020-gcc14.patch │ │ └── 030-boost-1.85.patch ├── sudo │ ├── Makefile │ ├── files │ │ └── sudo.init │ ├── patches │ │ └── 020-no-owner-change.patch │ └── test.sh ├── syslog-ng │ ├── Makefile │ ├── files │ │ ├── logread.sh │ │ ├── scl │ │ │ └── network_localhost │ │ │ │ ├── detect.sh │ │ │ │ └── plugin.conf │ │ ├── syslog-ng.conf │ │ ├── syslog-ng.init │ │ └── syslog-ng.logrotate │ └── test.sh └── zabbix │ ├── Makefile │ ├── files │ ├── mac80211 │ ├── network │ ├── wifi │ ├── zabbix-network-ubus-acl.json │ ├── zabbix-wifi-ubus-acl.json │ ├── zabbix_agentd.init │ └── zabbix_helper_mac80211.c │ └── patches │ ├── 010-change-agentd-config.patch │ └── 110-reproducible-builds.patch ├── devel ├── autoconf │ ├── Makefile │ └── test.sh ├── automake │ └── Makefile ├── bison │ └── Makefile ├── cargo-c │ └── Makefile ├── delve │ └── Makefile ├── diffutils │ ├── Makefile │ └── patches │ │ └── 010-ppc.patch ├── flex │ ├── Makefile │ └── patches │ │ ├── 100-disable-all-dirs-except-src.patch │ │ └── 200-build-AC_USE_SYSTEM_EXTENSIONS-in-configure.ac.patch ├── gcc │ ├── Config.in │ ├── Makefile │ ├── README │ ├── patches-10.x │ │ ├── 002-case_insensitive.patch │ │ ├── 003-dont-choke-when-building-32bit-on-64bit.patch │ │ ├── 010-documentation.patch │ │ ├── 110-Fix-MIPS-PR-84790.patch │ │ ├── 230-musl_libssp.patch │ │ ├── 300-mips_Os_cpu_rtx_cost_model.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 881-no_tm_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 930-fix-mips-noexecstack.patch │ │ ├── 931-libffi-fix-MIPS-softfloat-build-issue.patch │ │ └── 960-gotools-fix-compilation-when-making-cross-compiler.patch │ ├── patches-11.x │ │ ├── 002-case_insensitive.patch │ │ ├── 003-dont-choke-when-building-32bit-on-64bit.patch │ │ ├── 010-documentation.patch │ │ ├── 011-v12-configure-define-TARGET_LIBC_GNUSTACK-on-musl.patch │ │ ├── 110-Fix-MIPS-PR-84790.patch │ │ ├── 230-musl_libssp.patch │ │ ├── 300-mips_Os_cpu_rtx_cost_model.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 881-no_tm_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 931-libffi-fix-MIPS-softfloat-build-issue.patch │ │ ├── 960-gotools-fix-compilation-when-making-cross-compiler.patch │ │ └── 970-macos_arm64-building-fix.patch │ ├── patches-12.x │ │ ├── 002-case_insensitive.patch │ │ ├── 003-dont-choke-when-building-32bit-on-64bit.patch │ │ ├── 010-documentation.patch │ │ ├── 110-Fix-MIPS-PR-84790.patch │ │ ├── 230-musl_libssp.patch │ │ ├── 300-mips_Os_cpu_rtx_cost_model.patch │ │ ├── 700-RISCV-Inline-subword-atomic-ops.patch │ │ ├── 701-riscv-linux-Don-t-add-latomic-with-pthread.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 881-no_tm_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 960-gotools-fix-compilation-when-making-cross-compiler.patch │ │ └── 970-macos_arm64-building-fix.patch │ ├── patches-13.x │ │ ├── 002-case_insensitive.patch │ │ ├── 003-dont-choke-when-building-32bit-on-64bit.patch │ │ ├── 010-documentation.patch │ │ ├── 110-Fix-MIPS-PR-84790.patch │ │ ├── 230-musl_libssp.patch │ │ ├── 300-mips_Os_cpu_rtx_cost_model.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 881-no_tm_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 960-gotools-fix-compilation-when-making-cross-compiler.patch │ │ └── 970-macos_arm64-building-fix.patch │ ├── patches-14.x │ │ ├── 002-case_insensitive.patch │ │ ├── 003-dont-choke-when-building-32bit-on-64bit.patch │ │ ├── 010-documentation.patch │ │ ├── 110-Fix-MIPS-PR-84790.patch │ │ ├── 230-musl_libssp.patch │ │ ├── 300-mips_Os_cpu_rtx_cost_model.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 881-no_tm_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 960-gotools-fix-compilation-when-making-cross-compiler.patch │ │ └── 970-macos_arm64-building-fix.patch │ └── patches-8.x │ │ ├── 002-case_insensitive.patch │ │ ├── 003-dont-choke-when-building-32bit-on-64bit.patch │ │ ├── 010-documentation.patch │ │ ├── 110-Fix-MIPS-PR-84790.patch │ │ ├── 230-musl_libssp.patch │ │ ├── 300-mips_Os_cpu_rtx_cost_model.patch │ │ ├── 800-arm_v5te_no_ldrd_strd.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 881-no_tm_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 930-fix-mips-noexecstack.patch │ │ ├── 931-libffi-fix-MIPS-softfloat-build-issue.patch │ │ └── 960-gotools-fix-compilation-when-making-cross-compiler.patch ├── gitlab-runner │ ├── Makefile │ ├── patches │ │ └── 010-test.patch │ └── test.sh ├── libtool-bin │ └── Makefile ├── lpc21isp │ ├── Makefile │ └── patches │ │ ├── 100-fix-reproducible-builds.patch │ │ ├── 110-bzero.patch │ │ └── 120-nanosleep.patch ├── lttng-modules │ └── Makefile ├── lttng-tools │ ├── Makefile │ └── patches │ │ ├── 010-compat-off64_t-is-not-defined-by-musl.patch │ │ └── 020-fix-lttng-tools-fails-to-compile-with-libxml2-2-14-0.patch ├── m4 │ ├── Makefile │ └── patches │ │ └── 010-ppc.patch ├── make │ └── Makefile ├── nasm │ └── Makefile ├── patch │ ├── Makefile │ └── patches │ │ ├── 010-CVE-2018-6951.patch │ │ ├── 020-CVE-2018-1000156.patch │ │ ├── 030-CVE-2018-6952.patch │ │ ├── 050-CVE-2019-13636.patch │ │ └── 060-CVE-2018-20969-CVE-2019-13638.patch ├── pkg-config │ └── Makefile ├── pkgconf │ └── Makefile ├── ragel │ └── Makefile └── scons │ ├── Makefile │ ├── patches │ ├── 001-platform_env.patch │ └── 002-fix-import-path.patch │ └── scons.mk ├── fonts └── dejavu-fonts-ttf │ └── Makefile ├── ipv6 ├── generate-ipv6-address │ └── Makefile └── tayga │ ├── Makefile │ ├── files │ ├── tayga-proto.sh │ ├── tayga.hotplug │ └── tayga.sh │ └── patches │ ├── 001-configure_unset_CFLAGS.patch │ ├── 002-bigendian_wrong_checksum.patch │ └── 003-RFC8215.patch ├── kernel ├── macremapper │ ├── Makefile │ └── patches │ │ ├── 01_fix_nf_hooks.patch │ │ └── 02-mrm_ctlfile.c-compatibility-with-linux-5.6.patch ├── mdio-netlink │ └── Makefile ├── mtd-rw │ └── Makefile ├── ovpn-dco │ └── Makefile └── v4l2loopback │ └── Makefile ├── lang ├── chicken-scheme │ └── Makefile ├── cqueues │ └── Makefile ├── dkjson │ └── Makefile ├── erlang │ └── Makefile ├── golang │ ├── golang-build.sh │ ├── golang-compiler.mk │ ├── golang-host-build.mk │ ├── golang-package.mk │ ├── golang-values.mk │ └── golang │ │ ├── Config.in │ │ ├── Makefile │ │ ├── files │ │ └── go-gcc-helper │ │ └── test.sh ├── json4lua │ └── Makefile ├── ldbus │ └── Makefile ├── linotify │ └── Makefile ├── lpeg │ └── Makefile ├── lua-argparse │ └── Makefile ├── lua-bencode │ └── Makefile ├── lua-bit32 │ └── Makefile ├── lua-cjson │ ├── Makefile │ └── patches │ │ └── 001-add-support-lua5-x.patch ├── lua-copas │ └── Makefile ├── lua-coxpcall │ ├── Makefile │ └── patches │ │ └── config.patch ├── lua-cs-bouncer │ ├── Makefile │ └── files │ │ └── lua-cs-bouncer.defaults ├── lua-curl-v3 │ └── Makefile ├── lua-eco │ └── Makefile ├── lua-ev │ └── Makefile ├── lua-ffi │ └── Makefile ├── lua-libmodbus │ └── Makefile ├── lua-lsqlite3 │ └── Makefile ├── lua-lzlib │ ├── Makefile │ └── patches │ │ └── 001-allow_optim_flags.patch ├── lua-md5 │ ├── Makefile │ └── patches │ │ ├── config.patch │ │ └── makefile.patch ├── lua-mobdebug │ └── Makefile ├── lua-mosquitto │ └── Makefile ├── lua-openssl │ ├── Makefile │ └── patches │ │ └── 010-no-luajit.patch ├── lua-penlight │ └── Makefile ├── lua-rings │ ├── Makefile │ └── patches │ │ ├── config.patch │ │ └── makefile.patch ├── lua-rs232 │ ├── Makefile │ └── patches │ │ ├── 010-gcc13.patch │ │ └── 100-remove-build-timestamps.patch ├── lua-sha2 │ ├── Makefile │ └── patches │ │ └── 001-makefile.patch ├── lua-struct │ └── Makefile ├── lua-wsapi │ └── Makefile ├── lua-xavante │ └── Makefile ├── lua5.4 │ ├── Makefile │ ├── patches-host │ │ ├── 001-include-version-number.patch │ │ └── 100-no_readline.patch │ └── patches │ │ ├── 001-include-version-number.patch │ │ ├── 020-shared_liblua.patch │ │ └── 100-no_readline.patch ├── luabitop │ └── Makefile ├── luaexpat │ ├── Makefile │ └── files │ │ └── compat-5.1r5 │ │ ├── compat-5.1.c │ │ ├── compat-5.1.h │ │ └── compat-5.1.lua ├── luafilesystem │ └── Makefile ├── luajit │ ├── Makefile │ └── patches │ │ ├── 010-lua-path.patch │ │ ├── 020-clang.patch │ │ ├── 030_fix_posix_install_with_missing_or_incompatible_ldconfig.patch │ │ ├── 040-softfloat-ppc.patch │ │ ├── 050-ppc-softfloat.patch │ │ ├── 060-ppc-musl.patch │ │ └── 300-PPC-e500-with-SPE-enabled-use-soft-float.patch ├── luajit2 │ ├── Makefile │ └── patches │ │ └── 010-lua-path.patch ├── lualanes │ └── Makefile ├── luaossl │ ├── Makefile │ └── patches │ │ └── 900_fix_build_on_macos.patch ├── luaposix │ ├── Makefile │ ├── patches │ │ └── 102-disable-compat-deprecated.patch │ └── scripts │ │ └── uname ├── luarocks │ ├── Makefile │ └── patches │ │ ├── 01_dont_modify_bin_shebang.diff │ │ └── 02_allow_configure_uname_siteconfig_adjustment.patch ├── luasec │ ├── Makefile │ └── patches │ │ └── 100-fix-compilation.patch ├── luasoap │ └── Makefile ├── luasocket │ ├── Makefile │ └── patches │ │ ├── 0001-Add-interface-support.patch │ │ └── 0301-Fix-mpc85xx-build.patch ├── luasql │ └── Makefile ├── luasrcdiet │ └── Makefile ├── luv │ ├── Config.in │ └── Makefile ├── lyaml │ └── Makefile ├── lzmq │ ├── Makefile │ └── patches │ │ └── 010-gcc14.patch ├── node-arduino-firmata │ ├── Makefile │ ├── files │ │ └── usr │ │ │ └── lib │ │ │ └── node │ │ │ └── arduino-firmata │ │ │ └── lib │ │ │ └── arduino-firmata.js │ └── patches │ │ └── 000-new-serialport.patch ├── node-cylon │ ├── Makefile │ └── patches │ │ └── 0001-serialport.patch ├── node-hid │ ├── Makefile │ └── patches │ │ └── 000-support_musl.patch ├── node-homebridge │ ├── Makefile │ ├── files │ │ └── homebridge.init │ └── patches │ │ └── 000-add_module_search_path.patch ├── node-javascript-obfuscator │ └── Makefile ├── node-serialport-bindings │ └── Makefile ├── node-serialport │ ├── Makefile │ └── patches │ │ └── 000-remove_depends.patch ├── node-yarn │ └── Makefile ├── node │ ├── Makefile │ └── patches │ │ ├── 003-path.patch │ │ ├── 004-musl_support.patch │ │ ├── 007-fix_host_build_on_macos.patch │ │ ├── 200-uv_gyp.patch │ │ ├── 201-zlib_gyp.patch │ │ ├── 202-node_gyp.patch │ │ ├── 203-icu-generic_gyp.patch │ │ ├── 204-v8_gyp.patch │ │ ├── 999-localhost-no-addrconfig.patch │ │ └── 999-revert_enable_pointer_authentication_on_arm64.patch ├── perl-ack │ ├── Makefile │ └── test.sh ├── perl-authen-sasl-xs │ ├── Makefile │ └── patches │ │ └── 100-remove-devel-checklib-checks.patch ├── perl-authen-sasl │ └── Makefile ├── perl-cgi │ └── Makefile ├── perl-compress-bzip2 │ └── Makefile ├── perl-dbi │ └── Makefile ├── perl-device-serialport │ └── Makefile ├── perl-device-usb │ ├── Makefile │ ├── README.patches │ └── patches │ │ ├── 100-fix_buildsystem.patch │ │ ├── 110-just_assume_libusb_is_there.patch │ │ ├── 120-use_libusb_0_1.patch │ │ ├── 130-provide-proper-library-paths.patch │ │ └── 140-avoid-libusb-name-conflicts.patch ├── perl-encode-locale │ └── Makefile ├── perl-file-listing │ └── Makefile ├── perl-file-next │ └── Makefile ├── perl-file-rsyncp │ ├── Makefile │ └── patches │ │ └── 001-no-subdirs.patch ├── perl-file-sharedir-install │ └── Makefile ├── perl-html-form │ └── Makefile ├── perl-html-parser │ └── Makefile ├── perl-html-tagset │ └── Makefile ├── perl-html-tree │ └── Makefile ├── perl-http-cookies │ └── Makefile ├── perl-http-daemon │ └── Makefile ├── perl-http-date │ └── Makefile ├── perl-http-message │ └── Makefile ├── perl-http-negotiate │ └── Makefile ├── perl-http-server-simple │ └── Makefile ├── perl-inline-c │ ├── Makefile │ └── patches │ │ ├── 100-inline_c-no_compile_hack.patch │ │ └── 110-inline_c-make_system_typemap_overridable.patch ├── perl-inline │ └── Makefile ├── perl-io-html │ └── Makefile ├── perl-lockfile-simple │ └── Makefile ├── perl-lwp-mediatypes │ └── Makefile ├── perl-mail-spamassassin │ └── Makefile ├── perl-net-cidr-lite │ └── Makefile ├── perl-net-dns │ └── Makefile ├── perl-net-http │ └── Makefile ├── perl-net-telnet │ └── Makefile ├── perl-netaddr-ip │ └── Makefile ├── perl-parse-recdescent │ └── Makefile ├── perl-parse-yapp │ └── Makefile ├── perl-sub-uplevel │ └── Makefile ├── perl-test-harness │ └── Makefile ├── perl-test-warn │ └── Makefile ├── perl-text-csv_xs │ ├── Makefile │ └── patches │ │ └── 900-fix-format-warnings.patch ├── perl-time-moment │ └── Makefile ├── perl-try-tiny │ └── Makefile ├── perl-uri │ └── Makefile ├── perl-www-curl │ ├── Makefile │ └── patches │ │ ├── 100-perl-www-curl_disable_curl-config_hack.patch │ │ ├── 101-skip-preprocessor-symbol.path │ │ ├── 200-fix_default_lflags.patch │ │ ├── 210-curl_7.66_compat.patch │ │ ├── 220-curl_7.69_compat.patch │ │ └── 230-curl_7.88_compat.patch ├── perl-www-mechanize │ └── Makefile ├── perl-www-robotrules │ └── Makefile ├── perl-www │ └── Makefile ├── perl-xml-parser │ ├── Makefile │ └── patches │ │ ├── 010-xml-parser-expat-use-ppport.h │ │ ├── 020-xml-parser-expat-lib-inc-path-anchor.patch │ │ └── 030-expat.patch ├── perl │ ├── Config.in │ ├── Makefile │ ├── README.patches │ ├── files │ │ ├── README.config │ │ ├── aarch64.config │ │ ├── architecture.config │ │ ├── arm.config │ │ ├── armeb.config │ │ ├── base.config │ │ ├── i486.config │ │ ├── libc.config │ │ ├── mips.config │ │ ├── mips64.config │ │ ├── mips64el.config │ │ ├── mipsel.config │ │ ├── misc.config │ │ ├── perl-run_tests.sh │ │ ├── perlconfig.pl │ │ ├── powerpc.config │ │ ├── powerpc64.config │ │ ├── riscv64.config │ │ ├── signal.config │ │ ├── threads.config │ │ ├── version.config │ │ └── x86_64.config │ ├── patches │ │ ├── 010-musl-compat.patch │ │ ├── 020-gcc14.patch │ │ ├── 100-fix-cross-compile-endianness-detection.patch │ │ ├── 110-always_use_miniperl.patch │ │ ├── 120-remove-build-timestamp.patch │ │ ├── 300-add-relink-hack.patch │ │ ├── 320-copy-pod-hack.patch │ │ ├── 710-threads_join-skip_ps_on_busybox.patch │ │ ├── 900-use-rm-force.patch │ │ ├── 910-miniperl-needs-inc-dot.patch │ │ ├── 920-Revert-perl-127606-adjust-dependency-paths-on-instal.patch │ │ └── 998-Errno_errno.h_path.patch │ ├── perlbase.mk │ ├── perlmod.mk │ └── perlver.mk ├── php8-pecl-dio │ └── Makefile ├── php8-pecl-http │ └── Makefile ├── php8-pecl-imagick │ └── Makefile ├── php8-pecl-krb5 │ └── Makefile ├── php8-pecl-mcrypt │ └── Makefile ├── php8-pecl-raphf │ └── Makefile ├── php8-pecl-redis │ └── Makefile ├── php8-pecl-xdebug │ └── Makefile ├── php8 │ ├── Makefile │ ├── files │ │ ├── php.ini │ │ ├── php8-fastcgi.config │ │ ├── php8-fastcgi.init │ │ ├── php8-fpm-www.conf │ │ ├── php8-fpm.conf │ │ ├── php8-fpm.config │ │ └── php8-fpm.init │ ├── patches │ │ ├── 0007-Add-support-for-use-of-the-system-timezone-database.patch │ │ ├── 0022-Use-system-timezone.patch │ │ ├── 0025-php-5.4.9-fixheader.patch │ │ ├── 0030-Remove-W3C-validation-icon-to-not-expose-the-reader-.patch │ │ ├── 1004-disable-phar-command.patch │ │ ├── 1010-dont-try-to-install-mod_php.patch │ │ └── 1020_workaround-external-libgd-feature-detection.patch │ ├── pecl.mk │ └── test.sh ├── python │ ├── 2to3 │ │ ├── Makefile │ │ └── files │ │ │ ├── 2to3.py │ │ │ └── copyright │ ├── Flask │ │ └── Makefile │ ├── README.md │ ├── django-restframework │ │ └── Makefile │ ├── django │ │ ├── Makefile │ │ └── test.sh │ ├── flup │ │ └── Makefile │ ├── itsdangerous │ │ └── Makefile │ ├── micropython-lib │ │ ├── Makefile │ │ ├── files │ │ │ └── micropython-unix │ │ ├── install.py │ │ └── patches │ │ │ └── 001-build-unix-ffi.patch │ ├── micropython │ │ ├── Makefile │ │ ├── patches │ │ │ ├── 010-lib-berkeley-db-cdefs.patch │ │ │ ├── 011-lib-berkeley-db-fix-no-init.patch │ │ │ ├── 030-target-no-darwin.patch │ │ │ └── 040-extmod-use-external-mbedtls.patch │ │ ├── src │ │ │ └── ports │ │ │ │ └── unix │ │ │ │ └── variants │ │ │ │ └── standard │ │ │ │ └── manifest-nossl.py │ │ └── test.sh │ ├── numpy │ │ ├── Makefile │ │ ├── files │ │ │ └── openwrt-cross.txt.in │ │ ├── patches │ │ │ └── 002-avoid-build-user-config-files.patch │ │ └── test.sh │ ├── openpyxl │ │ └── Makefile │ ├── pillow │ │ ├── Makefile │ │ ├── patches │ │ │ └── 001-remove-setuptools-version-limit.patch │ │ └── test.sh │ ├── pipx │ │ ├── Makefile │ │ └── test.sh │ ├── pymysql │ │ └── Makefile │ ├── pypi.mk │ ├── pyproject-metadata │ │ └── Makefile │ ├── python-aio-mqtt-mod │ │ └── Makefile │ ├── python-aiohttp-cors │ │ └── Makefile │ ├── python-aiohttp │ │ └── Makefile │ ├── python-aiosignal │ │ └── Makefile │ ├── python-apipkg │ │ └── Makefile │ ├── python-appdirs │ │ └── Makefile │ ├── python-argcomplete │ │ ├── Makefile │ │ ├── patches │ │ │ └── 001-unpin-setuptools.patch │ │ └── test.sh │ ├── python-asgiref │ │ └── Makefile │ ├── python-astral │ │ └── Makefile │ ├── python-async-generator │ │ └── Makefile │ ├── python-async-timeout │ │ └── Makefile │ ├── python-atomicwrites │ │ └── Makefile │ ├── python-attrs │ │ └── Makefile │ ├── python-augeas │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-backport-ffi-fix.patch │ ├── python-automat │ │ ├── Makefile │ │ └── patches │ │ │ ├── 002-omit-visualize.patch │ │ │ └── 003-omit-tests.patch │ ├── python-awesomeversion │ │ └── Makefile │ ├── python-awscli │ │ └── Makefile │ ├── python-babel │ │ └── Makefile │ ├── python-bcrypt │ │ ├── Makefile │ │ └── test.sh │ ├── python-bidict │ │ └── Makefile │ ├── python-ble2mqtt │ │ ├── Makefile │ │ └── files │ │ │ └── ble2mqtt.init │ ├── python-bleak │ │ └── Makefile │ ├── python-boto3 │ │ └── Makefile │ ├── python-botocore │ │ └── Makefile │ ├── python-build │ │ └── Makefile │ ├── python-cached-property │ │ └── Makefile │ ├── python-cachelib │ │ └── Makefile │ ├── python-cachetools │ │ └── Makefile │ ├── python-calver │ │ └── Makefile │ ├── python-certifi │ │ ├── Makefile │ │ └── test.sh │ ├── python-cffi │ │ ├── Makefile │ │ ├── patches │ │ │ └── 001-unpin-setuptools.patch │ │ └── test.sh │ ├── python-chardet │ │ └── Makefile │ ├── python-charset-normalizer │ │ ├── Makefile │ │ └── test.sh │ ├── python-ciso8601 │ │ └── Makefile │ ├── python-click-log │ │ └── Makefile │ ├── python-click │ │ └── Makefile │ ├── python-colorama │ │ └── Makefile │ ├── python-constantly │ │ ├── Makefile │ │ ├── patches │ │ │ └── 001-unpin-setuptools.patch │ │ └── test.sh │ ├── python-contextlib2 │ │ └── Makefile │ ├── python-crcmod │ │ └── Makefile │ ├── python-cryptodome │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-fix-libgmp-loading.patch │ │ │ └── 002-omit-tests.patch │ ├── python-cryptodomex │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-fix-libgmp-loading.patch │ │ │ └── 002-omit-tests.patch │ ├── python-cryptography │ │ ├── Makefile │ │ ├── patches │ │ │ └── 001-Update-ouroboros.patch │ │ └── test.sh │ ├── python-curl │ │ ├── Makefile │ │ └── patches │ │ │ └── 100_macos_compat.patch │ ├── python-cython │ │ └── Makefile │ ├── python-dateutil │ │ └── Makefile │ ├── python-dbus-fast │ │ └── Makefile │ ├── python-decorator │ │ └── Makefile │ ├── python-defusedxml │ │ └── Makefile │ ├── python-distro │ │ └── Makefile │ ├── python-dns │ │ └── Makefile │ ├── python-docker │ │ └── Makefile │ ├── python-dockerpty │ │ └── Makefile │ ├── python-docopt │ │ └── Makefile │ ├── python-docutils │ │ └── Makefile │ ├── python-dotenv │ │ └── Makefile │ ├── python-editables │ │ └── Makefile │ ├── python-engineio │ │ └── Makefile │ ├── python-et_xmlfile │ │ └── Makefile │ ├── python-evdev │ │ └── Makefile │ ├── python-eventlet │ │ └── Makefile │ ├── python-execnet │ │ └── Makefile │ ├── python-flask-babel │ │ └── Makefile │ ├── python-flask-httpauth │ │ └── Makefile │ ├── python-flask-login │ │ └── Makefile │ ├── python-flask-seasurf │ │ └── Makefile │ ├── python-flask-session │ │ └── Makefile │ ├── python-flask-socketio │ │ └── Makefile │ ├── python-flit-core │ │ └── Makefile │ ├── python-flit-scm │ │ └── Makefile │ ├── python-fnv-hash-fast │ │ └── Makefile │ ├── python-fnvhash │ │ └── Makefile │ ├── python-frozenlist │ │ └── Makefile │ ├── python-gevent │ │ └── Makefile │ ├── python-gmpy2 │ │ └── Makefile │ ├── python-gnupg │ │ └── Makefile │ ├── python-greenlet │ │ └── Makefile │ ├── python-hatch-fancy-pypi-readme │ │ └── Makefile │ ├── python-hatch-requirements-txt │ │ └── Makefile │ ├── python-hatch-vcs │ │ └── Makefile │ ├── python-hatchling │ │ └── Makefile │ ├── python-hyperlink │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-omit-tests.patch │ ├── python-idna │ │ ├── Makefile │ │ └── test.sh │ ├── python-ifaddr │ │ └── Makefile │ ├── python-incremental │ │ └── Makefile │ ├── python-influxdb │ │ └── Makefile │ ├── python-iniconfig │ │ └── Makefile │ ├── python-installer │ │ └── Makefile │ ├── python-intelhex │ │ └── Makefile │ ├── python-jdcal │ │ └── Makefile │ ├── python-jinja2 │ │ └── Makefile │ ├── python-jmespath │ │ └── Makefile │ ├── python-jsonpath-ng │ │ └── Makefile │ ├── python-jsonschema-specifications │ │ ├── Makefile │ │ └── test.sh │ ├── python-jsonschema │ │ ├── Makefile │ │ └── test.sh │ ├── python-libmodbus │ │ └── Makefile │ ├── python-lru-dict │ │ └── Makefile │ ├── python-lxml │ │ ├── Makefile │ │ └── test.sh │ ├── python-mako │ │ └── Makefile │ ├── python-markdown │ │ └── Makefile │ ├── python-markupsafe │ │ └── Makefile │ ├── python-maturin │ │ └── Makefile │ ├── python-maxminddb │ │ └── Makefile │ ├── python-more-itertools │ │ └── Makefile │ ├── python-msgpack │ │ └── Makefile │ ├── python-multidict │ │ └── Makefile │ ├── python-netdisco │ │ └── Makefile │ ├── python-netifaces │ │ └── Makefile │ ├── python-networkx │ │ └── Makefile │ ├── python-orjson │ │ └── Makefile │ ├── python-outcome │ │ └── Makefile │ ├── python-package-install.sh │ ├── python-packaging │ │ ├── Makefile │ │ └── test.sh │ ├── python-paho-mqtt │ │ └── Makefile │ ├── python-paramiko │ │ └── Makefile │ ├── python-parsley │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-py3-read-utf8.patch │ │ │ └── 002-omit-tests.patch │ ├── python-passlib │ │ └── Makefile │ ├── python-pathspec │ │ └── Makefile │ ├── python-pip │ │ ├── Makefile │ │ ├── files │ │ │ └── pip.conf │ │ ├── patches │ │ │ ├── 001-pyproject-hooks-pyc-fix.patch │ │ │ ├── 002-pip-runner-pyc-fix.patch │ │ │ └── 003-disable-pip-version-check.patch │ │ └── test.sh │ ├── python-pkgconfig │ │ └── Makefile │ ├── python-platformdirs │ │ ├── Makefile │ │ └── test.sh │ ├── python-pluggy │ │ └── Makefile │ ├── python-ply │ │ └── Makefile │ ├── python-poetry-core │ │ └── Makefile │ ├── python-psutil │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-fix-non-Linux-compile.patch │ ├── python-psycopg2 │ │ └── Makefile │ ├── python-py │ │ └── Makefile │ ├── python-pyasn1-modules │ │ └── Makefile │ ├── python-pyasn1 │ │ ├── Makefile │ │ └── test.sh │ ├── python-pycares │ │ └── Makefile │ ├── python-pycparser │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-use-external-ply.patch │ ├── python-pycrate │ │ └── Makefile │ ├── python-pyelftools │ │ └── Makefile │ ├── python-pyfuse3 │ │ └── Makefile │ ├── python-pynacl │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-always-compile-ed25519.patch │ ├── python-pyodbc │ │ ├── Makefile │ │ └── test.sh │ ├── python-pyopenssl │ │ ├── Makefile │ │ └── test.sh │ ├── python-pyotp │ │ └── Makefile │ ├── python-pyparsing │ │ └── Makefile │ ├── python-pyproject-hooks │ │ └── Makefile │ ├── python-pyroute2 │ │ └── Makefile │ ├── python-pyrsistent │ │ └── Makefile │ ├── python-pyserial │ │ └── Makefile │ ├── python-pysocks │ │ └── Makefile │ ├── python-pytest-forked │ │ └── Makefile │ ├── python-pytest-xdist │ │ └── Makefile │ ├── python-pytest │ │ └── Makefile │ ├── python-pytz │ │ └── Makefile │ ├── python-referencing │ │ ├── Makefile │ │ └── test.sh │ ├── python-requests │ │ └── Makefile │ ├── python-rpds-py │ │ ├── Makefile │ │ └── test.sh │ ├── python-rsa │ │ └── Makefile │ ├── python-ruamel-yaml │ │ └── Makefile │ ├── python-s3transfer │ │ └── Makefile │ ├── python-schedule │ │ └── Makefile │ ├── python-schema │ │ └── Makefile │ ├── python-selinux │ │ └── Makefile │ ├── python-semanage │ │ └── Makefile │ ├── python-semantic-version │ │ └── Makefile │ ├── python-sentry-sdk │ │ └── Makefile │ ├── python-service-identity │ │ └── Makefile │ ├── python-setuptools-rust │ │ └── Makefile │ ├── python-setuptools-scm │ │ └── Makefile │ ├── python-setuptools │ │ ├── Makefile │ │ └── test.sh │ ├── python-six │ │ └── Makefile │ ├── python-slugify │ │ └── Makefile │ ├── python-sniffio │ │ └── Makefile │ ├── python-socketio │ │ └── Makefile │ ├── python-sortedcontainers │ │ └── Makefile │ ├── python-sqlalchemy │ │ └── Makefile │ ├── python-sqlparse │ │ └── Makefile │ ├── python-stem │ │ └── Makefile │ ├── python-texttable │ │ └── Makefile │ ├── python-toml │ │ └── Makefile │ ├── python-tornado │ │ └── Makefile │ ├── python-trio │ │ └── Makefile │ ├── python-trove-classifiers │ │ └── Makefile │ ├── python-twisted │ │ ├── Makefile │ │ ├── patches │ │ │ └── 001-omit-tkconch.patch │ │ └── test.sh │ ├── python-typing-extensions │ │ ├── Makefile │ │ └── test.sh │ ├── python-ubus │ │ └── Makefile │ ├── python-uci │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-Revert-CI-setup.py-removed-and-testing-updates-in-CI.patch │ │ │ └── 0001-pyproject.toml-remove-it-in-favor-of-setup.py.patch │ ├── python-unidecode │ │ └── Makefile │ ├── python-urllib3 │ │ └── Makefile │ ├── python-userpath │ │ ├── Makefile │ │ ├── patches │ │ │ ├── 0001-Handle-OSErrors-when-running-show-path-commands.patch │ │ │ ├── 0001-Use-Sh-as-base-class-for-Bash-and-Zsh.patch │ │ │ └── 0002-Add-support-for-ash-Almquist-shell.patch │ │ └── test.sh │ ├── python-versioneer │ │ └── Makefile │ ├── python-voluptuous-serialize │ │ └── Makefile │ ├── python-voluptuous │ │ └── Makefile │ ├── python-wcwidth │ │ └── Makefile │ ├── python-websocket-client │ │ └── Makefile │ ├── python-websockets │ │ └── Makefile │ ├── python-werkzeug │ │ └── Makefile │ ├── python-wheel │ │ └── Makefile │ ├── python-xmltodict │ │ └── Makefile │ ├── python-yaml │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-cython3.patch │ ├── python-yarl │ │ └── Makefile │ ├── python-zeroconf │ │ └── Makefile │ ├── python-zipp │ │ └── Makefile │ ├── python-zope-event │ │ └── Makefile │ ├── python-zope-interface │ │ ├── Makefile │ │ ├── patches │ │ │ └── 001-omit-tests.patch │ │ └── test.sh │ ├── python3-bottle │ │ └── Makefile │ ├── python3-django-cors-headers │ │ └── Makefile │ ├── python3-drf-nested-routers │ │ └── Makefile │ ├── python3-find-stdlib-depends.sh │ ├── python3-host-build.mk │ ├── python3-host.mk │ ├── python3-iperf3 │ │ └── Makefile │ ├── python3-package.mk │ ├── python3-packages │ │ ├── Makefile │ │ └── README.md │ ├── python3-pyinotify │ │ └── Makefile │ ├── python3-speedtest-cli │ │ └── Makefile │ ├── python3-version.mk │ ├── python3 │ │ ├── Config-python3-light.in │ │ ├── Makefile │ │ ├── files │ │ │ ├── python3-package-asyncio.mk │ │ │ ├── python3-package-cgi.mk │ │ │ ├── python3-package-codecs.mk │ │ │ ├── python3-package-ctypes.mk │ │ │ ├── python3-package-dbm.mk │ │ │ ├── python3-package-decimal.mk │ │ │ ├── python3-package-dev.mk │ │ │ ├── python3-package-distutils.mk │ │ │ ├── python3-package-email.mk │ │ │ ├── python3-package-lib2to3.mk │ │ │ ├── python3-package-logging.mk │ │ │ ├── python3-package-lzma.mk │ │ │ ├── python3-package-multiprocessing.mk │ │ │ ├── python3-package-ncurses.mk │ │ │ ├── python3-package-openssl.mk │ │ │ ├── python3-package-pydoc.mk │ │ │ ├── python3-package-readline.mk │ │ │ ├── python3-package-sqlite3.mk │ │ │ ├── python3-package-unittest.mk │ │ │ ├── python3-package-urllib.mk │ │ │ ├── python3-package-uuid.mk │ │ │ ├── python3-package-venv.mk │ │ │ └── python3-package-xml.mk │ │ ├── patches-host-pip │ │ │ └── .gitkeep │ │ ├── patches-host-setuptools │ │ │ ├── .gitkeep │ │ │ └── 0001-Adjust-library-header-paths-for-cross-compilation.patch │ │ ├── patches │ │ │ ├── 003-do-not-run-compileall.patch │ │ │ ├── 004-do-not-write-bytes-codes.patch │ │ │ ├── 006-do-not-add-multiarch-local-paths.patch │ │ │ ├── 008-distutils-use-python-sysroot.patch │ │ │ ├── 010-no-ncursesw.patch │ │ │ ├── 024-musl-find_library.patch │ │ │ ├── 025-choose-python-config-version.patch │ │ │ ├── 026-openssl-feature-flags.patch │ │ │ ├── 027-fix-host-build-libressl.patch │ │ │ └── 100-gh-95855-Refactor-platform-triplet-detection-code-GH-107221.patch │ │ └── test.sh │ ├── text-unidecode │ │ └── Makefile │ └── vobject │ │ └── Makefile ├── ruby │ ├── Makefile │ ├── files │ │ └── ruby │ ├── patches │ │ └── 010-fix-riscv64-build.patch │ ├── ruby_find_pkgsdeps │ └── ruby_missingfiles ├── rust │ ├── Config.in │ ├── Makefile │ ├── patches │ │ └── 0001-Update-xz2-and-use-it-static.patch │ ├── rust-host-build.mk │ ├── rust-package.mk │ └── rust-values.mk ├── tcl │ └── Makefile ├── uuid │ └── Makefile └── vala │ ├── Makefile │ └── patches │ └── 010-gcc14.patch ├── libs ├── afalg_engine │ ├── Config.in │ ├── Makefile │ ├── files │ │ └── afalg.cnf │ └── test.sh ├── alsa-lib │ ├── Makefile │ └── patches │ │ ├── 100-link_fix.patch │ │ └── 200-usleep.patch ├── alsa-ucm-conf │ └── Makefile ├── apr-util │ ├── Makefile │ └── patches │ │ ├── 004-avoid_ldap_by_defaut.patch │ │ ├── 005-apu_config_dont_list_indep_libs.patch │ │ └── 006-avoid_db_by-default.patch ├── apr │ └── Makefile ├── avahi │ ├── Makefile │ ├── files │ │ ├── avahi-daemon.conf │ │ ├── avahi-daemon.init │ │ ├── netifd-autoip.sh │ │ ├── service-http │ │ └── service-ssh │ └── patches │ │ ├── 010-pkgconfig.patch │ │ ├── 020-revert-runtime-dir-systemd-change.patch │ │ ├── 100-p2p-no-iff_multicast-required.patch │ │ ├── 200-Fix-NULL-pointer-crashes-from-175.patch │ │ ├── 201-Avoid-infinite-loop-in-avahi-daemon-by-handling-HUP-event.patch │ │ ├── 202-avahi_dns_packet_consume_uint32-fix-potential-undefined-b.patch │ │ ├── 203-Do-not-disable-timeout-cleanup-on-watch-cleanup.patch │ │ ├── 204-Emit-error-if-requested-service-is-not-found.patch │ │ ├── 205-conf-file-line-lengths.patch │ │ ├── 300-CVE-2023-38469.patch │ │ ├── 301-CVE-2023-38470.patch │ │ ├── 302-CVE-2023-38471.patch │ │ ├── 303-CVE-2023-38472.patch │ │ └── 304-CVE-2023-38473.patch ├── boost │ └── Makefile ├── boringssl │ ├── Makefile │ └── patches │ │ ├── 300-support-mipsel-arch.patch │ │ └── 900-add-install-target.patch ├── c-ares │ └── Makefile ├── cereal │ └── Makefile ├── check │ └── Makefile ├── cjson │ └── Makefile ├── confuse │ ├── Makefile │ └── patches │ │ └── 010-CVE-2022-40320.patch ├── cyrus-sasl │ ├── Makefile │ └── patches │ │ └── 010-gcc14.patch ├── czmq │ └── Makefile ├── davici │ └── Makefile ├── db │ ├── Makefile │ └── patches │ │ ├── 010-fix-parallel-build.patch │ │ ├── 020-atomic-Rename-local-__atomic_compare_exchange-to-avo.patch │ │ ├── 030-configure-Add-explicit-tag-options-to-libtool-invoca.patch │ │ ├── 040-sequence-type.patch │ │ ├── 050-Fix-libc-compatibility-by-renaming-atomic_init-API.patch │ │ ├── 060-clock-Do-not-define-own-timespec.patch │ │ ├── 070-memp-stat-upstream-fix.patch │ │ ├── 080-mutex-leak.patch │ │ ├── 090-lemon-hash.patch │ │ ├── 100-mmap-high-cpu-usage.patch │ │ ├── 110-CVE-2019-2708.patch │ │ ├── 120-CVE-2019-8457.patch │ │ ├── 130-CVE-2017-10140-cwd-db_config.patch │ │ ├── 140-mmap_extend-mode-requires-page-aligned-extends.patch │ │ ├── 150-mutex-alignment.patch │ │ └── 160-pg_crypt_size.patch ├── dmx_usb_module │ ├── Makefile │ └── patches │ │ ├── 001-dmx_usb_Makefile.patch │ │ ├── 100-fix-compilation-warning-wrong-cast.patch │ │ └── 101-fix-kernel-6.6-builds.patch ├── dtndht │ ├── Makefile │ └── patches │ │ └── 001-musl_header.patch ├── easyloggingpp │ └── Makefile ├── efivar │ ├── Makefile │ └── patches │ │ ├── 002-musl-compat.patch │ │ ├── 003-Use-off_t-instead-of-off64_t.patch │ │ ├── 005-skip-docs.patch │ │ └── 006-build-util-c-separately-for-makeguids.patch ├── elektra │ ├── Makefile │ ├── files │ │ └── elektra.profile │ └── patches │ │ └── 010-gcc13.patch ├── ell │ └── Makefile ├── ethtool-lua │ └── Makefile ├── expat │ └── Makefile ├── faad2 │ └── Makefile ├── file │ └── Makefile ├── flac │ └── Makefile ├── freetype │ └── Makefile ├── gdbm │ └── Makefile ├── getdns │ ├── Config.in │ ├── Makefile │ └── patches │ │ └── 001-openssl-deprecated.patch ├── giflib │ └── Makefile ├── glib-networking │ ├── Makefile │ └── patches │ │ └── 100-no-tests.patch ├── glib2 │ ├── Makefile │ └── patches │ │ ├── 003-valgrind.h-mips16-fix.patch │ │ └── 006-c99.patch ├── gnu-efi │ └── Makefile ├── gnutls │ ├── Config.in │ ├── Makefile │ └── patches │ │ ├── 010-m4.patch │ │ ├── 020-dont-install-m4-files.patch │ │ └── 030-unistring-optional.patch ├── google-authenticator-libpam │ └── Makefile ├── gost_engine │ ├── Makefile │ ├── files │ │ └── gost.cnf │ ├── patches │ │ ├── 020-cmake-allow-cross-compile.patch │ │ ├── 030-dont-build-provider.patch │ │ └── 040-dont-build-tests.patch │ └── test.sh ├── gperftools │ └── Makefile ├── gpgme │ └── Makefile ├── hidapi │ └── Makefile ├── hiredis │ └── Makefile ├── hwloc │ └── Makefile ├── hyperscan │ ├── Makefile │ └── patches │ │ └── 0001-CMakeLists.txt-hack-for-our-build-system.patch ├── ibrcommon │ ├── Makefile │ └── patches │ │ ├── 001-fix-build-with-musl.patch │ │ ├── 010-build-with-openssl-1.1.patch │ │ └── 020-openssl-deprecated.patch ├── ibrdtn │ └── Makefile ├── icu │ ├── Makefile │ └── patches │ │ ├── 000-dont-cpy-files-from-topdirs.patch │ │ ├── 001-change_optimization_option.patch │ │ ├── 002-Disable-LDFLAGSICUDT-for-Linux.patch │ │ └── 010-max_align_t.patch ├── inih │ └── Makefile ├── iniparser │ └── Makefile ├── intltool │ ├── Makefile │ └── patches │ │ ├── 100-optional-perl-xml-parser.patch │ │ └── 200-intltool-0.51.0-perl-5.22.patch ├── jose │ └── Makefile ├── json-glib │ └── Makefile ├── jsoncpp │ └── Makefile ├── keyutils │ ├── Makefile │ └── patches │ │ ├── 010-reproducible-build.patch │ │ └── 020-rindex.patch ├── ldns │ └── Makefile ├── leptonica │ └── Makefile ├── libaio │ ├── Makefile │ └── patches │ │ ├── 001_arches.patch │ │ ├── 002_arches_sh.patch │ │ ├── 003_arches_mips_fix_padding.patch │ │ └── 004_arches_x32.patch ├── libantlr3c │ └── Makefile ├── libao │ ├── Makefile │ └── patches │ │ └── 010-CVE-2017-11548.patch ├── libarchive │ └── Makefile ├── libassuan │ └── Makefile ├── libatasmart │ ├── Makefile │ ├── patches │ │ └── 001-fix-cross-compile.patch │ └── src │ │ └── atasmart.strpool.c ├── libb64 │ ├── Makefile │ └── patches │ │ └── 100-no-Werror.patch ├── libcap-ng │ └── Makefile ├── libcbor │ └── Makefile ├── libcgroup │ ├── Makefile │ └── patches │ │ └── 010-strerror.patch ├── libcli │ ├── Makefile │ └── patches │ │ └── 010-gcc14.patch ├── libcoap │ └── Makefile ├── libconfig │ └── Makefile ├── libcups │ └── Makefile ├── libdaemon │ ├── Makefile │ └── patches │ │ └── 001-daemon_set_verbosity.patch ├── libdaq3 │ └── Makefile ├── libdbi-drivers │ ├── Makefile │ └── patches │ │ ├── 001_libsqlite3_fix.patch │ │ └── 100-remove-date-to-fix-reproducible-builds.patch ├── libdbi │ └── Makefile ├── libdcwproto │ └── Makefile ├── libdcwsocket │ ├── Makefile │ └── patches │ │ ├── 010-glibc.patch │ │ └── 02_fix_storage_size_error.patch ├── libdeflate │ └── Makefile ├── libdht │ └── Makefile ├── libdmapsharing │ ├── Makefile │ └── patches │ │ └── 001-disable_pixbuf.patch ├── libdnet │ └── Makefile ├── libdouble-conversion │ └── Makefile ├── libdrm │ ├── Config.in │ ├── Makefile │ └── patches │ │ └── 010-64bit.patch ├── libdvbcsa │ ├── Config.in │ └── Makefile ├── libedit │ └── Makefile ├── libesmtp │ └── Makefile ├── libestr │ └── Makefile ├── libev │ └── Makefile ├── libevdev │ └── Makefile ├── libexif │ ├── Makefile │ └── patches │ │ └── 100-no_doc.patch ├── libextractor │ ├── Makefile │ └── patches │ │ └── 010-musl.patch ├── libfastjson │ └── Makefile ├── libffi │ └── Makefile ├── libfido2 │ └── Makefile ├── libfmt │ └── Makefile ├── libfstrm │ └── Makefile ├── libftdi │ ├── Makefile │ └── patches │ │ ├── 100-fix-x86_64-build.patch │ │ ├── 101-fix-cmake-version-packagekit.patch │ │ └── 102-fix-cmake-include-examples.patch ├── libftdi1 │ ├── Makefile │ └── patches │ │ └── 100-fix-x86_64-build.patch ├── libgabe │ ├── Makefile │ └── patches │ │ └── 010-shared-library.patch ├── libgcrypt │ └── Makefile ├── libgd │ ├── Makefile │ └── patches │ │ ├── 010-webp.patch │ │ └── 100-no-cxx.patch ├── libgee │ └── Makefile ├── libgpg-error │ ├── Makefile │ └── patches │ │ ├── 001-cross-compile-fix.patch │ │ └── 010-add-arc-support.patch ├── libgphoto2 │ └── Makefile ├── libgpiod │ └── Makefile ├── libhttp-parser │ ├── Makefile │ └── patches │ │ └── 000-fix_darwin_error.patch ├── libical │ ├── Makefile │ └── patches │ │ └── 001-disable-icu-and-bdb-support.patch ├── libid3tag │ └── Makefile ├── libideviceactivation │ └── Makefile ├── libidn │ ├── Makefile │ └── patches │ │ └── 010-fix-idn-error-usage.patch ├── libidn2 │ └── Makefile ├── libiio │ ├── Makefile │ ├── files │ │ └── iiod.init │ └── patches │ │ └── 0001-xml-Fix-compatibility-with-libxml-2.12.patch ├── libimobiledevice-glue │ └── Makefile ├── libimobiledevice │ ├── Makefile │ └── patches │ │ ├── 010-gcc14.patch │ │ └── 020-config.patch ├── libinput │ └── Makefile ├── libirecovery │ └── Makefile ├── libjaylink │ └── Makefile ├── libjcat │ ├── Config.in │ └── Makefile ├── libjpeg-turbo │ └── Makefile ├── libjwt │ └── Makefile ├── libksba │ └── Makefile ├── liblo │ ├── Makefile │ └── patches │ │ ├── 010-index.patch │ │ └── 020-usleep.patch ├── liblz4 │ ├── Config.in │ └── Makefile ├── libmad │ ├── Makefile │ └── patches │ │ └── 010-format.patch ├── libmariadb │ ├── Makefile │ ├── files │ │ └── mysql_config │ └── patches │ │ ├── 010-link-to-libucontext.patch │ │ └── 020-fix-ucontext-maybe-uninitialized.patch ├── libmaxminddb │ └── Makefile ├── libmbim │ └── Makefile ├── libmcrypt │ └── Makefile ├── libmicrohttpd │ └── Makefile ├── libmms │ ├── Makefile │ └── patches │ │ └── 010-remove_glib_from_pkgconfig.patch ├── libmodbus │ └── Makefile ├── libmpc │ ├── Makefile │ └── patches │ │ └── 001-only-src.patch ├── libmpdclient │ └── Makefile ├── libmpeg2 │ ├── Makefile │ └── patches │ │ ├── 101-ppc_no_altivec.patch │ │ └── 102-arm_data_preload_check.patch ├── libmraa │ ├── Makefile │ └── patches │ │ ├── 001-mraa-Use-posix-basename.patch │ │ ├── 010-version.patch │ │ ├── 020-support_v12.patch │ │ └── 030-gcc10.patch ├── libmspack │ └── Makefile ├── libnatpmp │ ├── Makefile │ └── patches │ │ └── 010-cmake.patch ├── libndpi │ ├── Makefile │ └── patches │ │ └── 001-Move-from-PCRE-to-PCRE2.patch ├── libnet-1.2.x │ └── Makefile ├── libnetconf2 │ ├── Makefile │ └── patches │ │ └── 001-cmake_not_updated.patch ├── libnetfilter-acct │ └── Makefile ├── libnetfilter-cthelper │ └── Makefile ├── libnetfilter-cttimeout │ └── Makefile ├── libnetfilter-log │ └── Makefile ├── libnetfilter-queue │ ├── Makefile │ └── patches │ │ ├── 0001-src-add-pkt_buff-function-for-ICMP.patch │ │ └── 0002-src-fix-IPv6-header-handling.patch ├── libnopoll │ ├── Makefile │ └── patches │ │ └── 010-openssl-deprecated.patch ├── libnpupnp │ └── Makefile ├── libnvme │ └── Makefile ├── libogg │ └── Makefile ├── liboil │ └── Makefile ├── libopen62541 │ ├── Config.in │ └── Makefile ├── liboping │ ├── Makefile │ └── patches │ │ ├── 01-no-werror.patch │ │ └── 05-fix-format-arguments-ncurses63.patch ├── libopusenc │ ├── Makefile │ └── patches │ │ ├── 0001-Fix-ope_encoder_drain-assertion-failure.patch │ │ ├── 0002-Fix-use-of-uninitialized-fields.patch │ │ └── 0003-Fix-use-of-uninitialized-serialno.patch ├── liborcania │ └── Makefile ├── libowfat │ ├── Makefile │ └── patches │ │ ├── 001-fixbuild.patch │ │ └── 020-cflags.patch ├── libp11 │ ├── Makefile │ └── patches │ │ └── 001-fix-install.patch ├── libpam │ ├── Makefile │ ├── files │ │ ├── pam.conf │ │ └── pam.d │ │ │ ├── common-account │ │ │ ├── common-auth │ │ │ ├── common-password │ │ │ ├── common-session │ │ │ ├── common-session-noninteractive │ │ │ └── other │ └── patches │ │ └── 0001-build-always-use-lib-instead-of-lib64.patch ├── libpbc │ ├── Makefile │ └── patches │ │ └── 010-pass-cflags.patch ├── libpciaccess │ └── Makefile ├── libpfring │ ├── Makefile │ └── patches │ │ ├── 0001-fix-cross-compiling.patch │ │ ├── 010-gcc14.patch │ │ ├── 100-fix-compilation-warning.patch │ │ ├── 101-kernel-pf_ring-better-define-sa_data-size.patch │ │ └── 102-remove-sendpage.patch ├── libplist │ └── Makefile ├── libpng │ ├── Makefile │ └── patches │ │ ├── 100-config_fix.patch │ │ └── 200-ccache.patch ├── libpqxx │ ├── Config.in │ └── Makefile ├── libpsl │ └── Makefile ├── libqmi │ ├── Config.in │ └── Makefile ├── libqrtr-glib │ └── Makefile ├── libradcli │ ├── Config.in │ └── Makefile ├── libradiotap │ └── Makefile ├── libre2 │ └── Makefile ├── libredblack │ └── Makefile ├── librouteros │ ├── Makefile │ └── patches │ │ └── 010-no-doc.patch ├── libroxml │ ├── Makefile │ └── patches │ │ ├── 010-gcc10.patch │ │ └── 020-gcc14.patch ├── libsamplerate │ └── Makefile ├── libseccomp │ ├── Makefile │ └── patches │ │ └── 010-no-code-coverage.patch ├── libshout │ ├── Makefile │ └── patches │ │ ├── 010-gcc14.patch │ │ ├── 100-add_with-openssl_option.patch │ │ └── 120-vorbis-c.patch ├── libslirp │ └── Makefile ├── libsndfile │ └── Makefile ├── libsoc │ └── Makefile ├── libsocketcan │ └── Makefile ├── libsodium │ ├── Makefile │ └── patches │ │ ├── 001-revert-f5076db5f8ef27.patch │ │ └── 100-minimal-build-with-ed25519-core.patch ├── libsoup3 │ └── Makefile ├── libsoxr │ ├── Makefile │ └── patches │ │ ├── 010-Remove_automatic_avutil_inclusion.patch │ │ └── 020-pkgconfig.patch ├── libssh │ ├── Makefile │ └── patches │ │ └── 100-mbedtls_fix.patch ├── libssh2 │ └── Makefile ├── libstrophe │ ├── Config.in │ └── Makefile ├── libtalloc │ ├── Makefile │ └── patches │ │ └── 100-Remove_libbsd_dependency_check.patch ├── libtasn1 │ └── Makefile ├── libtheora │ ├── Makefile │ └── patches │ │ ├── 001-no_docs_tests.patch │ │ └── 002-no_sdl_check.patch ├── libtins │ ├── Config.in │ ├── Makefile │ └── patches │ │ ├── 010-pkgconfig.patch │ │ └── 110-fix_ch_switch_timing_value.patch ├── libtirpc │ ├── Makefile │ └── patches │ │ └── 001-clang.patch ├── libtorrent-rasterbar │ └── Makefile ├── libtorrent │ ├── Makefile │ └── patches │ │ └── 010-usleep.patch ├── libucontext │ └── Makefile ├── libudev-zero │ └── Makefile ├── libuecc │ └── Makefile ├── libugpio │ └── Makefile ├── libuhttpd │ └── Makefile ├── libulfius │ ├── Makefile │ └── patches │ │ └── 0001-cmake-pc-orcania-found.patch ├── libupm │ ├── Makefile │ └── patches │ │ ├── 001-version.patch │ │ ├── 002-at42qt1070-id.patch │ │ ├── 003-link-atomic.patch │ │ ├── 004-uint8_t.patch │ │ ├── 005-support_v12.patch │ │ └── 011-gcc-13-compatibility-fixes.patch ├── libupnp │ ├── Makefile │ └── patches │ │ └── 010-format.patch ├── libupnpp │ └── Makefile ├── liburcu │ ├── Makefile │ └── patches │ │ └── 010-no-tests.patch ├── liburing │ └── Makefile ├── libusb-compat │ └── Makefile ├── libusbmuxd │ └── Makefile ├── libutp │ └── Makefile ├── libuv │ └── Makefile ├── libuwifi │ └── Makefile ├── libuwsc │ ├── Makefile │ └── patches │ │ ├── 001-fix_find_lua.patch │ │ ├── 010-gcc11.patch │ │ └── 100-cmake-fix-wolfssl-detection.patch ├── libv4l │ ├── Makefile │ └── patches │ │ ├── 010-intl.patch │ │ └── 020-musl.patch ├── libvorbis │ ├── Makefile │ └── patches │ │ └── 010-cmake_soname.patch ├── libvorbisidec │ └── Makefile ├── libvpx │ └── Makefile ├── libwebp │ ├── Makefile │ └── patches │ │ └── 010-mips16.patch ├── libwebsockets │ ├── Makefile │ └── patches │ │ ├── 110-mbedtls36_compilefix.patch │ │ └── 120-removed-mbedtlsverc.patch ├── libx264 │ ├── Makefile │ └── patches │ │ ├── 001-fix-x32-build-by-disabling-asm.patch │ │ └── 002-dont-default-to-cortex-a9-with-neon.patch ├── libxcrypt │ └── Makefile ├── libxerces-c │ └── Makefile ├── libxmlb │ ├── Config.in │ └── Makefile ├── libxslt │ └── Makefile ├── libyaml-cpp │ ├── Makefile │ └── patches │ │ └── 010-libcxx.patch ├── libyang │ └── Makefile ├── libyubikey │ └── Makefile ├── libzip │ └── Makefile ├── lmdb │ ├── Makefile │ ├── patches │ │ └── 010-fix-makefile.patch │ └── src │ │ └── liblmdb.pc ├── log4cplus │ └── Makefile ├── loudmouth │ ├── Makefile │ └── patches │ │ └── 900-disable-docs-examples-tests.patch ├── lttng-ust │ ├── Makefile │ └── patches │ │ └── 100-no-tests.patch ├── lzo │ └── Makefile ├── minizip │ └── Makefile ├── msgpack-c │ └── Makefile ├── mtdev │ ├── Makefile │ └── patches │ │ └── 010-format.patch ├── mxml │ └── Makefile ├── nacl │ ├── Makefile │ └── do-openwrt ├── neon │ ├── Makefile │ └── patches │ │ └── 010-no-xmlto.patch ├── newt │ ├── Makefile │ ├── patches │ │ ├── 002-use-target-ar-python-config.patch │ │ └── python_memory_allocation.patch │ └── test.sh ├── nghttp2 │ └── Makefile ├── nghttp3 │ └── Makefile ├── ngtcp2 │ └── Makefile ├── nlohmannjson │ └── Makefile ├── npth │ └── Makefile ├── nspr │ ├── Makefile │ └── patches │ │ ├── 001-Makefile.in_rm_BUILD_STRING_and_BUILD_TIME.patch │ │ └── 002-native_and_musl_fix.patch ├── nss │ ├── Makefile │ ├── files │ │ ├── blank-cert9.db │ │ ├── blank-key4.db │ │ └── system-pkcs11.txt │ └── patches │ │ ├── 001-nss_standalone.patch │ │ ├── 002-os_test.patch │ │ ├── 003-openwrt_fix.patch │ │ ├── 010-nanosleep.patch │ │ └── 020-getopt.patch ├── oniguruma │ └── Makefile ├── openblas │ └── Makefile ├── openldap │ ├── Config.in │ ├── Makefile │ ├── files │ │ └── ldap.init │ └── patches │ │ ├── 001-automake-compat.patch │ │ ├── 002-no-doc-and-tests-subdir.patch │ │ ├── 020-autofs-schema.patch │ │ ├── 110-reproducible-builds.patch │ │ ├── 750-no-strip.patch │ │ └── 901-reduce-slapd-default-mem-usage.patch ├── openpgm │ ├── Makefile │ └── patches │ │ ├── 0001-Rename-openpgm-5.2.pc.in.patch │ │ └── 0002-openpgm-pgm-checksum.c-fix-build-with-32-bits-MMX.patch ├── opus │ └── Makefile ├── opusfile │ └── Makefile ├── p11-kit │ ├── Makefile │ ├── files │ │ └── opensc.module │ └── patches │ │ └── 010-format.patch ├── pcapplusplus │ └── Makefile ├── pcre │ ├── Config.in │ └── Makefile ├── pixman │ └── Makefile ├── poco │ ├── Makefile │ └── patches │ │ ├── 100-configure.patch │ │ └── 200-strerror.patch ├── postgresql │ ├── Makefile │ ├── files │ │ ├── postgresql.config │ │ ├── postgresql.init │ │ └── postgresql.sh │ └── patches │ │ ├── 050-build-contrib.patch │ │ ├── 200-ranlib.patch │ │ ├── 300-fix-includes.patch │ │ ├── 800-busybox-default-pager.patch │ │ └── 900-pg_ctl-setuid.patch ├── protobuf-c │ └── Makefile ├── protobuf │ ├── Makefile │ └── patches │ │ └── 010-rpath.patch ├── psqlodbc │ └── Makefile ├── pthsem │ ├── Makefile │ └── patches │ │ ├── 001-linux3x-fix.patch │ │ ├── 002-fix-signal.h │ │ └── 003-linux4x-fix.patch ├── qrencode │ └── Makefile ├── redis │ ├── Makefile │ ├── files │ │ └── redis.init │ └── patches │ │ └── 020-fix-atomicvar.patch ├── rpcsvc-proto │ └── Makefile ├── sbc │ └── Makefile ├── serdisplib │ ├── Makefile │ └── patches │ │ ├── 002-allow-1bpp-framebuffer.patch │ │ └── 010-cross-compile.patch ├── slang2 │ ├── Makefile │ └── patches │ │ ├── 001-skip-terminfo-dir-test.patch │ │ └── 002-use-target-ar.patch ├── speex │ └── Makefile ├── speexdsp │ └── Makefile ├── spice-protocol │ └── Makefile ├── spice │ ├── Makefile │ └── patches │ │ ├── 010-doxy.patch │ │ ├── 030-include-generated-code.patch │ │ ├── 040-only-server.patch │ │ └── 050-no-mkenums.patch ├── sqlite3 │ ├── Config-cli.in │ ├── Config-lib.in │ └── Makefile ├── srt │ ├── Config.in │ └── Makefile ├── sx1302_hal │ ├── Makefile │ ├── patches │ │ ├── 000-edit_cflags.patch │ │ └── 001-add_compatibility_with_basicstation.patch │ └── test.sh ├── taglib │ └── Makefile ├── tcp_wrappers │ ├── Makefile │ └── patches │ │ ├── 001-debian_subset.patch │ │ ├── 002-opt_cflags.patch │ │ ├── 003-scaffold_malloc.patch │ │ ├── 004-ipv4_prefix.patch │ │ ├── 005-no--lnsl-on-musl.patch │ │ └── 006-compilation-warnings.patch ├── tdb │ ├── Makefile │ ├── files │ │ └── tdb.cache.txt │ └── patches │ │ ├── 100-Remove_libbsd_dependency_check.patch │ │ └── 101_wafsamba-replace-echo-n-with-printf.patch ├── tiff │ └── Makefile ├── tinycdb │ ├── Makefile │ └── patches │ │ └── 100-Makefile.patch ├── totem-pl-parser │ ├── Makefile │ └── patches │ │ └── totem-pl-parser-3.26.6-initialize.patch ├── uci2 │ └── Makefile ├── udns │ ├── Makefile │ └── patches │ │ └── 0001-use-autotools.patch ├── unixodbc │ ├── Makefile │ ├── files │ │ ├── odbc.init │ │ └── pgsqlodbc.ini │ ├── patches │ │ └── 010-gcc14.patch │ └── test.sh ├── uw-imap │ ├── Makefile │ └── patches │ │ ├── 001-fix_Makefiles_and_shlib.patch │ │ ├── 002-imap-2004a-doc.patch │ │ ├── 003-imap-2007e-overflow.patch │ │ ├── 005-imap-2007e-authmd5.patch │ │ ├── 006-imap-2007f-format-security.patch │ │ ├── 007-imap-2007e-poll.patch │ │ ├── 010-imap-2007f-openssl-1.1.patch │ │ └── 020-deprecated-openssl.patch ├── vips │ └── Makefile ├── websocketpp │ └── Makefile ├── xmlrpc-c │ ├── Makefile │ └── patches │ │ ├── 001-fix-pkg-config-files.patch │ │ ├── 002-remove-unnecessary-linking.patch │ │ └── 010-nanosleep.patch ├── xr_usb_serial_common │ ├── Makefile │ └── patches │ │ └── 0001-fix-kernel-6.6-builds.patch ├── yajl │ ├── Makefile │ └── patches │ │ └── 010-CVE-2023-33460.patch ├── yaml │ └── Makefile ├── yubico-pam │ └── Makefile ├── zlog │ ├── Makefile │ └── patches │ │ └── 010-cmake.patch └── zmq │ ├── Makefile │ └── patches │ ├── 010-fix-openpgm-linking-for-zeromq.patch │ └── 020-no-libbsd.patch ├── mail ├── alpine │ ├── Makefile │ └── patches │ │ ├── 010-cdefs.patch │ │ └── 020-reproducible.patch ├── bogofilter │ ├── Makefile │ └── files │ │ └── postfix-bogofilter ├── dovecot │ ├── Config.in │ ├── Makefile │ ├── files │ │ └── dovecot.init │ └── patches │ │ ├── 001-configure_in.patch │ │ ├── 050-fix-dovecot-config-for-cross-compile.patch │ │ ├── 100-openssl-deprecated.patch │ │ └── 110-openssl-engine.patch ├── emailrelay │ ├── Makefile │ └── files │ │ ├── emailrelay.auth │ │ ├── emailrelay.config │ │ └── emailrelay.init ├── exim │ ├── Makefile │ ├── files │ │ └── exim.init │ └── patches │ │ ├── 010-allow-json-dynamic-lookup.patch │ │ ├── 030-openssl-deprecated.patch │ │ ├── 100-localscan_dlopen.patch │ │ ├── 200-fix-build.patch │ │ └── 210-no-exim_id_update.patch ├── fdm │ ├── Config.in │ ├── Makefile │ ├── files │ │ └── etc │ │ │ └── fdm.conf │ └── patches │ │ ├── 040-remove_host_includes.patch │ │ ├── 100-Fix-bugs-in-PCRE2-code-don-t-walk-off-the-end-of-the.patch │ │ └── 101-Fix-use-after-free-GitHub-issue-126.patch ├── greyfix │ ├── Makefile │ └── patches │ │ └── 100-ignore_cross_compile_test.patch ├── mailsend │ ├── Makefile │ └── patches │ │ ├── 0001-OpenSSL-1.1-support-for-HMAC-api.patch │ │ └── 0002-Removed-API-deprecated-by-OpenSSL-1.1.0.patch ├── mblaze │ ├── Makefile │ └── patches │ │ └── 010-mlist-use-fixed-width-integer-types-for-struct-linux_dire.patch ├── msmtp │ ├── Makefile │ └── test.sh ├── mutt │ ├── Config.in │ └── Makefile ├── nail │ ├── Makefile │ └── patches │ │ ├── 010-remove-gssapi.patch │ │ ├── 100-handle-openssl-without-sslv2-sslv3.patch │ │ ├── 200-handle-openssl-no-egd.patch │ │ └── 300-openssl-deprecated.patch ├── opendkim │ ├── Makefile │ ├── files │ │ ├── opendkim-genkey │ │ ├── opendkim.conf.simple │ │ └── opendkim.init │ └── patches │ │ ├── 010-openssl_1.1_compat.patch │ │ └── 020-libbsd.patch ├── pigeonhole │ └── Makefile ├── postfix │ ├── Makefile │ ├── files │ │ └── postfix.init │ └── patches │ │ ├── 100-correct-signature-of-closefrom-API.patch │ │ ├── 200-manpages.patch │ │ ├── 300-bdb_hash_segfault.patch │ │ ├── 400-cdb.patch │ │ ├── 500-crosscompile.patch │ │ ├── 501-include_stdio.patch │ │ ├── 600-nopostconf.patch │ │ ├── 700-defaultconfig.patch │ │ ├── 800-fmt.patch │ │ └── 900_less_overlayfs_rewrites.patch └── sendmail │ ├── Makefile │ ├── files │ ├── OpenWrt │ ├── lm_getver.c │ ├── sharedlibrary.m4 │ └── site.OpenWrt.m4 │ └── patches │ ├── 010-enable-nonroot-install.patch │ ├── 011-libmilter-so-version.patch │ ├── 100-misc-os-musl-fixes.patch │ ├── 102-pthreads-stack-size.patch │ ├── 103-create-install-dirs.patch │ └── 210-cdefs.patch ├── multimedia ├── ffmpeg │ ├── Config.in │ ├── Makefile │ └── patches │ │ ├── 010-pkgconfig.patch │ │ ├── 020-libavcodec-fix-Wint-conversion-in-vulkan.patch │ │ ├── 030-avformat-file-guard-fd_dup-by-FD_PROTOCOL-or-PIPE_PR.patch │ │ ├── 040-vulkan_decode-fix-the-print-format-of-VkDeviceSize.patch │ │ ├── 050-avcodec-dct-Make-declarations-and-definitions-match.patch │ │ ├── 060-avutil-tx-fix-GCC-memset-warning.patch │ │ ├── 070-avformat-rawdec-guard-by-CONFIG_DATA_DEMUXER.patch │ │ ├── 080-avcodec-pcm-bluray-dvd-Use-correct-pointer-types-on-.patch │ │ ├── 090-avcodec-tiff-Suppress-unused-variable-warnings.patch │ │ └── 120-avfilter-af_channelsplit-fix-mixed-declaration-and-c.patch ├── fswebcam │ └── Makefile ├── go2rtc │ ├── Makefile │ └── files │ │ ├── go2rtc.init │ │ └── go2rtc.yaml ├── gphoto2 │ ├── Makefile │ └── patches │ │ └── 001-automake-compat.patch ├── graphicsmagick │ └── Makefile ├── grilo-plugins │ └── Makefile ├── grilo │ ├── Makefile │ └── files │ │ ├── grilo-0.3.vapi │ │ └── grilo-net-0.3.vapi ├── gst1-libav │ ├── Config.in │ └── Makefile ├── gst1-plugins-bad │ └── Makefile ├── gst1-plugins-base │ └── Makefile ├── gst1-plugins-good │ └── Makefile ├── gst1-plugins-ugly │ └── Makefile ├── gstreamer1 │ ├── Makefile │ └── patches │ │ └── 010-gstplugin-use-lazy-symbol-binding.patch ├── icecast │ ├── Makefile │ ├── files │ │ └── icecast.init │ └── patches │ │ ├── 001-icecast-2.4.0-tremor.patch │ │ ├── 005-no_examples_doc_win32.patch │ │ ├── 010-fix_libcurl_test_crap.patch │ │ ├── 015-add_with-openssl_option.patch │ │ └── 020-icecast_config_for_openwrt.patch ├── ices │ └── Makefile ├── imagemagick │ └── Makefile ├── lcdgrilo │ ├── Makefile │ ├── files │ │ └── lcdgrilo.init │ └── patches │ │ ├── 010-remove-check-dependency.patch │ │ └── 020-vala.patch ├── midisport-firmware │ ├── Makefile │ └── files │ │ └── midisport-firmware.hotplug ├── minidlna │ ├── Makefile │ ├── files │ │ ├── minidlna.config │ │ ├── minidlna.init │ │ └── minidlna.sysctl │ └── patches │ │ ├── 001-dont-build-po-files.patch │ │ ├── 020-wrap_container_definitions_into_a_structure.patch │ │ ├── 030-mark_all_instances_of_magic_container_s_as_const.patch │ │ ├── 040-heroes.patch │ │ ├── 060-reduce_duplication_in_sql_c.patch │ │ └── 070-return-void.patch ├── minisatip │ ├── Makefile │ └── files │ │ └── minisatip.init ├── mjpg-streamer │ ├── Makefile │ ├── files │ │ ├── mjpg-streamer.config │ │ ├── mjpg-streamer.hotplug │ │ └── mjpg-streamer.init │ └── patches │ │ ├── 010-optional-plugins-selection.patch │ │ ├── 020-remove-auto-lib-selection.patch │ │ └── 030-remove-git-hash-version-number.patch ├── motion │ ├── Makefile │ ├── files │ │ ├── motion.conf │ │ └── motion.init │ └── patches │ │ └── 010-no-po-man.patch ├── oggfwd │ └── Makefile ├── rtpmidid │ ├── Makefile │ ├── files │ │ └── rtpmidid.init │ └── patches │ │ ├── 010-gcc14.patch │ │ └── 020-fmt10.patch ├── ttymidi-sysex │ ├── Makefile │ ├── files │ │ ├── ttymidi-sysex.defaults │ │ └── ttymidi-sysex.init │ └── patches │ │ └── 100-add-support-for-System-Realtime-and-System-Common.patch ├── tvheadend │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── dvb.hotplug │ │ ├── tvheadend.config │ │ └── tvheadend.init │ └── patches │ │ └── 050-iconv-test-continue.patch ├── v4l2camera │ ├── Makefile │ └── files │ │ ├── v4l2camera.config │ │ └── v4l2camera.init ├── v4l2rtspserver │ ├── Makefile │ └── files │ │ ├── v4l2rtspserver.config │ │ └── v4l2rtspserver.init ├── v4l2tools │ └── Makefile ├── xupnpd │ ├── Makefile │ ├── files │ │ └── xupnpd.init │ └── patches │ │ ├── 100-default_config.patch │ │ └── 101-root_dir_param.patch └── yt-dlp │ ├── Makefile │ └── test.sh ├── net ├── aardvark-dns │ └── Makefile ├── acme-acmesh │ ├── Makefile │ └── files │ │ └── hook.sh ├── acme-common │ ├── Makefile │ └── files │ │ ├── acme-notify.sh │ │ ├── acme.config │ │ ├── acme.init │ │ ├── acme.uci-defaults │ │ └── functions.sh ├── acme │ └── Makefile ├── adblock-fast │ ├── Makefile │ ├── README.md │ ├── files │ │ ├── README.md │ │ ├── adblock-fast.config.update │ │ └── etc │ │ │ ├── config │ │ │ └── adblock-fast │ │ │ ├── init.d │ │ │ └── adblock-fast │ │ │ └── uci-defaults │ │ │ └── 90-adblock-fast │ └── test.sh ├── adblock │ ├── Makefile │ └── files │ │ ├── 95-adblock-housekeeping │ │ ├── README.md │ │ ├── adblock.allowlist │ │ ├── adblock.blocklist │ │ ├── adblock.categories │ │ ├── adblock.conf │ │ ├── adblock.custom.feeds │ │ ├── adblock.feeds │ │ ├── adblock.init │ │ ├── adblock.mail │ │ └── adblock.sh ├── addrwatch │ ├── Makefile │ ├── files │ │ ├── addrwatch.config │ │ └── addrwatch.init │ └── patches │ │ ├── 002-fix-uclibc-sysconf.patch │ │ ├── 003-add-space-for-null-byte.patch │ │ ├── 004-more-specific-library-linking.patch │ │ └── 005-use-c99-format-macro-constants.patch ├── adguardhome │ ├── Makefile │ └── files │ │ ├── adguardhome.config │ │ └── adguardhome.init ├── aggregate │ ├── Makefile │ └── patches │ │ ├── 010-gcc14.patch │ │ └── 500-cross_compile_flags.patch ├── aircrack-ng │ ├── Config.in │ ├── Makefile │ └── patches │ │ ├── 100-01-autotools-add-PCRE2-detection.patch │ │ ├── 100-02-airodump-ng-add-PCRE2-support.patch │ │ ├── 100-03-besside-ng-add-PCRE2-support.patch │ │ ├── 100-04-makefile-add-PCRE2-to-linker-flags.patch │ │ ├── 100-05-airodump-ng-dump_write-remove-unused-PCRE-include.patch │ │ ├── 100-07-compat-pcre-add-compat-type-PCRE-header.patch │ │ ├── 100-08-airodump-ng-utilize-compat-pcre.patch │ │ ├── 100-09-besside-ng-utilize-compat-pcre.patch │ │ ├── 101-02-src-makefile-add-PCRE2_CFLAGS-to-airodump-and-bessid.patch │ │ ├── 101-03-lib-makefile-add-PCRE2-to-libaccrypto-and-libaircrac.patch │ │ ├── 102-autotools-indicate-if-PCRE-or-PCRE2-is-being-used.patch │ │ ├── 103-autotools-reset-PCRE-CFLAGS-LIBS-with-both-PCRE-and-.patch │ │ ├── 104-build-add-option-to-disable-bsd-library-inclusion.patch │ │ └── 105-build-support-strlcat-strlcpy-from-musl-or-recent-gl.patch ├── ampr-ripd │ ├── Makefile │ ├── files │ │ ├── 99-ampr-ripd │ │ ├── ampr-ripd-config │ │ └── ampr-ripd-init │ └── test.sh ├── announce │ └── Makefile ├── antiblock │ ├── Makefile │ ├── files │ │ └── etc │ │ │ ├── config │ │ │ └── antiblock │ │ │ └── init.d │ │ │ └── antiblock │ └── test.sh ├── apache │ ├── Makefile │ ├── files │ │ └── apache2.init │ └── patches │ │ ├── 001-cross-compile.patch │ │ ├── 004-fix-scoreboard-location.patch │ │ ├── 005-httpd_conf.patch │ │ ├── 010-reproducible-builds.patch │ │ └── 100_compile-fix-libxml2-2.12.x.patch ├── apcupsd │ ├── Makefile │ ├── files │ │ ├── apccontrol │ │ ├── apcupsd.conf │ │ ├── apcupsd.css │ │ ├── apcupsd.init │ │ ├── apcupsd_mail.conf │ │ ├── changeme │ │ ├── commfailure │ │ ├── commok │ │ ├── hosts.conf │ │ ├── multimon.conf │ │ ├── offbattery │ │ └── onbattery │ └── patches │ │ └── 015-drop-doc.patch ├── apfree-wifidog │ ├── Makefile │ ├── README.md │ └── files │ │ ├── wdping │ │ ├── wifidogx.conf │ │ └── wifidogx.init ├── apinger │ ├── Makefile │ ├── files │ │ ├── apinger-hotplug │ │ ├── apinger.config │ │ ├── apinger.init │ │ ├── apinger.rpc │ │ ├── graphs.sh │ │ ├── iface.hotplug │ │ └── user.hotplug │ └── patches │ │ ├── 002-run_as_user.patch │ │ ├── 003-no_docs.patch │ │ ├── 010-poll.patch │ │ ├── 020-gcc10.patch │ │ ├── 030-apinger-no_exit.patch │ │ ├── 040-srcip.patch │ │ ├── 050-statusformat.patch │ │ ├── 060-format-alarm-list.patch │ │ └── 070-gcc14.patch ├── aria2 │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── aria2.conf │ │ └── aria2.init ├── ariang │ ├── Makefile │ └── files │ │ ├── 80_ariang-nginx-support │ │ └── ariang.locations ├── arp-scan │ └── Makefile ├── atftp │ ├── Makefile │ ├── files │ │ ├── atftpd.conf │ │ └── atftpd.init │ └── test.sh ├── atlas-probe │ ├── Makefile │ └── patches │ │ ├── 004-Comment-out-librt-testing.patch │ │ └── 010-openssl.patch ├── atlas-sw-probe │ ├── Makefile │ ├── files │ │ ├── atlas.conf │ │ ├── atlas.init │ │ ├── atlas.readme │ │ └── atlas_rpcd.sh │ └── patches │ │ └── 001-fix-config-path.patch ├── autossh │ ├── Makefile │ └── files │ │ ├── autossh.config │ │ ├── autossh.hotplug │ │ └── autossh.init ├── banip │ ├── Makefile │ └── files │ │ ├── 95-banip-housekeeping │ │ ├── README.md │ │ ├── banip-functions.sh │ │ ├── banip-service.sh │ │ ├── banip.allowlist │ │ ├── banip.blocklist │ │ ├── banip.cgi │ │ ├── banip.conf │ │ ├── banip.countries │ │ ├── banip.custom.feeds │ │ ├── banip.feeds │ │ ├── banip.init │ │ └── banip.tpl ├── basicstation │ ├── Makefile │ ├── files │ │ └── etc │ │ │ ├── config │ │ │ └── basicstation │ │ │ └── init.d │ │ │ └── basicstation │ ├── patches │ │ ├── 000-include_sys_time.patch │ │ └── 001-build-with-mbedtls-3.x.patch │ ├── src │ │ └── CMakeLists.txt │ └── test.sh ├── bcp38 │ ├── Makefile │ └── files │ │ ├── bcp38.config │ │ ├── bcp38.defaults │ │ ├── bcp38.init │ │ └── run.sh ├── beanstalkd │ ├── Makefile │ ├── files │ │ └── beanstalkd.init │ └── patches │ │ └── 903-fix-size_t-format-spec ├── bfdd │ ├── Makefile │ ├── files │ │ ├── bfdd.init │ │ └── bfdd.template.json │ └── patches │ │ ├── 002-ipv6_musl_fix.patch │ │ └── 020-gcc10.patch ├── bind │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── bind │ │ ├── bind.keys │ │ ├── db.0 │ │ ├── db.127 │ │ ├── db.255 │ │ ├── db.local │ │ ├── db.root │ │ └── named.conf.example │ │ └── named.init ├── bitlbee │ └── Makefile ├── bmon │ └── Makefile ├── boinc-wrapper │ ├── Makefile │ └── test.sh ├── boinc │ ├── Makefile │ ├── files │ │ ├── boinc-client.init │ │ ├── global_prefs_override.xml │ │ └── remote_hosts.cfg │ └── patches │ │ ├── 001-avoidExtraDependencies │ │ └── 002-hosttypeRespected ├── bonding │ ├── Makefile │ └── files │ │ └── lib │ │ └── netifd │ │ └── proto │ │ └── bonding.sh ├── bpfcountd │ ├── Makefile │ └── files │ │ └── etc │ │ ├── bpfcountd.filters │ │ ├── config │ │ └── bpfcountd │ │ └── init.d │ │ └── bpfcountd ├── bridge-utils │ ├── Makefile │ └── patches │ │ └── 010-limits.patch ├── bwm-ng │ ├── Config.in │ ├── Makefile │ └── patches │ │ └── 010-gcc14.patch ├── bwping │ └── Makefile ├── cgi-io │ └── Makefile ├── chaosvpn │ ├── Makefile │ ├── files │ │ ├── chaosvpn.hotplug │ │ └── chaosvpn.init │ └── patches │ │ ├── 0001-OpenSSL-1.1.0-compile-fix.patch │ │ ├── 010-openssl-deprecated.patch │ │ └── 020-cdefs.patch ├── chrony │ ├── Makefile │ └── files │ │ ├── chrony.conf │ │ ├── chrony.config │ │ ├── chrony.hotplug │ │ ├── chrony.ntp-hotplug │ │ └── chronyd.init ├── cifs-utils │ ├── Makefile │ └── patches │ │ ├── 010-no-libtalloc.patch │ │ └── 020-no-smb3.patch ├── clamav │ ├── Makefile │ ├── files │ │ ├── bytecode.cvd │ │ ├── clamav-milter.config │ │ ├── clamav-milter.init │ │ ├── clamav.config │ │ ├── clamav.init │ │ ├── freshclam.config │ │ └── freshclam.init │ └── patches │ │ └── 010-musl12x.patch ├── cloudflared │ ├── Makefile │ ├── files │ │ ├── cloudflared.config │ │ ├── cloudflared.init │ │ └── sample_config.yml │ └── test.sh ├── cloudreve │ └── Makefile ├── cni-route-override │ └── Makefile ├── conntrack-tools │ ├── Makefile │ └── files │ │ └── conntrackd.init ├── conserver │ ├── Makefile │ ├── files │ │ ├── config.guess │ │ ├── config.sub │ │ ├── conserver.cf │ │ ├── conserver.init │ │ └── console.cf │ └── patches │ │ ├── 000-100-backport-config-macro-fix.patch │ │ ├── 001-remove-strip.patch │ │ └── 002-addrsmatch-freeaddrinfo.patch ├── coova-chilli │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── chilli.config │ │ └── chilli.init │ └── patches │ │ ├── 010-kernel510.patch │ │ ├── 011-kernel517.patch │ │ ├── 020-libxt_coova-Use-constructor-instead-of-_init.patch │ │ ├── 030-cyassl-renamed-to-wolfssl.patch │ │ └── 100-fix_compile_kmod.patch ├── croc │ └── Makefile ├── crowdsec-firewall-bouncer │ ├── Makefile │ └── files │ │ ├── crowdsec-firewall-bouncer.initd │ │ └── crowdsec.config ├── crowdsec │ ├── Makefile │ ├── files │ │ ├── crowdsec.config │ │ ├── crowdsec.defaults │ │ └── crowdsec.initd │ └── patches │ │ └── 001-fix_config_data_dir.patch ├── cshark │ ├── Makefile │ └── patches │ │ └── 010-gcc12.patch ├── curl │ ├── Config.in │ ├── Makefile │ └── patches │ │ └── 200-no_docs_tests.patch ├── dante │ ├── Makefile │ ├── files │ │ └── sockd.init │ └── patches │ │ ├── 010-gcc14.patch │ │ ├── 100-fix-autoconf-checkerrno.patch │ │ └── 200-fix-RTLD_NEXT.patch ├── darkstat │ ├── Makefile │ ├── files │ │ ├── darkstat.config │ │ └── darkstat.init │ └── patches │ │ ├── 100-do-not-use-NI_IDN.patch │ │ └── 101-allow-multiple-local-interfaces.patch ├── databag │ ├── Makefile │ └── files │ │ ├── databag.config │ │ └── databag.init ├── davfs2 │ ├── Makefile │ ├── files │ │ └── davfs2.conf │ └── patches │ │ ├── 010-main_code_fix.patch │ │ ├── 030-realpath.patch │ │ ├── 040-sys-select.patch │ │ ├── 050-sys-types.patch │ │ ├── 060-paths.patch │ │ └── 070-no-error.patch ├── dawn │ ├── Makefile │ └── files │ │ ├── dawn.config │ │ └── dawn.init ├── dcstad │ └── Makefile ├── dcwapd │ ├── Makefile │ ├── files │ │ ├── dcwapd.init │ │ └── dcwapd.uci │ └── patches │ │ ├── 010-gcc14.patch │ │ ├── 01_add_uci_config_provider.patch │ │ ├── 02_use_uci_config_provider.patch │ │ └── 03_add_uci_config_provider_to_Makefile.patch ├── ddns-scripts │ ├── Makefile │ ├── files │ │ ├── etc │ │ │ ├── config │ │ │ │ └── ddns │ │ │ ├── hotplug.d │ │ │ │ └── iface │ │ │ │ │ └── ddns │ │ │ ├── init.d │ │ │ │ └── ddns │ │ │ └── uci-defaults │ │ │ │ └── 50-ddns-migrate-retry-count │ │ └── usr │ │ │ ├── bin │ │ │ └── ddns.sh │ │ │ ├── lib │ │ │ └── ddns │ │ │ │ ├── dynamic_dns_functions.sh │ │ │ │ ├── dynamic_dns_lucihelper.sh │ │ │ │ ├── dynamic_dns_updater.sh │ │ │ │ ├── update_cloudflare_com_v4.sh │ │ │ │ ├── update_cnkuai_cn.sh │ │ │ │ ├── update_digitalocean_com_v2.sh │ │ │ │ ├── update_dnspod_cn.sh │ │ │ │ ├── update_dnspod_cn_v3.sh │ │ │ │ ├── update_freedns_42_pl.sh │ │ │ │ ├── update_gandi_net.sh │ │ │ │ ├── update_gcp_v1.sh │ │ │ │ ├── update_godaddy_com_v1.sh │ │ │ │ ├── update_huaweicloud_com.sh │ │ │ │ ├── update_luadns_v1.sh │ │ │ │ ├── update_no-ip_com.sh │ │ │ │ ├── update_ns1_com.sh │ │ │ │ ├── update_nsupdate.sh │ │ │ │ ├── update_one_com.sh │ │ │ │ ├── update_pdns.sh │ │ │ │ ├── update_porkbun_v3.sh │ │ │ │ ├── update_route53_v1.sh │ │ │ │ └── update_transip_nl.sh │ │ │ └── share │ │ │ └── ddns │ │ │ ├── default │ │ │ ├── 3322.org.json │ │ │ ├── afraid.org-basicauth.json │ │ │ ├── afraid.org-keyauth.json │ │ │ ├── afraid.org-v2-basic.json │ │ │ ├── afraid.org-v2-token.json │ │ │ ├── all-inkl.com.json │ │ │ ├── bind-nsupdate.json │ │ │ ├── changeip.com.json │ │ │ ├── cloud.google.com-v1.json │ │ │ ├── cloudflare.com-v4.json │ │ │ ├── cnkuai.cn.json │ │ │ ├── core-networks.de.json │ │ │ ├── ddnss.de.json │ │ │ ├── ddo.jp.json │ │ │ ├── desec.io.json │ │ │ ├── dhis.org.json │ │ │ ├── digitalocean.com-v2.json │ │ │ ├── dnsdynamic.org.json │ │ │ ├── dnsever.com.json │ │ │ ├── dnsexit.com.json │ │ │ ├── dnshome.de.json │ │ │ ├── dnsmadeeasy.com.json │ │ │ ├── dnsmax.com.json │ │ │ ├── dnsomatic.com.json │ │ │ ├── dnspark.com.json │ │ │ ├── dnspod.cn-v3.json │ │ │ ├── dnspod.cn.json │ │ │ ├── do.de.json │ │ │ ├── domopoli.de.json │ │ │ ├── duckdns.org.json │ │ │ ├── duiadns.net.json │ │ │ ├── dy.fi.json │ │ │ ├── dyn.com.json │ │ │ ├── dyndns.it.json │ │ │ ├── dyndns.org.json │ │ │ ├── dynu.com.json │ │ │ ├── dynv6.com.json │ │ │ ├── easydns.com.json │ │ │ ├── freedns.42.pl.json │ │ │ ├── gandi.net.json │ │ │ ├── godaddy.com-v1.json │ │ │ ├── goip.de.json │ │ │ ├── google.com.json │ │ │ ├── he.net.json │ │ │ ├── hosting.de.json │ │ │ ├── huaweicloud.com.json │ │ │ ├── infomaniak.com.json │ │ │ ├── inwx.de.json │ │ │ ├── ipnodns.ru.json │ │ │ ├── ipv64.net.json │ │ │ ├── joker.com.json │ │ │ ├── loopia.se.json │ │ │ ├── luadns.com-v1.json │ │ │ ├── moniker.com.json │ │ │ ├── mydns.jp.json │ │ │ ├── myonlineportal.net.json │ │ │ ├── mythic-beasts.com-v2.json │ │ │ ├── mythic-beasts.com.json │ │ │ ├── namecheap.com.json │ │ │ ├── njal.la.json │ │ │ ├── no-ip.com.json │ │ │ ├── no-ip.pl.json │ │ │ ├── now-dns.com.json │ │ │ ├── ns1.com.json │ │ │ ├── nsupdate.info.json │ │ │ ├── one.com.json │ │ │ ├── opendns.com.json │ │ │ ├── oray.com.json │ │ │ ├── ovh.com.json │ │ │ ├── pdns.json │ │ │ ├── porkbun.com-v3.json │ │ │ ├── regfish.de.json │ │ │ ├── route53-v1.json │ │ │ ├── schokokeks.org.json │ │ │ ├── selfhost.de.json │ │ │ ├── servercow.de.json │ │ │ ├── simply.com.json │ │ │ ├── sitelutions.com.json │ │ │ ├── spdyn.de.json │ │ │ ├── strato.com.json │ │ │ ├── system-ns.com.json │ │ │ ├── thatip.com.json │ │ │ ├── transip.nl.json │ │ │ ├── twodns.de.json │ │ │ ├── udmedia.de.json │ │ │ ├── variomedia.de.json │ │ │ ├── xlhost.de.json │ │ │ ├── ydns.io.json │ │ │ └── zoneedit.com.json │ │ │ └── list │ └── samples │ │ ├── ddns.config_sample │ │ ├── getlocalip_sample.sh │ │ ├── slaac_sample.sh │ │ └── update_sample.sh ├── dhcp-forwarder │ ├── Makefile │ └── files │ │ └── dhcp-fwd.init ├── dhcpcd │ ├── Makefile │ └── files │ │ └── dhcpcd.init ├── dhtd │ ├── Makefile │ └── files │ │ ├── dhtd.config │ │ └── dhtd.init ├── dmapd │ ├── Makefile │ └── files │ │ └── dmapd.init ├── dns-over-https │ ├── Makefile │ └── files │ │ ├── doh-client.init │ │ └── doh-server.init ├── dnscrypt-proxy │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── dnscrypt-proxy.config │ │ ├── dnscrypt-proxy.init │ │ └── dnscrypt-resolvers.csv │ └── patches │ │ └── 010-internal.patch ├── dnscrypt-proxy2 │ ├── Makefile │ └── files │ │ ├── blocked-names.txt │ │ └── dnscrypt-proxy.init ├── dnsdist │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── dnsdist.conf │ │ ├── dnsdist.config │ │ └── dnsdist.init ├── dnslookup │ ├── Makefile │ └── test.sh ├── dnsproxy │ ├── Makefile │ ├── files │ │ ├── dnsproxy.config │ │ ├── dnsproxy.defaults │ │ ├── dnsproxy.init │ │ └── dnsproxy.json │ └── test.sh ├── dnstap │ └── Makefile ├── dnstop │ ├── Makefile │ └── patches │ │ └── 100-fix_udphdr_error.patch ├── dufs │ ├── Makefile │ └── files │ │ ├── dufs.config │ │ └── dufs.init ├── dynapoint │ ├── Makefile │ └── src │ │ ├── dynapoint.config │ │ ├── dynapoint.init │ │ └── dynapoint.lua ├── e2guardian │ ├── Makefile │ └── files │ │ ├── e2guardian.config │ │ ├── e2guardian.init │ │ └── e2guardianf1.conf ├── eoip │ ├── Makefile │ ├── files │ │ ├── eoip.config │ │ └── eoip.init │ └── patches │ │ ├── 010-gcc14.patch │ │ └── 100-add_LF_to_pidfile.patch ├── esniper │ └── Makefile ├── esp2net │ ├── Makefile │ └── files │ │ ├── esp2net.config │ │ └── esp2net.init ├── etebase │ ├── Makefile │ └── files │ │ ├── 81_setup-etebase │ │ ├── etebase.locations │ │ ├── uci.cfg │ │ ├── uwsgi.ini │ │ └── uwsgi.init ├── etherwake-nfqueue │ ├── Makefile │ ├── README.md │ └── files │ │ ├── etherwake-nfqueue.config │ │ └── etherwake-nfqueue.init ├── etherwake │ ├── Makefile │ ├── files │ │ ├── etherwake.config │ │ └── etherwake.init │ └── patches │ │ ├── 110-format_security_fix.patch │ │ └── 120-musl-compat.patch ├── evilginx2 │ └── Makefile ├── external-protocol │ ├── Makefile │ └── files │ │ └── external.sh ├── fail2ban │ ├── Makefile │ ├── files │ │ ├── db.conf │ │ ├── fail2ban.config │ │ ├── fail2ban.defaults │ │ ├── fail2ban.init │ │ ├── firewall.fail2ban │ │ └── uci.conf │ └── patches │ │ ├── 001-fail2ban-fix-python3-script.patch │ │ ├── 010-dropbear-regex-fix.patch │ │ └── 020-nftables.patch ├── fakeidentd │ ├── Makefile │ └── files │ │ └── fakeidentd.init ├── fakepop │ ├── Makefile │ ├── files │ │ └── fakepop │ └── patches │ │ └── 010-fPIC.patch ├── family-dns │ ├── Makefile │ ├── Readme.md │ └── files │ │ ├── family-dns-update │ │ ├── family-dns.conf │ │ ├── family-dns.uci-defaults │ │ └── test-family-dns ├── fastd │ ├── Config.in │ ├── Makefile │ └── files │ │ └── fastd.upgrade ├── flent │ └── Makefile ├── foolsm │ ├── Makefile │ ├── files │ │ ├── connections.conf │ │ ├── foolsm.conf │ │ ├── foolsm.init │ │ └── foolsm_script │ └── patches │ │ ├── 100-plugin-export-dir.patch │ │ └── 110-missing-WAIT_ANY.patch ├── fping │ ├── Makefile │ └── test.sh ├── freeradius3 │ ├── Config.in │ ├── Makefile │ ├── files │ │ └── radiusd.init │ └── patches │ │ ├── 001-fix-cert-expiry.patch │ │ ├── 002-disable-session-cache-CVE-2017-9148.patch │ │ ├── 003-freeradius-fix-error-for-expansion-of-macro.patch │ │ ├── 004-get-hostname-from-proc-in-radtest.patch │ │ ├── 010-openssl-deprecated.patch │ │ └── 020-fix-freeradius3-krb5.patch ├── frp │ ├── Makefile │ ├── files │ │ ├── frpc.config │ │ ├── frpc.init │ │ ├── frpc.uci-defaults │ │ ├── frps.config │ │ └── frps.init │ └── test.sh ├── frr │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── daemons │ │ ├── frr │ │ ├── frr.conf │ │ ├── frrcommon.sh │ │ ├── vtysh.conf │ │ └── watchfrr.sh │ └── patches │ │ ├── 098-fix_mips_libyang.patch │ │ ├── 996-qpb_header_fix.patch │ │ └── 997-reverse_python_test.patch ├── fsh │ ├── Makefile │ ├── files │ │ ├── fsh.config │ │ ├── fshc.init │ │ └── fshs.init │ └── test.sh ├── fwknop │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── fwknopd │ │ └── fwknopd.init │ └── patches │ │ └── 010-gcc10.patch ├── gateway-go │ ├── Makefile │ └── files │ │ └── gateway-go.init ├── gatling │ ├── Makefile │ ├── files │ │ ├── gatling.conf │ │ └── gatling.init │ ├── patches │ │ ├── 010-decrease_optimisation.patch │ │ ├── 020-configure_features.patch │ │ └── 030-mbedtls-fix-compilation-with-3.0.0.patch │ └── test.sh ├── gensio │ ├── Config-bin.in │ ├── Config.in │ ├── Makefile │ └── patches │ │ └── 0001-Ensure-that-ax_python_devel_found_is_defined.patch ├── geoip-shell │ ├── DETAILS.md │ ├── Makefile │ ├── NOTES.md │ ├── OpenWrt-README.md │ ├── README.md │ └── SETUP.md ├── geoipupdate │ └── Makefile ├── gg │ ├── Makefile │ └── test.sh ├── git-lfs │ ├── Makefile │ └── test.sh ├── git │ ├── Makefile │ └── patches │ │ ├── 200-imapsend_without_curl.patch │ │ ├── 300-openssl-deprecated.patch │ │ └── 310-fix-uname-detection-for-crosscompiling ├── gitolite │ ├── Makefile │ └── patches │ │ └── 0100-avoid-ssh-keygen.patch ├── gnunet-fuse │ └── Makefile ├── gnunet │ ├── Makefile │ ├── files │ │ ├── gnunet-dhtcache-heap.defaults │ │ ├── gnunet-dhtcache-pgsql.defaults │ │ ├── gnunet-dhtcache-sqlite.defaults │ │ ├── gnunet-fs-heap.defaults │ │ ├── gnunet-fs-pgsql.defaults │ │ ├── gnunet-fs-sqlite.defaults │ │ ├── gnunet-gns-flat.defaults │ │ ├── gnunet-gns-pgsql.defaults │ │ ├── gnunet-gns-sqlite.defaults │ │ ├── gnunet-gns.defaults │ │ ├── gnunet-peerstore-flat.defaults │ │ ├── gnunet-peerstore-sqlite.defaults │ │ ├── gnunet-pgsql.defaults │ │ ├── gnunet-proto.sh │ │ ├── gnunet-vpn.defaults │ │ ├── gnunet.defaults │ │ ├── gnunet.init │ │ └── gnunet.upgrade │ ├── patches │ │ └── 020-curl-no-runtime-test.patch │ └── test.sh ├── gping │ └── Makefile ├── gsocket │ ├── Makefile │ └── test.sh ├── haproxy │ ├── Makefile │ ├── files │ │ ├── haproxy.cfg │ │ └── haproxy.init │ └── get-latest-patches.sh ├── hcxdumptool │ └── Makefile ├── hcxtools │ └── Makefile ├── hev-socks5-server │ ├── Makefile │ ├── files │ │ ├── hev-socks5-server.config │ │ └── hev-socks5-server.init │ └── test.sh ├── hev-socks5-tproxy │ ├── Makefile │ ├── files │ │ ├── hev-socks5-tproxy.config │ │ └── hev-socks5-tproxy.init │ └── test.sh ├── hev-socks5-tunnel │ ├── Makefile │ ├── files │ │ ├── hev-socks5-tunnel.config │ │ └── hev-socks5-tunnel.init │ └── test.sh ├── horst │ ├── Makefile │ ├── horst.config │ ├── horst.init │ └── patches │ │ ├── 0001-reproducible-builds.patch │ │ └── 010-ncurses63.patch ├── hping3 │ ├── Makefile │ └── patches │ │ ├── 011_buildsystem.patch │ │ ├── 020_pcap_bpf.patch │ │ ├── 040_spelling.patch │ │ ├── 080_ip_id_field.patch │ │ ├── 110_dontfrag_offbyone.patch │ │ ├── 120_rtt_icmp_unreachable.patch │ │ ├── 130_spelling_error_in_binary.patch │ │ ├── 140_data_size_udp.patch │ │ ├── 160_tcp_mss.patch │ │ ├── 190_ip_optlen_conflicting_types.patch │ │ ├── 191_fix_ftbfs_with_gcc10.patch │ │ ├── fix_icmp_ipid.patch │ │ └── hping3-getifnamedebug.patch ├── hs20 │ ├── Makefile │ ├── files │ │ ├── hostapd.config │ │ ├── hs20-server.defaults │ │ ├── hs20.config │ │ └── hs20.init │ └── patches │ │ ├── 010-libxml-212.patch │ │ ├── 050-use-dm_ddf-v1_3_dtd.patch │ │ ├── 100-fix-hs20_spp_server-path.patch │ │ ├── 200-adapt-config-php.patch │ │ └── 300-paths-in-ca-setup-sh.patch ├── htpdate │ ├── Makefile │ └── files │ │ ├── htpdate.conf │ │ └── htpdate.init ├── httping │ ├── Makefile │ └── patches │ │ ├── 001-fix-musl.patch │ │ ├── 002-fix-openssl-bundle.patch │ │ ├── 003-fix_response_time.patch │ │ └── 004-fix-cmake.patch ├── https-dns-proxy │ ├── Makefile │ ├── README.md │ ├── files │ │ ├── README.md │ │ └── etc │ │ │ ├── config │ │ │ └── https-dns-proxy │ │ │ ├── init.d │ │ │ └── https-dns-proxy │ │ │ └── uci-defaults │ │ │ └── 50-https-dns-proxy-migrate-options.sh │ └── test.sh ├── httptunnel │ └── Makefile ├── i2pd │ ├── Makefile │ ├── files │ │ ├── i2pd.config │ │ └── i2pd.init │ └── patches │ │ └── 010-config.patch ├── ibrdtn-tools │ └── Makefile ├── ibrdtnd │ ├── Makefile │ ├── files │ │ ├── build-config.sh │ │ ├── ibrdtn.init │ │ ├── ibrdtn.uci │ │ ├── mkcontainer.sh │ │ ├── mountcontainer.sh │ │ ├── safety-wrapper.sh │ │ └── systemcheck.sh │ └── patches │ │ ├── 0001-ibrdtnd-added-openssl-compatibility.patch │ │ ├── 020-uClibc-ng.patch │ │ └── 030-openssl-deprecated.patch ├── ieee8021xclient │ ├── Makefile │ └── files │ │ └── ieee8021xclient.sh ├── ifstat │ ├── Config.in │ ├── Makefile │ └── patches │ │ ├── 0001-support-64-bits-counters-and-fix-gcc-warnings.patch │ │ └── 010-gcc14.patch ├── iftop │ ├── Makefile │ └── patches │ │ └── 010-gcc10.patch ├── igmpproxy │ ├── Makefile │ └── files │ │ ├── igmpproxy.config │ │ └── igmpproxy.init ├── inadyn │ └── Makefile ├── iodine │ ├── Makefile │ ├── files │ │ ├── iodined.config │ │ └── iodined.init │ └── patches │ │ ├── 010-cross-compile.patch │ │ ├── 100-musl-compatibility.patch │ │ └── 101-musl-workaround-incomplete-nameser-h.patch ├── iperf │ └── Makefile ├── iperf3 │ ├── Makefile │ └── patches │ │ ├── 010-y2k.patch │ │ ├── 020-big-endian.patch │ │ └── 030-musl-crash.patch ├── iptraf-ng │ └── Makefile ├── iputils │ ├── Config_ping.in │ ├── Config_tracepath.in │ ├── Makefile │ └── patches │ │ └── 001_version_fix.patch ├── ipvsadm │ ├── Makefile │ └── patches │ │ ├── 001-Makefile.patch │ │ ├── 002-save-restore.patch │ │ └── 100_allow_to_redefine_ar_libipvs.patch ├── irssi │ ├── Makefile │ └── test.sh ├── irtt │ ├── Makefile │ └── test.sh ├── isc-dhcp │ ├── Makefile │ ├── files │ │ ├── dhclient-script │ │ ├── dhclient.init │ │ ├── dhclient6.conf │ │ ├── dhclient6.init │ │ ├── dhcpd.defaults │ │ ├── dhcpd.init │ │ ├── dhcpd6.conf │ │ ├── dhcpd6.init │ │ ├── dhcrelay.conf │ │ ├── dhcrelay4.init │ │ └── dhcrelay6.init │ └── patches │ │ ├── 510-bind-CC.patch │ │ ├── 520-bind-no-catgets.patch │ │ └── 900-pass-in-bindconfig.patch ├── jool │ ├── Makefile │ ├── files │ │ ├── jool-disable-fraglist-gro.sh │ │ ├── jool-nat64.conf.json │ │ ├── jool-siit.conf.json │ │ ├── jool.config │ │ ├── jool.init │ │ └── readme.md │ └── patches │ │ └── 100-fix-compilation-warning-simple-fix.patch ├── kadnode │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── kadnode.config │ │ ├── kadnode.init │ │ └── kadnode.postinst ├── kafs-client │ ├── Makefile │ └── patches │ │ └── res_query.patch ├── kcptun │ ├── Makefile │ ├── README.md │ └── files │ │ ├── kcptun.config │ │ └── kcptun.init ├── kea │ ├── Makefile │ ├── files │ │ ├── kea.config │ │ └── kea.init │ └── patches │ │ ├── 003-no-test-compile.patch │ │ ├── 004-use-shell-expansion-instead.patch │ │ └── 010-openssl-deprecated.patch ├── keepalived │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── etc │ │ ├── hotplug.d │ │ │ └── keepalived │ │ │ │ ├── 501-rpcd │ │ │ │ ├── 505-system │ │ │ │ ├── 511-firewall │ │ │ │ ├── 551-dnsmasq │ │ │ │ ├── 555-dropbear │ │ │ │ ├── 600-uhttpd │ │ │ │ ├── 700-luci │ │ │ │ └── 810-files │ │ ├── init.d │ │ │ └── keepalived-inotify │ │ └── uci-defaults │ │ │ └── keepalived │ │ ├── hotplug-user │ │ ├── keepalived.config │ │ ├── keepalived.init │ │ ├── keepalived.user │ │ ├── lib │ │ └── functions │ │ │ └── keepalived │ │ │ ├── common.sh │ │ │ └── hotplug.sh │ │ └── usr │ │ ├── bin │ │ └── keepalived-rsync-inotify │ │ ├── libexec │ │ ├── keepalived │ │ │ └── rpc │ │ │ │ └── sync.sh │ │ └── rpcd │ │ │ └── keepalived │ │ └── share │ │ └── keepalived │ │ └── scripts │ │ └── rsync.sh ├── knot-resolver │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── kresd.init │ │ └── root.keys │ ├── patches │ │ ├── 010-fix-lmdb.patch │ │ └── 030-fix-policy-hack.patch │ └── test.sh ├── knot │ ├── Makefile │ ├── files │ │ ├── knotd.init │ │ └── runtests.sh │ └── patches │ │ ├── 01_zscanner_tests.patch │ │ ├── 02_knot.conf.patch │ │ ├── 03_common_stats.patch │ │ └── 04_configure_fix_linking_with_libhiredis.patch ├── knxd │ ├── Makefile │ ├── files │ │ ├── knxd.config │ │ ├── knxd.ini │ │ └── knxd.init │ └── patches │ │ ├── 0099-openwrt.patch │ │ └── 0100-version.patch ├── kplex │ ├── Makefile │ ├── files │ │ └── kplex.init │ └── patches │ │ └── 100-add-support-for-Sierra-Wireless-qcserial-NMEA-0183-i.patch ├── krb5 │ ├── Makefile │ └── files │ │ └── krb5kdc ├── ksmbd-tools │ ├── Makefile │ ├── files │ │ ├── ksmbd.conf.template │ │ ├── ksmbd.config │ │ ├── ksmbd.config.example │ │ ├── ksmbd.hotplug │ │ ├── ksmbd.init │ │ └── smb.service │ └── patches │ │ └── 030-glib.patch ├── lcdringer │ ├── Makefile │ ├── files │ │ └── lcdringer.init │ └── patches │ │ └── 010-disable-check.patch ├── leech │ └── Makefile ├── lftp │ └── Makefile ├── libcurl-gnutls │ └── Makefile ├── libndp │ ├── Makefile │ └── patches │ │ └── 010-gcc14.patch ├── librespeed-go │ ├── Makefile │ └── files │ │ ├── librespeed-go.config │ │ └── librespeed-go.init ├── libreswan │ ├── Makefile │ ├── files │ │ ├── etc │ │ │ ├── config │ │ │ │ └── libreswan │ │ │ ├── hotplug.d │ │ │ │ ├── iface │ │ │ │ │ └── 89-libreswan │ │ │ │ └── libreswan │ │ │ │ │ ├── 00-default │ │ │ │ │ ├── 01-user │ │ │ │ │ ├── 02-vti │ │ │ │ │ ├── 61-iptables │ │ │ │ │ └── 62-nftables │ │ │ ├── init.d │ │ │ │ └── ipsec │ │ │ ├── ipsec.conf │ │ │ ├── ipsec.secrets │ │ │ ├── libreswan_firewall.sh │ │ │ └── uci-defaults │ │ │ │ └── 091-libreswan │ │ └── usr │ │ │ ├── libexec │ │ │ ├── ipsec │ │ │ │ └── _updown.xfrm │ │ │ └── rpcd │ │ │ │ └── libreswan │ │ │ └── share │ │ │ └── nftables.d │ │ │ ├── chain-pre │ │ │ ├── forward │ │ │ │ └── 001-libreswan.nft │ │ │ ├── input │ │ │ │ └── 001-libreswan.nft │ │ │ ├── output │ │ │ │ └── 001-libreswan.nft │ │ │ └── srcnat │ │ │ │ └── 001-libreswan.nft │ │ │ └── table-post │ │ │ └── 001-libreswan.nft │ └── patches │ │ ├── 010-nanosleep.patch │ │ ├── 020-limits.patch │ │ └── 040-disable_man.patch ├── lighttpd │ ├── Makefile │ ├── files │ │ ├── lighttpd.conf │ │ ├── lighttpd.init │ │ └── lighttpd.logrotate │ └── patches │ │ ├── 020-meson-mod_webdav_min.patch │ │ └── 030-Revert-TLS-modify-TLS-defaults-to-MinProtocol-TLSv1.3.patch ├── linknx │ ├── Makefile │ ├── files │ │ ├── linknx.config │ │ ├── linknx.init │ │ └── linknx.xml.dist │ └── patches │ │ ├── 010-cdefs.patch │ │ └── 020-configure.ac.patch ├── linuxptp │ ├── Makefile │ └── patches │ │ ├── 001-fix_kbuild_output.patch │ │ ├── 010-64bit.patch │ │ └── 020-allow-disabling-MAC-autodetection.patch ├── lksctp-tools │ └── Makefile ├── lora-gateway-hal │ ├── Config.in │ ├── Makefile │ └── patches │ │ ├── 0001-add-cmake-support.patch │ │ ├── 0002-add-preprocessing-for-SPI_DEV_PATH-and-SPI_SPEED.patch │ │ └── 0003-add-SPI_DEV_PATH-and-SPI_SPEED-to-cmake.patch ├── lynx │ ├── Makefile │ └── files │ │ ├── lynx.cfg │ │ └── lynx.lss ├── mac-telnet │ ├── Makefile │ └── files │ │ ├── mactelnet.config │ │ └── mactelnet.init ├── maccalc │ ├── Makefile │ └── src │ │ ├── Makefile │ │ └── main.c ├── mbusd │ ├── Makefile │ └── files │ │ ├── mbusd.conf │ │ └── mbusd.init ├── mdio-tools │ └── Makefile ├── mdns-repeater │ ├── Makefile │ └── files │ │ ├── mdns-repeater.init │ │ └── mdns_repeater.conf ├── mdnsresponder │ ├── Makefile │ ├── files │ │ ├── mDNSResponder.conf │ │ ├── mDNSResponder.init │ │ └── mdnsd.init │ └── patches │ │ ├── 0001-Create-subroutine-for-cleaning-recent-interfaces.patch │ │ ├── 0001-Fix-SIGSEGV-during-DumpStateLog.patch │ │ ├── 0002-Create-subroutine-for-tearing-down-an-interface.patch │ │ ├── 0002-make-Set-libdns_sd.so-soname-correctly.patch │ │ ├── 0003-Track-interface-socket-family.patch │ │ ├── 0004-Indicate-loopback-interface-to-mDNS-core.patch │ │ ├── 0005-Use-list-for-changed-interfaces.patch │ │ ├── 0005-mDNSCore-Fix-broken-debug-parameter.patch │ │ ├── 0007-Mark-deleted-interfaces-as-being-changed.patch │ │ ├── 0008-Handle-errors-from-socket-calls.patch │ │ ├── 100-linux_fixes.patch │ │ └── 120-reproducible-builds.patch ├── memcached │ ├── Makefile │ └── files │ │ ├── memcached.config │ │ └── memcached.init ├── microsocks │ ├── Makefile │ └── files │ │ ├── microsocks.config │ │ └── microsocks.init ├── mikrotik-btest │ └── Makefile ├── mini_snmpd │ ├── Makefile │ └── files │ │ ├── mini_snmpd.config │ │ └── mini_snmpd.init ├── miniupnpc │ ├── Makefile │ └── patches │ │ ├── 100-no-fPIC.patch │ │ └── 200-miniupnpc_desc.patch ├── miniupnpd │ ├── Makefile │ ├── files │ │ ├── firewall3.include │ │ ├── miniupnpd.defaults.iptables │ │ ├── miniupnpd.hotplug │ │ ├── miniupnpd.init │ │ ├── nftables.d │ │ │ ├── chain-post │ │ │ │ ├── dstnat │ │ │ │ │ └── 20-miniupnpd.nft │ │ │ │ ├── forward │ │ │ │ │ └── 20-miniupnpd.nft │ │ │ │ └── srcnat │ │ │ │ │ └── 20-miniupnpd.nft │ │ │ └── table-post │ │ │ │ └── 20-miniupnpd.nft │ │ └── upnpd.config │ └── patches │ │ ├── 200-remove-default-cflags.patch │ │ ├── 300-macos-compat.patch │ │ └── 301-ext_ip_reserved_ignore.patch ├── modemmanager │ ├── Config.in │ ├── Makefile │ ├── README.md │ ├── files │ │ ├── etc │ │ │ ├── hotplug.d │ │ │ │ ├── net │ │ │ │ │ └── 25-modemmanager-net │ │ │ │ ├── tty │ │ │ │ │ └── 25-modemmanager-tty │ │ │ │ └── wwan │ │ │ │ │ └── 25-modemmanager-wwan │ │ │ └── init.d │ │ │ │ └── modemmanager │ │ ├── lib │ │ │ └── netifd │ │ │ │ └── proto │ │ │ │ └── modemmanager.sh │ │ └── usr │ │ │ ├── lib │ │ │ └── ModemManager │ │ │ │ └── connection.d │ │ │ │ └── 10-report-down │ │ │ ├── libexec │ │ │ └── rpcd │ │ │ │ └── modemmanager │ │ │ ├── sbin │ │ │ ├── ModemManager-monitor │ │ │ └── ModemManager-wrapper │ │ │ └── share │ │ │ └── ModemManager │ │ │ └── modemmanager.common │ └── patches │ │ └── 100-ublox-remove-ID_MM_PROCESS-tags.patch ├── mosh │ └── Makefile ├── mosquitto │ ├── Config.in │ ├── Makefile │ └── files │ │ └── etc │ │ ├── config │ │ └── mosquitto │ │ └── init.d │ │ └── mosquitto ├── mptcpd │ ├── Makefile │ ├── files │ │ └── mptcpd.init │ └── patches │ │ ├── 100-include-byteswap-h.patch │ │ ├── 110-define-bswap_constant_32.patch │ │ ├── 120-no-format-security.patch │ │ ├── 130-simplify-log-function.patch │ │ └── 140-no-error-h.patch ├── mrmctl │ └── Makefile ├── mtr │ └── Makefile ├── mwan3 │ ├── Makefile │ ├── files │ │ ├── etc │ │ │ ├── config │ │ │ │ └── mwan3 │ │ │ ├── hotplug.d │ │ │ │ └── iface │ │ │ │ │ ├── 15-mwan3 │ │ │ │ │ └── 16-mwan3-user │ │ │ ├── init.d │ │ │ │ └── mwan3 │ │ │ ├── mwan3.user │ │ │ └── uci-defaults │ │ │ │ └── mwan3-migrate-flush_conntrack │ │ ├── lib │ │ │ └── mwan3 │ │ │ │ ├── common.sh │ │ │ │ └── mwan3.sh │ │ └── usr │ │ │ ├── libexec │ │ │ └── rpcd │ │ │ │ └── mwan3 │ │ │ └── sbin │ │ │ ├── mwan3 │ │ │ ├── mwan3rtmon │ │ │ └── mwan3track │ └── src │ │ └── sockopt_wrap.c ├── natmap │ ├── Makefile │ ├── files │ │ ├── natmap-update.sh │ │ ├── natmap.config │ │ └── natmap.init │ └── test.sh ├── nbd │ ├── Makefile │ └── files │ │ ├── nbd-client.conf │ │ ├── nbd-client.init │ │ ├── nbd-server.conf │ │ └── nbd-server.init ├── ncp │ └── Makefile ├── nebula │ ├── Makefile │ ├── files │ │ ├── README.md │ │ ├── nebula.init │ │ └── nebula.proto │ └── test.sh ├── net-mtools │ ├── Makefile │ ├── patches │ │ ├── 001-mreceive-refactor-multicast-joining-to-separate-func.patch │ │ ├── 002-mreceive-join-IGMP-group-by-interface.patch │ │ ├── 003-mreceive-support-IPv6.patch │ │ ├── 004-msend-support-IPv6.patch │ │ ├── 005-mreceive-msend-add-new-I-option-to-the-help-text.patch │ │ ├── 006-msend-send-a-limited-number-of-test-packets.patch │ │ └── 100-mreceive-msend-fix-wrong-version-in-v-output.patch │ └── test.sh ├── net-snmp │ ├── Config.in.wut │ ├── Makefile │ ├── files │ │ ├── snmpd.conf │ │ ├── snmpd.init │ │ └── snmptrapd.init │ └── patches │ │ ├── 000-cross-compile.patch │ │ ├── 010-HOST-MIB-hr_filesys-fix-compile-error.patch │ │ ├── 100-debian-statistics.patch │ │ ├── 110-debian-makefiles.patch │ │ ├── 120-debian-searchdirs.patch │ │ ├── 130-debian-extramibs.patch │ │ ├── 160-no_ldconfig.patch │ │ ├── 161-project_types.patch │ │ ├── 170-ldflags.patch │ │ ├── 200-add-pcre2-support.patch │ │ ├── 201-Run-autoreconf.patch │ │ ├── 202-Improve-pcre2-support.patch │ │ ├── 203-if-mib-data_access-interface.c-plug-a-leak-with-pcre.patch │ │ ├── 750-ieee802dot11.patch │ │ ├── 751-gcc-14-fix.patch │ │ ├── 900-musl-compat.patch │ │ └── 990-remove-semicolon-check-in-macros.patch ├── net-tools │ └── Makefile ├── netatalk │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── a2boot.conf │ │ ├── a2boot.init │ │ ├── afpd.conf │ │ ├── afpd.init │ │ ├── atalkd.conf │ │ ├── atalkd.init │ │ ├── macipgw.conf │ │ ├── macipgw.init │ │ ├── papd.conf │ │ ├── papd.init │ │ ├── timelord.conf │ │ └── timelord.init ├── netavark │ └── Makefile ├── netbird │ ├── Makefile │ ├── files │ │ └── netbird.init │ └── test.sh ├── netcat │ ├── Makefile │ └── patches │ │ ├── 001-netcat_flag_count.patch │ │ └── 002-udp_listen_fix.patch ├── netdiscover │ ├── Makefile │ └── patches │ │ └── 010-gcc10.patch ├── netifyd │ ├── Config.in │ ├── Makefile │ ├── README.md │ └── files │ │ ├── netifyd.config │ │ └── netifyd.init ├── netopeer2 │ ├── Makefile │ └── files │ │ ├── netopeer2-server-merge-config.default │ │ ├── netopeer2-server-merge-hostkey.default │ │ ├── netopeer2-server-setup.default │ │ └── netopeer2-server.init ├── netperf │ ├── Makefile │ ├── files │ │ └── netserver.init │ └── patches │ │ └── 010-gcc10_multiple_definition_fix.patch ├── netsniff-ng │ ├── Makefile │ └── patches │ │ ├── 0001-configure-script-honors-C-LD-FLAGS.patch │ │ ├── 0002-fix-ncurses-check-during-configure.patch │ │ ├── 0003-removed-flowtop-pkg-config-usage-for-ncurses.patch │ │ └── 0004-mausezahn-use-getopt_long-instead-of-getopt.patch ├── netstinky │ ├── Makefile │ ├── files │ │ ├── nsids.conf │ │ └── nsids.init │ └── patches │ │ └── 010-openssl-deprecated.patch ├── nextdns │ ├── Makefile │ └── files │ │ ├── nextdns.config │ │ └── nextdns.defaults ├── nfdump │ ├── Makefile │ ├── files │ │ ├── nfcapd.config │ │ └── nfcapd.init │ └── patches │ │ └── 010-gcc14.patch ├── nfs-kernel-server │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── nfsd.exports │ │ └── nfsd.init │ └── patches │ │ ├── 101-musl-getservbyport.patch │ │ ├── 110-move-hardcoded-rundir.patch │ │ ├── 130-musl-svcgssd-sysconf.patch │ │ └── 200-fix-macos-build.patch ├── nft-qos │ ├── Makefile │ └── files │ │ ├── lib │ │ ├── core.sh │ │ ├── dynamic.sh │ │ ├── mac.sh │ │ ├── monitor.sh │ │ ├── priority.sh │ │ └── static.sh │ │ ├── nft-qos-dynamic.hotplug │ │ ├── nft-qos-monitor.hotplug │ │ ├── nft-qos.config │ │ └── nft-qos.init ├── nginx-util │ ├── Makefile │ ├── files │ │ ├── README.sh │ │ ├── nginx.config │ │ ├── restrict_locally │ │ └── uci.conf.template │ └── src │ │ ├── .clang-format │ │ ├── .clang-tidy │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── nginx-ssl-util.hpp │ │ ├── nginx-util.cpp │ │ ├── nginx-util.hpp │ │ ├── px5g-openssl.hpp │ │ ├── px5g.cpp │ │ ├── regex-pcre.hpp │ │ ├── test-nginx-util-root.sh │ │ ├── test-nginx-util.sh │ │ ├── test-px5g.sh │ │ ├── ubus-cxx.cpp │ │ ├── ubus-cxx.hpp │ │ ├── uci-cxx.cpp │ │ └── uci-cxx.hpp ├── nginx │ ├── Config_ssl.in │ ├── Makefile │ ├── files-luci-support │ │ ├── 60_nginx-luci-support │ │ └── luci.locations │ ├── files │ │ └── nginx.init │ └── patches │ │ ├── nginx-mod-dav-ext │ │ └── 100-drop-libxslt-dep.patch │ │ ├── nginx-mod-lua-resty-core │ │ └── 001-feature_support_pcre2.patch │ │ ├── nginx-mod-lua │ │ ├── 001-feature_support_pcre2.patch │ │ ├── 100-no_by_lua_block.patch │ │ └── 101-bugfix-don-t-include-pcre.h-with-PCRE2-used.patch │ │ ├── nginx-mod-njs │ │ ├── 101-feature_test_fix.patch │ │ ├── 102-sizeof_test_fix.patch │ │ └── 104-endianness_fix.patch │ │ ├── nginx-mod-rtmp │ │ └── 100-bigedian.patch │ │ └── nginx │ │ ├── 101-feature_test_fix.patch │ │ ├── 102-sizeof_test_fix.patch │ │ ├── 103-sys_nerr.patch │ │ ├── 104-endianness_fix.patch │ │ ├── 105-optional-libexslt.patch │ │ ├── 106-libxslt-fix-detection.patch │ │ ├── 200-config.patch │ │ ├── 201-ignore-invalid-options.patch │ │ ├── 202-fix-fPIC-on-link.patch │ │ └── 300-fix-deprecated-openssl-3_0.patch ├── ngircd │ ├── Makefile │ └── files │ │ └── ngircd.init ├── nlbwmon │ ├── Makefile │ └── files │ │ ├── nlbwmon.config │ │ ├── nlbwmon.hotplug │ │ └── nlbwmon.init ├── nmap │ ├── Makefile │ └── patches │ │ ├── 030-ncat-drop-ca-bundle.patch │ │ └── 100-nsock-Fix-compilation-error-with-OPENSSL_NO_DTLS.patch ├── nqptp │ ├── Makefile │ └── files │ │ └── nqptp.init ├── nsd │ ├── Makefile │ ├── files │ │ └── nsd.init │ └── patches │ │ └── 010-Fix-build-with-without-ssl.patch ├── ntpd │ ├── Makefile │ ├── README.md │ └── files │ │ ├── ntpd.hotplug │ │ ├── ntpd.hotplug-helper │ │ ├── ntpd.init │ │ └── ntpdate.init ├── ntripcaster │ └── Makefile ├── ntripclient │ ├── Makefile │ └── patches │ │ └── 100-musl-compat.patch ├── ntripserver │ └── Makefile ├── nut │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── 30-libhid-ups.head │ │ ├── 30-libhid-ups.tail │ │ ├── add_nut_httpd_conf │ │ ├── nut-cgi.init │ │ ├── nut-monitor.init │ │ ├── nut-sched.default │ │ ├── nut-sendmail-notify │ │ ├── nut-sendmail-notify.default │ │ ├── nut-server.init │ │ ├── nut.service │ │ ├── nut_cgi │ │ ├── nut_monitor │ │ ├── nut_serial.hotplug │ │ ├── nut_server │ │ └── nutshutdown ├── obfs4proxy │ └── Makefile ├── ocserv │ ├── Config.in │ ├── Makefile │ ├── README │ └── files │ │ ├── config │ │ ├── ocserv.conf.template │ │ ├── ocserv.init │ │ └── ocserv.upgrade ├── ola │ ├── Makefile │ ├── files │ │ └── olad.init │ └── patches │ │ ├── 010-no-werror.patch │ │ ├── 020-static-protoc.patch │ │ ├── 030-musl-123.patch │ │ ├── 200-configure-acx-pthread.patch │ │ └── 201-automake-fix.patch ├── onionshare-cli │ └── Makefile ├── oor │ ├── Makefile │ └── patches │ │ └── 010-gcc10.patch ├── open-iscsi │ ├── Makefile │ ├── files │ │ ├── iscsi-gen-initiatorname │ │ ├── iscsi_discovery │ │ ├── iscsi_fw_login │ │ ├── iscsi_offload │ │ └── open-iscsi │ └── patches │ │ ├── 0002-idmb_rec_write-check-for-tpgt-first.patch │ │ ├── 0003-idbm_rec_write-seperate-old-and-new-style-writes.patch │ │ ├── 0015-remove-the-offload-boot-supported-ifdef.patch │ │ ├── 0019-Coverity-scan-fixes.patch │ │ └── 0998-path_adjustments.patch ├── open-isns │ ├── Makefile │ └── patches │ │ ├── 01-security_mode.patch │ │ ├── 02-fix_signed_vs_unsigned.patch │ │ ├── 03-include_poll_h.patch │ │ ├── 04-ignore_write.patch │ │ ├── 10-without_deprecated_openssl.patch │ │ └── 20-signals.patch ├── openappid │ └── Makefile ├── openconnect │ ├── Config.in │ ├── Makefile │ ├── README │ ├── files │ │ ├── openconnect-wrapper │ │ ├── openconnect.sh │ │ └── openconnect.upgrade │ └── patches │ │ ├── 010-libxml212.patch │ │ └── 020-anyconnect.patch ├── openelp │ ├── Makefile │ ├── files │ │ └── openelp.init │ └── test.sh ├── openfortivpn │ ├── Makefile │ └── files │ │ ├── openfortivpn-ppp-up │ │ ├── openfortivpn-wrapper │ │ ├── openfortivpn.sh │ │ └── openfortivpn.upgrade ├── openlist │ ├── Makefile │ ├── files │ │ ├── openlist.config │ │ ├── openlist.init │ │ └── openlist.uci │ └── test.sh ├── openssh │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── sftp-ssh.service │ │ ├── sshd.failsafe │ │ ├── sshd.init │ │ ├── sshd.pam │ │ └── sshd.pam-access │ └── patches │ │ └── 900-sshd_config-include-dir.patch ├── openthread-br │ ├── Makefile │ ├── README.md │ └── files │ │ └── openthread-proto.sh ├── opentracker │ ├── Makefile │ ├── files │ │ └── opentracker.init │ └── patches │ │ └── 100-makefile.patch ├── openvpn-easy-rsa │ ├── Makefile │ ├── files │ │ ├── openvpn-easy-rsa.profile │ │ └── openvpn-easy-rsa.upgrade │ └── patches │ │ └── 100-Make-package-reproducible.patch ├── openvpn │ ├── Config-mbedtls.in │ ├── Config-openssl.in │ ├── Config-wolfssl.in │ ├── Makefile │ ├── files │ │ ├── etc │ │ │ ├── hotplug.d │ │ │ │ └── openvpn │ │ │ │ │ └── 01-user │ │ │ └── openvpn.user │ │ ├── lib │ │ │ └── functions │ │ │ │ └── openvpn.sh │ │ ├── openvpn.config │ │ ├── openvpn.init │ │ ├── openvpn.options │ │ ├── openvpn.upgrade │ │ └── usr │ │ │ └── libexec │ │ │ └── openvpn-hotplug │ ├── patches │ │ ├── 100-mbedtls-disable-runtime-version-check.patch │ │ ├── 101-Fix-EVP_PKEY_CTX_-compilation-with-wolfSSL.patch │ │ ├── 102-Disable-external-ec-key-support-when-building-with-wolfSSL.patch │ │ └── 103-define-LN_serialNumber-for-wolfSSL.patch │ └── test.sh ├── openvswitch │ ├── Config.in │ ├── Makefile │ ├── README.md │ ├── files │ │ ├── openvswitch.config │ │ ├── openvswitch.init │ │ └── ovs-ctl-wrapper │ ├── openvswitch.mk │ └── patches │ │ ├── 0001-netdev-linux-Let-interface-flag-survive-internal-por.patch │ │ ├── 0002-python-separate-host-target-python-for-cross-compile.patch │ │ ├── 0003-ovs-lib-fix-install_dir.patch │ │ ├── 0004-build-trim-build.patch │ │ ├── 0006-datapath-allow-passing-additional-OVS_KERNEL_MAKE_FL.patch │ │ ├── 0007-build-only-link-libopenvswitch-with-libunwind-libunb.patch │ │ └── 0008-backport-d94cd0d-ovsdb-idl-Support-write-only-change.patch ├── ostiary │ ├── Makefile │ ├── files │ │ └── ostiaryd.init │ └── patches │ │ └── 010-gcc14.patch ├── overture │ ├── Makefile │ ├── files │ │ ├── domain_alternative_sample │ │ ├── domain_primary_sample │ │ ├── domain_ttl_sample │ │ ├── hosts_sample │ │ ├── ip_network_alternative_sample │ │ ├── ip_network_primary_sample │ │ └── overture.init │ └── patches │ │ └── 001-fix-go-sum.patch ├── ovn │ ├── Makefile │ └── patches │ │ ├── 0001-build-skip-check-and-use-of-libunbound.patch │ │ ├── 0002-build-skip-tests-and-docs.patch │ │ ├── 0003-ovn-lib-fix-install_dir.patch │ │ └── 0004-fix-use-of-possible-uninitialized-var.patch ├── ovsd │ ├── Makefile │ └── files │ │ ├── etc │ │ └── init.d │ │ │ └── ovsd │ │ └── lib │ │ └── netifd │ │ └── ubusdev-config │ │ └── ovsd.json ├── owipcalc │ ├── Makefile │ └── src │ │ ├── main.c │ │ ├── owipcalc.c │ │ └── owipcalc.h ├── p910nd │ ├── Makefile │ └── files │ │ ├── p910nd.config │ │ ├── p910nd.hotplug │ │ └── p910nd.init ├── pagekitec │ ├── Makefile │ ├── files │ │ └── etc │ │ │ ├── config │ │ │ └── pagekitec │ │ │ └── init.d │ │ │ └── pagekitec │ └── patches │ │ ├── 0001-Fix-to-work-ok-with-64-bit-time_t-time64.patch │ │ └── 0002-pagekitec-status-files-correctly-support-64bit-time.patch ├── pbr │ ├── Makefile │ ├── files │ │ ├── README.md │ │ ├── etc │ │ │ ├── config │ │ │ │ ├── pbr │ │ │ │ ├── pbr-iptables │ │ │ │ └── pbr.iptables │ │ │ ├── hotplug.d │ │ │ │ ├── firewall │ │ │ │ │ └── 70-pbr │ │ │ │ └── iface │ │ │ │ │ └── 70-pbr │ │ │ ├── init.d │ │ │ │ ├── pbr │ │ │ │ └── pbr-iptables │ │ │ └── uci-defaults │ │ │ │ ├── 90-pbr │ │ │ │ ├── 91-pbr │ │ │ │ ├── 91-pbr-iptables │ │ │ │ ├── 91-pbr-netifd │ │ │ │ ├── 91-pbr-nft │ │ │ │ └── 99-pbr-version │ │ └── usr │ │ │ └── share │ │ │ ├── nftables.d │ │ │ ├── chain-post │ │ │ │ ├── mangle_forward │ │ │ │ │ └── 30-pbr.nft │ │ │ │ ├── mangle_input │ │ │ │ │ └── 30-pbr.nft │ │ │ │ ├── mangle_output │ │ │ │ │ └── 30-pbr.nft │ │ │ │ ├── mangle_postrouting │ │ │ │ │ └── 30-pbr.nft │ │ │ │ └── mangle_prerouting │ │ │ │ │ └── 30-pbr.nft │ │ │ ├── chain-pre │ │ │ │ └── dstnat │ │ │ │ │ └── 30-pbr.nft │ │ │ └── table-post │ │ │ │ └── 30-pbr.nft │ │ │ └── pbr │ │ │ ├── .keep │ │ │ ├── firewall.include │ │ │ ├── pbr.firewall.include │ │ │ ├── pbr.user.aws │ │ │ ├── pbr.user.aws-iptables │ │ │ ├── pbr.user.dnsprefetch │ │ │ ├── pbr.user.netflix │ │ │ ├── pbr.user.netflix-iptables │ │ │ └── pbr.user.wg_server_and_client │ └── test.sh ├── pdns-recursor │ ├── Makefile │ ├── files │ │ ├── pdns-recursor.init │ │ └── recursor.conf-dist │ └── patches │ │ ├── 100-disable-recursor.yml-dist.patch │ │ ├── 200-boost_thread_fix.patch │ │ └── 300-boost-dont-search-host-dirs.patch ├── pdns │ ├── Makefile │ ├── files │ │ ├── pdns.conf-dist │ │ └── pdns.init │ └── patches │ │ └── 100-pdns-disable-pdns.conf-dist.patch ├── pen │ ├── Makefile │ └── patches │ │ └── 010-deprecated-openssl.patch ├── phantap │ └── Makefile ├── pingcheck │ ├── Makefile │ └── pingcheck.init ├── pixiewps │ └── Makefile ├── port-mirroring │ ├── Makefile │ └── patches │ │ ├── 010-snprintf-to-strncpy.patch │ │ └── 020-time.patch ├── pppossh │ ├── Makefile │ ├── README.md │ └── files │ │ └── pppossh.sh ├── pptpd │ ├── Makefile │ ├── files │ │ ├── options.pptpd │ │ ├── pptpd.conf │ │ ├── pptpd.config │ │ └── pptpd.init │ └── patches │ │ ├── 001-bad_pqueue_debug.patch │ │ ├── 002-makefile_fix.patch │ │ ├── 003-opt_flags.patch │ │ └── 100-musl-compat.patch ├── privoxy │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── privoxy.config │ │ ├── privoxy.hotplug │ │ ├── privoxy.init │ │ └── privoxy.upgrade │ └── patches │ │ ├── 100-Add-pcre2-support.patch │ │ ├── 101-Add-regex_matches-to-reduce-HAVE_PCRE2-ifdefs.patch │ │ ├── 102-configure-Fix-disable-pcre2.patch │ │ └── 103-pcre2-compile_pattern-Actually-pass-the-anchored-pat.patch ├── prosody │ ├── Makefile │ └── files │ │ ├── prosody.cfg.lua │ │ └── prosody.init ├── proxychains-ng │ └── Makefile ├── ptunnel-ng │ ├── Makefile │ └── patches │ │ └── 010-musl.patch ├── qcsuper │ └── Makefile ├── radicale │ ├── Makefile │ ├── files │ │ ├── config.template │ │ ├── logging.template │ │ ├── radicale.config │ │ ├── radicale.hotplug │ │ ├── radicale.init │ │ ├── radicale.rights │ │ └── radicale.users │ └── patches │ │ └── 010-Run-as-user-group-radicale-radicale.patch ├── radicale2 │ ├── Makefile │ ├── files │ │ ├── radicale2.config │ │ └── radicale2.init │ └── patches │ │ └── 110-disable-setup_requirements.patch ├── radsecproxy │ ├── Makefile │ ├── files │ │ ├── radsecproxy.conf │ │ └── radsecproxy.init │ └── patches │ │ ├── 200-logdest-on-foreground.patch │ │ └── 300-uninit.patch ├── ratched │ ├── Makefile │ └── patches │ │ ├── 0001-Disable-non-IANA-TLS-extensions.patch │ │ └── 0002-openssl-fix-compilation-without-deprecated-APIs.patch ├── ratechecker │ └── Makefile ├── ratelimit │ └── Makefile ├── rclone-ng │ └── Makefile ├── rclone-webui-react │ └── Makefile ├── rclone │ ├── Makefile │ ├── files │ │ ├── rclone.config │ │ └── rclone.init │ ├── patches │ │ ├── 001-ftp-allow-insecure-TLS-ciphers-fixes-8701.patch │ │ └── 010-disable-plugins.patch │ └── test.sh ├── reaver │ └── Makefile ├── redsocks │ ├── Makefile │ ├── files │ │ ├── redsocks.conf │ │ └── redsocks.init │ └── patches │ │ ├── 0006-fix_default_config_location.patch │ │ └── 100_use_cc_dumpmachine_instead_of_uname.patch ├── remserial │ ├── Makefile │ └── patches │ │ └── 010-gcc14.patch ├── respondd │ ├── Makefile │ └── files │ │ ├── respondd.config │ │ └── respondd.init ├── restic-rest-server │ ├── Makefile │ └── files │ │ └── etc │ │ ├── config │ │ └── restic-rest-server │ │ └── init.d │ │ └── restic-rest-server ├── rp-pppoe │ ├── Makefile │ └── files │ │ ├── ppp │ │ ├── options │ │ ├── pap-secrets │ │ └── pppoe-server-options │ │ ├── ppp_defs.h │ │ ├── pppoe-relay.default │ │ ├── pppoe-relay.init │ │ ├── pppoe-server.default │ │ ├── pppoe-server.init │ │ └── pppoe.config ├── rpcbind │ ├── Makefile │ ├── files │ │ └── rpcbind.init │ └── patches │ │ └── 001-CVE-2017-8779-dos-via-memory-consumption.patch ├── rsync │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── rsyncd.conf │ │ └── rsyncd.init ├── rtorrent │ ├── Makefile │ └── patches │ │ ├── 120-fix-ncurses.patch │ │ └── 130-usleep.patch ├── safe-search │ ├── Makefile │ ├── Readme.md │ └── files │ │ ├── hosts │ │ ├── bing.default │ │ ├── duckduckgo.default │ │ ├── google.default │ │ ├── youtube.restrict │ │ └── youtube.restrictmoderate │ │ ├── safe-search-maintenance │ │ ├── safe-search-update │ │ ├── safe-search.conf │ │ └── safe-search.defaults ├── samba4 │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── samba.config │ │ ├── samba.init │ │ └── smb.conf.template │ ├── patches │ │ ├── 003-getpwent_r.patch │ │ ├── 004-missing-headers.patch │ │ ├── 005-musl_uintptr.patch │ │ ├── 007-libldb-fix-musl-libc-unkown-type-error.patch │ │ ├── 008-samba-4.11-add_missing___compar_fn_t.patch │ │ ├── 009-samba-4-11-fix-host-tools-checks.patch.patch │ │ ├── 010-samba-4-12-fix-musl_missing__nss_buflen_passwd.patch │ │ ├── 011-samba-4-14-disable-python-module-host-check.patch │ │ ├── 020-source3-msgsock-nvram-fix.patch │ │ ├── 021-source4-msgsock-nvram-fix.patch │ │ ├── 101-do-not-check-xsltproc-manpages.patch │ │ ├── 102-samba-4.11-unbundle-libbsd.patch │ │ ├── 103-samba-4.12-unbundle-libunwind.patch │ │ ├── 104-samba-4.12-unbundle-icu.patch │ │ └── 105-perl-json-pp.patch │ └── waf-cross-answers │ │ ├── aarch64.txt │ │ ├── arc.txt │ │ ├── arm.txt │ │ ├── armeb.txt │ │ ├── i386.txt │ │ ├── mips.txt │ │ ├── mips64.txt │ │ ├── mips64el.txt │ │ ├── mipsel.txt │ │ ├── powerpc.txt │ │ ├── powerpc64.txt │ │ ├── riscv64.txt │ │ └── x86_64.txt ├── samplicator │ ├── Makefile │ └── files │ │ ├── samplicator.conf │ │ └── samplicator.init ├── scapy │ └── Makefile ├── ser2net │ ├── Makefile │ └── files │ │ ├── ser2net.config │ │ ├── ser2net.init │ │ └── ser2net.yaml ├── shadowsocks-libev │ ├── Makefile │ ├── README.md │ ├── files │ │ ├── shadowsocks-libev.config │ │ ├── shadowsocks-libev.init │ │ └── ss-rules │ │ │ ├── chain.uc │ │ │ ├── set.uc │ │ │ └── ss-rules.uc │ └── patches │ │ └── 100-Upgrade-PCRE-to-PCRE2.patch ├── shorewall-core │ ├── Makefile │ └── patches │ │ └── 110-lib.common.patch ├── shorewall-lite │ ├── Makefile │ ├── files │ │ ├── hostname │ │ ├── hotplug_iface │ │ ├── shorewall-lite.init │ │ └── vardir │ └── patches │ │ ├── 010-install_cp.patch │ │ ├── 020-set-PATH.patch │ │ └── 120-logfile.patch ├── shorewall │ ├── Makefile │ ├── files │ │ ├── hostname │ │ ├── hotplug_iface │ │ ├── shorewall.init │ │ └── vardir │ └── patches │ │ ├── 120-logfile.patch │ │ └── 130-set-path.patch ├── shorewall6-lite │ ├── Makefile │ ├── files │ │ ├── hostname │ │ ├── hotplug_iface │ │ ├── shorewall6-lite.init │ │ └── vardir │ └── patches │ │ ├── 010-install_cp.patch │ │ ├── 020-set-PATH.patch │ │ └── 120-logfile.patch ├── shorewall6 │ ├── Makefile │ ├── files │ │ ├── hostname │ │ ├── hotplug_iface │ │ ├── shorewall6.init │ │ └── vardir │ └── patches │ │ ├── 120-logfile.patch │ │ └── 130-set-path.patch ├── siit │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── siit.c │ │ └── siit.h ├── simple-captive-portal │ ├── Makefile │ ├── README.md │ └── files │ │ ├── etc │ │ ├── config │ │ │ └── simple-captive-portal │ │ ├── hotplug.d │ │ │ └── net │ │ │ │ └── 00-simple-captive-portal │ │ ├── init.d │ │ │ └── simple-captive-portal │ │ └── simple-captive-portal │ │ │ └── index.html │ │ └── usr │ │ └── share │ │ └── simple-captive-portal │ │ ├── capabilities.json │ │ ├── portal.lua │ │ └── redirect.lua ├── sing-box │ ├── Makefile │ ├── files │ │ ├── sing-box.conf │ │ └── sing-box.init │ └── test.sh ├── slirp4netns │ └── Makefile ├── smartdns │ └── Makefile ├── smcroute │ ├── Makefile │ └── files │ │ └── smcroute.init ├── snort3 │ ├── Makefile │ ├── files │ │ ├── main.uc │ │ ├── nftables.uc │ │ ├── snort-mgr │ │ ├── snort-rules │ │ ├── snort.config │ │ ├── snort.init │ │ └── snort.uc │ └── patches │ │ └── 100-remove-HAVE_HS_COMPILE_LIT-to-work-around-upstream-b.patch ├── snowflake │ ├── Makefile │ └── files │ │ └── snowflake-proxy.init ├── socat │ ├── Makefile │ └── files │ │ ├── socat.config │ │ └── socat.init ├── softethervpn │ ├── Makefile │ ├── files │ │ ├── dummy │ │ ├── launcher.sh │ │ ├── vpnbridge.init │ │ ├── vpnclient.init │ │ └── vpnserver.init │ └── patches │ │ ├── 103-noeucjp.patch │ │ ├── 110-no-m64.patch │ │ ├── 120-openssl-deprecated.patch │ │ └── 140_allow-to-redefine-ar-and-ranlib.patch ├── softethervpn5 │ ├── Makefile │ ├── files │ │ ├── dummy │ │ ├── launcher.sh │ │ ├── vpnbridge.init │ │ ├── vpnclient.init │ │ └── vpnserver.init │ └── patches │ │ ├── 001-iconv-cmake-fix.patch │ │ ├── 002-pthread-include-fix.patch │ │ ├── 100-increase-cfg-save-intervall.patch │ │ └── 101-add-config-write-syslog.patch ├── softflowd │ ├── Makefile │ ├── files │ │ ├── softflowd.config │ │ └── softflowd.init │ └── patches │ │ └── 030-Use-lld-for-time_t-always.patch ├── spawn-fcgi │ └── Makefile ├── speedtest-go │ └── Makefile ├── speedtest-netperf │ ├── Makefile │ └── files │ │ ├── README.md │ │ └── speedtest-netperf.sh ├── speedtestcpp │ └── Makefile ├── spoofer │ └── Makefile ├── sqm-scripts │ └── Makefile ├── squid │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── squid.conf │ │ ├── squid.config │ │ └── squid.init │ └── patches │ │ └── 020-fix-nettle-configure.patch ├── sscep │ ├── Makefile │ └── test.sh ├── sshfs │ └── Makefile ├── sshtunnel │ ├── Makefile │ └── files │ │ ├── sshtunnel.init │ │ └── uci_sshtunnel ├── sslh │ ├── Makefile │ ├── files │ │ ├── sslh.config │ │ └── sslh.init │ └── patches │ │ └── 001-configfile-fix.patch ├── sstp-client │ ├── Makefile │ ├── files │ │ ├── etc │ │ │ └── ppp │ │ │ │ ├── chap-secrets │ │ │ │ └── peers │ │ │ │ ├── peer-sstp-example-nopty.txt │ │ │ │ └── peer-sstp-example.txt │ │ └── lib │ │ │ └── netifd │ │ │ └── proto │ │ │ └── sstp.sh │ └── patches │ │ ├── 100-musl-compat.patch │ │ └── 200-openssl-deprecated.patch ├── static-neighbor-reports │ ├── Makefile │ ├── README.md │ └── files │ │ ├── reload-neighbor-reports.lua │ │ ├── static-neighbor-report.conf │ │ └── static-neighbor-reports.init ├── strongswan │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── etc │ │ │ └── hotplug.d │ │ │ │ └── ipsec │ │ │ │ └── 01-user │ │ ├── gencerts.sh │ │ ├── ipsec.config │ │ ├── ipsec.init │ │ ├── ipsec.secrets │ │ ├── ipsec.user │ │ └── swanctl.init │ └── patches │ │ ├── 0001-pf-handler-Fix-build-with-musl-C-library.patch │ │ ├── 0002-farp_spoofer-Fix-build-with-musl-C-library.patch │ │ ├── 0003-undef-wolfssl-RNG.patch │ │ ├── 0005-pf-handler-Accept-loopback-interfaces-as-packet-sour.patch │ │ ├── 0006-pf-handler-Correctly-bind-packet-socket-to-an-interf.patch │ │ ├── 0007-dhcp-Add-option-to-bind-the-receive-socket-to-a-diff.patch │ │ ├── 0900-src-Patch-for-building-with-musl-on-openwrt-taken-ve.patch │ │ ├── 0901-uci-verbatim-patch-from-openwrt-package-sources.patch │ │ ├── 0903-updown-Call-sbin-hotplug-call-ipsec-1-in-updown-scri.patch │ │ ├── 0904-gmpdh-Plugin-that-implements-gmp-DH-functions-in-an-.patch │ │ └── 0905-wolfssl-parse_error.patch ├── stubby │ ├── Makefile │ └── files │ │ ├── README.md │ │ ├── stubby.conf │ │ ├── stubby.init │ │ └── stubby.yml ├── stunnel │ ├── Makefile │ └── files │ │ ├── stunnel.conf │ │ ├── stunnel.init │ │ └── stunnel.uci ├── subversion │ ├── Makefile │ ├── files │ │ ├── subversion.config │ │ └── subversion.init │ └── patches │ │ └── 301-cross-compilation-macos.patch ├── switchdev-poller │ ├── Makefile │ └── files │ │ ├── switchdev-poller │ │ └── switchdev-poller.init ├── sysrepo │ ├── Makefile │ ├── files │ │ ├── libsysrepo.default │ │ └── sysrepo.init │ └── patches │ │ ├── 001-add-generated-protobufc-files.patch │ │ ├── 006-update-generated-protobufc-files.patch │ │ └── 009-fix_inclusion.patch ├── tac_plus │ ├── Makefile │ ├── files │ │ ├── tac_plus.conf │ │ └── tac_plus.init │ └── patches │ │ ├── 010-configure-remove-libnsl.patch │ │ └── 020-gcc14.patch ├── tailscale │ ├── Makefile │ ├── README.md │ ├── files │ │ ├── tailscale.conf │ │ └── tailscale.init │ └── test.sh ├── tcpproxy │ ├── Makefile │ ├── files │ │ ├── tcpproxy.config │ │ └── tcpproxy.init │ └── patches │ │ ├── 001-ragel_generated.patch │ │ ├── 010-format.patch │ │ └── 100-remove-build-timestamps-build-hostname.patch ├── tcpreplay │ ├── Makefile │ └── test.sh ├── telnet-bsd │ ├── Makefile │ └── patches │ │ ├── 001-telnet-bsd-1.2-fbsd.patch │ │ ├── 002-dont-compile-telnetd.patch │ │ ├── telnet-bsd-1.2-format-security.patch │ │ └── telnet-bsd-1.2-musl.patch ├── tgt │ ├── Makefile │ ├── files │ │ ├── tgt.config │ │ └── tgt.init │ ├── patches │ │ ├── 020-usr_Makefile.patch │ │ └── 030-Makefile.patch │ └── test.sh ├── tinc │ ├── Makefile │ ├── files │ │ ├── tinc.config │ │ ├── tinc.init │ │ └── tinc.upgrade │ └── patches │ │ └── 010-code-libtool.patch ├── tinyproxy │ ├── Makefile │ ├── files │ │ ├── tinyproxy.config │ │ └── tinyproxy.init │ └── patches │ │ ├── 020-config_and_pid-path.patch │ │ └── 120-fix_INET6.patch ├── tmate-ssh-server │ ├── Makefile │ ├── files │ │ ├── tmate-ssh-server.config │ │ └── tmate-ssh-server.init │ └── patches │ │ └── 010-msgpack-c.patch ├── tmate │ ├── Makefile │ ├── patches │ │ ├── 010-Avoid-initializing-stdout-twice.patch │ │ └── 020-msgpack-c.patch │ └── test.sh ├── tor-hs │ ├── Makefile │ ├── README.md │ └── files │ │ ├── nextcloud-update.sh │ │ ├── tor-hs.conf │ │ ├── tor-hs.init │ │ └── tor_rpcd.sh ├── tor │ ├── Makefile │ ├── files │ │ ├── tor.conf │ │ └── tor.init │ └── patches │ │ └── 001-torrc.patch ├── torsocks │ └── Makefile ├── trafficshaper │ ├── Makefile │ └── files │ │ ├── trafficshaper.conf │ │ └── trafficshaper.init ├── transmission-web-control │ ├── Makefile │ └── patches │ │ └── 001-remove-ui-original-link.patch ├── transmission │ ├── Makefile │ ├── files │ │ ├── transmission-daemon.json │ │ ├── transmission.config │ │ ├── transmission.init │ │ └── transmission.sysctl │ └── patches │ │ └── 010-temp-miniupnpc-2.2.8-compile.patch ├── travelmate │ ├── Makefile │ └── files │ │ ├── README.md │ │ ├── chs-hotel.login │ │ ├── generic-user-pass.login │ │ ├── h-hotels.login │ │ ├── hreward.login │ │ ├── julianahoeve.login │ │ ├── telekom.login │ │ ├── tplink-omada.login │ │ ├── travelmate.conf │ │ ├── travelmate.init │ │ ├── travelmate.mail │ │ ├── travelmate.sh │ │ ├── travelmate.vpn │ │ ├── travelmate_ntp.hotplug │ │ ├── vodafone.login │ │ └── wifibahn.login ├── trojan-go │ ├── Makefile │ └── test.sh ├── tunneldigger-broker │ ├── Makefile │ └── files │ │ ├── config.default │ │ ├── hook-connection-rate-limit │ │ ├── hook-mtu-changed │ │ ├── hook-setup │ │ ├── hook-teardown │ │ ├── tunneldigger-broker.init │ │ └── tunneldigger.sh ├── tunneldigger │ ├── Makefile │ └── files │ │ ├── config.default │ │ └── tunneldigger.init ├── u2pnpd │ ├── Makefile │ └── files │ │ ├── u2pnpd.config │ │ ├── u2pnpd.defaults │ │ └── u2pnpd.init ├── uacme │ ├── Makefile │ └── files │ │ ├── acme.config │ │ ├── acme.init │ │ └── run.sh ├── uanytun │ ├── Makefile │ └── files │ │ ├── uanytun-nocrypt.config │ │ ├── uanytun.config │ │ └── uanytun.init ├── udhcpsnoop │ ├── Makefile │ └── files │ │ └── etc │ │ ├── config │ │ └── dhcpsnoop │ │ └── init.d │ │ └── dhcpsnoop ├── udp-broadcast-relay-redux-openwrt │ ├── Makefile │ └── files │ │ ├── udp-broadcast-relay-redux.init │ │ └── udp_broadcast_relay_redux.config ├── udphp-client │ └── Makefile ├── udpspeeder │ ├── Makefile │ └── files │ │ ├── udpspeeder-config │ │ └── udpspeeder-init ├── udptunnel │ ├── Makefile │ └── patches │ │ ├── 001-multicast.patch │ │ ├── 002-main_code_fix.patch │ │ └── 010-gcc14.patch ├── udpxy │ ├── Makefile │ └── files │ │ ├── udpxy.conf │ │ └── udpxy.init ├── ulogd │ ├── Makefile │ └── files │ │ └── ulogd.init ├── umurmur │ └── Makefile ├── unbound │ ├── Makefile │ ├── files │ │ ├── README.md │ │ ├── defaults.sh │ │ ├── dnsmasq.sh │ │ ├── iptools.sh │ │ ├── odhcpd.awk │ │ ├── odhcpd.sh │ │ ├── root.key │ │ ├── stopping.sh │ │ ├── unbound.init │ │ ├── unbound.ntpd │ │ ├── unbound.sh │ │ ├── unbound.uci │ │ ├── unbound_ext.conf │ │ └── unbound_srv.conf │ └── patches │ │ └── 010-configure-uname.patch ├── uradvd │ ├── Makefile │ └── files │ │ ├── uradvd.config │ │ └── uradvd.init ├── usbip │ ├── Makefile │ └── files │ │ ├── usbipd.conf │ │ └── usbipd.init ├── uspot │ └── Makefile ├── usteer │ └── Makefile ├── uwsgi │ ├── Makefile │ ├── files-luci-support │ │ ├── luci-cgi_io.ini │ │ └── luci-webui.ini │ ├── files │ │ ├── emperor.ini │ │ └── uwsgi.init │ ├── patches │ │ ├── 001-dont-hardcode-zlib.patch │ │ ├── 002-dont-override-toolchain-optimization.patch │ │ ├── 003-hard-code-Linux-as-compilation-os.patch │ │ ├── 005-ssl-option-can_t-be-set.patch │ │ ├── 010-uclibc-ng.patch │ │ └── 030-plugins-cgi_adds_dontresolve_option.patch │ └── src │ │ └── buildconf │ │ └── openwrt.ini ├── v2ray-core │ ├── Makefile │ ├── files │ │ ├── v2ray.conf │ │ └── v2ray.init │ └── test.sh ├── v2ray-geodata │ └── Makefile ├── v2raya │ ├── Makefile │ ├── files │ │ ├── v2raya.config │ │ └── v2raya.init │ └── test.sh ├── vallumd │ ├── Makefile │ ├── files │ │ ├── vallumd.conf │ │ └── vallumd.init │ └── patches │ │ └── 001-CMake-skip-git-magic-if-no-.git-dir-exists.patch ├── vnstat │ ├── Makefile │ ├── files │ │ ├── vnstat.config │ │ ├── vnstat.defaults │ │ └── vnstat.init │ └── patches │ │ └── 990-adjust-configuration-defaults.patch ├── vnstat2 │ ├── Makefile │ └── files │ │ ├── vnstat.config │ │ └── vnstat.init ├── vpnc-scripts │ ├── Makefile │ └── files │ │ └── vpnc-script ├── vpnc │ ├── Config.in │ ├── Makefile │ ├── README │ ├── files │ │ ├── vpnc.sh │ │ └── vpnc.upgrade │ └── patches │ │ └── 110-openssl-deprecated.patch ├── vsftpd │ ├── Makefile │ ├── files │ │ ├── vsftpd.conf │ │ └── vsftpd.init │ └── patches │ │ ├── 001-destdir.patch │ │ ├── 002-find_libs.patch │ │ ├── 003-chroot.patch │ │ ├── 004-disable-capabilities.patch │ │ ├── 005-disable-pam.patch │ │ ├── 006-musl-compatibility.patch │ │ ├── 007-CVE-2015-1419.patch │ │ └── 010-openssl-deprecated.patch ├── wakeonlan │ └── Makefile ├── wavemon │ └── Makefile ├── webui-aria2 │ ├── Makefile │ └── patches │ │ └── 0001-fix-favicon-path.patch ├── wfb-ng │ ├── Makefile │ └── files │ │ └── wfb-ng.init ├── wg-installer │ ├── Makefile │ ├── README.md │ ├── common │ │ └── wg.sh │ ├── wg-client │ │ ├── config │ │ │ └── wgclient.conf │ │ ├── lib │ │ │ └── rpcd_ubus.sh │ │ └── wg-client-installer.sh │ └── wg-server │ │ ├── config │ │ ├── wginstaller.json │ │ ├── wgserver.conf │ │ └── wgserver.init │ │ ├── hotplug.d │ │ ├── 99-mesh-babeld │ │ └── 99-mesh-olsrd │ │ ├── lib │ │ ├── install_wginstaller_user.sh │ │ └── wg_functions.sh │ │ └── wginstaller.sh ├── wget │ └── Makefile ├── wgsd │ ├── Makefile │ ├── README.md │ └── files │ │ ├── Corefile │ │ └── wgsd-coredns.init ├── wifi-presence │ ├── Makefile │ └── files │ │ ├── wifi-presence.conf │ │ └── wifi-presence.init ├── wifidog │ ├── Makefile │ ├── files │ │ └── wifidog.init │ └── patches │ │ ├── 010-simple_http-Convert-to-WolfSSL.patch │ │ ├── 011-use-tls-above-1.patch │ │ └── 020-Modify-get-ip-from-iface-method.patch ├── wifischedule │ ├── LICENSE │ ├── Makefile │ ├── README.md │ └── net │ │ ├── etc │ │ ├── config │ │ │ └── wifi_schedule │ │ └── init.d │ │ │ └── wifi_schedule │ │ └── usr │ │ └── bin │ │ └── wifi_schedule.sh ├── wsdd2 │ ├── Makefile │ ├── files │ │ └── wsdd2.init │ └── patches │ │ └── 010-gcc14.patch ├── xfrpc │ ├── Makefile │ └── files │ │ ├── xfrpc.conf │ │ └── xfrpc.init ├── xinetd │ ├── Makefile │ ├── files │ │ ├── xinetd.init │ │ └── xinetd.uci.conf.sample │ └── patches │ │ ├── 001-ar.patch │ │ ├── 002-destdir.patch │ │ ├── 003-rpc_fix.patch │ │ ├── 004-ident-bind.patch │ │ ├── 005-format.patch │ │ └── 010-gcc14.patch ├── xl2tpd │ ├── Makefile │ ├── README.md │ ├── files │ │ ├── l2tp.sh │ │ ├── options.xl2tpd │ │ ├── xl2tp-secrets │ │ ├── xl2tpd.conf │ │ ├── xl2tpd.conf.sample │ │ └── xl2tpd.init │ └── patches │ │ ├── 0001-xl2tpd-control-fix-out-of-bound-access.patch │ │ └── 0002-Skip-building-pfc.patch ├── xray-core │ ├── Makefile │ ├── files │ │ ├── config.json.example │ │ ├── vpoint_socks_vmess.json │ │ ├── vpoint_vmess_freedom.json │ │ ├── xray.conf │ │ └── xray.init │ └── test.sh ├── xtables-addons │ ├── Makefile │ └── patches │ │ ├── 001-fix-kernel-version-detection.patch │ │ ├── 100-add-rtsp-conntrack.patch │ │ ├── 200-add-lua-packetscript.patch │ │ └── 300-fix-path-Makefile.extra.patch ├── yggdrasil-jumper │ └── Makefile ├── yggdrasil │ ├── Makefile │ └── files │ │ └── yggdrasil.sh ├── zerotier │ ├── Config.in │ ├── Makefile │ ├── files │ │ └── etc │ │ │ ├── config │ │ │ └── zerotier │ │ │ ├── init.d │ │ │ └── zerotier │ │ │ └── uci-defaults │ │ │ └── 80-zt-migration │ └── patches │ │ ├── 0001-fix-miniupnpc-natpmp-include-path.patch │ │ ├── 0002-remove-PIE-options.patch │ │ ├── 0003-fix-compilation-for-arm_cortex-a7-neon.patch │ │ ├── 0004-add-missing-libatomic.patch │ │ ├── 0005-remove-noexecstack.patch │ │ └── 0006-add-support-for-miniupnpc-2.2.8.patch ├── znc │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── znc.conf │ │ └── znc.init └── ztdns │ └── Makefile ├── sound ├── alsa-utils │ └── Makefile ├── espeak │ ├── Makefile │ └── patches │ │ ├── 010-uclibcxx.patch │ │ └── 101-Fix_GCC_narrowing_conversion_errors.patch ├── fdk-aac │ ├── Config.in │ ├── Makefile │ ├── patches-free │ │ ├── 010-remove-sbr.patch │ │ ├── 020-remove-hcx-rvlc-error.patch │ │ ├── 030-remove-mp3-surround.patch │ │ ├── 040-remove-usac.patch │ │ └── 050-inline.patch │ └── patches │ │ └── 010-inline.patch ├── fluidsynth │ └── Makefile ├── lame │ ├── Config.in │ └── Makefile ├── madplay │ ├── Makefile │ └── patches │ │ └── 0001-switch-to-new-alsa-api.patch ├── mocp │ └── Makefile ├── mpc │ ├── Makefile │ └── files │ │ └── pls-handler.sh ├── mpd │ ├── Makefile │ ├── files │ │ ├── mpd.init │ │ └── mpd.service │ └── patches │ │ ├── 020-string-view.patch │ │ ├── 030-no-avfilter.patch │ │ └── 040-lib-fmt-support-build-with-libfmt-11.0.0.patch ├── mpg123 │ └── Makefile ├── opus-tools │ └── Makefile ├── owntone │ ├── Makefile │ └── files │ │ ├── owntone.conf │ │ └── owntone.init ├── pianod │ ├── Makefile │ └── files │ │ └── pianod.init ├── portaudio │ └── Makefile ├── pulseaudio │ ├── Makefile │ ├── files │ │ └── pulseaudio.init │ └── patches │ │ └── 001-no_default_64mb_alloc.patch ├── shairport-sync │ ├── Makefile │ ├── files │ │ ├── shairport-sync.config │ │ └── shairport-sync.init │ └── patches │ │ └── 100-mbedtls3fix.patch ├── shine │ ├── Makefile │ └── patches │ │ └── 001-fix_mips64_bswap.patch ├── sox_ng │ └── Makefile ├── squeezelite │ ├── Makefile │ ├── files │ │ ├── squeezelite.conf │ │ └── squeezelite.init │ └── patches │ │ └── 010-select_broadcast_interface.patch ├── svox │ ├── Makefile │ └── patches │ │ ├── 0001-autoconf-building-of-library-using-libtool.patch │ │ ├── 0002-gitignore-for-autotools-files.patch │ │ ├── 0003-pico2wave-Convert-text-to-.wav-using-svox-text-to-sp.patch │ │ ├── 0004-add-header-files.patch │ │ ├── 0005-Install-lang-files.patch │ │ ├── 0006-Set-picolangdir.patch │ │ ├── 0008-64bits.patch │ │ ├── 0009-Fix-link-order.patch │ │ ├── 0010-platform.patch │ │ ├── 0011-subdir.patch │ │ └── 0012-no-headers.patch ├── upmpdcli │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── upmpdcli.config │ │ ├── upmpdcli.init │ │ └── upmpdcli.png └── wavpack │ └── Makefile └── utils ├── acl └── Makefile ├── acpica-unix └── Makefile ├── acpid ├── Makefile ├── files │ ├── acpid.hotplug │ ├── acpid.init │ └── default └── patches │ └── 010-Replace-stat64-with-stat.patch ├── acsccid ├── Makefile └── patches │ └── 010-uname.patch ├── afuse └── Makefile ├── airos-dfs-reset ├── Makefile └── files │ ├── airos-dfs-reset │ ├── airos-dfs-reset.config │ └── airos-dfs-reset.init ├── aliyun-cli ├── Makefile └── test.sh ├── ap51-flash ├── Makefile └── files │ ├── ap51-flash.config │ ├── ap51-flash.init │ └── ap51-flash.sh ├── apparmor ├── Makefile ├── files │ ├── apparmor.init │ └── apparmor.sh └── patches │ ├── 010-autoconf-libapparmor.patch │ ├── 020-remove-which-dep.patch │ ├── 030-systemd.patch │ ├── 040-remove-bash-dep.patch │ ├── 050-disable-man-pages.patch │ ├── 060-openwrt-dnsmasq-profile.patch │ └── 070-basename.patch ├── arp-whisper ├── Makefile └── files │ ├── arp-whisper.init │ └── etc │ └── arp-whisper │ └── arp-whisper ├── at ├── Makefile └── files │ └── atd.init ├── atheepmgr └── Makefile ├── attendedsysupgrade-common ├── Makefile └── files │ ├── 8a11255d14aef6c8 │ └── attendedsysupgrade.defaults ├── attr ├── Makefile └── patches │ └── 200-basename.patch ├── augeas └── Makefile ├── avrdude ├── Makefile └── patches │ └── 0001-Add-support-for-libgpiod-v2-API.patch ├── banhosts ├── Makefile └── files │ └── updatebanhost ├── base16384 ├── Makefile └── test.sh ├── bash ├── Makefile ├── files │ └── etc │ │ ├── bash.bashrc │ │ └── profile.d │ │ └── sys_bashrc.sh └── patches │ ├── 900-no_doc.patch │ ├── 901-startup-files.patch │ └── 902-missing-params.patch ├── bc ├── Makefile └── patches │ ├── 001-disable-doc.patch │ ├── 002-notice-read-and-write-errors-on-input-and-output.patch │ ├── 003-dc-fix-exit-code-of-q-command.patch │ └── 004-no-gen-libmath.patch ├── bcm27xx-eeprom ├── Makefile └── patches │ ├── 0001-rpi-eeprom-update-OpenWrt-defaults.patch │ ├── 0002-rpi-eeprom-update-change-default-include-path.patch │ ├── 0003-rpi-eeprom-update-chmod-silent-f-is-not-supported.patch │ └── 0004-rpi-eeprom-config-replace-nano-with-vi-as-default-ed.patch ├── beep ├── Makefile └── patches │ └── 0001-GNUmakefile-comment-out-D_FORTIFY_SOURCE.patch ├── bigclown ├── bigclown-control-tool │ ├── Makefile │ └── patches │ │ └── 0001-bch-use-Python-s-built-in-json-library.patch ├── bigclown-firmware-tool │ └── Makefile ├── bigclown-gateway │ ├── Makefile │ ├── files │ │ ├── config │ │ └── init │ └── patches │ │ └── 0001-bcg-gateway-use-Python-s-built-in-json-library.patch └── bigclown-mqtt2influxdb │ ├── Makefile │ └── files │ ├── config.yml │ └── init ├── bluelog ├── Makefile ├── files │ └── bluelog.init └── patches │ └── 100-gen-oui-fix-tempfile-use-mirror.patch ├── bluez-tools ├── Makefile └── files │ ├── btagent.cfg │ └── btagent.init ├── bluez ├── Makefile ├── files │ ├── bluetoothd.init │ └── givepin └── patches │ ├── 001-bcm43xx-Add-bcm43xx-3wire-variant.patch │ ├── 002-bcm43xx-The-UART-speed-must-be-reset-after-the-firmw.patch │ ├── 003-Increase-firmware-load-timeout-to-30s.patch │ ├── 004-Move-the-43xx-firmware-into-lib-firmware.patch │ ├── 201-readline.patch │ ├── 202-fix-endianness.patch │ ├── 203-obexd_without_systemd.patch │ ├── 205-refresh_adv_manager_for_non-LE_devices.patch │ ├── 206-sync.patch │ ├── 207-gcc14.patch │ └── 210-util-define-MAX_INPUT.patch ├── bluld ├── Makefile └── files │ ├── bluld.conf │ └── bluld.init ├── bmx7-dnsupdate ├── Makefile └── files │ ├── etc │ └── init.d │ │ └── bmx7-dnsupdate │ └── usr │ └── bin │ └── bmx7-dnsupdate ├── bonnie++ ├── Makefile └── patches │ ├── 002-add-verbose-error-messages.patch │ ├── 010-meson.patch │ ├── 100-remove-using-namespace-std.patch │ ├── 101-fix-wrong-printf-off_t-format.patch │ └── 102-add-missing-cast.patch ├── borgbackup └── Makefile ├── bossa ├── Makefile └── patches │ ├── 101-PosixSerialPort-Call-tcdrain-to-write-serial-data.patch │ ├── 102_allow_override_os.patch │ └── 902-musl_fd.patch ├── bottlerocket ├── Makefile └── patches │ └── 010-gcc14.patch ├── btrfs-progs ├── Config.in ├── Makefile └── files │ └── btrfs-scan.init ├── byobu ├── Makefile └── patches │ ├── 001-hardcode-utf-8-charmap.patch │ ├── 002-fix-missing-tty.patch │ ├── 004-skip-python-test.patch │ ├── 005-monitor-overlay.patch │ ├── 006-only-pgrep-services.patch │ └── 007-count-dropbear-users.patch ├── cache-domains ├── Makefile ├── README.md ├── files │ ├── 30-cache-domains │ ├── cache-domains │ └── test.sh └── pre-test.sh ├── canutils ├── Makefile └── patches │ └── 010-time.h ├── catatonit ├── Makefile └── test.sh ├── ccid ├── Makefile └── patches │ └── 010-macos.patch ├── ccrypt ├── Makefile └── patches │ └── 001-no-intl.patch ├── cgroupfs-mount ├── Makefile └── files │ └── cgroupfs-mount.init ├── checksec └── Makefile ├── cligen └── Makefile ├── clixon ├── Makefile └── files │ ├── clixon.init │ ├── netconf-subsystem.conf │ └── restconf.xml ├── clocate └── Makefile ├── cmdpad ├── Makefile ├── files │ └── cmdpad.init └── patches │ ├── 100-Makefile.patch │ ├── 120-kernel26-compat.patch │ ├── 130-no_zombie.patch │ ├── 140-compile_fix.patch │ ├── 150-header.patch │ └── 160-format.patch ├── cni-plugins-nft ├── Makefile └── patches │ ├── 010-fw4-force-inet-family.patch │ └── 020-fw4-fix-default-table-and-chain-names.patch ├── cni-plugins └── Makefile ├── cni └── Makefile ├── collectd ├── Makefile ├── files │ ├── collectd.init │ ├── collectd.uci │ ├── exec-scripts │ │ └── sqm_collectd.sh │ ├── lua-scripts │ │ └── dsl.lua │ └── usr │ │ └── share │ │ └── collectd │ │ └── plugin │ │ ├── apcups.json │ │ ├── conntrack.json │ │ ├── contextswitch.json │ │ ├── cpu.json │ │ ├── cpufreq.json │ │ ├── csv.json │ │ ├── curl.json │ │ ├── df.json │ │ ├── disk.json │ │ ├── dns.json │ │ ├── email.json │ │ ├── entropy.json │ │ ├── exec.json │ │ ├── interface.json │ │ ├── iptables.json │ │ ├── irq.json │ │ ├── iwinfo.json │ │ ├── load.json │ │ ├── logfile.json │ │ ├── lua.json │ │ ├── memory.json │ │ ├── mqtt.json │ │ ├── netlink.json │ │ ├── network.json │ │ ├── nut.json │ │ ├── olsrd.json │ │ ├── openvpn.json │ │ ├── ping.json │ │ ├── processes.json │ │ ├── rrdtool.json │ │ ├── sensors.json │ │ ├── smart.json │ │ ├── swap.json │ │ ├── syslog.json │ │ ├── tcpconns.json │ │ ├── thermal.json │ │ ├── ubi.json │ │ ├── unixsock.json │ │ ├── uptime.json │ │ ├── vmem.json │ │ ├── write-http.json │ │ └── write-prometheus.json └── patches │ ├── 001-undefined-AM_PATH_LIBGCRYPT.patch │ ├── 100-rrdtool-add-rrasingle-option.patch │ ├── 140-fix-fqdnlookup.patch │ ├── 300-delay-first-read-cycle.patch │ ├── 320-reaction-to-ntp-time-change-at-boot.patch │ ├── 400-fix-olsrd-get-all.patch │ ├── 600-fix-libmodbus-detection.patch │ ├── 700-disable-sys-capability-check.patch │ ├── 900-add-iwinfo-plugin.patch │ ├── 910-add-cake-qdisc-types.patch │ ├── 920-backport-netlink-reg-noerror.patch │ ├── 930-dhcpleases-add-dhcpleases-plugin.patch │ ├── 931-snmp6-add-ipv6-statistics.patch │ ├── 932-add-ipstatistics.patch │ ├── 934-ubi-prepare-read-for-percent.patch │ ├── 935-ubi-add-percent.patch │ ├── 940-nut-int.patch │ └── 941-Check-udev_enumerate_scan_devices-return-value.patch ├── conmon ├── Makefile └── patches │ └── 010-remove-libdl-dep.patch ├── containerd └── Makefile ├── coremark └── Makefile ├── coreutils ├── Makefile └── patches │ └── 001-no_docs_man_tests.patch ├── cpusage ├── Makefile └── src │ └── cpusage.c ├── crconf └── Makefile ├── crelay ├── Makefile ├── files │ └── crelay.init └── patches │ └── 010-meson.patch ├── crun └── Makefile ├── cryptsetup └── Makefile ├── ctop └── Makefile ├── cudy-bdinfo └── Makefile ├── dbus ├── Config.in ├── Makefile └── files │ ├── dbus-launch │ └── dbus.init ├── device-observatory ├── Makefile ├── files │ └── etc │ │ ├── config │ │ └── device-observatory │ │ └── init.d │ │ └── device-observatory └── patches │ ├── 010-uClibc-ng.patch │ └── 020-libmicrohttpd.patch ├── dfu-programmer ├── Makefile └── patches │ └── 000-remove-docs-etc.patch ├── dfu-util └── Makefile ├── digitemp ├── Makefile └── patches │ └── 0001_add_missing_includes.patch ├── dmidecode └── Makefile ├── docker-compose └── Makefile ├── docker └── Makefile ├── dockerd ├── Config.in ├── Makefile ├── files │ ├── dockerd.init │ └── etc │ │ ├── config │ │ └── dockerd │ │ └── sysctl.d │ │ └── sysctl-br-netfilter-ip.conf └── git-short-commit.sh ├── domoticz ├── Makefile └── files │ ├── domoticz.config │ ├── domoticz.hotplug │ └── domoticz.init ├── dos2unix ├── Makefile └── test.sh ├── dosfstools └── Makefile ├── dumb-init └── Makefile ├── dump1090 ├── Makefile ├── files │ ├── dump1090.config │ ├── dump1090.default │ └── dump1090.init └── patches │ └── 010-gcc14.patch ├── dvtm └── Makefile ├── dysk └── Makefile ├── ecdsautils └── Makefile ├── efibootmgr └── Makefile ├── evtest └── Makefile ├── exfatprogs └── Makefile ├── eza └── Makefile ├── fakeuname ├── Makefile ├── fakeuname.mk └── src │ ├── footer.py.inc │ └── header.py.inc ├── fatresize ├── Makefile └── test.sh ├── fft-eval └── Makefile ├── findutils └── Makefile ├── fio └── Makefile ├── fish └── Makefile ├── flashrom ├── Makefile └── flashrom.mk ├── fontconfig └── Makefile ├── fuse-overlayfs ├── Makefile └── patches │ └── 010-m4.patch ├── fuse ├── Makefile └── patches │ ├── 100-missing_includes.patch │ ├── 112-no_break_on_mknod.patch │ ├── 200-backport_arm64_fuse_kernel_h_clean_includes.patch │ └── 300-closefrom.patch ├── fuse3 └── Makefile ├── fwupd ├── Config.in ├── Makefile ├── files │ └── etc │ │ └── init.d │ │ └── fwupd └── test.sh ├── fx └── Makefile ├── gammu ├── Makefile ├── files │ ├── gammu │ └── gammu.init └── patches │ └── 020-select.patch ├── gawk └── Makefile ├── gddrescue └── Makefile ├── gkermit ├── Makefile └── patches │ └── 010-musl.patch ├── gl-puli-mcu ├── Config.in ├── Makefile ├── files │ └── etc │ │ └── init.d │ │ └── gl-puli-mcu └── src │ ├── CMakeLists.txt │ └── gl-puli-mcu.c ├── gnupg └── Makefile ├── gnupg2 └── Makefile ├── gnuplot ├── Makefile └── patches │ ├── 010-remove_doc_from_makefile.patch │ └── 020-fix-mips-and-powerpc.patch ├── gpsd ├── Makefile ├── files │ ├── gpsd.config │ └── gpsd.init ├── patches │ └── 0002-ncurses6_detection.patch └── test.sh ├── gptfdisk └── Makefile ├── grep ├── Makefile └── patches │ └── ppc-musl.patch ├── gummiboot ├── Makefile └── patches │ ├── 010-fix-missing-includes.patch │ ├── 015-gummiboot-aarch64-support.patch │ ├── 020-fix-dev-mapping.patch │ └── 030-fix-efi-conflicts.patch ├── gzip └── Makefile ├── hamlib ├── Makefile └── files │ ├── rigctld.conf │ └── rigctld.init ├── haserl ├── Config.in ├── Makefile └── patches │ ├── 100-replace-lua2c-with-sed.patch │ └── 101-adjust-script-size.patch ├── hashdeep ├── Makefile └── patches │ └── 010-gcc11.patch ├── haveged ├── Makefile └── files │ └── haveged.init ├── hd-idle ├── Makefile └── files │ ├── hd-idle.config │ └── hd-idle.init ├── hdparm ├── Makefile └── patches │ ├── 010-cflags.patch │ └── 020-64bit.patch ├── hexedit └── Makefile ├── hfsprogs ├── Makefile ├── files │ └── hfsfsck.sh └── patches │ ├── 0007-Fix-path-for-HFS-wrapper-block.patch │ ├── 0016-Fix-fsckhfs-wide-literal.patch │ ├── 010-hfsplus-tools-learn-to-stdarg.patch │ ├── 020-hfsplus-tools-no-blocks.patch │ ├── 030-sysctl.patch │ ├── 040-musl.patch │ └── 100-macOS.patch ├── hplip ├── Makefile ├── files │ └── hplib.conf └── patches │ ├── 010-libusb_fix.patch │ ├── 020-remove_cups_dep_on_scan.patch │ ├── 030-replace_unsafe_memcpy_with_memmove.patch │ ├── 050-fix-glibcisms.patch │ ├── 060-fix-glibc.patch │ └── 070-respect-cflags.patch ├── hub-ctrl └── Makefile ├── hwdata └── Makefile ├── hwinfo ├── Makefile └── patches │ ├── 010-hardcoding-version.patch │ ├── 020-remove_libx8emu_dependency.patch │ ├── 030-enable-hw-ids-and-disable-generation-of-tiny-hwinfo-headers.patch │ ├── 040-assorted-Makefile-butchery.patch │ ├── 050-arc.patch │ ├── 060-glibc-2-36-includes-fsconfig-itself-make-linux-fs-h.patch │ └── 100_remove_malloc_h_headers_usage.patch ├── i2c-tools └── Makefile ├── i2csfp └── Makefile ├── ideviceinstaller └── Makefile ├── idevicerestore └── Makefile ├── ifuse └── Makefile ├── inotify-tools └── Makefile ├── io ├── Makefile └── src │ └── io.c ├── irqbalance ├── Makefile ├── files │ ├── irqbalance.config │ └── irqbalance.init └── patches │ ├── 010-meson.patch │ └── 100-remove-libncursesw-dependency.patch ├── joe ├── Makefile └── files │ └── joerc ├── jq └── Makefile ├── jupp └── Makefile ├── kitty-terminfo └── Makefile ├── klish ├── Makefile └── patches │ └── 010-shell_execute_fix.patch ├── kmod ├── Makefile └── patches │ ├── 010-basename.patch │ └── 020-build-allow-to-install-over-dirty-dir.patch ├── lcd4linux ├── Config.in ├── Makefile ├── files │ └── lcd4linux.init └── patches │ ├── 100-drv_RouterBoard.patch │ ├── 120-remove-as-needed-linker-option.patch │ ├── 140-no_repnop_T6963.patch │ ├── 150-addlibmpdclient.patch │ ├── 170-add-generic-spidev-driver.patch │ ├── 171-allow-to-specify-drv_generic_graphic_real_clear.patch │ ├── 172-add-TEW673GRU-driver.patch │ ├── 173-glcd2usb-bigendian-fix.patch │ ├── 200-musl.patch │ └── 300-jpeg8.patch ├── lcdproc ├── Makefile ├── files │ ├── LCDd │ ├── lcdexec │ ├── lcdproc │ └── lcdvc └── patches │ ├── 100-remove-build-timestamp.patch │ ├── 110-in-outb.patch │ └── 120-gcc10.patch ├── less └── Makefile ├── lf ├── Makefile └── test.sh ├── librespeed-cli └── Makefile ├── lm-sensors ├── Makefile ├── files │ ├── lm-sensors.init │ └── sensors.conf └── patches │ └── 001-Add_support_for_dev_name_formatted_like_a000000.wifi.patch ├── logrotate ├── Makefile ├── files │ └── logrotate.conf └── test.sh ├── lolcat └── Makefile ├── lpac ├── Config.in ├── Makefile ├── files │ ├── lpac.sh │ └── lpac.uci └── patches │ └── 0001-driver-add-uqmi-backend.patch ├── lrzsz ├── Makefile └── patches │ ├── 001-siginterrupt-after-the-call-to-signal-otherwise-ymod.patch │ ├── 002-may-be-security-fix-avoid-possible-underflow.patch │ ├── 100-install_delete_fix.patch │ ├── 200-format.patch │ └── 300-neutralize-autofoo.patch ├── lsd └── Makefile ├── lsof ├── Makefile └── patches │ └── 000-disable-man.patch ├── lvm2 ├── Makefile ├── files │ ├── lvm2.hotplug │ ├── lvm2.init │ └── lvm2.preinit └── patches │ ├── 002-const-stdio.patch │ └── 003-no-mallinfo.patch ├── lxc ├── Config.in ├── Makefile ├── files │ ├── lxc-auto.config │ ├── lxc-auto.init │ ├── lxc-unprivileged.defaults │ └── lxc.conf └── patches │ ├── 010-lxc-checkconfig-remove-options-for-lxc-net.patch │ ├── 015-lxc-checkconfig-remove-options-for-lxc-checkpoint.patch │ ├── 020-lxc-checkconfig.patch │ ├── 021-remove-legacy-cgroup-support.patch │ ├── 025-remove-unsupported-option.patch │ └── 030-start-re-introduce-first-SET_DUMPABLE-call.patch ├── macchanger ├── Makefile └── patches │ └── 0001-fix-build-with-musl.patch ├── mandoc └── Makefile ├── mariadb ├── Makefile ├── conf │ ├── 50-server.cnf │ └── my.cnf ├── files │ ├── mysqld.config │ └── mysqld.init └── patches │ ├── 180-relax-mysql_install-db-wrt-pam-tool.patch │ └── 210-no-altivec.patch ├── mbtools ├── Makefile └── patches │ ├── 010-glib.patch │ └── 100-fix-unit-test-server-return-value.patch ├── mc ├── Config.in ├── Makefile └── patches │ ├── 010-subshell.patch │ └── 030-mc-mksh-subshell-v2.patch ├── mg ├── Makefile └── patches │ ├── 001-cross_compile_openwrt.patch │ ├── 900-musl_compatibility.patch │ ├── 901-use_pcre.patch │ └── 902-fix_for_gcc14.patch ├── mhz ├── Makefile └── patches │ └── 0001-Makefile-allow-overriding-CC-and-CFLAGS.patch ├── micrond ├── Makefile ├── files │ ├── etc │ │ └── init.d │ │ │ └── micrond │ └── usr │ │ └── lib │ │ └── micron.d │ │ └── .keep └── src │ ├── Makefile │ └── micrond.c ├── minicom ├── Makefile └── patches │ └── 110-reproducible-builds.patch ├── miniflux ├── Makefile ├── files │ ├── miniflux.conf │ └── miniflux.init └── test.sh ├── mksh ├── Makefile └── patches │ └── 100-dot_mkshrc ├── mktorrent ├── Makefile └── patches │ └── 010-format.patch ├── mmc-utils ├── Makefile └── patches │ └── 0000-properly-set-fortify-source-in-makefile.patch ├── moreutils ├── Makefile └── patches │ ├── 001_disable-manuals.patch │ └── 002_no-install-strip.patch ├── mpack ├── Makefile └── patches │ └── 001-use-stdlib.patch ├── mpremote ├── Makefile ├── patches │ └── 001-no-importlib_metadata.patch └── test.sh ├── mqttled ├── Makefile └── files │ ├── mqttled.config │ └── mqttled.init ├── mstflint └── Makefile ├── mt-st └── Makefile ├── mt5311 ├── Makefile └── files │ ├── ebm-read │ └── init.lua ├── mtools └── Makefile ├── mv88e6xxx_dump └── Makefile ├── nano ├── Makefile └── files │ ├── nanorc │ ├── uci.nanorc │ └── ucode.nanorc ├── ncdu ├── Makefile └── patches │ └── 900-use-alternative-color.patch ├── nerdctl └── Makefile ├── netwhere ├── Makefile └── patches │ └── 010-libmicrohttpd.patch ├── nnn ├── Makefile └── patches │ └── musl-fts.patch ├── nsutils ├── Makefile └── patches │ └── 010-gcc14.patch ├── ntfs-3g ├── Makefile └── patches │ └── 001-fuseint-fix-path-mounted-on-musl.patch ├── nvme-cli ├── Makefile └── patches │ ├── 010-gcc14.patch │ └── 020-replace_uint16_t ├── oath-toolkit └── Makefile ├── oci-runtime-tools └── Makefile ├── open-plc-utils └── Makefile ├── open-vm-tools ├── Makefile ├── files │ ├── shutdown │ ├── telinit │ ├── tools.conf │ ├── vmtoolsd.init │ └── vmware-scsi.hotplug └── patches │ ├── 0001-werror.patch │ ├── 0002-off64_t.patch │ ├── 0003-Use-configure-test-for-struct-timespec.patch │ ├── 0004-Fix-definition-of-ALLPERMS-and-ACCESSPERMS.patch │ ├── 0005-Use-configure-to-test-for-feature-instead-of-platfor.patch │ ├── 0006-Use-configure-test-for-sys-stat.h-include.patch │ ├── 0007-include-poll.h-instead-of-sys-poll.h.patch │ ├── 0008-Rename-poll.h-to-vm_poll.h.patch │ ├── 0009-use-posix-strerror_r-unless-on-gnu-libc-system.patch │ ├── 0013-fsutil_use_typedef_loff_t.patch │ ├── 0014-resolve-musl-does-not-implement-res_ninit.patch │ └── 010-warnings.patch ├── open2300 ├── Makefile └── files │ └── open2300.conf ├── opendoas ├── Makefile └── patches │ ├── configure-ignore-invalid-arguments.patch │ └── makefile-remove-chown.patch ├── openobex └── Makefile ├── openocd ├── Makefile └── patches │ └── 0001-jtag-linuxgpiod-adapt-for-libgpiod-v2-API.patch ├── opensc ├── Makefile └── patches │ └── 001-fix-build.patch ├── openzwave ├── Makefile └── patches │ └── 010-gcc14.patch ├── owfs ├── Config.in ├── Makefile └── files │ ├── owfs.conf │ ├── owfs.init │ ├── owftpd.conf │ ├── owftpd.init │ ├── owhttpd.conf │ ├── owhttpd.init │ ├── owserver.conf │ └── owserver.init ├── owut └── Makefile ├── parted ├── Config.in ├── Makefile └── test.sh ├── passh ├── Makefile └── test.sh ├── pax-utils ├── Config.in └── Makefile ├── pciutils ├── Makefile └── patches │ ├── 101-no-strip.patch │ ├── 104-resolv.patch │ └── 106-hwdata.patch ├── pcmciautils ├── Makefile ├── files │ └── etc │ │ ├── hotplug.d │ │ ├── pcmcia │ │ │ └── pcmcia.agent │ │ └── pcmcia_socket │ │ │ └── pcmcia_socket.agent │ │ └── init.d │ │ ├── pcmcia │ │ └── pcmcia_socket └── patches │ ├── 001-switch_unsigned.patch │ └── 002-disable_yywrap.patch ├── pcsc-lite ├── Makefile ├── files │ └── pcscd.init └── patches │ └── 010-format.patch ├── pcsc-tools ├── Makefile └── patches │ └── 001-disable-atr.patch ├── picocom ├── Makefile └── patches │ ├── 010-fix-compile.patch │ ├── 020-fix-compile-x86.patch │ └── 030-usleep.patch ├── pigz ├── Makefile └── patches │ └── 001.patch ├── podman ├── Makefile ├── files │ ├── containers.conf │ ├── podman.init │ └── podman.json └── patches │ └── 010-do-not-build-docs.patch ├── poemgr └── Makefile ├── powertop └── Makefile ├── pps-tools ├── Makefile └── patches │ └── 001-time_t_64bit.patch ├── procps-ng ├── Makefile └── patches │ └── 100-no-tests-docs.patch ├── procps-ng3 ├── Makefile └── patches │ ├── 100-no-tests-docs.patch │ └── 110-musl-fixes.patch ├── procs ├── Makefile └── files │ └── etc │ └── procs │ └── procs.toml ├── progress ├── Makefile └── patches │ └── 001_set-ncurses-lib.patch ├── prometheus-node-exporter-lua ├── Makefile └── files │ ├── etc │ ├── config │ │ └── prometheus-node-exporter-lua │ └── init.d │ │ └── prometheus-node-exporter-lua │ └── usr │ ├── bin │ └── prometheus-node-exporter-lua │ └── lib │ └── lua │ └── prometheus-collectors │ ├── bmx6.lua │ ├── bmx7.lua │ ├── conntrack.lua │ ├── cpu.lua │ ├── dawn.lua │ ├── entropy.lua │ ├── ethtool.lua │ ├── filefd.lua │ ├── hostapd_stations.lua │ ├── hostapd_ubus_stations.lua │ ├── hwmon.lua │ ├── loadavg.lua │ ├── ltq-dsl.lua │ ├── meminfo.lua │ ├── mwan3.lua │ ├── nat_traffic.lua │ ├── netclass.lua │ ├── netdev.lua │ ├── netstat.lua │ ├── nft_counters.lua │ ├── openwrt.lua │ ├── realtek-poe.lua │ ├── selinux.lua │ ├── snmp6.lua │ ├── textfile.lua │ ├── thermal.lua │ ├── time.lua │ ├── ubnt-manager.lua │ ├── uci_dhcp_host.lua │ ├── uname.lua │ ├── wifi.lua │ └── wifi_stations.lua ├── prometheus-node-exporter-ucode ├── Makefile ├── files │ ├── base │ │ ├── conntrack.uc │ │ ├── cpu.uc │ │ ├── entropy.uc │ │ ├── filefd.uc │ │ ├── loadavg.uc │ │ ├── meminfo.uc │ │ ├── netclass.uc │ │ ├── netdev.uc │ │ ├── selinux.uc │ │ ├── time.uc │ │ └── uname.uc │ ├── config │ ├── extra │ │ ├── dnsmasq.uc │ │ ├── ltq-dsl.uc │ │ ├── netstat.uc │ │ ├── openwrt.uc │ │ ├── snmp6.uc │ │ ├── uci_dhcp_host.uc │ │ ├── wifi.uc │ │ └── wireguard.uc │ ├── init │ ├── metrics.uc │ └── run.sh └── test.sh ├── prometheus-statsd-exporter ├── Makefile └── files │ └── etc │ ├── config │ └── prometheus-statsd-exporter │ ├── init.d │ └── prometheus-statsd-exporter │ └── prometheus-statsd-exporter.yml ├── pservice ├── Makefile ├── README.md └── files │ ├── pservice.config │ └── pservice.init ├── psmisc └── Makefile ├── pv └── Makefile ├── qemu ├── Makefile ├── files │ ├── 00-virtio-ports.hotplug │ ├── 10-qemu-ga.hotplug │ ├── bridge.conf │ └── qemu-ga.init └── patches │ ├── 0001-configure-allow-disable-fortify_source.patch │ ├── 0006-util-mmap-alloc-fix-missing-MAP_SYNC.patch │ ├── 0007-qga-invoke-separate-applets-for-guest-shutdown-modes.patch │ └── 0010-no-tests.patch ├── quectel-timesync └── Makefile ├── quota ├── Makefile └── patches │ └── 010-gcc14.patch ├── readsb ├── Makefile └── files │ ├── readsb.config │ └── readsb.init ├── realtek-poe └── Makefile ├── relayctl ├── Makefile └── patches │ └── 0001-ftdi1.patch ├── reptyr ├── Makefile └── test.sh ├── restic └── Makefile ├── ripgrep ├── Makefile └── patches │ └── 010-fix-riscv64.patch ├── rng-tools ├── Makefile └── files │ ├── rngd.init │ └── rngd.uci_defaults ├── rpcd-mod-lxc ├── Makefile └── files │ ├── CMakeLists.txt │ └── lxc.c ├── rpcd-mod-wireguard ├── Makefile └── src │ ├── CMakeLists.txt │ ├── api.c │ ├── wireguard.c │ └── wireguard.h ├── rrdtool1 ├── Makefile └── patches │ ├── 001-no_ordering_cd_joke.patch │ ├── 002-no_timezone.patch │ ├── 020-x86-float-cast.patch │ ├── 030-pod2man-stderr.patch │ ├── 040-no-e-notation-on-log-display.patch │ ├── 050-no-doc.patch │ ├── 100-new-long-rrd.patch │ └── 200-gcc14.patch ├── rtklib ├── Makefile └── patches │ ├── 010-musl.patch │ └── 020-no-gfortran.patch ├── rtl-ais ├── Makefile ├── files │ ├── rtl_ais.init │ └── uci_rtl_ais └── patches │ └── 010-musl.patch ├── rtl-sdr ├── Makefile └── files │ ├── rtl_tcp.config │ └── rtl_tcp.init ├── rtl_433 ├── Makefile └── files │ ├── rtl_433.conf │ └── rtl_433.init ├── rtty ├── Makefile └── files │ ├── rtty.config │ └── rtty.init ├── runc └── Makefile ├── sane-backends ├── Makefile ├── files │ ├── saned.hotplug │ ├── saned.sbin │ └── saned.xinetd └── patches │ └── 002-remove-uneeded.patch ├── screen ├── Makefile ├── files │ └── etc │ │ └── screenrc └── patches │ └── 010-ptyh.patch ├── sed └── Makefile ├── sedutil ├── Makefile └── patches │ └── 010-gcc13.patch ├── selinux-python ├── Makefile └── patches │ ├── 0001-sepolgen-adjust-data_dir.patch │ ├── 0002-sepolgen-don-t-hardcode-search-for-ausearch-in-sbin.patch │ ├── 0003-sepolicy-no-gui.patch │ ├── 0004-sepolicy-fix-get_os_version-except.patch │ └── 0005-no-translations.patch ├── semodule-utils └── Makefile ├── serialconsole └── Makefile ├── setools ├── Makefile └── patches │ ├── 010-no-gui.patch │ └── 030-remove-host-paths.patch ├── setserial ├── Makefile └── patches │ ├── 010-no-docs.patch │ ├── 020-musl.patch │ └── 030-gcc14.patch ├── sexpect ├── Makefile └── test.sh ├── shadow ├── Makefile └── patches │ └── 004-fix-su-controoling-term.patch ├── shared-mime-info ├── Makefile ├── files │ └── shared-mime-info.defaults └── patches │ └── 001-no-xmllint.patch ├── sipcalc └── Makefile ├── sispmctl └── Makefile ├── slide-switch └── Makefile ├── smartmontools ├── Makefile ├── files │ ├── smartd.conf │ └── smartd.init ├── patches │ ├── 001-use-external-drivedb.patch │ └── 002-os_mailer-is-mailx.patch └── test.sh ├── sms-tool └── Makefile ├── smstools3 ├── Makefile ├── files │ ├── smstools3.conf │ └── smstools3.init └── patches │ ├── 002-Makefile.patch │ ├── 003-bash-ash.patch │ └── 004-modem-processes.patch ├── sockread ├── Makefile └── src │ ├── Makefile │ └── main.c ├── spi-tools └── Makefile ├── squashfs-tools ├── Config.in └── Makefile ├── ssdeep └── Makefile ├── sshpass └── Makefile ├── stlink ├── Makefile └── patches │ ├── 010-poll.patch │ └── 020-calloc.patch ├── stm32flash └── Makefile ├── stoken └── Makefile ├── stress-ng ├── Makefile ├── patches │ └── 001-disable-extra-stressors.patch └── test.sh ├── sumo ├── Makefile ├── files │ └── sumo.sh └── patches │ ├── 010-gtest.patch │ └── 020-gcc14.patch ├── sunwait ├── LICENSE └── Makefile ├── swanmon ├── Makefile └── test.sh ├── swig └── Makefile ├── syncthing ├── Makefile ├── files │ ├── stdiscosrv.conf │ ├── stdiscosrv.init │ ├── strelaysrv.conf │ ├── strelaysrv.init │ ├── syncthing-sysctl.conf │ ├── syncthing.conf │ └── syncthing.init └── test.sh ├── sysstat ├── Makefile ├── files │ ├── sysstat.config │ └── sysstat.init └── patches │ └── 010-ldflags.patch ├── tang ├── Makefile ├── files │ ├── config │ ├── tang.init │ └── tang.upgrade └── patches │ └── 100-tang-show-keys-use-wget.patch ├── tar └── Makefile ├── taskwarrior └── Makefile ├── tcsh ├── Makefile └── patches │ ├── 001-sysmalloc.patch │ └── 010-wint.patch ├── telegraf ├── Makefile ├── files │ └── etc │ │ └── init.d │ │ └── telegraf └── variant-small │ └── plugins │ ├── aggregators │ └── all │ │ └── all.go │ ├── inputs │ └── all │ │ └── all.go │ ├── outputs │ └── all │ │ └── all.go │ └── processors │ └── all │ └── all.go ├── telldus-core ├── Makefile ├── files │ ├── telldusd │ └── tellstick.conf └── patches │ ├── 100-add_includes.patch │ ├── 110-fix_warnings.patch │ ├── 120-fix_missing_var_conf.patch │ ├── 200-no-iconv.patch │ ├── 900-openwrt_fixes_cmake.patch │ ├── 920-openwrt_missing_var_conf.patch │ ├── 930-usleep.patch │ ├── 940-cxx11.patch │ ├── 950-pthread.patch │ ├── 960-time.patch │ ├── 970-gcc11.patch │ └── 980-auto-ptr.patch ├── telldus-mqtt ├── Makefile └── files │ └── telldus-mqtt ├── temperusb └── Makefile ├── tessdata └── Makefile ├── tesseract ├── Makefile └── patches │ └── 010-cmake.patch ├── tini ├── Makefile └── patches │ ├── 001-override-git-version.patch │ └── 002-Support-POSIX-basename-from-musl-libc.patch ├── tinyionice ├── Makefile └── test.sh ├── tio └── Makefile ├── tmux ├── Makefile └── test.sh ├── tracertools └── Makefile ├── tree └── Makefile ├── triggerhappy ├── Makefile └── files │ ├── triggerhappy-example.conf │ ├── triggerhappy.hotplug │ └── triggerhappy.init ├── ttyd ├── Makefile ├── files │ ├── ttyd.config │ └── ttyd.init └── patches │ └── 100-log-to-syslog.patch ├── ubnt-manager ├── Makefile └── files │ ├── ubnt-manager.config │ └── ubnt-manager.sh ├── uhubctl └── Makefile ├── uledd ├── Makefile └── files │ └── uledd.init ├── unrar ├── Makefile └── patches │ └── 100-makefile_fixes.patch ├── unzip ├── Makefile └── patches │ ├── 001-CVE-2014-8139-crc-overflow.patch │ ├── 002-CVE-2014-8140-test-compr-eb.patch │ ├── 003-CVE-2014-8141-getzip64data.patch │ ├── 004-CVE-2014-9636-test-compr-eb.patch │ ├── 005-CVE-2015-7696-heap-overflow.patch │ ├── 006-CVE-2015-7697-infinite-loop.patch │ ├── 007-integer-underflow-csiz_decrypted.patch │ ├── 008-cve-2014-9913-unzip-buffer-overflow.patch │ ├── 009-cve-2016-9844-zipinfo-buffer-overflow.patch │ ├── 010-remove-build-date.patch │ └── 011-CVE-2018-1000035-overflow-password-protect.patch ├── usbmuxd ├── Makefile ├── files │ ├── usbmuxd.hotplug │ └── usbmuxd.init └── patches │ ├── 001-Revert-usb-Set-default-mode-to-3-to-include-CDC-NCM-.patch │ ├── 002-version-print.patch │ └── 010-config.patch ├── usbutils └── Makefile ├── uvcdynctrl ├── Makefile └── patches │ └── 010-meson.patch ├── uvol ├── Makefile └── files │ ├── autopart.defaults │ ├── blockdev_common.uc │ ├── lvm.uc │ ├── ubi.uc │ ├── uci.uc │ ├── uvol │ ├── uvol.defaults │ └── uvol.init ├── vim ├── Makefile ├── files │ ├── vimrc │ └── vimrc.full ├── patches │ ├── 002-remove_helptags_generation.patch │ └── 010-no-msgfmt.patch ├── scripts │ └── uname └── test.sh ├── watchcat ├── Makefile └── files │ ├── migrate-watchcat │ ├── watchcat.config │ ├── watchcat.init │ └── watchcat.sh ├── which └── Makefile ├── whois ├── Makefile ├── patches │ ├── 010-no-mkpasswd.patch │ └── 020-no-idn2.patch └── test.sh ├── wifitoggle ├── Makefile └── files │ ├── wifitoggle.config │ └── wifitoggle.hotplug ├── wipe ├── Makefile └── patches │ └── 001-ignore_git_version_hash_and_fix_release_version.patch ├── xfsprogs ├── Makefile └── patches │ ├── 110-subdirs.patch │ ├── 130-db-malloc-Use-posix_memalign-instead-of-deprecated-v.patch │ └── 140-mman.patch ├── xxhash └── Makefile ├── xz ├── Makefile └── patches │ ├── 001-relative-pkg-config-paths.patch │ └── 010-libtool.patch ├── yara ├── Config.in └── Makefile ├── ykclient └── Makefile ├── ykpers ├── Makefile └── patches │ ├── 010-gcc10.patch │ └── 020-json-c-0.14.patch ├── yq ├── Makefile └── test.sh ├── zile ├── Makefile └── patches │ └── 010-remove_gets_definition_warning.patch ├── zoneinfo └── Makefile ├── zsh ├── Makefile └── patches │ ├── 001-50658-test-Enable-to-switch-between-C-UTF-8-locales-.patch │ ├── 002-51723-migrate-pcre-module-to-pcre2.patch │ ├── 003-51728-assign-pcre-named-capture-groups-to-a-hash.patch │ ├── 004-51738-support-pcre-s-alternative-DFA-matching-algori.patch │ ├── 005-51877-do-not-build-pcre-module-if-pcre2-config-is-no.patch │ ├── 006-52383-Avoid-incompatible-pointer-types-in-terminfo-g.patch │ └── 010-gcc14.patch ├── zstd └── Makefile └── zyxel-reset └── Makefile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/.gitignore -------------------------------------------------------------------------------- /.keys/626471F1.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/.keys/626471F1.asc -------------------------------------------------------------------------------- /.keys/D52BBB6B.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/.keys/D52BBB6B.asc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "git.alwaysSignOff": true 3 | } -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/README.md -------------------------------------------------------------------------------- /admin/atop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/admin/atop/Makefile -------------------------------------------------------------------------------- /admin/backuppc/files/backuppc.upgrade: -------------------------------------------------------------------------------- 1 | /etc/httpd.conf 2 | /data/backuppc/conf/ 3 | -------------------------------------------------------------------------------- /admin/bottom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/admin/bottom/Makefile -------------------------------------------------------------------------------- /admin/btop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/admin/btop/Makefile -------------------------------------------------------------------------------- /admin/btop/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | btop --version | grep "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /admin/htop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/admin/htop/Makefile -------------------------------------------------------------------------------- /admin/monit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/admin/monit/Makefile -------------------------------------------------------------------------------- /admin/netatop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/admin/netatop/Makefile -------------------------------------------------------------------------------- /admin/netdata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/admin/netdata/Makefile -------------------------------------------------------------------------------- /admin/netdata/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | netdata -version 2>&1 | grep "$2" 4 | -------------------------------------------------------------------------------- /admin/nload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/admin/nload/Makefile -------------------------------------------------------------------------------- /admin/nload/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | nload -h | grep "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /admin/nyx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/admin/nyx/Makefile -------------------------------------------------------------------------------- /admin/rsyslog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/admin/rsyslog/Makefile -------------------------------------------------------------------------------- /admin/schroot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/admin/schroot/Makefile -------------------------------------------------------------------------------- /admin/sudo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/admin/sudo/Makefile -------------------------------------------------------------------------------- /admin/sudo/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/admin/sudo/test.sh -------------------------------------------------------------------------------- /admin/syslog-ng/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | syslog-ng --version | grep "$2" 4 | -------------------------------------------------------------------------------- /admin/zabbix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/admin/zabbix/Makefile -------------------------------------------------------------------------------- /devel/autoconf/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/devel/autoconf/test.sh -------------------------------------------------------------------------------- /devel/bison/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/devel/bison/Makefile -------------------------------------------------------------------------------- /devel/cargo-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/devel/cargo-c/Makefile -------------------------------------------------------------------------------- /devel/delve/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/devel/delve/Makefile -------------------------------------------------------------------------------- /devel/flex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/devel/flex/Makefile -------------------------------------------------------------------------------- /devel/gcc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/devel/gcc/Config.in -------------------------------------------------------------------------------- /devel/gcc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/devel/gcc/Makefile -------------------------------------------------------------------------------- /devel/gcc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/devel/gcc/README -------------------------------------------------------------------------------- /devel/gitlab-runner/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gitlab-runner --version | grep "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /devel/m4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/devel/m4/Makefile -------------------------------------------------------------------------------- /devel/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/devel/make/Makefile -------------------------------------------------------------------------------- /devel/nasm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/devel/nasm/Makefile -------------------------------------------------------------------------------- /devel/patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/devel/patch/Makefile -------------------------------------------------------------------------------- /devel/pkgconf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/devel/pkgconf/Makefile -------------------------------------------------------------------------------- /devel/ragel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/devel/ragel/Makefile -------------------------------------------------------------------------------- /devel/scons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/devel/scons/Makefile -------------------------------------------------------------------------------- /devel/scons/scons.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/devel/scons/scons.mk -------------------------------------------------------------------------------- /ipv6/tayga/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/ipv6/tayga/Makefile -------------------------------------------------------------------------------- /kernel/mtd-rw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/kernel/mtd-rw/Makefile -------------------------------------------------------------------------------- /lang/cqueues/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/cqueues/Makefile -------------------------------------------------------------------------------- /lang/dkjson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/dkjson/Makefile -------------------------------------------------------------------------------- /lang/erlang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/erlang/Makefile -------------------------------------------------------------------------------- /lang/json4lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/json4lua/Makefile -------------------------------------------------------------------------------- /lang/ldbus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/ldbus/Makefile -------------------------------------------------------------------------------- /lang/linotify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/linotify/Makefile -------------------------------------------------------------------------------- /lang/lpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/lpeg/Makefile -------------------------------------------------------------------------------- /lang/lua-eco/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/lua-eco/Makefile -------------------------------------------------------------------------------- /lang/lua-ev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/lua-ev/Makefile -------------------------------------------------------------------------------- /lang/lua-ffi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/lua-ffi/Makefile -------------------------------------------------------------------------------- /lang/lua-md5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/lua-md5/Makefile -------------------------------------------------------------------------------- /lang/lua-sha2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/lua-sha2/Makefile -------------------------------------------------------------------------------- /lang/lua5.4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/lua5.4/Makefile -------------------------------------------------------------------------------- /lang/luabitop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/luabitop/Makefile -------------------------------------------------------------------------------- /lang/luaexpat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/luaexpat/Makefile -------------------------------------------------------------------------------- /lang/luajit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/luajit/Makefile -------------------------------------------------------------------------------- /lang/luajit2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/luajit2/Makefile -------------------------------------------------------------------------------- /lang/lualanes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/lualanes/Makefile -------------------------------------------------------------------------------- /lang/luaossl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/luaossl/Makefile -------------------------------------------------------------------------------- /lang/luaposix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/luaposix/Makefile -------------------------------------------------------------------------------- /lang/luaposix/scripts/uname: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo Linux 3 | -------------------------------------------------------------------------------- /lang/luarocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/luarocks/Makefile -------------------------------------------------------------------------------- /lang/luasec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/luasec/Makefile -------------------------------------------------------------------------------- /lang/luasoap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/luasoap/Makefile -------------------------------------------------------------------------------- /lang/luasql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/luasql/Makefile -------------------------------------------------------------------------------- /lang/luv/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/luv/Config.in -------------------------------------------------------------------------------- /lang/luv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/luv/Makefile -------------------------------------------------------------------------------- /lang/lyaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/lyaml/Makefile -------------------------------------------------------------------------------- /lang/lzmq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/lzmq/Makefile -------------------------------------------------------------------------------- /lang/node-hid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/node-hid/Makefile -------------------------------------------------------------------------------- /lang/node/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/node/Makefile -------------------------------------------------------------------------------- /lang/perl-ack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/perl-ack/Makefile -------------------------------------------------------------------------------- /lang/perl-ack/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/perl-ack/test.sh -------------------------------------------------------------------------------- /lang/perl-cgi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/perl-cgi/Makefile -------------------------------------------------------------------------------- /lang/perl-dbi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/perl-dbi/Makefile -------------------------------------------------------------------------------- /lang/perl-uri/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/perl-uri/Makefile -------------------------------------------------------------------------------- /lang/perl-www/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/perl-www/Makefile -------------------------------------------------------------------------------- /lang/perl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/perl/Config.in -------------------------------------------------------------------------------- /lang/perl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/perl/Makefile -------------------------------------------------------------------------------- /lang/perl/perlbase.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/perl/perlbase.mk -------------------------------------------------------------------------------- /lang/perl/perlmod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/perl/perlmod.mk -------------------------------------------------------------------------------- /lang/perl/perlver.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/perl/perlver.mk -------------------------------------------------------------------------------- /lang/php8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/php8/Makefile -------------------------------------------------------------------------------- /lang/php8/files/php8-fpm.config: -------------------------------------------------------------------------------- 1 | config php8-fpm 2 | option enabled 0 3 | -------------------------------------------------------------------------------- /lang/php8/pecl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/php8/pecl.mk -------------------------------------------------------------------------------- /lang/php8/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/php8/test.sh -------------------------------------------------------------------------------- /lang/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/python/README.md -------------------------------------------------------------------------------- /lang/python/pypi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/python/pypi.mk -------------------------------------------------------------------------------- /lang/python/python3/patches-host-pip/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lang/python/python3/patches-host-setuptools/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lang/ruby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/ruby/Makefile -------------------------------------------------------------------------------- /lang/ruby/files/ruby: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/ruby/files/ruby -------------------------------------------------------------------------------- /lang/rust/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/rust/Config.in -------------------------------------------------------------------------------- /lang/rust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/rust/Makefile -------------------------------------------------------------------------------- /lang/tcl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/tcl/Makefile -------------------------------------------------------------------------------- /lang/uuid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/uuid/Makefile -------------------------------------------------------------------------------- /lang/vala/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/lang/vala/Makefile -------------------------------------------------------------------------------- /libs/alsa-lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/alsa-lib/Makefile -------------------------------------------------------------------------------- /libs/apr-util/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/apr-util/Makefile -------------------------------------------------------------------------------- /libs/apr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/apr/Makefile -------------------------------------------------------------------------------- /libs/avahi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/avahi/Makefile -------------------------------------------------------------------------------- /libs/boost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/boost/Makefile -------------------------------------------------------------------------------- /libs/c-ares/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/c-ares/Makefile -------------------------------------------------------------------------------- /libs/cereal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/cereal/Makefile -------------------------------------------------------------------------------- /libs/check/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/check/Makefile -------------------------------------------------------------------------------- /libs/cjson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/cjson/Makefile -------------------------------------------------------------------------------- /libs/confuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/confuse/Makefile -------------------------------------------------------------------------------- /libs/czmq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/czmq/Makefile -------------------------------------------------------------------------------- /libs/davici/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/davici/Makefile -------------------------------------------------------------------------------- /libs/db/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/db/Makefile -------------------------------------------------------------------------------- /libs/dtndht/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/dtndht/Makefile -------------------------------------------------------------------------------- /libs/efivar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/efivar/Makefile -------------------------------------------------------------------------------- /libs/elektra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/elektra/Makefile -------------------------------------------------------------------------------- /libs/elektra/files/elektra.profile: -------------------------------------------------------------------------------- 1 | export XDG_CACHE_HOME=/tmp/ 2 | -------------------------------------------------------------------------------- /libs/ell/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/ell/Makefile -------------------------------------------------------------------------------- /libs/expat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/expat/Makefile -------------------------------------------------------------------------------- /libs/faad2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/faad2/Makefile -------------------------------------------------------------------------------- /libs/file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/file/Makefile -------------------------------------------------------------------------------- /libs/flac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/flac/Makefile -------------------------------------------------------------------------------- /libs/freetype/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/freetype/Makefile -------------------------------------------------------------------------------- /libs/gdbm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/gdbm/Makefile -------------------------------------------------------------------------------- /libs/getdns/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/getdns/Config.in -------------------------------------------------------------------------------- /libs/getdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/getdns/Makefile -------------------------------------------------------------------------------- /libs/giflib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/giflib/Makefile -------------------------------------------------------------------------------- /libs/glib2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/glib2/Makefile -------------------------------------------------------------------------------- /libs/gnu-efi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/gnu-efi/Makefile -------------------------------------------------------------------------------- /libs/gnutls/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/gnutls/Config.in -------------------------------------------------------------------------------- /libs/gnutls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/gnutls/Makefile -------------------------------------------------------------------------------- /libs/gpgme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/gpgme/Makefile -------------------------------------------------------------------------------- /libs/hidapi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/hidapi/Makefile -------------------------------------------------------------------------------- /libs/hiredis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/hiredis/Makefile -------------------------------------------------------------------------------- /libs/hwloc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/hwloc/Makefile -------------------------------------------------------------------------------- /libs/ibrdtn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/ibrdtn/Makefile -------------------------------------------------------------------------------- /libs/icu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/icu/Makefile -------------------------------------------------------------------------------- /libs/inih/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/inih/Makefile -------------------------------------------------------------------------------- /libs/intltool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/intltool/Makefile -------------------------------------------------------------------------------- /libs/jose/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/jose/Makefile -------------------------------------------------------------------------------- /libs/jsoncpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/jsoncpp/Makefile -------------------------------------------------------------------------------- /libs/keyutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/keyutils/Makefile -------------------------------------------------------------------------------- /libs/ldns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/ldns/Makefile -------------------------------------------------------------------------------- /libs/libaio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libaio/Makefile -------------------------------------------------------------------------------- /libs/libao/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libao/Makefile -------------------------------------------------------------------------------- /libs/libb64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libb64/Makefile -------------------------------------------------------------------------------- /libs/libcbor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libcbor/Makefile -------------------------------------------------------------------------------- /libs/libcli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libcli/Makefile -------------------------------------------------------------------------------- /libs/libcoap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libcoap/Makefile -------------------------------------------------------------------------------- /libs/libcups/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libcups/Makefile -------------------------------------------------------------------------------- /libs/libdaq3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libdaq3/Makefile -------------------------------------------------------------------------------- /libs/libdbi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libdbi/Makefile -------------------------------------------------------------------------------- /libs/libdht/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libdht/Makefile -------------------------------------------------------------------------------- /libs/libdnet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libdnet/Makefile -------------------------------------------------------------------------------- /libs/libdrm/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libdrm/Config.in -------------------------------------------------------------------------------- /libs/libdrm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libdrm/Makefile -------------------------------------------------------------------------------- /libs/libedit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libedit/Makefile -------------------------------------------------------------------------------- /libs/libesmtp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libesmtp/Makefile -------------------------------------------------------------------------------- /libs/libestr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libestr/Makefile -------------------------------------------------------------------------------- /libs/libev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libev/Makefile -------------------------------------------------------------------------------- /libs/libevdev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libevdev/Makefile -------------------------------------------------------------------------------- /libs/libexif/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libexif/Makefile -------------------------------------------------------------------------------- /libs/libffi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libffi/Makefile -------------------------------------------------------------------------------- /libs/libfido2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libfido2/Makefile -------------------------------------------------------------------------------- /libs/libfmt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libfmt/Makefile -------------------------------------------------------------------------------- /libs/libfstrm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libfstrm/Makefile -------------------------------------------------------------------------------- /libs/libftdi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libftdi/Makefile -------------------------------------------------------------------------------- /libs/libftdi1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libftdi1/Makefile -------------------------------------------------------------------------------- /libs/libgabe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libgabe/Makefile -------------------------------------------------------------------------------- /libs/libgd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libgd/Makefile -------------------------------------------------------------------------------- /libs/libgee/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libgee/Makefile -------------------------------------------------------------------------------- /libs/libgpiod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libgpiod/Makefile -------------------------------------------------------------------------------- /libs/libical/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libical/Makefile -------------------------------------------------------------------------------- /libs/libidn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libidn/Makefile -------------------------------------------------------------------------------- /libs/libidn2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libidn2/Makefile -------------------------------------------------------------------------------- /libs/libiio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libiio/Makefile -------------------------------------------------------------------------------- /libs/libinput/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libinput/Makefile -------------------------------------------------------------------------------- /libs/libjcat/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libjcat/Config.in -------------------------------------------------------------------------------- /libs/libjcat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libjcat/Makefile -------------------------------------------------------------------------------- /libs/libjwt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libjwt/Makefile -------------------------------------------------------------------------------- /libs/libksba/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libksba/Makefile -------------------------------------------------------------------------------- /libs/liblo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/liblo/Makefile -------------------------------------------------------------------------------- /libs/liblz4/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/liblz4/Config.in -------------------------------------------------------------------------------- /libs/liblz4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/liblz4/Makefile -------------------------------------------------------------------------------- /libs/libmad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libmad/Makefile -------------------------------------------------------------------------------- /libs/libmbim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libmbim/Makefile -------------------------------------------------------------------------------- /libs/libmms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libmms/Makefile -------------------------------------------------------------------------------- /libs/libmpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libmpc/Makefile -------------------------------------------------------------------------------- /libs/libmpeg2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libmpeg2/Makefile -------------------------------------------------------------------------------- /libs/libmraa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libmraa/Makefile -------------------------------------------------------------------------------- /libs/libndpi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libndpi/Makefile -------------------------------------------------------------------------------- /libs/libnvme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libnvme/Makefile -------------------------------------------------------------------------------- /libs/libogg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libogg/Makefile -------------------------------------------------------------------------------- /libs/liboil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/liboil/Makefile -------------------------------------------------------------------------------- /libs/liboping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/liboping/Makefile -------------------------------------------------------------------------------- /libs/libowfat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libowfat/Makefile -------------------------------------------------------------------------------- /libs/libp11/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libp11/Makefile -------------------------------------------------------------------------------- /libs/libpam/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libpam/Makefile -------------------------------------------------------------------------------- /libs/libpbc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libpbc/Makefile -------------------------------------------------------------------------------- /libs/libplist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libplist/Makefile -------------------------------------------------------------------------------- /libs/libpng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libpng/Makefile -------------------------------------------------------------------------------- /libs/libpqxx/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libpqxx/Config.in -------------------------------------------------------------------------------- /libs/libpqxx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libpqxx/Makefile -------------------------------------------------------------------------------- /libs/libpsl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libpsl/Makefile -------------------------------------------------------------------------------- /libs/libqmi/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libqmi/Config.in -------------------------------------------------------------------------------- /libs/libqmi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libqmi/Makefile -------------------------------------------------------------------------------- /libs/libre2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libre2/Makefile -------------------------------------------------------------------------------- /libs/libroxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libroxml/Makefile -------------------------------------------------------------------------------- /libs/libshout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libshout/Makefile -------------------------------------------------------------------------------- /libs/libslirp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libslirp/Makefile -------------------------------------------------------------------------------- /libs/libsoc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libsoc/Makefile -------------------------------------------------------------------------------- /libs/libsoup3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libsoup3/Makefile -------------------------------------------------------------------------------- /libs/libsoxr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libsoxr/Makefile -------------------------------------------------------------------------------- /libs/libssh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libssh/Makefile -------------------------------------------------------------------------------- /libs/libssh2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libssh2/Makefile -------------------------------------------------------------------------------- /libs/libtasn1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libtasn1/Makefile -------------------------------------------------------------------------------- /libs/libtins/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libtins/Config.in -------------------------------------------------------------------------------- /libs/libtins/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libtins/Makefile -------------------------------------------------------------------------------- /libs/libtirpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libtirpc/Makefile -------------------------------------------------------------------------------- /libs/libuecc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libuecc/Makefile -------------------------------------------------------------------------------- /libs/libugpio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libugpio/Makefile -------------------------------------------------------------------------------- /libs/libupm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libupm/Makefile -------------------------------------------------------------------------------- /libs/libupnp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libupnp/Makefile -------------------------------------------------------------------------------- /libs/libupnpp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libupnpp/Makefile -------------------------------------------------------------------------------- /libs/liburcu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/liburcu/Makefile -------------------------------------------------------------------------------- /libs/liburing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/liburing/Makefile -------------------------------------------------------------------------------- /libs/libutp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libutp/Makefile -------------------------------------------------------------------------------- /libs/libuv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libuv/Makefile -------------------------------------------------------------------------------- /libs/libuwifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libuwifi/Makefile -------------------------------------------------------------------------------- /libs/libuwsc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libuwsc/Makefile -------------------------------------------------------------------------------- /libs/libv4l/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libv4l/Makefile -------------------------------------------------------------------------------- /libs/libvpx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libvpx/Makefile -------------------------------------------------------------------------------- /libs/libwebp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libwebp/Makefile -------------------------------------------------------------------------------- /libs/libx264/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libx264/Makefile -------------------------------------------------------------------------------- /libs/libxmlb/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libxmlb/Config.in -------------------------------------------------------------------------------- /libs/libxmlb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libxmlb/Makefile -------------------------------------------------------------------------------- /libs/libxslt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libxslt/Makefile -------------------------------------------------------------------------------- /libs/libyang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libyang/Makefile -------------------------------------------------------------------------------- /libs/libzip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/libzip/Makefile -------------------------------------------------------------------------------- /libs/lmdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/lmdb/Makefile -------------------------------------------------------------------------------- /libs/lzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/lzo/Makefile -------------------------------------------------------------------------------- /libs/minizip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/minizip/Makefile -------------------------------------------------------------------------------- /libs/mtdev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/mtdev/Makefile -------------------------------------------------------------------------------- /libs/mxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/mxml/Makefile -------------------------------------------------------------------------------- /libs/nacl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/nacl/Makefile -------------------------------------------------------------------------------- /libs/nacl/do-openwrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/nacl/do-openwrt -------------------------------------------------------------------------------- /libs/neon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/neon/Makefile -------------------------------------------------------------------------------- /libs/newt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/newt/Makefile -------------------------------------------------------------------------------- /libs/newt/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/newt/test.sh -------------------------------------------------------------------------------- /libs/nghttp2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/nghttp2/Makefile -------------------------------------------------------------------------------- /libs/nghttp3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/nghttp3/Makefile -------------------------------------------------------------------------------- /libs/ngtcp2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/ngtcp2/Makefile -------------------------------------------------------------------------------- /libs/npth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/npth/Makefile -------------------------------------------------------------------------------- /libs/nspr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/nspr/Makefile -------------------------------------------------------------------------------- /libs/nss/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/nss/Makefile -------------------------------------------------------------------------------- /libs/openblas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/openblas/Makefile -------------------------------------------------------------------------------- /libs/openldap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/openldap/Makefile -------------------------------------------------------------------------------- /libs/openpgm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/openpgm/Makefile -------------------------------------------------------------------------------- /libs/opus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/opus/Makefile -------------------------------------------------------------------------------- /libs/opusfile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/opusfile/Makefile -------------------------------------------------------------------------------- /libs/p11-kit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/p11-kit/Makefile -------------------------------------------------------------------------------- /libs/p11-kit/files/opensc.module: -------------------------------------------------------------------------------- 1 | module: /usr/lib/opensc-pkcs11.so 2 | -------------------------------------------------------------------------------- /libs/pcre/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/pcre/Config.in -------------------------------------------------------------------------------- /libs/pcre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/pcre/Makefile -------------------------------------------------------------------------------- /libs/pixman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/pixman/Makefile -------------------------------------------------------------------------------- /libs/poco/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/poco/Makefile -------------------------------------------------------------------------------- /libs/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/protobuf/Makefile -------------------------------------------------------------------------------- /libs/psqlodbc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/psqlodbc/Makefile -------------------------------------------------------------------------------- /libs/pthsem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/pthsem/Makefile -------------------------------------------------------------------------------- /libs/qrencode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/qrencode/Makefile -------------------------------------------------------------------------------- /libs/redis/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/redis/Makefile -------------------------------------------------------------------------------- /libs/sbc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/sbc/Makefile -------------------------------------------------------------------------------- /libs/slang2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/slang2/Makefile -------------------------------------------------------------------------------- /libs/speex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/speex/Makefile -------------------------------------------------------------------------------- /libs/speexdsp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/speexdsp/Makefile -------------------------------------------------------------------------------- /libs/spice/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/spice/Makefile -------------------------------------------------------------------------------- /libs/sqlite3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/sqlite3/Makefile -------------------------------------------------------------------------------- /libs/srt/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/srt/Config.in -------------------------------------------------------------------------------- /libs/srt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/srt/Makefile -------------------------------------------------------------------------------- /libs/taglib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/taglib/Makefile -------------------------------------------------------------------------------- /libs/tdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/tdb/Makefile -------------------------------------------------------------------------------- /libs/tiff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/tiff/Makefile -------------------------------------------------------------------------------- /libs/tinycdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/tinycdb/Makefile -------------------------------------------------------------------------------- /libs/uci2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/uci2/Makefile -------------------------------------------------------------------------------- /libs/udns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/udns/Makefile -------------------------------------------------------------------------------- /libs/unixodbc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/unixodbc/Makefile -------------------------------------------------------------------------------- /libs/uw-imap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/uw-imap/Makefile -------------------------------------------------------------------------------- /libs/vips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/vips/Makefile -------------------------------------------------------------------------------- /libs/xmlrpc-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/xmlrpc-c/Makefile -------------------------------------------------------------------------------- /libs/yajl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/yajl/Makefile -------------------------------------------------------------------------------- /libs/yaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/yaml/Makefile -------------------------------------------------------------------------------- /libs/zlog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/zlog/Makefile -------------------------------------------------------------------------------- /libs/zmq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/libs/zmq/Makefile -------------------------------------------------------------------------------- /mail/alpine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/mail/alpine/Makefile -------------------------------------------------------------------------------- /mail/dovecot/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/mail/dovecot/Config.in -------------------------------------------------------------------------------- /mail/dovecot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/mail/dovecot/Makefile -------------------------------------------------------------------------------- /mail/exim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/mail/exim/Makefile -------------------------------------------------------------------------------- /mail/fdm/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/mail/fdm/Config.in -------------------------------------------------------------------------------- /mail/fdm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/mail/fdm/Makefile -------------------------------------------------------------------------------- /mail/greyfix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/mail/greyfix/Makefile -------------------------------------------------------------------------------- /mail/mailsend/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/mail/mailsend/Makefile -------------------------------------------------------------------------------- /mail/mblaze/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/mail/mblaze/Makefile -------------------------------------------------------------------------------- /mail/msmtp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/mail/msmtp/Makefile -------------------------------------------------------------------------------- /mail/msmtp/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/mail/msmtp/test.sh -------------------------------------------------------------------------------- /mail/mutt/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/mail/mutt/Config.in -------------------------------------------------------------------------------- /mail/mutt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/mail/mutt/Makefile -------------------------------------------------------------------------------- /mail/nail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/mail/nail/Makefile -------------------------------------------------------------------------------- /mail/opendkim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/mail/opendkim/Makefile -------------------------------------------------------------------------------- /mail/postfix/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/mail/postfix/Makefile -------------------------------------------------------------------------------- /mail/sendmail/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/mail/sendmail/Makefile -------------------------------------------------------------------------------- /net/acme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/acme/Makefile -------------------------------------------------------------------------------- /net/adblock-fast/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/"$1" version 2>&1 | grep "$2" 4 | -------------------------------------------------------------------------------- /net/adblock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/adblock/Makefile -------------------------------------------------------------------------------- /net/adblock/files/adblock.allowlist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/adblock/files/adblock.blocklist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/adblock/files/adblock.custom.feeds: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/addrwatch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/addrwatch/Makefile -------------------------------------------------------------------------------- /net/aggregate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/aggregate/Makefile -------------------------------------------------------------------------------- /net/ampr-ripd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ampr-ripd/Makefile -------------------------------------------------------------------------------- /net/ampr-ripd/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$1" -h 2>&1 | grep "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /net/announce/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/announce/Makefile -------------------------------------------------------------------------------- /net/antiblock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/antiblock/Makefile -------------------------------------------------------------------------------- /net/antiblock/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/antiblock/test.sh -------------------------------------------------------------------------------- /net/apache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/apache/Makefile -------------------------------------------------------------------------------- /net/apcupsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/apcupsd/Makefile -------------------------------------------------------------------------------- /net/apinger/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/apinger/Makefile -------------------------------------------------------------------------------- /net/aria2/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/aria2/Config.in -------------------------------------------------------------------------------- /net/aria2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/aria2/Makefile -------------------------------------------------------------------------------- /net/ariang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ariang/Makefile -------------------------------------------------------------------------------- /net/arp-scan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/arp-scan/Makefile -------------------------------------------------------------------------------- /net/atftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/atftp/Makefile -------------------------------------------------------------------------------- /net/atftp/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$1" --version 2>&1 | grep "$2" 4 | -------------------------------------------------------------------------------- /net/autossh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/autossh/Makefile -------------------------------------------------------------------------------- /net/banip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/banip/Makefile -------------------------------------------------------------------------------- /net/banip/files/banip.allowlist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/banip/files/banip.blocklist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/banip/files/banip.custom.feeds: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/bcp38/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/bcp38/Makefile -------------------------------------------------------------------------------- /net/bcp38/files/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/bcp38/files/run.sh -------------------------------------------------------------------------------- /net/bfdd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/bfdd/Makefile -------------------------------------------------------------------------------- /net/bind/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/bind/Config.in -------------------------------------------------------------------------------- /net/bind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/bind/Makefile -------------------------------------------------------------------------------- /net/bitlbee/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/bitlbee/Makefile -------------------------------------------------------------------------------- /net/bmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/bmon/Makefile -------------------------------------------------------------------------------- /net/boinc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/boinc/Makefile -------------------------------------------------------------------------------- /net/bonding/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/bonding/Makefile -------------------------------------------------------------------------------- /net/bpfcountd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/bpfcountd/Makefile -------------------------------------------------------------------------------- /net/bwm-ng/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/bwm-ng/Config.in -------------------------------------------------------------------------------- /net/bwm-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/bwm-ng/Makefile -------------------------------------------------------------------------------- /net/bwping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/bwping/Makefile -------------------------------------------------------------------------------- /net/cgi-io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/cgi-io/Makefile -------------------------------------------------------------------------------- /net/chaosvpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/chaosvpn/Makefile -------------------------------------------------------------------------------- /net/chrony/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/chrony/Makefile -------------------------------------------------------------------------------- /net/clamav/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/clamav/Makefile -------------------------------------------------------------------------------- /net/cloudflared/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cloudflared --version | grep "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /net/cloudreve/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/cloudreve/Makefile -------------------------------------------------------------------------------- /net/conserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/conserver/Makefile -------------------------------------------------------------------------------- /net/conserver/files/console.cf: -------------------------------------------------------------------------------- 1 | config * { 2 | master localhost; 3 | port 3109; 4 | } 5 | -------------------------------------------------------------------------------- /net/croc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/croc/Makefile -------------------------------------------------------------------------------- /net/crowdsec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/crowdsec/Makefile -------------------------------------------------------------------------------- /net/cshark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/cshark/Makefile -------------------------------------------------------------------------------- /net/curl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/curl/Config.in -------------------------------------------------------------------------------- /net/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/curl/Makefile -------------------------------------------------------------------------------- /net/dante/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/dante/Makefile -------------------------------------------------------------------------------- /net/darkstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/darkstat/Makefile -------------------------------------------------------------------------------- /net/databag/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/databag/Makefile -------------------------------------------------------------------------------- /net/davfs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/davfs2/Makefile -------------------------------------------------------------------------------- /net/dawn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/dawn/Makefile -------------------------------------------------------------------------------- /net/dcstad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/dcstad/Makefile -------------------------------------------------------------------------------- /net/dcwapd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/dcwapd/Makefile -------------------------------------------------------------------------------- /net/dhcpcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/dhcpcd/Makefile -------------------------------------------------------------------------------- /net/dhtd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/dhtd/Makefile -------------------------------------------------------------------------------- /net/dmapd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/dmapd/Makefile -------------------------------------------------------------------------------- /net/dnsdist/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/dnsdist/Config.in -------------------------------------------------------------------------------- /net/dnsdist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/dnsdist/Makefile -------------------------------------------------------------------------------- /net/dnsdist/files/dnsdist.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/dnslookup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/dnslookup/Makefile -------------------------------------------------------------------------------- /net/dnslookup/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | dnslookup --version | grep "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /net/dnsproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/dnsproxy/Makefile -------------------------------------------------------------------------------- /net/dnsproxy/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | dnsproxy --version | grep "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /net/dnstap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/dnstap/Makefile -------------------------------------------------------------------------------- /net/dnstop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/dnstop/Makefile -------------------------------------------------------------------------------- /net/dufs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/dufs/Makefile -------------------------------------------------------------------------------- /net/dynapoint/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/dynapoint/Makefile -------------------------------------------------------------------------------- /net/eoip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/eoip/Makefile -------------------------------------------------------------------------------- /net/esniper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/esniper/Makefile -------------------------------------------------------------------------------- /net/esp2net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/esp2net/Makefile -------------------------------------------------------------------------------- /net/etebase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/etebase/Makefile -------------------------------------------------------------------------------- /net/etherwake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/etherwake/Makefile -------------------------------------------------------------------------------- /net/evilginx2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/evilginx2/Makefile -------------------------------------------------------------------------------- /net/fail2ban/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/fail2ban/Makefile -------------------------------------------------------------------------------- /net/fail2ban/files/db.conf: -------------------------------------------------------------------------------- 1 | [DEFAULT] 2 | dbpurgeage = 10d 3 | -------------------------------------------------------------------------------- /net/fakepop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/fakepop/Makefile -------------------------------------------------------------------------------- /net/fastd/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/fastd/Config.in -------------------------------------------------------------------------------- /net/fastd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/fastd/Makefile -------------------------------------------------------------------------------- /net/fastd/files/fastd.upgrade: -------------------------------------------------------------------------------- 1 | /etc/fastd/ 2 | -------------------------------------------------------------------------------- /net/flent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/flent/Makefile -------------------------------------------------------------------------------- /net/foolsm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/foolsm/Makefile -------------------------------------------------------------------------------- /net/fping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/fping/Makefile -------------------------------------------------------------------------------- /net/fping/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$1" -v 2>&1 | grep "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /net/frp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/frp/Makefile -------------------------------------------------------------------------------- /net/frp/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | $1 -v 2>&1 | grep -F "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /net/frr/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/frr/Config.in -------------------------------------------------------------------------------- /net/frr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/frr/Makefile -------------------------------------------------------------------------------- /net/frr/files/daemons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/frr/files/daemons -------------------------------------------------------------------------------- /net/frr/files/frr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/frr/files/frr -------------------------------------------------------------------------------- /net/frr/files/frr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/frr/files/frr.conf -------------------------------------------------------------------------------- /net/fsh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/fsh/Makefile -------------------------------------------------------------------------------- /net/fsh/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$1" 2>&1 | grep "$2" 4 | -------------------------------------------------------------------------------- /net/fwknop/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/fwknop/Config.in -------------------------------------------------------------------------------- /net/fwknop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/fwknop/Makefile -------------------------------------------------------------------------------- /net/gatling/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/gatling/Makefile -------------------------------------------------------------------------------- /net/gatling/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gatling -h 4 | -------------------------------------------------------------------------------- /net/gensio/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/gensio/Config.in -------------------------------------------------------------------------------- /net/gensio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/gensio/Makefile -------------------------------------------------------------------------------- /net/gg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/gg/Makefile -------------------------------------------------------------------------------- /net/gg/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gg --version | grep "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /net/git-lfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/git-lfs/Makefile -------------------------------------------------------------------------------- /net/git-lfs/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | git-lfs --version|grep "$2" 4 | -------------------------------------------------------------------------------- /net/git/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/git/Makefile -------------------------------------------------------------------------------- /net/gitolite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/gitolite/Makefile -------------------------------------------------------------------------------- /net/gnunet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/gnunet/Makefile -------------------------------------------------------------------------------- /net/gnunet/files/gnunet.upgrade: -------------------------------------------------------------------------------- 1 | /etc/gnunet 2 | -------------------------------------------------------------------------------- /net/gnunet/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/gnunet/test.sh -------------------------------------------------------------------------------- /net/gping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/gping/Makefile -------------------------------------------------------------------------------- /net/gsocket/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/gsocket/Makefile -------------------------------------------------------------------------------- /net/gsocket/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | gs-netcat -h 2>&1 | grep "$2" 4 | -------------------------------------------------------------------------------- /net/haproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/haproxy/Makefile -------------------------------------------------------------------------------- /net/hcxtools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/hcxtools/Makefile -------------------------------------------------------------------------------- /net/hev-socks5-server/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$1" 2>&1 | grep "$2" 4 | -------------------------------------------------------------------------------- /net/hev-socks5-tproxy/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$1" 2>&1 | grep "$2" 4 | -------------------------------------------------------------------------------- /net/hev-socks5-tunnel/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$1" 2>&1 | grep "$2" 4 | -------------------------------------------------------------------------------- /net/horst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/horst/Makefile -------------------------------------------------------------------------------- /net/horst/horst.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/horst/horst.config -------------------------------------------------------------------------------- /net/horst/horst.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/horst/horst.init -------------------------------------------------------------------------------- /net/hping3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/hping3/Makefile -------------------------------------------------------------------------------- /net/hs20/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/hs20/Makefile -------------------------------------------------------------------------------- /net/htpdate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/htpdate/Makefile -------------------------------------------------------------------------------- /net/httping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/httping/Makefile -------------------------------------------------------------------------------- /net/i2pd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/i2pd/Makefile -------------------------------------------------------------------------------- /net/ibrdtnd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ibrdtnd/Makefile -------------------------------------------------------------------------------- /net/ifstat/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ifstat/Config.in -------------------------------------------------------------------------------- /net/ifstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ifstat/Makefile -------------------------------------------------------------------------------- /net/iftop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/iftop/Makefile -------------------------------------------------------------------------------- /net/igmpproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/igmpproxy/Makefile -------------------------------------------------------------------------------- /net/inadyn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/inadyn/Makefile -------------------------------------------------------------------------------- /net/iodine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/iodine/Makefile -------------------------------------------------------------------------------- /net/iperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/iperf/Makefile -------------------------------------------------------------------------------- /net/iperf3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/iperf3/Makefile -------------------------------------------------------------------------------- /net/iptraf-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/iptraf-ng/Makefile -------------------------------------------------------------------------------- /net/iputils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/iputils/Makefile -------------------------------------------------------------------------------- /net/ipvsadm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ipvsadm/Makefile -------------------------------------------------------------------------------- /net/irssi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/irssi/Makefile -------------------------------------------------------------------------------- /net/irssi/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | irssi --version 2>&1 | grep "$2" 4 | -------------------------------------------------------------------------------- /net/irtt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/irtt/Makefile -------------------------------------------------------------------------------- /net/irtt/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/irtt/test.sh -------------------------------------------------------------------------------- /net/isc-dhcp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/isc-dhcp/Makefile -------------------------------------------------------------------------------- /net/jool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/jool/Makefile -------------------------------------------------------------------------------- /net/kadnode/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/kadnode/Config.in -------------------------------------------------------------------------------- /net/kadnode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/kadnode/Makefile -------------------------------------------------------------------------------- /net/kcptun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/kcptun/Makefile -------------------------------------------------------------------------------- /net/kcptun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/kcptun/README.md -------------------------------------------------------------------------------- /net/kea/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/kea/Makefile -------------------------------------------------------------------------------- /net/kea/files/kea.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/kea/files/kea.init -------------------------------------------------------------------------------- /net/knot-resolver/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | kresd --version | grep "$2" 4 | -------------------------------------------------------------------------------- /net/knot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/knot/Makefile -------------------------------------------------------------------------------- /net/knxd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/knxd/Makefile -------------------------------------------------------------------------------- /net/kplex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/kplex/Makefile -------------------------------------------------------------------------------- /net/krb5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/krb5/Makefile -------------------------------------------------------------------------------- /net/krb5/files/krb5kdc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/krb5/files/krb5kdc -------------------------------------------------------------------------------- /net/lcdringer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/lcdringer/Makefile -------------------------------------------------------------------------------- /net/leech/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/leech/Makefile -------------------------------------------------------------------------------- /net/lftp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/lftp/Makefile -------------------------------------------------------------------------------- /net/libndp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/libndp/Makefile -------------------------------------------------------------------------------- /net/libreswan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/libreswan/Makefile -------------------------------------------------------------------------------- /net/libreswan/files/usr/share/nftables.d/chain-pre/srcnat/001-libreswan.nft: -------------------------------------------------------------------------------- 1 | jump libreswan_srcnat 2 | -------------------------------------------------------------------------------- /net/lighttpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/lighttpd/Makefile -------------------------------------------------------------------------------- /net/linknx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/linknx/Makefile -------------------------------------------------------------------------------- /net/linuxptp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/linuxptp/Makefile -------------------------------------------------------------------------------- /net/lynx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/lynx/Makefile -------------------------------------------------------------------------------- /net/maccalc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/maccalc/Makefile -------------------------------------------------------------------------------- /net/maccalc/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/maccalc/src/main.c -------------------------------------------------------------------------------- /net/mbusd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/mbusd/Makefile -------------------------------------------------------------------------------- /net/memcached/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/memcached/Makefile -------------------------------------------------------------------------------- /net/miniupnpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/miniupnpc/Makefile -------------------------------------------------------------------------------- /net/miniupnpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/miniupnpd/Makefile -------------------------------------------------------------------------------- /net/mosh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/mosh/Makefile -------------------------------------------------------------------------------- /net/mosquitto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/mosquitto/Makefile -------------------------------------------------------------------------------- /net/mptcpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/mptcpd/Makefile -------------------------------------------------------------------------------- /net/mrmctl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/mrmctl/Makefile -------------------------------------------------------------------------------- /net/mtr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/mtr/Makefile -------------------------------------------------------------------------------- /net/mwan3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/mwan3/Makefile -------------------------------------------------------------------------------- /net/natmap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/natmap/Makefile -------------------------------------------------------------------------------- /net/natmap/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$1" 2>&1 | grep "$2" 4 | -------------------------------------------------------------------------------- /net/nbd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/nbd/Makefile -------------------------------------------------------------------------------- /net/ncp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ncp/Makefile -------------------------------------------------------------------------------- /net/nebula/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/nebula/Makefile -------------------------------------------------------------------------------- /net/nebula/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/nebula/test.sh -------------------------------------------------------------------------------- /net/net-mtools/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/net-mtools/test.sh -------------------------------------------------------------------------------- /net/net-snmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/net-snmp/Makefile -------------------------------------------------------------------------------- /net/net-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/net-tools/Makefile -------------------------------------------------------------------------------- /net/netatalk/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/netatalk/Config.in -------------------------------------------------------------------------------- /net/netatalk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/netatalk/Makefile -------------------------------------------------------------------------------- /net/netavark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/netavark/Makefile -------------------------------------------------------------------------------- /net/netbird/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/netbird/Makefile -------------------------------------------------------------------------------- /net/netbird/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/netbird/test.sh -------------------------------------------------------------------------------- /net/netcat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/netcat/Makefile -------------------------------------------------------------------------------- /net/netifyd/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/netifyd/Config.in -------------------------------------------------------------------------------- /net/netifyd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/netifyd/Makefile -------------------------------------------------------------------------------- /net/netifyd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/netifyd/README.md -------------------------------------------------------------------------------- /net/netopeer2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/netopeer2/Makefile -------------------------------------------------------------------------------- /net/netperf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/netperf/Makefile -------------------------------------------------------------------------------- /net/netstinky/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/netstinky/Makefile -------------------------------------------------------------------------------- /net/nextdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/nextdns/Makefile -------------------------------------------------------------------------------- /net/nfdump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/nfdump/Makefile -------------------------------------------------------------------------------- /net/nfs-kernel-server/files/nfsd.exports: -------------------------------------------------------------------------------- 1 | # /mnt *(ro,all_squash,insecure,sync) 2 | -------------------------------------------------------------------------------- /net/nft-qos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/nft-qos/Makefile -------------------------------------------------------------------------------- /net/nginx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/nginx/Makefile -------------------------------------------------------------------------------- /net/ngircd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ngircd/Makefile -------------------------------------------------------------------------------- /net/nlbwmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/nlbwmon/Makefile -------------------------------------------------------------------------------- /net/nmap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/nmap/Makefile -------------------------------------------------------------------------------- /net/nqptp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/nqptp/Makefile -------------------------------------------------------------------------------- /net/nsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/nsd/Makefile -------------------------------------------------------------------------------- /net/nsd/files/nsd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/nsd/files/nsd.init -------------------------------------------------------------------------------- /net/ntpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ntpd/Makefile -------------------------------------------------------------------------------- /net/ntpd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ntpd/README.md -------------------------------------------------------------------------------- /net/nut/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/nut/Config.in -------------------------------------------------------------------------------- /net/nut/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/nut/Makefile -------------------------------------------------------------------------------- /net/nut/files/nut_cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/nut/files/nut_cgi -------------------------------------------------------------------------------- /net/ocserv/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ocserv/Config.in -------------------------------------------------------------------------------- /net/ocserv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ocserv/Makefile -------------------------------------------------------------------------------- /net/ocserv/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ocserv/README -------------------------------------------------------------------------------- /net/ola/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ola/Makefile -------------------------------------------------------------------------------- /net/oor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/oor/Makefile -------------------------------------------------------------------------------- /net/open-isns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/open-isns/Makefile -------------------------------------------------------------------------------- /net/openappid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/openappid/Makefile -------------------------------------------------------------------------------- /net/openconnect/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/openconnect/README -------------------------------------------------------------------------------- /net/openelp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/openelp/Makefile -------------------------------------------------------------------------------- /net/openelp/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/openelp/test.sh -------------------------------------------------------------------------------- /net/openlist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/openlist/Makefile -------------------------------------------------------------------------------- /net/openlist/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | openlist version | grep "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /net/openssh/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/openssh/Config.in -------------------------------------------------------------------------------- /net/openssh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/openssh/Makefile -------------------------------------------------------------------------------- /net/openvpn-easy-rsa/files/openvpn-easy-rsa.upgrade: -------------------------------------------------------------------------------- 1 | /etc/easy-rsa/pki/ 2 | -------------------------------------------------------------------------------- /net/openvpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/openvpn/Makefile -------------------------------------------------------------------------------- /net/openvpn/files/openvpn.upgrade: -------------------------------------------------------------------------------- 1 | /etc/openvpn/ 2 | -------------------------------------------------------------------------------- /net/openvpn/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/openvpn/test.sh -------------------------------------------------------------------------------- /net/ostiary/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ostiary/Makefile -------------------------------------------------------------------------------- /net/overture/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/overture/Makefile -------------------------------------------------------------------------------- /net/overture/files/domain_alternative_sample: -------------------------------------------------------------------------------- 1 | alternative.example -------------------------------------------------------------------------------- /net/overture/files/domain_primary_sample: -------------------------------------------------------------------------------- 1 | primary.example -------------------------------------------------------------------------------- /net/overture/files/domain_ttl_sample: -------------------------------------------------------------------------------- 1 | ttl.example 1000 -------------------------------------------------------------------------------- /net/overture/files/hosts_sample: -------------------------------------------------------------------------------- 1 | 127.0.0.1 localhost -------------------------------------------------------------------------------- /net/overture/files/ip_network_alternative_sample: -------------------------------------------------------------------------------- 1 | 127.0.0.10/32 -------------------------------------------------------------------------------- /net/overture/files/ip_network_primary_sample: -------------------------------------------------------------------------------- 1 | 127.0.0.9/32 -------------------------------------------------------------------------------- /net/ovn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ovn/Makefile -------------------------------------------------------------------------------- /net/ovsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ovsd/Makefile -------------------------------------------------------------------------------- /net/owipcalc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/owipcalc/Makefile -------------------------------------------------------------------------------- /net/p910nd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/p910nd/Makefile -------------------------------------------------------------------------------- /net/pagekitec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/pagekitec/Makefile -------------------------------------------------------------------------------- /net/pbr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/pbr/Makefile -------------------------------------------------------------------------------- /net/pbr/files/usr/share/pbr/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/pbr/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/pbr version 2>&1 | grep "$2" 4 | -------------------------------------------------------------------------------- /net/pdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/pdns/Makefile -------------------------------------------------------------------------------- /net/pen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/pen/Makefile -------------------------------------------------------------------------------- /net/phantap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/phantap/Makefile -------------------------------------------------------------------------------- /net/pingcheck/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/pingcheck/Makefile -------------------------------------------------------------------------------- /net/pixiewps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/pixiewps/Makefile -------------------------------------------------------------------------------- /net/pppossh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/pppossh/Makefile -------------------------------------------------------------------------------- /net/pppossh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/pppossh/README.md -------------------------------------------------------------------------------- /net/pptpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/pptpd/Makefile -------------------------------------------------------------------------------- /net/privoxy/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/privoxy/Config.in -------------------------------------------------------------------------------- /net/privoxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/privoxy/Makefile -------------------------------------------------------------------------------- /net/prosody/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/prosody/Makefile -------------------------------------------------------------------------------- /net/qcsuper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/qcsuper/Makefile -------------------------------------------------------------------------------- /net/radicale/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/radicale/Makefile -------------------------------------------------------------------------------- /net/radicale2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/radicale2/Makefile -------------------------------------------------------------------------------- /net/ratched/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ratched/Makefile -------------------------------------------------------------------------------- /net/ratelimit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ratelimit/Makefile -------------------------------------------------------------------------------- /net/rclone-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/rclone-ng/Makefile -------------------------------------------------------------------------------- /net/rclone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/rclone/Makefile -------------------------------------------------------------------------------- /net/rclone/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/rclone/test.sh -------------------------------------------------------------------------------- /net/reaver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/reaver/Makefile -------------------------------------------------------------------------------- /net/redsocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/redsocks/Makefile -------------------------------------------------------------------------------- /net/remserial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/remserial/Makefile -------------------------------------------------------------------------------- /net/respondd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/respondd/Makefile -------------------------------------------------------------------------------- /net/rp-pppoe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/rp-pppoe/Makefile -------------------------------------------------------------------------------- /net/rpcbind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/rpcbind/Makefile -------------------------------------------------------------------------------- /net/rsync/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/rsync/Config.in -------------------------------------------------------------------------------- /net/rsync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/rsync/Makefile -------------------------------------------------------------------------------- /net/rtorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/rtorrent/Makefile -------------------------------------------------------------------------------- /net/samba4/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/samba4/Config.in -------------------------------------------------------------------------------- /net/samba4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/samba4/Makefile -------------------------------------------------------------------------------- /net/scapy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/scapy/Makefile -------------------------------------------------------------------------------- /net/ser2net/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ser2net/Makefile -------------------------------------------------------------------------------- /net/shorewall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/shorewall/Makefile -------------------------------------------------------------------------------- /net/shorewall/files/vardir: -------------------------------------------------------------------------------- 1 | VARDIR=/tmp/state 2 | 3 | -------------------------------------------------------------------------------- /net/shorewall6/files/vardir: -------------------------------------------------------------------------------- 1 | VARDIR=/tmp/state 2 | 3 | -------------------------------------------------------------------------------- /net/siit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/siit/Makefile -------------------------------------------------------------------------------- /net/siit/src/siit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/siit/src/siit.c -------------------------------------------------------------------------------- /net/siit/src/siit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/siit/src/siit.h -------------------------------------------------------------------------------- /net/sing-box/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/sing-box/Makefile -------------------------------------------------------------------------------- /net/sing-box/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sing-box version | grep -F "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /net/smartdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/smartdns/Makefile -------------------------------------------------------------------------------- /net/smcroute/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/smcroute/Makefile -------------------------------------------------------------------------------- /net/snort3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/snort3/Makefile -------------------------------------------------------------------------------- /net/snowflake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/snowflake/Makefile -------------------------------------------------------------------------------- /net/socat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/socat/Makefile -------------------------------------------------------------------------------- /net/softethervpn/files/dummy: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /net/softethervpn5/files/dummy: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /net/softflowd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/softflowd/Makefile -------------------------------------------------------------------------------- /net/spoofer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/spoofer/Makefile -------------------------------------------------------------------------------- /net/squid/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/squid/Config.in -------------------------------------------------------------------------------- /net/squid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/squid/Makefile -------------------------------------------------------------------------------- /net/sscep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/sscep/Makefile -------------------------------------------------------------------------------- /net/sscep/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | sscep | grep -q "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /net/sshfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/sshfs/Makefile -------------------------------------------------------------------------------- /net/sshtunnel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/sshtunnel/Makefile -------------------------------------------------------------------------------- /net/sslh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/sslh/Makefile -------------------------------------------------------------------------------- /net/stubby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/stubby/Makefile -------------------------------------------------------------------------------- /net/stunnel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/stunnel/Makefile -------------------------------------------------------------------------------- /net/sysrepo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/sysrepo/Makefile -------------------------------------------------------------------------------- /net/tac_plus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/tac_plus/Makefile -------------------------------------------------------------------------------- /net/tailscale/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/tailscale/Makefile -------------------------------------------------------------------------------- /net/tailscale/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/tailscale/test.sh -------------------------------------------------------------------------------- /net/tcpproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/tcpproxy/Makefile -------------------------------------------------------------------------------- /net/tcpreplay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/tcpreplay/Makefile -------------------------------------------------------------------------------- /net/tcpreplay/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/tcpreplay/test.sh -------------------------------------------------------------------------------- /net/tgt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/tgt/Makefile -------------------------------------------------------------------------------- /net/tgt/files/tgt.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/tgt/files/tgt.init -------------------------------------------------------------------------------- /net/tgt/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | tgtd -V | grep "$2" 4 | -------------------------------------------------------------------------------- /net/tinc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/tinc/Makefile -------------------------------------------------------------------------------- /net/tinc/files/tinc.upgrade: -------------------------------------------------------------------------------- 1 | /etc/tinc/ 2 | -------------------------------------------------------------------------------- /net/tinyproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/tinyproxy/Makefile -------------------------------------------------------------------------------- /net/tmate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/tmate/Makefile -------------------------------------------------------------------------------- /net/tmate/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | tmate -V | grep "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /net/tor-hs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/tor-hs/Makefile -------------------------------------------------------------------------------- /net/tor-hs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/tor-hs/README.md -------------------------------------------------------------------------------- /net/tor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/tor/Makefile -------------------------------------------------------------------------------- /net/tor/files/tor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/tor/files/tor.conf -------------------------------------------------------------------------------- /net/tor/files/tor.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/tor/files/tor.init -------------------------------------------------------------------------------- /net/torsocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/torsocks/Makefile -------------------------------------------------------------------------------- /net/trojan-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/trojan-go/Makefile -------------------------------------------------------------------------------- /net/trojan-go/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | trojan-go -version | grep "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /net/u2pnpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/u2pnpd/Makefile -------------------------------------------------------------------------------- /net/uacme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/uacme/Makefile -------------------------------------------------------------------------------- /net/uacme/files/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/uacme/files/run.sh -------------------------------------------------------------------------------- /net/uanytun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/uanytun/Makefile -------------------------------------------------------------------------------- /net/udptunnel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/udptunnel/Makefile -------------------------------------------------------------------------------- /net/udpxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/udpxy/Makefile -------------------------------------------------------------------------------- /net/ulogd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ulogd/Makefile -------------------------------------------------------------------------------- /net/umurmur/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/umurmur/Makefile -------------------------------------------------------------------------------- /net/unbound/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/unbound/Makefile -------------------------------------------------------------------------------- /net/uradvd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/uradvd/Makefile -------------------------------------------------------------------------------- /net/usbip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/usbip/Makefile -------------------------------------------------------------------------------- /net/uspot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/uspot/Makefile -------------------------------------------------------------------------------- /net/usteer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/usteer/Makefile -------------------------------------------------------------------------------- /net/uwsgi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/uwsgi/Makefile -------------------------------------------------------------------------------- /net/v2ray-core/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/v2ray-core/test.sh -------------------------------------------------------------------------------- /net/v2raya/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/v2raya/Makefile -------------------------------------------------------------------------------- /net/v2raya/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | v2raya --version | grep "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /net/vallumd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/vallumd/Makefile -------------------------------------------------------------------------------- /net/vnstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/vnstat/Makefile -------------------------------------------------------------------------------- /net/vnstat2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/vnstat2/Makefile -------------------------------------------------------------------------------- /net/vnstat2/files/vnstat.config: -------------------------------------------------------------------------------- 1 | config vnstat 2 | # list interface br-lan 3 | -------------------------------------------------------------------------------- /net/vpnc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/vpnc/Config.in -------------------------------------------------------------------------------- /net/vpnc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/vpnc/Makefile -------------------------------------------------------------------------------- /net/vpnc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/vpnc/README -------------------------------------------------------------------------------- /net/vpnc/files/vpnc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/vpnc/files/vpnc.sh -------------------------------------------------------------------------------- /net/vpnc/files/vpnc.upgrade: -------------------------------------------------------------------------------- 1 | /etc/vpnc/ca-vpn-*.pem 2 | 3 | -------------------------------------------------------------------------------- /net/vsftpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/vsftpd/Makefile -------------------------------------------------------------------------------- /net/wakeonlan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/wakeonlan/Makefile -------------------------------------------------------------------------------- /net/wavemon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/wavemon/Makefile -------------------------------------------------------------------------------- /net/wfb-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/wfb-ng/Makefile -------------------------------------------------------------------------------- /net/wget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/wget/Makefile -------------------------------------------------------------------------------- /net/wgsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/wgsd/Makefile -------------------------------------------------------------------------------- /net/wgsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/wgsd/README.md -------------------------------------------------------------------------------- /net/wifidog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/wifidog/Makefile -------------------------------------------------------------------------------- /net/wsdd2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/wsdd2/Makefile -------------------------------------------------------------------------------- /net/xfrpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/xfrpc/Makefile -------------------------------------------------------------------------------- /net/xinetd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/xinetd/Makefile -------------------------------------------------------------------------------- /net/xl2tpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/xl2tpd/Makefile -------------------------------------------------------------------------------- /net/xl2tpd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/xl2tpd/README.md -------------------------------------------------------------------------------- /net/xray-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/xray-core/Makefile -------------------------------------------------------------------------------- /net/xray-core/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/xray-core/test.sh -------------------------------------------------------------------------------- /net/yggdrasil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/yggdrasil/Makefile -------------------------------------------------------------------------------- /net/zerotier/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/zerotier/Config.in -------------------------------------------------------------------------------- /net/zerotier/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/zerotier/Makefile -------------------------------------------------------------------------------- /net/znc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/znc/Config.in -------------------------------------------------------------------------------- /net/znc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/znc/Makefile -------------------------------------------------------------------------------- /net/znc/files/znc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/znc/files/znc.conf -------------------------------------------------------------------------------- /net/znc/files/znc.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/znc/files/znc.init -------------------------------------------------------------------------------- /net/ztdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/net/ztdns/Makefile -------------------------------------------------------------------------------- /sound/espeak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/sound/espeak/Makefile -------------------------------------------------------------------------------- /sound/fdk-aac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/sound/fdk-aac/Makefile -------------------------------------------------------------------------------- /sound/lame/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/sound/lame/Config.in -------------------------------------------------------------------------------- /sound/lame/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/sound/lame/Makefile -------------------------------------------------------------------------------- /sound/madplay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/sound/madplay/Makefile -------------------------------------------------------------------------------- /sound/mocp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/sound/mocp/Makefile -------------------------------------------------------------------------------- /sound/mpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/sound/mpc/Makefile -------------------------------------------------------------------------------- /sound/mpd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/sound/mpd/Makefile -------------------------------------------------------------------------------- /sound/mpg123/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/sound/mpg123/Makefile -------------------------------------------------------------------------------- /sound/owntone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/sound/owntone/Makefile -------------------------------------------------------------------------------- /sound/pianod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/sound/pianod/Makefile -------------------------------------------------------------------------------- /sound/shine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/sound/shine/Makefile -------------------------------------------------------------------------------- /sound/sox_ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/sound/sox_ng/Makefile -------------------------------------------------------------------------------- /sound/svox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/sound/svox/Makefile -------------------------------------------------------------------------------- /sound/wavpack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/sound/wavpack/Makefile -------------------------------------------------------------------------------- /utils/acl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/acl/Makefile -------------------------------------------------------------------------------- /utils/acpid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/acpid/Makefile -------------------------------------------------------------------------------- /utils/acsccid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/acsccid/Makefile -------------------------------------------------------------------------------- /utils/afuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/afuse/Makefile -------------------------------------------------------------------------------- /utils/aliyun-cli/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | aliyun | grep -F "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /utils/at/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/at/Makefile -------------------------------------------------------------------------------- /utils/attr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/attr/Makefile -------------------------------------------------------------------------------- /utils/augeas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/augeas/Makefile -------------------------------------------------------------------------------- /utils/avrdude/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/avrdude/Makefile -------------------------------------------------------------------------------- /utils/bash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/bash/Makefile -------------------------------------------------------------------------------- /utils/bc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/bc/Makefile -------------------------------------------------------------------------------- /utils/beep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/beep/Makefile -------------------------------------------------------------------------------- /utils/bluelog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/bluelog/Makefile -------------------------------------------------------------------------------- /utils/bluez/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/bluez/Makefile -------------------------------------------------------------------------------- /utils/bluld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/bluld/Makefile -------------------------------------------------------------------------------- /utils/bluld/files/bluld.conf: -------------------------------------------------------------------------------- 1 | config bluld uleds 2 | option led_count 1 3 | list colors 'green' 4 | -------------------------------------------------------------------------------- /utils/bossa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/bossa/Makefile -------------------------------------------------------------------------------- /utils/byobu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/byobu/Makefile -------------------------------------------------------------------------------- /utils/ccid/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/ccid/Makefile -------------------------------------------------------------------------------- /utils/ccrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/ccrypt/Makefile -------------------------------------------------------------------------------- /utils/cligen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/cligen/Makefile -------------------------------------------------------------------------------- /utils/clixon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/clixon/Makefile -------------------------------------------------------------------------------- /utils/clocate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/clocate/Makefile -------------------------------------------------------------------------------- /utils/cmdpad/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/cmdpad/Makefile -------------------------------------------------------------------------------- /utils/cni/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/cni/Makefile -------------------------------------------------------------------------------- /utils/collectd/files/usr/share/collectd/plugin/conntrack.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /utils/collectd/files/usr/share/collectd/plugin/contextswitch.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /utils/collectd/files/usr/share/collectd/plugin/cpufreq.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /utils/collectd/files/usr/share/collectd/plugin/curl.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /utils/collectd/files/usr/share/collectd/plugin/entropy.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /utils/collectd/files/usr/share/collectd/plugin/exec.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /utils/collectd/files/usr/share/collectd/plugin/iptables.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /utils/collectd/files/usr/share/collectd/plugin/load.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /utils/collectd/files/usr/share/collectd/plugin/mqtt.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /utils/collectd/files/usr/share/collectd/plugin/network.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /utils/collectd/files/usr/share/collectd/plugin/nut.json: -------------------------------------------------------------------------------- 1 | { 2 | "string": [ 3 | "UPS" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /utils/collectd/files/usr/share/collectd/plugin/uptime.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /utils/collectd/files/usr/share/collectd/plugin/write-http.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /utils/conmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/conmon/Makefile -------------------------------------------------------------------------------- /utils/cpusage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/cpusage/Makefile -------------------------------------------------------------------------------- /utils/crconf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/crconf/Makefile -------------------------------------------------------------------------------- /utils/crelay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/crelay/Makefile -------------------------------------------------------------------------------- /utils/crun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/crun/Makefile -------------------------------------------------------------------------------- /utils/ctop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/ctop/Makefile -------------------------------------------------------------------------------- /utils/dbus/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/dbus/Config.in -------------------------------------------------------------------------------- /utils/dbus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/dbus/Makefile -------------------------------------------------------------------------------- /utils/docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/docker/Makefile -------------------------------------------------------------------------------- /utils/dockerd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/dockerd/Makefile -------------------------------------------------------------------------------- /utils/dos2unix/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | "$1" --version | grep "$2" 4 | -------------------------------------------------------------------------------- /utils/dvtm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/dvtm/Makefile -------------------------------------------------------------------------------- /utils/dysk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/dysk/Makefile -------------------------------------------------------------------------------- /utils/evtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/evtest/Makefile -------------------------------------------------------------------------------- /utils/eza/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/eza/Makefile -------------------------------------------------------------------------------- /utils/fakeuname/fakeuname.mk: -------------------------------------------------------------------------------- 1 | FAKEUNAME_PATH=$(STAGING_DIR_HOSTPKG)/lib/fakeuname 2 | -------------------------------------------------------------------------------- /utils/fio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/fio/Makefile -------------------------------------------------------------------------------- /utils/fish/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/fish/Makefile -------------------------------------------------------------------------------- /utils/fuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/fuse/Makefile -------------------------------------------------------------------------------- /utils/fuse3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/fuse3/Makefile -------------------------------------------------------------------------------- /utils/fwupd/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/fwupd/Config.in -------------------------------------------------------------------------------- /utils/fwupd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/fwupd/Makefile -------------------------------------------------------------------------------- /utils/fwupd/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/fwupd/test.sh -------------------------------------------------------------------------------- /utils/fx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/fx/Makefile -------------------------------------------------------------------------------- /utils/gammu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/gammu/Makefile -------------------------------------------------------------------------------- /utils/gawk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/gawk/Makefile -------------------------------------------------------------------------------- /utils/gkermit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/gkermit/Makefile -------------------------------------------------------------------------------- /utils/gnupg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/gnupg/Makefile -------------------------------------------------------------------------------- /utils/gnupg2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/gnupg2/Makefile -------------------------------------------------------------------------------- /utils/gnuplot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/gnuplot/Makefile -------------------------------------------------------------------------------- /utils/gpsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/gpsd/Makefile -------------------------------------------------------------------------------- /utils/gpsd/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/gpsd/test.sh -------------------------------------------------------------------------------- /utils/grep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/grep/Makefile -------------------------------------------------------------------------------- /utils/gzip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/gzip/Makefile -------------------------------------------------------------------------------- /utils/hamlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/hamlib/Makefile -------------------------------------------------------------------------------- /utils/haserl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/haserl/Config.in -------------------------------------------------------------------------------- /utils/haserl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/haserl/Makefile -------------------------------------------------------------------------------- /utils/haveged/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/haveged/Makefile -------------------------------------------------------------------------------- /utils/hd-idle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/hd-idle/Makefile -------------------------------------------------------------------------------- /utils/hdparm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/hdparm/Makefile -------------------------------------------------------------------------------- /utils/hexedit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/hexedit/Makefile -------------------------------------------------------------------------------- /utils/hplip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/hplip/Makefile -------------------------------------------------------------------------------- /utils/hplip/files/hplib.conf: -------------------------------------------------------------------------------- 1 | # Load the hplib driver 2 | hpaio 3 | -------------------------------------------------------------------------------- /utils/hwdata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/hwdata/Makefile -------------------------------------------------------------------------------- /utils/hwinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/hwinfo/Makefile -------------------------------------------------------------------------------- /utils/i2csfp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/i2csfp/Makefile -------------------------------------------------------------------------------- /utils/ifuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/ifuse/Makefile -------------------------------------------------------------------------------- /utils/io/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/io/Makefile -------------------------------------------------------------------------------- /utils/io/src/io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/io/src/io.c -------------------------------------------------------------------------------- /utils/joe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/joe/Makefile -------------------------------------------------------------------------------- /utils/joe/files/joerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/joe/files/joerc -------------------------------------------------------------------------------- /utils/jq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/jq/Makefile -------------------------------------------------------------------------------- /utils/jupp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/jupp/Makefile -------------------------------------------------------------------------------- /utils/klish/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/klish/Makefile -------------------------------------------------------------------------------- /utils/kmod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/kmod/Makefile -------------------------------------------------------------------------------- /utils/lcdproc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/lcdproc/Makefile -------------------------------------------------------------------------------- /utils/less/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/less/Makefile -------------------------------------------------------------------------------- /utils/lf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/lf/Makefile -------------------------------------------------------------------------------- /utils/lf/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | lf --version | grep "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /utils/logrotate/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | logrotate --version 2>&1 | grep "$2" 4 | -------------------------------------------------------------------------------- /utils/lolcat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/lolcat/Makefile -------------------------------------------------------------------------------- /utils/lpac/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/lpac/Config.in -------------------------------------------------------------------------------- /utils/lpac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/lpac/Makefile -------------------------------------------------------------------------------- /utils/lrzsz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/lrzsz/Makefile -------------------------------------------------------------------------------- /utils/lsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/lsd/Makefile -------------------------------------------------------------------------------- /utils/lsof/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/lsof/Makefile -------------------------------------------------------------------------------- /utils/lvm2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/lvm2/Makefile -------------------------------------------------------------------------------- /utils/lxc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/lxc/Config.in -------------------------------------------------------------------------------- /utils/lxc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/lxc/Makefile -------------------------------------------------------------------------------- /utils/lxc/files/lxc.conf: -------------------------------------------------------------------------------- 1 | lxc.lxcpath = /srv/lxc 2 | -------------------------------------------------------------------------------- /utils/mandoc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/mandoc/Makefile -------------------------------------------------------------------------------- /utils/mariadb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/mariadb/Makefile -------------------------------------------------------------------------------- /utils/mbtools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/mbtools/Makefile -------------------------------------------------------------------------------- /utils/mc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/mc/Config.in -------------------------------------------------------------------------------- /utils/mc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/mc/Makefile -------------------------------------------------------------------------------- /utils/mg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/mg/Makefile -------------------------------------------------------------------------------- /utils/mhz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/mhz/Makefile -------------------------------------------------------------------------------- /utils/micrond/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/micrond/Makefile -------------------------------------------------------------------------------- /utils/micrond/files/usr/lib/micron.d/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/minicom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/minicom/Makefile -------------------------------------------------------------------------------- /utils/miniflux/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | miniflux.app -version | grep "$2" 3 | -------------------------------------------------------------------------------- /utils/mksh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/mksh/Makefile -------------------------------------------------------------------------------- /utils/mpack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/mpack/Makefile -------------------------------------------------------------------------------- /utils/mpremote/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/mpremote/test.sh -------------------------------------------------------------------------------- /utils/mqttled/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/mqttled/Makefile -------------------------------------------------------------------------------- /utils/mt-st/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/mt-st/Makefile -------------------------------------------------------------------------------- /utils/mt5311/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/mt5311/Makefile -------------------------------------------------------------------------------- /utils/mtools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/mtools/Makefile -------------------------------------------------------------------------------- /utils/nano/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/nano/Makefile -------------------------------------------------------------------------------- /utils/ncdu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/ncdu/Makefile -------------------------------------------------------------------------------- /utils/nerdctl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/nerdctl/Makefile -------------------------------------------------------------------------------- /utils/nnn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/nnn/Makefile -------------------------------------------------------------------------------- /utils/nsutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/nsutils/Makefile -------------------------------------------------------------------------------- /utils/ntfs-3g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/ntfs-3g/Makefile -------------------------------------------------------------------------------- /utils/openocd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/openocd/Makefile -------------------------------------------------------------------------------- /utils/opensc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/opensc/Makefile -------------------------------------------------------------------------------- /utils/owfs/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/owfs/Config.in -------------------------------------------------------------------------------- /utils/owfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/owfs/Makefile -------------------------------------------------------------------------------- /utils/owut/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/owut/Makefile -------------------------------------------------------------------------------- /utils/parted/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/parted/Config.in -------------------------------------------------------------------------------- /utils/parted/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/parted/Makefile -------------------------------------------------------------------------------- /utils/parted/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/parted/test.sh -------------------------------------------------------------------------------- /utils/passh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/passh/Makefile -------------------------------------------------------------------------------- /utils/passh/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/passh/test.sh -------------------------------------------------------------------------------- /utils/picocom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/picocom/Makefile -------------------------------------------------------------------------------- /utils/pigz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/pigz/Makefile -------------------------------------------------------------------------------- /utils/podman/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/podman/Makefile -------------------------------------------------------------------------------- /utils/poemgr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/poemgr/Makefile -------------------------------------------------------------------------------- /utils/procs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/procs/Makefile -------------------------------------------------------------------------------- /utils/prometheus-node-exporter-ucode/files/base/time.uc: -------------------------------------------------------------------------------- 1 | gauge("node_time_seconds")(null, time()); 2 | -------------------------------------------------------------------------------- /utils/prometheus-node-exporter-ucode/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | prometheus-node-exporter-ucode time 4 | -------------------------------------------------------------------------------- /utils/psmisc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/psmisc/Makefile -------------------------------------------------------------------------------- /utils/pv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/pv/Makefile -------------------------------------------------------------------------------- /utils/qemu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/qemu/Makefile -------------------------------------------------------------------------------- /utils/qemu/files/bridge.conf: -------------------------------------------------------------------------------- 1 | allow all 2 | -------------------------------------------------------------------------------- /utils/quota/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/quota/Makefile -------------------------------------------------------------------------------- /utils/readsb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/readsb/Makefile -------------------------------------------------------------------------------- /utils/reptyr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/reptyr/Makefile -------------------------------------------------------------------------------- /utils/reptyr/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | reptyr -version 2>&1 | grep "$2" 4 | -------------------------------------------------------------------------------- /utils/restic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/restic/Makefile -------------------------------------------------------------------------------- /utils/ripgrep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/ripgrep/Makefile -------------------------------------------------------------------------------- /utils/rtklib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/rtklib/Makefile -------------------------------------------------------------------------------- /utils/rtl-ais/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/rtl-ais/Makefile -------------------------------------------------------------------------------- /utils/rtl-sdr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/rtl-sdr/Makefile -------------------------------------------------------------------------------- /utils/rtl_433/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/rtl_433/Makefile -------------------------------------------------------------------------------- /utils/rtty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/rtty/Makefile -------------------------------------------------------------------------------- /utils/runc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/runc/Makefile -------------------------------------------------------------------------------- /utils/screen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/screen/Makefile -------------------------------------------------------------------------------- /utils/screen/files/etc/screenrc: -------------------------------------------------------------------------------- 1 | startup_message off 2 | -------------------------------------------------------------------------------- /utils/sed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/sed/Makefile -------------------------------------------------------------------------------- /utils/sedutil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/sedutil/Makefile -------------------------------------------------------------------------------- /utils/setools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/setools/Makefile -------------------------------------------------------------------------------- /utils/sexpect/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/sexpect/Makefile -------------------------------------------------------------------------------- /utils/sexpect/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/sexpect/test.sh -------------------------------------------------------------------------------- /utils/shadow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/shadow/Makefile -------------------------------------------------------------------------------- /utils/sipcalc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/sipcalc/Makefile -------------------------------------------------------------------------------- /utils/smartmontools/files/smartd.conf: -------------------------------------------------------------------------------- 1 | /dev/hdb -H 2 | -------------------------------------------------------------------------------- /utils/ssdeep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/ssdeep/Makefile -------------------------------------------------------------------------------- /utils/sshpass/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/sshpass/Makefile -------------------------------------------------------------------------------- /utils/stlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/stlink/Makefile -------------------------------------------------------------------------------- /utils/stoken/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/stoken/Makefile -------------------------------------------------------------------------------- /utils/stress-ng/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | stress-ng --version | grep "$2" 4 | -------------------------------------------------------------------------------- /utils/sumo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/sumo/Makefile -------------------------------------------------------------------------------- /utils/sunwait/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/sunwait/LICENSE -------------------------------------------------------------------------------- /utils/sunwait/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/sunwait/Makefile -------------------------------------------------------------------------------- /utils/swanmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/swanmon/Makefile -------------------------------------------------------------------------------- /utils/swanmon/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | swanmon help 4 | -------------------------------------------------------------------------------- /utils/swig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/swig/Makefile -------------------------------------------------------------------------------- /utils/syncthing/files/syncthing-sysctl.conf: -------------------------------------------------------------------------------- 1 | fs.inotify.max_user_watches=204800 2 | -------------------------------------------------------------------------------- /utils/sysstat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/sysstat/Makefile -------------------------------------------------------------------------------- /utils/tang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/tang/Makefile -------------------------------------------------------------------------------- /utils/tang/files/tang.upgrade: -------------------------------------------------------------------------------- 1 | /usr/share/tang/db/*.jw* 2 | -------------------------------------------------------------------------------- /utils/tar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/tar/Makefile -------------------------------------------------------------------------------- /utils/tcsh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/tcsh/Makefile -------------------------------------------------------------------------------- /utils/tini/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/tini/Makefile -------------------------------------------------------------------------------- /utils/tinyionice/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | tinyionice --version | grep "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /utils/tio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/tio/Makefile -------------------------------------------------------------------------------- /utils/tmux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/tmux/Makefile -------------------------------------------------------------------------------- /utils/tmux/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | tmux -V | grep "$2" 4 | -------------------------------------------------------------------------------- /utils/tree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/tree/Makefile -------------------------------------------------------------------------------- /utils/ttyd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/ttyd/Makefile -------------------------------------------------------------------------------- /utils/uhubctl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/uhubctl/Makefile -------------------------------------------------------------------------------- /utils/uledd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/uledd/Makefile -------------------------------------------------------------------------------- /utils/unrar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/unrar/Makefile -------------------------------------------------------------------------------- /utils/unzip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/unzip/Makefile -------------------------------------------------------------------------------- /utils/usbmuxd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/usbmuxd/Makefile -------------------------------------------------------------------------------- /utils/uvol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/uvol/Makefile -------------------------------------------------------------------------------- /utils/uvol/files/uvol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/uvol/files/uvol -------------------------------------------------------------------------------- /utils/vim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/vim/Makefile -------------------------------------------------------------------------------- /utils/vim/files/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/vim/files/vimrc -------------------------------------------------------------------------------- /utils/vim/scripts/uname: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo "Linux" 3 | -------------------------------------------------------------------------------- /utils/vim/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/vim/test.sh -------------------------------------------------------------------------------- /utils/which/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/which/Makefile -------------------------------------------------------------------------------- /utils/whois/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | whois --version | grep "$2" 4 | -------------------------------------------------------------------------------- /utils/wipe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/wipe/Makefile -------------------------------------------------------------------------------- /utils/xz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/xz/Makefile -------------------------------------------------------------------------------- /utils/yara/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/yara/Makefile -------------------------------------------------------------------------------- /utils/yq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/yq/Makefile -------------------------------------------------------------------------------- /utils/yq/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | yq --version 2>&1 | grep "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /utils/zile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/zile/Makefile -------------------------------------------------------------------------------- /utils/zsh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/zsh/Makefile -------------------------------------------------------------------------------- /utils/zstd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lienol/openwrt-packages/HEAD/utils/zstd/Makefile --------------------------------------------------------------------------------