├── .config ├── .github └── workflows │ ├── ARMv8 ImmortalWrt.yml │ ├── ARMv8 OpenWrt Lienol Docker.yml │ ├── ARMv8 OpenWrt Lienol.yml │ ├── ARMv8_Docker_BuildX.yml │ ├── AX6-IPQ8071A.yml │ ├── JCG Q20 OpenWrt Official.yml │ ├── K2.yml │ ├── K2P.yml │ ├── OpenWrt Official Docker.yml │ ├── OpenWrt Official H6.yml │ ├── OpenWrt Official.yml │ ├── OpenWrt.yml │ ├── RE-SP-01B.yml │ ├── build-openwrt-armvirt.yml │ ├── build-openwrt-docker.yml │ ├── build-openwrt-huge.yml │ ├── build-openwrt.yml │ ├── releases-big-openwrt.yml │ ├── update-checker.yml │ ├── use-releases-file-to-packaging.yml │ ├── x86_64.yml │ └── x86_64_k6.6.yml ├── ARMv8 ├── .config ├── AX6.config ├── JCG.config ├── JDC.config ├── k2-ssr.config ├── k2p.config ├── lede-docker.config ├── lede-gcc11.config ├── lede-gcc9.config ├── lede-huge.config ├── lede.config ├── lienol-docker-gcc9.config ├── lienol.config ├── official-docker-lite.config ├── official-docker.config ├── official-gcc11.config └── official-h6.config ├── LICENSE ├── PATCH ├── 001-elf.h-add-typedefs-for-Elf-_Relr.patch ├── add-xdp-diag.patch ├── duplicate │ ├── addition-trans-zh-r2s │ │ ├── Makefile │ │ ├── files │ │ │ └── zzz-default-settings │ │ ├── i18n │ │ │ ├── default.zh_Hans.po │ │ │ └── more.zh_Hans.po │ │ └── status │ │ │ └── status.lua │ ├── addition-trans-zh-x86 │ │ ├── Makefile │ │ ├── files │ │ │ └── zzz-default-settings │ │ ├── i18n │ │ │ ├── default.zh_Hans.po │ │ │ └── more.zh_Hans.po │ │ └── status │ │ │ └── status.lua │ └── fullconenat │ │ ├── Makefile │ │ ├── files │ │ └── Makefile │ │ └── patches │ │ └── 000-printk.patch ├── lede_add_immotalwrt_download_method.patch └── new │ ├── custom │ └── 0003-target-rockchip-swap-nanopi-r2s-lan-wan-port.patch │ ├── dmc │ ├── 0001-dmc-rk3328.patch │ ├── 803-PM-devfreq-rockchip-add-devfreq-driver-for-rk3328-dmc.patch │ ├── 804-clk-rockchip-support-setting-ddr-clock-via-SIP-Version-2-.patch │ ├── 805-PM-devfreq-rockchip-dfi-add-more-soc-support.patch │ ├── 806-arm64-dts-rockchip-rk3328-add-dfi-node.patch │ └── 807-arm64-dts-nanopi-r2s-add-rk3328-dmc-relate-node.patch │ ├── main │ ├── 0002-IRQ-and-disable-eth0-tcp-udp-offloading-tx-rx.patch │ ├── 007-arm64-dts-rockchip-Add-RK3328-idle-state.patch │ ├── 911-kernel-dma-adjust-default-coherent_pool-to-2MiB.patch │ └── 998-rockchip-enable-i2c0-on-NanoPi-R2S.patch │ ├── overclock │ ├── 999-rk3328-enable-1512mhz-and-minimum-at-1008mhz.patch │ ├── 999-rk3328-enable-1512mhz-and-minimum-at-816mhz.patch │ ├── 999-rk3328-enable-1512mhz.patch │ ├── 999-rk3328-enable-1608mhz-and-minimum-at-1008mhz.patch │ ├── 999-rk3328-enable-1608mhz-and-minimum-at-816mhz.patch │ └── 999-rk3328-enable-1608mhz.patch │ ├── package │ ├── 100-Implements-AES-and-GCM-with-ARMv8-Crypto-Extensions.patch │ ├── 900-add-filter-aaaa-option.patch │ ├── dnsmasq-add-filter-aaaa-option.patch │ ├── luci-add-filter-aaaa-option.patch │ ├── luci-app-firewall_add_fullcone.patch │ └── use_json_object_new_int64.patch │ └── script │ ├── cputemp.sh │ ├── fuck │ └── onekeyr2s.sh ├── README.md ├── depends-ubuntu-2004 ├── diy-k2.sh ├── diy-part1.sh ├── diy-part2.sh ├── feeds.conf.default ├── general ├── 001-gcc11.patch ├── 003-add-module_supported_device-macro.patch ├── 01-export-nfs_ssc.patch ├── 101-bcm-fullconenat.patch ├── 220-arm-gc_sections.patch ├── 651-rt2x00-driver-compile-with-kernel-5.15.patch ├── 781-dsa-register-every-port-with-of_platform.patch ├── 900-bcm-fullconenat.patch ├── 900-regulator-consumer-Add-missing-stubs-to-regulator-co.patch ├── 982-add-bcm-fullconenat-support.patch ├── AX6 │ ├── package │ │ └── firmware │ │ │ └── ipq-wifi │ │ │ ├── Makefile │ │ │ ├── board-redmi_ax6.ipq8074 │ │ │ ├── board-xiaomi_ax3600.ipq8074 │ │ │ ├── board-xiaomi_ax3600.qca9889 │ │ │ └── board-xiaomi_ax9000.ipq8074 │ └── target │ │ └── linux │ │ └── ipq807x │ │ ├── base-files │ │ ├── etc │ │ │ ├── board.d │ │ │ │ ├── 01_leds │ │ │ │ └── 02_network │ │ │ └── hotplug.d │ │ │ │ └── firmware │ │ │ │ ├── 11-ath10k-caldata │ │ │ │ └── 11-ath11k-caldata │ │ └── lib │ │ │ └── upgrade │ │ │ └── platform.sh │ │ ├── files │ │ └── arch │ │ │ └── arm64 │ │ │ └── boot │ │ │ └── dts │ │ │ └── qcom │ │ │ ├── ipq8071-ax3600-1G.dts │ │ │ ├── ipq8071-ax3600.dts │ │ │ ├── ipq8071-ax3600.dtsi │ │ │ ├── ipq8071-ax6.dts │ │ │ └── ipq8072-ax9000.dts │ │ ├── image │ │ └── generic.mk │ │ └── patches-5.10 │ │ └── 900-arm64-dts-add-OpenWrt-DTS-files.patch ├── Makefile ├── advancedtomato.woff ├── alsa-lib │ ├── Makefile │ └── patches │ │ ├── 100-link_fix.patch │ │ └── 200-usleep.patch ├── ariang │ ├── Makefile │ └── files │ │ ├── 80_ariang-nginx-support │ │ └── ariang.locations ├── at │ ├── Makefile │ ├── files │ │ └── atd.init │ └── patches │ │ ├── 100-remove-glibc-assumption.patch │ │ └── 110-getloadavg.patch ├── autocore │ ├── Makefile │ └── files │ │ ├── arm │ │ ├── 090-cover-index_files │ │ ├── cpuinfo │ │ ├── rpcd_10_system.js │ │ ├── rpcd_luci │ │ └── rpcd_luci-mod-status.json │ │ └── x86 │ │ ├── autocore │ │ ├── cpuinfo │ │ ├── ethinfo │ │ ├── rpcd_10_system.js │ │ ├── rpcd_21_ethinfo.js │ │ ├── rpcd_luci │ │ └── rpcd_luci-mod-status.json ├── bind │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── bind │ │ ├── bind.keys │ │ ├── db.0 │ │ ├── db.127 │ │ ├── db.255 │ │ ├── db.local │ │ ├── db.root │ │ └── named.conf.example │ │ └── named.init ├── boost │ └── Makefile ├── bpftools │ ├── Makefile │ └── patches │ │ └── 002-includes.patch ├── brook │ └── Makefile ├── containerd │ └── Makefile ├── coremark ├── coremark.sh ├── coreutils │ ├── Makefile │ └── patches │ │ └── 001-no_docs_man_tests.patch ├── crypto.mk ├── cryptsetup │ └── Makefile ├── curl │ ├── Config.in │ ├── Makefile │ └── patches │ │ └── 200-no_docs_tests.patch ├── dae │ ├── Makefile │ ├── files │ │ ├── dae.config │ │ └── dae.init │ └── test.sh ├── default-settings │ ├── Makefile │ ├── files │ │ ├── openwrt_banner │ │ └── zzz-default-settings │ └── i18n │ │ ├── default.zh_Hans.po │ │ └── more.zh_Hans.po ├── dnsmasq │ ├── Makefile │ ├── files │ │ ├── 50-dnsmasq-migrate-ipset.sh │ │ ├── 50-dnsmasq-migrate-resolv-conf-auto.sh │ │ ├── dhcp-script.sh │ │ ├── dhcp.conf │ │ ├── dhcpbogushostname.conf │ │ ├── dnsmasq.conf │ │ ├── dnsmasq.init │ │ ├── dnsmasq_acl.json │ │ ├── dnsmasqsec.hotplug │ │ └── rfc6761.conf │ └── patches │ │ ├── 100-remove-old-runtime-kernel-support.patch │ │ └── 200-ubus_dns.patch ├── docker │ └── Makefile ├── dockerd │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── daemon.json │ │ ├── dockerd.init │ │ └── etc │ │ │ ├── config │ │ │ └── dockerd │ │ │ └── sysctl.d │ │ │ └── sysctl-br-netfilter-ip.conf │ └── git-short-commit.sh ├── exfatprogs │ └── Makefile ├── expat │ └── Makefile ├── ffmpeg │ ├── Config.in │ ├── Makefile │ └── patches │ │ ├── 010-pkgconfig.patch │ │ └── 050-glibc.patch ├── file │ └── Makefile ├── flac │ └── Makefile ├── frp │ └── Makefile ├── fs.mk ├── gnupg │ └── 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 ├── gost │ ├── Makefile │ ├── files │ │ ├── gost.config │ │ └── gost.init │ └── patches │ │ ├── 010-go1-20.patch │ │ ├── 020-chore-remove-refs-to-deprecated-io-ioutil.patch │ │ └── 030-bump-deps-bump-sdk-to-1.21.patch ├── inih │ └── Makefile ├── iptables │ ├── Makefile │ └── patches │ │ ├── 010-add-set-dscpmark-support.patch │ │ ├── 020-treewide-use-uint-instead-of-u_int.patch │ │ ├── 030-revert-fix-build-for-missing-ETH_ALEN-definition.patch │ │ ├── 040-xshared-Fix-build-for-Werror-format-security.patch │ │ ├── 050-build-fix-error-during-out-of-tree-build.patch │ │ ├── 060-libxtables-unexport-init_extensions-declarations.patch │ │ ├── 101-remove-check-already.patch │ │ ├── 102-iptables-disable-modprobe.patch │ │ ├── 103-optional-xml.patch │ │ ├── 200-configurable_builtin.patch │ │ ├── 600-shared-libext.patch │ │ ├── 700-disable-legacy-revisions.patch │ │ └── 800-flowoffload_target.patch ├── jq │ └── Makefile ├── libnetfilter-conntrack │ ├── Makefile │ └── patches │ │ └── 001-fix_build_with_kernel_5.15_and_musl.patch ├── libpfring │ ├── Makefile │ └── patches │ │ ├── 0001-fix-cross-compiling.patch │ │ ├── 100-fix-compilation-warning.patch │ │ └── 900-fix-linux-6.6.patch ├── libtorrent-rasterbar │ └── Makefile ├── libxml2 │ └── Makefile ├── 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 ├── lsof │ ├── Makefile │ └── patches │ │ └── 000-disable-man.patch ├── luci-app-cpufreq │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── cpufreq.lua │ │ └── model │ │ │ └── cbi │ │ │ └── cpufreq.lua │ ├── po │ │ └── zh-cn │ │ │ └── cpufreq.po │ └── root │ │ └── etc │ │ ├── config │ │ └── cpufreq │ │ ├── init.d │ │ ├── cpufreq │ │ └── cpufreq.lean │ │ └── uci-defaults │ │ └── luci-cpufreq ├── luci-app-dae │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── dae.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── dae.lua │ │ └── view │ │ │ └── dae │ │ │ ├── dae_editor.htm │ │ │ └── dae_status.htm │ ├── po │ │ └── zh_Hans │ │ │ └── dae.po │ └── root │ │ ├── etc │ │ └── uci-defaults │ │ │ └── luci-dae │ │ ├── usr │ │ └── share │ │ │ └── rpcd │ │ │ └── acl.d │ │ │ └── luci-app-dae.json │ │ └── www │ │ └── luci-static │ │ └── resources │ │ └── dae │ │ ├── addon │ │ └── fold │ │ │ ├── foldcode.js │ │ │ ├── foldgutter.css │ │ │ ├── foldgutter.js │ │ │ └── indent-fold.js │ │ ├── lib │ │ ├── codemirror.css │ │ └── codemirror.js │ │ ├── mode │ │ └── yaml │ │ │ └── yaml.js │ │ └── theme │ │ └── dracula.css ├── luci-app-flowoffload │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── flowoffload.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── flowoffload.lua │ │ └── view │ │ │ └── flow │ │ │ └── status.htm │ ├── po │ │ └── zh_Hans │ │ │ └── flowoffload.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── flowoffload │ │ ├── init.d │ │ │ └── flowoffload │ │ └── uci-defaults │ │ │ └── flowoffload │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-flowoffload.json ├── luci-app-gost │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── gost.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── gost.lua │ │ └── view │ │ │ └── gost │ │ │ └── gost_status.htm │ ├── po │ │ ├── zh-cn │ │ └── zh_Hans │ │ │ ├── gost.po │ │ │ └── gpsysupgrade.po │ └── root │ │ ├── etc │ │ └── uci-defaults │ │ │ └── gost │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-gost.json ├── luci-app-kodexplorer │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── kodexplorer.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── kodexplorer │ │ │ │ ├── api.lua │ │ │ │ └── settings.lua │ │ └── view │ │ │ └── kodexplorer │ │ │ ├── download.htm │ │ │ ├── status.htm │ │ │ └── version.htm │ ├── po │ │ └── zh-cn │ │ │ └── kodexplorer.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── kodexplorer │ │ ├── init.d │ │ │ └── kodexplorer │ │ └── uci-defaults │ │ │ └── luci-kodexplorer │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-kodexplorer.json ├── luci-app-netdata │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── netdata.lua │ │ └── view │ │ │ └── netdata.htm │ └── po │ │ └── zh_Hans │ │ └── netdata.po ├── luci-app-passwall │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── passwall.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── passwall │ │ │ │ ├── api │ │ │ │ ├── api.lua │ │ │ │ ├── brook.lua │ │ │ │ ├── gen_hysteria.lua │ │ │ │ ├── gen_naiveproxy.lua │ │ │ │ ├── gen_shadowsocks.lua │ │ │ │ ├── gen_trojan.lua │ │ │ │ ├── gen_v2ray.lua │ │ │ │ ├── gen_v2ray_proto.lua │ │ │ │ ├── hysteria.lua │ │ │ │ ├── trojan_go.lua │ │ │ │ ├── v2ray.lua │ │ │ │ └── xray.lua │ │ │ │ ├── client │ │ │ │ ├── acl.lua │ │ │ │ ├── acl_config.lua │ │ │ │ ├── app_update.lua │ │ │ │ ├── auto_switch.lua │ │ │ │ ├── global.lua │ │ │ │ ├── haproxy.lua │ │ │ │ ├── log.lua │ │ │ │ ├── node_config.lua │ │ │ │ ├── node_list.lua │ │ │ │ ├── node_subscribe.lua │ │ │ │ ├── node_subscribe_config.lua │ │ │ │ ├── other.lua │ │ │ │ ├── rule.lua │ │ │ │ ├── rule_list.lua │ │ │ │ └── shunt_rules.lua │ │ │ │ └── server │ │ │ │ ├── api │ │ │ │ ├── app.lua │ │ │ │ ├── hysteria.lua │ │ │ │ ├── shadowsocks.lua │ │ │ │ ├── trojan.lua │ │ │ │ └── v2ray.lua │ │ │ │ ├── index.lua │ │ │ │ └── user.lua │ │ └── view │ │ │ └── passwall │ │ │ ├── app_update │ │ │ ├── brook_version.htm │ │ │ ├── hysteria_version.htm │ │ │ ├── trojan_go_version.htm │ │ │ ├── v2ray_version.htm │ │ │ └── xray_version.htm │ │ │ ├── auto_switch │ │ │ └── footer.htm │ │ │ ├── global │ │ │ ├── faq.htm │ │ │ ├── footer.htm │ │ │ └── status.htm │ │ │ ├── haproxy │ │ │ └── status.htm │ │ │ ├── log │ │ │ └── log.htm │ │ │ ├── node_list │ │ │ ├── link_add_node.htm │ │ │ ├── link_share_man.htm │ │ │ └── node_list.htm │ │ │ ├── rule │ │ │ └── rule_version.htm │ │ │ └── server │ │ │ ├── log.htm │ │ │ └── users_list_status.htm │ ├── po │ │ ├── zh-cn │ │ │ └── passwall.po │ │ └── zh_Hans │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── passwall_server │ │ ├── init.d │ │ │ ├── passwall │ │ │ └── passwall_server │ │ └── uci-defaults │ │ │ └── luci-passwall │ │ └── usr │ │ └── share │ │ ├── passwall │ │ ├── 0_default_config │ │ ├── app.sh │ │ ├── helper_dnsmasq.sh │ │ ├── helper_smartdns.sh │ │ ├── iptables.sh │ │ ├── monitor.sh │ │ ├── rule_update.lua │ │ ├── rules │ │ │ ├── block_host │ │ │ ├── block_ip │ │ │ ├── chnlist │ │ │ ├── chnroute │ │ │ ├── chnroute6 │ │ │ ├── direct_host │ │ │ ├── direct_ip │ │ │ ├── gfwlist │ │ │ ├── lanlist_ipv4 │ │ │ ├── lanlist_ipv6 │ │ │ ├── proxy_host │ │ │ └── proxy_ip │ │ ├── subscribe.lua │ │ └── test.sh │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-passwall.json ├── luci-app-qbittorrent │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── qbittorrent.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── qbittorrent.lua │ │ └── view │ │ │ └── qbittorrent_status.htm │ ├── po │ │ └── zh_Hans │ │ │ └── qbittorrent.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── qbittorrent │ │ ├── init.d │ │ │ └── qbittorrent │ │ ├── qbittorrent │ │ │ └── qBittorrent.conf.example │ │ └── uci-defaults │ │ │ └── 50_luci-qbittorrent │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-qbittorrent.json ├── luci-app-socat │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── socat.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── socat │ │ │ │ ├── config.lua │ │ │ │ └── index.lua │ │ └── view │ │ │ └── socat │ │ │ ├── list_status.htm │ │ │ └── status.htm │ ├── po │ │ ├── zh-cn │ │ │ └── socat.po │ │ └── zh_Hans │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── socat │ │ ├── init.d │ │ │ └── socat │ │ └── uci-defaults │ │ │ └── luci-app-socat │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-socat.json ├── luci-app-turboacc │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── turboacc.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── turboacc.lua │ │ └── view │ │ │ └── turboacc │ │ │ └── turboacc_status.htm │ ├── po │ │ └── zh_Hans │ │ │ └── turboacc.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── turboacc │ │ ├── init.d │ │ │ └── turboacc │ │ └── uci-defaults │ │ │ └── turboacc │ │ └── usr │ │ └── share │ │ └── dnscache │ │ └── dnscache-while.sh ├── luci-app-v2ray-server │ ├── Makefile │ ├── luasrc │ │ ├── controller │ │ │ └── v2ray_server.lua │ │ ├── model │ │ │ └── cbi │ │ │ │ └── v2ray_server │ │ │ │ ├── api │ │ │ │ ├── app.lua │ │ │ │ ├── gen_config.lua │ │ │ │ └── v2ray.lua │ │ │ │ ├── index.lua │ │ │ │ └── user.lua │ │ └── view │ │ │ └── v2ray_server │ │ │ ├── log.htm │ │ │ ├── users_list_status.htm │ │ │ └── v2ray.htm │ ├── po │ │ └── zh-cn │ │ │ └── v2ray_server.po │ └── root │ │ ├── etc │ │ ├── config │ │ │ └── v2ray_server │ │ ├── init.d │ │ │ └── v2ray_server │ │ └── uci-defaults │ │ │ └── luci-v2ray-server │ │ └── usr │ │ └── share │ │ └── rpcd │ │ └── acl.d │ │ └── luci-app-v2ray-server.json ├── mt7621 │ └── target │ │ └── linux │ │ └── ramips │ │ ├── dts │ │ └── mt7621_jdcloud_re-sp-01b.dts │ │ ├── image │ │ └── mt7621.mk │ │ └── mt7621 │ │ └── base-files │ │ └── etc │ │ └── board.d │ │ └── 02_network ├── n2n_v2 │ ├── Makefile │ └── files │ │ ├── n2n_v2.config │ │ └── n2n_v2.init ├── naiveproxy.orig │ ├── Makefile │ └── src │ │ └── init_env.sh ├── naiveproxy │ ├── Makefile │ └── files │ │ ├── naiveproxy.config │ │ └── naiveproxy.init ├── nano │ ├── Makefile │ └── files │ │ ├── nanorc │ │ ├── uci.nanorc │ │ └── ucode.nanorc ├── netdevices.mk ├── netsupport.mk ├── 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 ├── node │ ├── Makefile │ └── patches │ │ ├── 003-path.patch │ │ ├── 004-musl_support.patch │ │ ├── 007-fix_host_build_on_macos.patch │ │ ├── 010-execvp-arg-list-too-long.patch │ │ ├── 999-cast_for_mips32.patch │ │ ├── 999-delete_unnecessary_libraries_for_host_execute.patch │ │ ├── 999-deps-v8-src-trap-handler-trap-handler.h.patch │ │ ├── 999-fix_icu_conflict.patch │ │ ├── 999-localhost-no-addrconfig.patch │ │ └── 999-v8_zlib_support.patch ├── ntfs3 │ └── Makefile ├── openssh │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── sftp-ssh.service │ │ ├── sshd.failsafe │ │ ├── sshd.init │ │ ├── sshd.pam │ │ └── sshd.pam-access │ └── patches │ │ ├── 001-build-construct_utmp-when-USE_BTMP-is-set.patch │ │ └── 900-sshd_config-include-dir.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 │ │ ├── 001-reproducible-remove_DATE.patch │ │ ├── 002-add-wolfssl-support.patch │ │ ├── 100-mbedtls-disable-runtime-version-check.patch │ │ ├── 210-build_always_use_internal_lz4.patch │ │ └── 220-disable_des.patch │ └── test.sh ├── openwrt_banner ├── pcre2 │ ├── Config.in │ └── Makefile ├── 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 │ │ ├── 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 │ │ ├── 998-Errno_errno.h_path.patch │ │ └── 999-fixup-regex-engine-build-under-Uusedl.patch │ ├── perlbase.mk │ ├── perlmod.mk │ └── perlver.mk ├── python-docker │ └── Makefile ├── 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 │ │ │ ├── 002-add-unix-ffi-os-path.patch │ │ │ └── 003-add-unix-ffi-uu.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 │ │ └── patches │ │ │ ├── 002-avoid-build-user-config-files.patch │ │ │ ├── 003-without-vendored-meson.patch │ │ │ └── 004-workaround-for-multiple-top-level-packages-discovered.patch │ ├── 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 │ │ └── patches │ │ │ └── 001-omit-tests.patch │ ├── 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-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 │ │ │ └── 002-omit-tests.patch │ │ └── test.sh │ ├── python-typing-extensions │ │ ├── Makefile │ │ └── test.sh │ ├── python-ubus │ │ └── Makefile │ ├── python-uci │ │ └── Makefile │ ├── 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 ├── qBittorrent │ ├── Makefile │ └── Makefile.qt6 ├── qtbase │ ├── Makefile │ └── patches │ │ └── 010-marco.patch ├── qttools │ ├── Makefile │ └── patches │ │ └── 010-no-clang.patch ├── rblibtorrent │ └── Makefile ├── shadowsocks-rust │ └── Makefile ├── shairport-sync │ ├── Makefile │ ├── files │ │ ├── shairport-sync.config │ │ └── shairport-sync.init │ └── patches │ │ └── 010-no-cxx.patch ├── sing-box │ ├── Makefile │ ├── files │ │ ├── config.json.example │ │ └── sing-box.init │ └── patches │ │ ├── 100-SniffOverrideDestination.patch │ │ ├── 200-ClashApiRulesSets.patch │ │ └── 900-openwrt-branding.patch ├── smartdns │ └── Makefile ├── sqlite3 │ ├── Config-cli.in │ ├── Config-lib.in │ └── Makefile ├── tailscale │ ├── Makefile │ ├── README.md │ ├── files │ │ ├── tailscale.conf │ │ └── tailscale.init │ └── test.sh ├── tools │ └── Makefile ├── ucode │ └── Makefile ├── unrar │ ├── Makefile │ ├── Makefile.orig │ ├── patches.orig │ │ ├── 100-makefile_fixes.patch │ │ ├── makefile │ │ ├── makefile.orig │ │ └── rar.patch │ └── patches │ │ └── 100-makefile_fixes.patch ├── usb.mk ├── util-linux │ ├── Makefile │ └── patches │ │ └── 0001-meson-Fix-build-python-option.patch ├── uugamebooster │ ├── Makefile │ └── files │ │ └── uugamebooster-update ├── verysync ├── vim │ ├── Makefile │ ├── files │ │ ├── vimrc │ │ └── vimrc.full │ ├── patches │ │ ├── 002-remove_helptags_generation.patch │ │ └── 010-no-msgfmt.patch │ ├── scripts │ │ └── uname │ └── test.sh ├── wget │ └── Makefile ├── wolfssl │ ├── Config.in │ ├── Makefile │ └── patches │ │ ├── 100-disable-hardening-check.patch │ │ └── 200-ecc-rng.patch ├── wxbase │ └── Makefile ├── xfsprogs │ ├── Makefile │ └── patches │ │ ├── 110-subdirs.patch │ │ ├── 130-db-malloc-Use-posix_memalign-instead-of-deprecated-v.patch │ │ └── 140-mman.patch ├── xray-core │ ├── Makefile │ └── files │ │ ├── config.json.example │ │ ├── vpoint_socks_vmess.json │ │ ├── vpoint_vmess_freedom.json │ │ ├── xray.conf │ │ └── xray.init ├── xray-plugin │ └── Makefile ├── xtables-addons │ ├── Makefile │ └── patches │ │ ├── 001-fix-kernel-version-detection.patch │ │ ├── 100-add-rtsp-conntrack.patch │ │ ├── 200-add-lua-packetscript.patch │ │ ├── 201-fix-lua-packetscript.patch │ │ ├── 210-freebsd-build-fix.patch │ │ └── 211-fix-build-with-kernel-6.6.patch ├── 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 ├── zh_Hans.sh ├── zoneinfo │ └── Makefile └── zzz-default-settings ├── immortalwrt.feeds.conf.default ├── lienol-21.02-diy-part2.sh ├── lienol-diy-part2.sh ├── official.feeds.conf.default ├── openwrt-19.07-diy-part2.sh ├── openwrt-21.02-diy-part2.sh ├── openwrt-21.02.feeds.conf.default ├── opt ├── docker │ ├── Dockerfile │ ├── buildImage.sh │ ├── buildImageX.sh │ ├── buildOfficial.sh │ └── patches │ │ ├── 30-sysinfo.sh │ │ ├── 99-custom.conf │ │ ├── banner │ │ ├── cbi_turboacc.patch │ │ ├── cbi_turboacc_new.patch │ │ ├── coremark.sh │ │ ├── cpustat │ │ ├── dnsmasq │ │ ├── getcpu │ │ ├── init.d_turboacc.patch │ │ ├── kmod │ │ ├── luci-admin-status-index-html-02.patch │ │ ├── luci-admin-status-index-html.patch │ │ ├── rc.local │ │ └── smb4.11_enable_smb1.patch └── whoami └── x86 ├── lede-x86.config ├── lede-x86_k6.6.config └── official-x86.config /.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.config -------------------------------------------------------------------------------- /.github/workflows/ARMv8 ImmortalWrt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/ARMv8 ImmortalWrt.yml -------------------------------------------------------------------------------- /.github/workflows/ARMv8 OpenWrt Lienol Docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/ARMv8 OpenWrt Lienol Docker.yml -------------------------------------------------------------------------------- /.github/workflows/ARMv8 OpenWrt Lienol.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/ARMv8 OpenWrt Lienol.yml -------------------------------------------------------------------------------- /.github/workflows/ARMv8_Docker_BuildX.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/ARMv8_Docker_BuildX.yml -------------------------------------------------------------------------------- /.github/workflows/AX6-IPQ8071A.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/AX6-IPQ8071A.yml -------------------------------------------------------------------------------- /.github/workflows/JCG Q20 OpenWrt Official.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/JCG Q20 OpenWrt Official.yml -------------------------------------------------------------------------------- /.github/workflows/K2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/K2.yml -------------------------------------------------------------------------------- /.github/workflows/K2P.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/K2P.yml -------------------------------------------------------------------------------- /.github/workflows/OpenWrt Official Docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/OpenWrt Official Docker.yml -------------------------------------------------------------------------------- /.github/workflows/OpenWrt Official H6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/OpenWrt Official H6.yml -------------------------------------------------------------------------------- /.github/workflows/OpenWrt Official.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/OpenWrt Official.yml -------------------------------------------------------------------------------- /.github/workflows/OpenWrt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/OpenWrt.yml -------------------------------------------------------------------------------- /.github/workflows/RE-SP-01B.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/RE-SP-01B.yml -------------------------------------------------------------------------------- /.github/workflows/build-openwrt-armvirt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/build-openwrt-armvirt.yml -------------------------------------------------------------------------------- /.github/workflows/build-openwrt-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/build-openwrt-docker.yml -------------------------------------------------------------------------------- /.github/workflows/build-openwrt-huge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/build-openwrt-huge.yml -------------------------------------------------------------------------------- /.github/workflows/build-openwrt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/build-openwrt.yml -------------------------------------------------------------------------------- /.github/workflows/releases-big-openwrt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/releases-big-openwrt.yml -------------------------------------------------------------------------------- /.github/workflows/update-checker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/update-checker.yml -------------------------------------------------------------------------------- /.github/workflows/use-releases-file-to-packaging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/use-releases-file-to-packaging.yml -------------------------------------------------------------------------------- /.github/workflows/x86_64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/x86_64.yml -------------------------------------------------------------------------------- /.github/workflows/x86_64_k6.6.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/.github/workflows/x86_64_k6.6.yml -------------------------------------------------------------------------------- /ARMv8/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/ARMv8/.config -------------------------------------------------------------------------------- /ARMv8/AX6.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/ARMv8/AX6.config -------------------------------------------------------------------------------- /ARMv8/JCG.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/ARMv8/JCG.config -------------------------------------------------------------------------------- /ARMv8/JDC.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/ARMv8/JDC.config -------------------------------------------------------------------------------- /ARMv8/k2-ssr.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/ARMv8/k2-ssr.config -------------------------------------------------------------------------------- /ARMv8/k2p.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/ARMv8/k2p.config -------------------------------------------------------------------------------- /ARMv8/lede-docker.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/ARMv8/lede-docker.config -------------------------------------------------------------------------------- /ARMv8/lede-gcc11.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/ARMv8/lede-gcc11.config -------------------------------------------------------------------------------- /ARMv8/lede-gcc9.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/ARMv8/lede-gcc9.config -------------------------------------------------------------------------------- /ARMv8/lede-huge.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/ARMv8/lede-huge.config -------------------------------------------------------------------------------- /ARMv8/lede.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/ARMv8/lede.config -------------------------------------------------------------------------------- /ARMv8/lienol-docker-gcc9.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/ARMv8/lienol-docker-gcc9.config -------------------------------------------------------------------------------- /ARMv8/lienol.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/ARMv8/lienol.config -------------------------------------------------------------------------------- /ARMv8/official-docker-lite.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/ARMv8/official-docker-lite.config -------------------------------------------------------------------------------- /ARMv8/official-docker.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/ARMv8/official-docker.config -------------------------------------------------------------------------------- /ARMv8/official-gcc11.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/ARMv8/official-gcc11.config -------------------------------------------------------------------------------- /ARMv8/official-h6.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/ARMv8/official-h6.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/LICENSE -------------------------------------------------------------------------------- /PATCH/001-elf.h-add-typedefs-for-Elf-_Relr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/001-elf.h-add-typedefs-for-Elf-_Relr.patch -------------------------------------------------------------------------------- /PATCH/add-xdp-diag.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/add-xdp-diag.patch -------------------------------------------------------------------------------- /PATCH/duplicate/addition-trans-zh-r2s/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/duplicate/addition-trans-zh-r2s/Makefile -------------------------------------------------------------------------------- /PATCH/duplicate/addition-trans-zh-r2s/i18n/default.zh_Hans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/duplicate/addition-trans-zh-r2s/i18n/default.zh_Hans.po -------------------------------------------------------------------------------- /PATCH/duplicate/addition-trans-zh-r2s/i18n/more.zh_Hans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/duplicate/addition-trans-zh-r2s/i18n/more.zh_Hans.po -------------------------------------------------------------------------------- /PATCH/duplicate/addition-trans-zh-r2s/status/status.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/duplicate/addition-trans-zh-r2s/status/status.lua -------------------------------------------------------------------------------- /PATCH/duplicate/addition-trans-zh-x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/duplicate/addition-trans-zh-x86/Makefile -------------------------------------------------------------------------------- /PATCH/duplicate/addition-trans-zh-x86/i18n/default.zh_Hans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/duplicate/addition-trans-zh-x86/i18n/default.zh_Hans.po -------------------------------------------------------------------------------- /PATCH/duplicate/addition-trans-zh-x86/i18n/more.zh_Hans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/duplicate/addition-trans-zh-x86/i18n/more.zh_Hans.po -------------------------------------------------------------------------------- /PATCH/duplicate/addition-trans-zh-x86/status/status.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/duplicate/addition-trans-zh-x86/status/status.lua -------------------------------------------------------------------------------- /PATCH/duplicate/fullconenat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/duplicate/fullconenat/Makefile -------------------------------------------------------------------------------- /PATCH/duplicate/fullconenat/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/duplicate/fullconenat/files/Makefile -------------------------------------------------------------------------------- /PATCH/duplicate/fullconenat/patches/000-printk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/duplicate/fullconenat/patches/000-printk.patch -------------------------------------------------------------------------------- /PATCH/lede_add_immotalwrt_download_method.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/lede_add_immotalwrt_download_method.patch -------------------------------------------------------------------------------- /PATCH/new/dmc/0001-dmc-rk3328.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/new/dmc/0001-dmc-rk3328.patch -------------------------------------------------------------------------------- /PATCH/new/dmc/806-arm64-dts-rockchip-rk3328-add-dfi-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/new/dmc/806-arm64-dts-rockchip-rk3328-add-dfi-node.patch -------------------------------------------------------------------------------- /PATCH/new/main/998-rockchip-enable-i2c0-on-NanoPi-R2S.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/new/main/998-rockchip-enable-i2c0-on-NanoPi-R2S.patch -------------------------------------------------------------------------------- /PATCH/new/overclock/999-rk3328-enable-1512mhz.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/new/overclock/999-rk3328-enable-1512mhz.patch -------------------------------------------------------------------------------- /PATCH/new/overclock/999-rk3328-enable-1608mhz.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/new/overclock/999-rk3328-enable-1608mhz.patch -------------------------------------------------------------------------------- /PATCH/new/package/900-add-filter-aaaa-option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/new/package/900-add-filter-aaaa-option.patch -------------------------------------------------------------------------------- /PATCH/new/package/dnsmasq-add-filter-aaaa-option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/new/package/dnsmasq-add-filter-aaaa-option.patch -------------------------------------------------------------------------------- /PATCH/new/package/luci-add-filter-aaaa-option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/new/package/luci-add-filter-aaaa-option.patch -------------------------------------------------------------------------------- /PATCH/new/package/luci-app-firewall_add_fullcone.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/new/package/luci-app-firewall_add_fullcone.patch -------------------------------------------------------------------------------- /PATCH/new/package/use_json_object_new_int64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/new/package/use_json_object_new_int64.patch -------------------------------------------------------------------------------- /PATCH/new/script/cputemp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/new/script/cputemp.sh -------------------------------------------------------------------------------- /PATCH/new/script/fuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/new/script/fuck -------------------------------------------------------------------------------- /PATCH/new/script/onekeyr2s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/PATCH/new/script/onekeyr2s.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/README.md -------------------------------------------------------------------------------- /depends-ubuntu-2004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/depends-ubuntu-2004 -------------------------------------------------------------------------------- /diy-k2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/diy-k2.sh -------------------------------------------------------------------------------- /diy-part1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/diy-part1.sh -------------------------------------------------------------------------------- /diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/diy-part2.sh -------------------------------------------------------------------------------- /feeds.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/feeds.conf.default -------------------------------------------------------------------------------- /general/001-gcc11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/001-gcc11.patch -------------------------------------------------------------------------------- /general/003-add-module_supported_device-macro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/003-add-module_supported_device-macro.patch -------------------------------------------------------------------------------- /general/01-export-nfs_ssc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/01-export-nfs_ssc.patch -------------------------------------------------------------------------------- /general/101-bcm-fullconenat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/101-bcm-fullconenat.patch -------------------------------------------------------------------------------- /general/220-arm-gc_sections.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/220-arm-gc_sections.patch -------------------------------------------------------------------------------- /general/651-rt2x00-driver-compile-with-kernel-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/651-rt2x00-driver-compile-with-kernel-5.15.patch -------------------------------------------------------------------------------- /general/781-dsa-register-every-port-with-of_platform.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/781-dsa-register-every-port-with-of_platform.patch -------------------------------------------------------------------------------- /general/900-bcm-fullconenat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/900-bcm-fullconenat.patch -------------------------------------------------------------------------------- /general/982-add-bcm-fullconenat-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/982-add-bcm-fullconenat-support.patch -------------------------------------------------------------------------------- /general/AX6/package/firmware/ipq-wifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/AX6/package/firmware/ipq-wifi/Makefile -------------------------------------------------------------------------------- /general/AX6/package/firmware/ipq-wifi/board-redmi_ax6.ipq8074: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/AX6/package/firmware/ipq-wifi/board-redmi_ax6.ipq8074 -------------------------------------------------------------------------------- /general/AX6/target/linux/ipq807x/image/generic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/AX6/target/linux/ipq807x/image/generic.mk -------------------------------------------------------------------------------- /general/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/Makefile -------------------------------------------------------------------------------- /general/advancedtomato.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/advancedtomato.woff -------------------------------------------------------------------------------- /general/alsa-lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/alsa-lib/Makefile -------------------------------------------------------------------------------- /general/alsa-lib/patches/100-link_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/alsa-lib/patches/100-link_fix.patch -------------------------------------------------------------------------------- /general/alsa-lib/patches/200-usleep.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/alsa-lib/patches/200-usleep.patch -------------------------------------------------------------------------------- /general/ariang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/ariang/Makefile -------------------------------------------------------------------------------- /general/ariang/files/80_ariang-nginx-support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/ariang/files/80_ariang-nginx-support -------------------------------------------------------------------------------- /general/ariang/files/ariang.locations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/ariang/files/ariang.locations -------------------------------------------------------------------------------- /general/at/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/at/Makefile -------------------------------------------------------------------------------- /general/at/files/atd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/at/files/atd.init -------------------------------------------------------------------------------- /general/at/patches/100-remove-glibc-assumption.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/at/patches/100-remove-glibc-assumption.patch -------------------------------------------------------------------------------- /general/at/patches/110-getloadavg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/at/patches/110-getloadavg.patch -------------------------------------------------------------------------------- /general/autocore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/autocore/Makefile -------------------------------------------------------------------------------- /general/autocore/files/arm/090-cover-index_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/autocore/files/arm/090-cover-index_files -------------------------------------------------------------------------------- /general/autocore/files/arm/cpuinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/autocore/files/arm/cpuinfo -------------------------------------------------------------------------------- /general/autocore/files/arm/rpcd_10_system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/autocore/files/arm/rpcd_10_system.js -------------------------------------------------------------------------------- /general/autocore/files/arm/rpcd_luci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/autocore/files/arm/rpcd_luci -------------------------------------------------------------------------------- /general/autocore/files/arm/rpcd_luci-mod-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/autocore/files/arm/rpcd_luci-mod-status.json -------------------------------------------------------------------------------- /general/autocore/files/x86/autocore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/autocore/files/x86/autocore -------------------------------------------------------------------------------- /general/autocore/files/x86/cpuinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/autocore/files/x86/cpuinfo -------------------------------------------------------------------------------- /general/autocore/files/x86/ethinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/autocore/files/x86/ethinfo -------------------------------------------------------------------------------- /general/autocore/files/x86/rpcd_10_system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/autocore/files/x86/rpcd_10_system.js -------------------------------------------------------------------------------- /general/autocore/files/x86/rpcd_21_ethinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/autocore/files/x86/rpcd_21_ethinfo.js -------------------------------------------------------------------------------- /general/autocore/files/x86/rpcd_luci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/autocore/files/x86/rpcd_luci -------------------------------------------------------------------------------- /general/autocore/files/x86/rpcd_luci-mod-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/autocore/files/x86/rpcd_luci-mod-status.json -------------------------------------------------------------------------------- /general/bind/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/bind/Config.in -------------------------------------------------------------------------------- /general/bind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/bind/Makefile -------------------------------------------------------------------------------- /general/bind/files/bind/bind.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/bind/files/bind/bind.keys -------------------------------------------------------------------------------- /general/bind/files/bind/db.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/bind/files/bind/db.0 -------------------------------------------------------------------------------- /general/bind/files/bind/db.127: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/bind/files/bind/db.127 -------------------------------------------------------------------------------- /general/bind/files/bind/db.255: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/bind/files/bind/db.255 -------------------------------------------------------------------------------- /general/bind/files/bind/db.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/bind/files/bind/db.local -------------------------------------------------------------------------------- /general/bind/files/bind/db.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/bind/files/bind/db.root -------------------------------------------------------------------------------- /general/bind/files/bind/named.conf.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/bind/files/bind/named.conf.example -------------------------------------------------------------------------------- /general/bind/files/named.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/bind/files/named.init -------------------------------------------------------------------------------- /general/boost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/boost/Makefile -------------------------------------------------------------------------------- /general/bpftools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/bpftools/Makefile -------------------------------------------------------------------------------- /general/bpftools/patches/002-includes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/bpftools/patches/002-includes.patch -------------------------------------------------------------------------------- /general/brook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/brook/Makefile -------------------------------------------------------------------------------- /general/containerd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/containerd/Makefile -------------------------------------------------------------------------------- /general/coremark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/coremark -------------------------------------------------------------------------------- /general/coremark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/coremark.sh -------------------------------------------------------------------------------- /general/coreutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/coreutils/Makefile -------------------------------------------------------------------------------- /general/coreutils/patches/001-no_docs_man_tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/coreutils/patches/001-no_docs_man_tests.patch -------------------------------------------------------------------------------- /general/crypto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/crypto.mk -------------------------------------------------------------------------------- /general/cryptsetup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/cryptsetup/Makefile -------------------------------------------------------------------------------- /general/curl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/curl/Config.in -------------------------------------------------------------------------------- /general/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/curl/Makefile -------------------------------------------------------------------------------- /general/curl/patches/200-no_docs_tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/curl/patches/200-no_docs_tests.patch -------------------------------------------------------------------------------- /general/dae/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dae/Makefile -------------------------------------------------------------------------------- /general/dae/files/dae.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dae/files/dae.config -------------------------------------------------------------------------------- /general/dae/files/dae.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dae/files/dae.init -------------------------------------------------------------------------------- /general/dae/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dae/test.sh -------------------------------------------------------------------------------- /general/default-settings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/default-settings/Makefile -------------------------------------------------------------------------------- /general/default-settings/files/openwrt_banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/default-settings/files/openwrt_banner -------------------------------------------------------------------------------- /general/default-settings/files/zzz-default-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/default-settings/files/zzz-default-settings -------------------------------------------------------------------------------- /general/default-settings/i18n/default.zh_Hans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/default-settings/i18n/default.zh_Hans.po -------------------------------------------------------------------------------- /general/default-settings/i18n/more.zh_Hans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/default-settings/i18n/more.zh_Hans.po -------------------------------------------------------------------------------- /general/dnsmasq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dnsmasq/Makefile -------------------------------------------------------------------------------- /general/dnsmasq/files/50-dnsmasq-migrate-ipset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dnsmasq/files/50-dnsmasq-migrate-ipset.sh -------------------------------------------------------------------------------- /general/dnsmasq/files/50-dnsmasq-migrate-resolv-conf-auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dnsmasq/files/50-dnsmasq-migrate-resolv-conf-auto.sh -------------------------------------------------------------------------------- /general/dnsmasq/files/dhcp-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dnsmasq/files/dhcp-script.sh -------------------------------------------------------------------------------- /general/dnsmasq/files/dhcp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dnsmasq/files/dhcp.conf -------------------------------------------------------------------------------- /general/dnsmasq/files/dhcpbogushostname.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dnsmasq/files/dhcpbogushostname.conf -------------------------------------------------------------------------------- /general/dnsmasq/files/dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dnsmasq/files/dnsmasq.conf -------------------------------------------------------------------------------- /general/dnsmasq/files/dnsmasq.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dnsmasq/files/dnsmasq.init -------------------------------------------------------------------------------- /general/dnsmasq/files/dnsmasq_acl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dnsmasq/files/dnsmasq_acl.json -------------------------------------------------------------------------------- /general/dnsmasq/files/dnsmasqsec.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dnsmasq/files/dnsmasqsec.hotplug -------------------------------------------------------------------------------- /general/dnsmasq/files/rfc6761.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dnsmasq/files/rfc6761.conf -------------------------------------------------------------------------------- /general/dnsmasq/patches/200-ubus_dns.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dnsmasq/patches/200-ubus_dns.patch -------------------------------------------------------------------------------- /general/docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/docker/Makefile -------------------------------------------------------------------------------- /general/dockerd/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dockerd/Config.in -------------------------------------------------------------------------------- /general/dockerd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dockerd/Makefile -------------------------------------------------------------------------------- /general/dockerd/files/daemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dockerd/files/daemon.json -------------------------------------------------------------------------------- /general/dockerd/files/dockerd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dockerd/files/dockerd.init -------------------------------------------------------------------------------- /general/dockerd/files/etc/config/dockerd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dockerd/files/etc/config/dockerd -------------------------------------------------------------------------------- /general/dockerd/files/etc/sysctl.d/sysctl-br-netfilter-ip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dockerd/files/etc/sysctl.d/sysctl-br-netfilter-ip.conf -------------------------------------------------------------------------------- /general/dockerd/git-short-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/dockerd/git-short-commit.sh -------------------------------------------------------------------------------- /general/exfatprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/exfatprogs/Makefile -------------------------------------------------------------------------------- /general/expat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/expat/Makefile -------------------------------------------------------------------------------- /general/ffmpeg/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/ffmpeg/Config.in -------------------------------------------------------------------------------- /general/ffmpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/ffmpeg/Makefile -------------------------------------------------------------------------------- /general/ffmpeg/patches/010-pkgconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/ffmpeg/patches/010-pkgconfig.patch -------------------------------------------------------------------------------- /general/ffmpeg/patches/050-glibc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/ffmpeg/patches/050-glibc.patch -------------------------------------------------------------------------------- /general/file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/file/Makefile -------------------------------------------------------------------------------- /general/flac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/flac/Makefile -------------------------------------------------------------------------------- /general/frp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/frp/Makefile -------------------------------------------------------------------------------- /general/fs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/fs.mk -------------------------------------------------------------------------------- /general/gnupg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/gnupg/Makefile -------------------------------------------------------------------------------- /general/golang/golang-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/golang/golang-build.sh -------------------------------------------------------------------------------- /general/golang/golang-compiler.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/golang/golang-compiler.mk -------------------------------------------------------------------------------- /general/golang/golang-host-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/golang/golang-host-build.mk -------------------------------------------------------------------------------- /general/golang/golang-package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/golang/golang-package.mk -------------------------------------------------------------------------------- /general/golang/golang-values.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/golang/golang-values.mk -------------------------------------------------------------------------------- /general/golang/golang/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/golang/golang/Config.in -------------------------------------------------------------------------------- /general/golang/golang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/golang/golang/Makefile -------------------------------------------------------------------------------- /general/golang/golang/files/go-gcc-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/golang/golang/files/go-gcc-helper -------------------------------------------------------------------------------- /general/golang/golang/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | [ "$1" = golang ] || exit 0 4 | 5 | go version | grep -F " go$PKG_VERSION " 6 | -------------------------------------------------------------------------------- /general/gost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/gost/Makefile -------------------------------------------------------------------------------- /general/gost/files/gost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/gost/files/gost.config -------------------------------------------------------------------------------- /general/gost/files/gost.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/gost/files/gost.init -------------------------------------------------------------------------------- /general/gost/patches/010-go1-20.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/gost/patches/010-go1-20.patch -------------------------------------------------------------------------------- /general/gost/patches/030-bump-deps-bump-sdk-to-1.21.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/gost/patches/030-bump-deps-bump-sdk-to-1.21.patch -------------------------------------------------------------------------------- /general/inih/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/inih/Makefile -------------------------------------------------------------------------------- /general/iptables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/iptables/Makefile -------------------------------------------------------------------------------- /general/iptables/patches/010-add-set-dscpmark-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/iptables/patches/010-add-set-dscpmark-support.patch -------------------------------------------------------------------------------- /general/iptables/patches/101-remove-check-already.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/iptables/patches/101-remove-check-already.patch -------------------------------------------------------------------------------- /general/iptables/patches/102-iptables-disable-modprobe.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/iptables/patches/102-iptables-disable-modprobe.patch -------------------------------------------------------------------------------- /general/iptables/patches/103-optional-xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/iptables/patches/103-optional-xml.patch -------------------------------------------------------------------------------- /general/iptables/patches/200-configurable_builtin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/iptables/patches/200-configurable_builtin.patch -------------------------------------------------------------------------------- /general/iptables/patches/600-shared-libext.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/iptables/patches/600-shared-libext.patch -------------------------------------------------------------------------------- /general/iptables/patches/700-disable-legacy-revisions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/iptables/patches/700-disable-legacy-revisions.patch -------------------------------------------------------------------------------- /general/iptables/patches/800-flowoffload_target.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/iptables/patches/800-flowoffload_target.patch -------------------------------------------------------------------------------- /general/jq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/jq/Makefile -------------------------------------------------------------------------------- /general/libnetfilter-conntrack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/libnetfilter-conntrack/Makefile -------------------------------------------------------------------------------- /general/libpfring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/libpfring/Makefile -------------------------------------------------------------------------------- /general/libpfring/patches/0001-fix-cross-compiling.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/libpfring/patches/0001-fix-cross-compiling.patch -------------------------------------------------------------------------------- /general/libpfring/patches/100-fix-compilation-warning.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/libpfring/patches/100-fix-compilation-warning.patch -------------------------------------------------------------------------------- /general/libpfring/patches/900-fix-linux-6.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/libpfring/patches/900-fix-linux-6.6.patch -------------------------------------------------------------------------------- /general/libtorrent-rasterbar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/libtorrent-rasterbar/Makefile -------------------------------------------------------------------------------- /general/libxml2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/libxml2/Makefile -------------------------------------------------------------------------------- /general/lrzsz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/lrzsz/Makefile -------------------------------------------------------------------------------- /general/lrzsz/patches/100-install_delete_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/lrzsz/patches/100-install_delete_fix.patch -------------------------------------------------------------------------------- /general/lrzsz/patches/200-format.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/lrzsz/patches/200-format.patch -------------------------------------------------------------------------------- /general/lsof/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/lsof/Makefile -------------------------------------------------------------------------------- /general/lsof/patches/000-disable-man.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/lsof/patches/000-disable-man.patch -------------------------------------------------------------------------------- /general/luci-app-cpufreq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-cpufreq/Makefile -------------------------------------------------------------------------------- /general/luci-app-cpufreq/luasrc/controller/cpufreq.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-cpufreq/luasrc/controller/cpufreq.lua -------------------------------------------------------------------------------- /general/luci-app-cpufreq/luasrc/model/cbi/cpufreq.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-cpufreq/luasrc/model/cbi/cpufreq.lua -------------------------------------------------------------------------------- /general/luci-app-cpufreq/po/zh-cn/cpufreq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-cpufreq/po/zh-cn/cpufreq.po -------------------------------------------------------------------------------- /general/luci-app-cpufreq/root/etc/config/cpufreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-cpufreq/root/etc/config/cpufreq -------------------------------------------------------------------------------- /general/luci-app-cpufreq/root/etc/init.d/cpufreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-cpufreq/root/etc/init.d/cpufreq -------------------------------------------------------------------------------- /general/luci-app-cpufreq/root/etc/init.d/cpufreq.lean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-cpufreq/root/etc/init.d/cpufreq.lean -------------------------------------------------------------------------------- /general/luci-app-cpufreq/root/etc/uci-defaults/luci-cpufreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-cpufreq/root/etc/uci-defaults/luci-cpufreq -------------------------------------------------------------------------------- /general/luci-app-dae/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-dae/Makefile -------------------------------------------------------------------------------- /general/luci-app-dae/luasrc/controller/dae.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-dae/luasrc/controller/dae.lua -------------------------------------------------------------------------------- /general/luci-app-dae/luasrc/model/cbi/dae.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-dae/luasrc/model/cbi/dae.lua -------------------------------------------------------------------------------- /general/luci-app-dae/luasrc/view/dae/dae_editor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-dae/luasrc/view/dae/dae_editor.htm -------------------------------------------------------------------------------- /general/luci-app-dae/luasrc/view/dae/dae_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-dae/luasrc/view/dae/dae_status.htm -------------------------------------------------------------------------------- /general/luci-app-dae/po/zh_Hans/dae.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-dae/po/zh_Hans/dae.po -------------------------------------------------------------------------------- /general/luci-app-dae/root/etc/uci-defaults/luci-dae: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -rf /tmp/luci-* 4 | 5 | exit 0 6 | -------------------------------------------------------------------------------- /general/luci-app-flowoffload/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-flowoffload/Makefile -------------------------------------------------------------------------------- /general/luci-app-flowoffload/luasrc/controller/flowoffload.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-flowoffload/luasrc/controller/flowoffload.lua -------------------------------------------------------------------------------- /general/luci-app-flowoffload/luasrc/model/cbi/flowoffload.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-flowoffload/luasrc/model/cbi/flowoffload.lua -------------------------------------------------------------------------------- /general/luci-app-flowoffload/luasrc/view/flow/status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-flowoffload/luasrc/view/flow/status.htm -------------------------------------------------------------------------------- /general/luci-app-flowoffload/po/zh_Hans/flowoffload.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-flowoffload/po/zh_Hans/flowoffload.po -------------------------------------------------------------------------------- /general/luci-app-flowoffload/root/etc/config/flowoffload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-flowoffload/root/etc/config/flowoffload -------------------------------------------------------------------------------- /general/luci-app-flowoffload/root/etc/init.d/flowoffload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-flowoffload/root/etc/init.d/flowoffload -------------------------------------------------------------------------------- /general/luci-app-flowoffload/root/etc/uci-defaults/flowoffload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-flowoffload/root/etc/uci-defaults/flowoffload -------------------------------------------------------------------------------- /general/luci-app-gost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-gost/Makefile -------------------------------------------------------------------------------- /general/luci-app-gost/luasrc/controller/gost.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-gost/luasrc/controller/gost.lua -------------------------------------------------------------------------------- /general/luci-app-gost/luasrc/model/cbi/gost.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-gost/luasrc/model/cbi/gost.lua -------------------------------------------------------------------------------- /general/luci-app-gost/luasrc/view/gost/gost_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-gost/luasrc/view/gost/gost_status.htm -------------------------------------------------------------------------------- /general/luci-app-gost/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /general/luci-app-gost/po/zh_Hans/gost.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-gost/po/zh_Hans/gost.po -------------------------------------------------------------------------------- /general/luci-app-gost/po/zh_Hans/gpsysupgrade.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-gost/po/zh_Hans/gpsysupgrade.po -------------------------------------------------------------------------------- /general/luci-app-gost/root/etc/uci-defaults/gost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-gost/root/etc/uci-defaults/gost -------------------------------------------------------------------------------- /general/luci-app-kodexplorer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-kodexplorer/Makefile -------------------------------------------------------------------------------- /general/luci-app-kodexplorer/luasrc/controller/kodexplorer.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-kodexplorer/luasrc/controller/kodexplorer.lua -------------------------------------------------------------------------------- /general/luci-app-kodexplorer/po/zh-cn/kodexplorer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-kodexplorer/po/zh-cn/kodexplorer.po -------------------------------------------------------------------------------- /general/luci-app-kodexplorer/root/etc/config/kodexplorer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-kodexplorer/root/etc/config/kodexplorer -------------------------------------------------------------------------------- /general/luci-app-kodexplorer/root/etc/init.d/kodexplorer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-kodexplorer/root/etc/init.d/kodexplorer -------------------------------------------------------------------------------- /general/luci-app-netdata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-netdata/Makefile -------------------------------------------------------------------------------- /general/luci-app-netdata/luasrc/controller/netdata.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-netdata/luasrc/controller/netdata.lua -------------------------------------------------------------------------------- /general/luci-app-netdata/luasrc/view/netdata.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-netdata/luasrc/view/netdata.htm -------------------------------------------------------------------------------- /general/luci-app-netdata/po/zh_Hans/netdata.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-netdata/po/zh_Hans/netdata.po -------------------------------------------------------------------------------- /general/luci-app-passwall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-passwall/Makefile -------------------------------------------------------------------------------- /general/luci-app-passwall/luasrc/controller/passwall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-passwall/luasrc/controller/passwall.lua -------------------------------------------------------------------------------- /general/luci-app-passwall/luasrc/view/passwall/global/faq.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-passwall/luasrc/view/passwall/global/faq.htm -------------------------------------------------------------------------------- /general/luci-app-passwall/luasrc/view/passwall/log/log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-passwall/luasrc/view/passwall/log/log.htm -------------------------------------------------------------------------------- /general/luci-app-passwall/luasrc/view/passwall/server/log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-passwall/luasrc/view/passwall/server/log.htm -------------------------------------------------------------------------------- /general/luci-app-passwall/po/zh-cn/passwall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-passwall/po/zh-cn/passwall.po -------------------------------------------------------------------------------- /general/luci-app-passwall/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /general/luci-app-passwall/root/etc/config/passwall_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-passwall/root/etc/config/passwall_server -------------------------------------------------------------------------------- /general/luci-app-passwall/root/etc/init.d/passwall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-passwall/root/etc/init.d/passwall -------------------------------------------------------------------------------- /general/luci-app-passwall/root/etc/init.d/passwall_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-passwall/root/etc/init.d/passwall_server -------------------------------------------------------------------------------- /general/luci-app-passwall/root/etc/uci-defaults/luci-passwall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-passwall/root/etc/uci-defaults/luci-passwall -------------------------------------------------------------------------------- /general/luci-app-passwall/root/usr/share/passwall/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-passwall/root/usr/share/passwall/app.sh -------------------------------------------------------------------------------- /general/luci-app-passwall/root/usr/share/passwall/iptables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-passwall/root/usr/share/passwall/iptables.sh -------------------------------------------------------------------------------- /general/luci-app-passwall/root/usr/share/passwall/monitor.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-passwall/root/usr/share/passwall/monitor.sh -------------------------------------------------------------------------------- /general/luci-app-passwall/root/usr/share/passwall/rules/block_host: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /general/luci-app-passwall/root/usr/share/passwall/rules/block_ip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /general/luci-app-passwall/root/usr/share/passwall/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-passwall/root/usr/share/passwall/test.sh -------------------------------------------------------------------------------- /general/luci-app-qbittorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-qbittorrent/Makefile -------------------------------------------------------------------------------- /general/luci-app-qbittorrent/luasrc/controller/qbittorrent.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-qbittorrent/luasrc/controller/qbittorrent.lua -------------------------------------------------------------------------------- /general/luci-app-qbittorrent/luasrc/model/cbi/qbittorrent.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-qbittorrent/luasrc/model/cbi/qbittorrent.lua -------------------------------------------------------------------------------- /general/luci-app-qbittorrent/po/zh_Hans/qbittorrent.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-qbittorrent/po/zh_Hans/qbittorrent.po -------------------------------------------------------------------------------- /general/luci-app-qbittorrent/root/etc/config/qbittorrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-qbittorrent/root/etc/config/qbittorrent -------------------------------------------------------------------------------- /general/luci-app-qbittorrent/root/etc/init.d/qbittorrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-qbittorrent/root/etc/init.d/qbittorrent -------------------------------------------------------------------------------- /general/luci-app-qbittorrent/root/etc/uci-defaults/50_luci-qbittorrent: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -f /tmp/luci-indexcache* 4 | exit 0 5 | -------------------------------------------------------------------------------- /general/luci-app-socat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-socat/Makefile -------------------------------------------------------------------------------- /general/luci-app-socat/luasrc/controller/socat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-socat/luasrc/controller/socat.lua -------------------------------------------------------------------------------- /general/luci-app-socat/luasrc/model/cbi/socat/config.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-socat/luasrc/model/cbi/socat/config.lua -------------------------------------------------------------------------------- /general/luci-app-socat/luasrc/model/cbi/socat/index.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-socat/luasrc/model/cbi/socat/index.lua -------------------------------------------------------------------------------- /general/luci-app-socat/luasrc/view/socat/list_status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-socat/luasrc/view/socat/list_status.htm -------------------------------------------------------------------------------- /general/luci-app-socat/luasrc/view/socat/status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-socat/luasrc/view/socat/status.htm -------------------------------------------------------------------------------- /general/luci-app-socat/po/zh-cn/socat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-socat/po/zh-cn/socat.po -------------------------------------------------------------------------------- /general/luci-app-socat/po/zh_Hans: -------------------------------------------------------------------------------- 1 | zh-cn -------------------------------------------------------------------------------- /general/luci-app-socat/root/etc/config/socat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-socat/root/etc/config/socat -------------------------------------------------------------------------------- /general/luci-app-socat/root/etc/init.d/socat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-socat/root/etc/init.d/socat -------------------------------------------------------------------------------- /general/luci-app-socat/root/etc/uci-defaults/luci-app-socat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-socat/root/etc/uci-defaults/luci-app-socat -------------------------------------------------------------------------------- /general/luci-app-turboacc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-turboacc/Makefile -------------------------------------------------------------------------------- /general/luci-app-turboacc/luasrc/controller/turboacc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-turboacc/luasrc/controller/turboacc.lua -------------------------------------------------------------------------------- /general/luci-app-turboacc/luasrc/model/cbi/turboacc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-turboacc/luasrc/model/cbi/turboacc.lua -------------------------------------------------------------------------------- /general/luci-app-turboacc/po/zh_Hans/turboacc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-turboacc/po/zh_Hans/turboacc.po -------------------------------------------------------------------------------- /general/luci-app-turboacc/root/etc/config/turboacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-turboacc/root/etc/config/turboacc -------------------------------------------------------------------------------- /general/luci-app-turboacc/root/etc/init.d/turboacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-turboacc/root/etc/init.d/turboacc -------------------------------------------------------------------------------- /general/luci-app-turboacc/root/etc/uci-defaults/turboacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-turboacc/root/etc/uci-defaults/turboacc -------------------------------------------------------------------------------- /general/luci-app-v2ray-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-v2ray-server/Makefile -------------------------------------------------------------------------------- /general/luci-app-v2ray-server/luasrc/view/v2ray_server/log.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-v2ray-server/luasrc/view/v2ray_server/log.htm -------------------------------------------------------------------------------- /general/luci-app-v2ray-server/po/zh-cn/v2ray_server.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-v2ray-server/po/zh-cn/v2ray_server.po -------------------------------------------------------------------------------- /general/luci-app-v2ray-server/root/etc/config/v2ray_server: -------------------------------------------------------------------------------- 1 | 2 | config global 3 | option enable '0' 4 | 5 | -------------------------------------------------------------------------------- /general/luci-app-v2ray-server/root/etc/init.d/v2ray_server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/luci-app-v2ray-server/root/etc/init.d/v2ray_server -------------------------------------------------------------------------------- /general/mt7621/target/linux/ramips/image/mt7621.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/mt7621/target/linux/ramips/image/mt7621.mk -------------------------------------------------------------------------------- /general/n2n_v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/n2n_v2/Makefile -------------------------------------------------------------------------------- /general/n2n_v2/files/n2n_v2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/n2n_v2/files/n2n_v2.config -------------------------------------------------------------------------------- /general/n2n_v2/files/n2n_v2.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/n2n_v2/files/n2n_v2.init -------------------------------------------------------------------------------- /general/naiveproxy.orig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/naiveproxy.orig/Makefile -------------------------------------------------------------------------------- /general/naiveproxy.orig/src/init_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/naiveproxy.orig/src/init_env.sh -------------------------------------------------------------------------------- /general/naiveproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/naiveproxy/Makefile -------------------------------------------------------------------------------- /general/naiveproxy/files/naiveproxy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/naiveproxy/files/naiveproxy.config -------------------------------------------------------------------------------- /general/naiveproxy/files/naiveproxy.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/naiveproxy/files/naiveproxy.init -------------------------------------------------------------------------------- /general/nano/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nano/Makefile -------------------------------------------------------------------------------- /general/nano/files/nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nano/files/nanorc -------------------------------------------------------------------------------- /general/nano/files/uci.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nano/files/uci.nanorc -------------------------------------------------------------------------------- /general/nano/files/ucode.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nano/files/ucode.nanorc -------------------------------------------------------------------------------- /general/netdevices.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/netdevices.mk -------------------------------------------------------------------------------- /general/netsupport.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/netsupport.mk -------------------------------------------------------------------------------- /general/nginx/Config_ssl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/Config_ssl.in -------------------------------------------------------------------------------- /general/nginx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/Makefile -------------------------------------------------------------------------------- /general/nginx/files-luci-support/60_nginx-luci-support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/files-luci-support/60_nginx-luci-support -------------------------------------------------------------------------------- /general/nginx/files-luci-support/luci.locations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/files-luci-support/luci.locations -------------------------------------------------------------------------------- /general/nginx/files/nginx.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/files/nginx.init -------------------------------------------------------------------------------- /general/nginx/patches/nginx-mod-lua/100-no_by_lua_block.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/patches/nginx-mod-lua/100-no_by_lua_block.patch -------------------------------------------------------------------------------- /general/nginx/patches/nginx-mod-njs/101-feature_test_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/patches/nginx-mod-njs/101-feature_test_fix.patch -------------------------------------------------------------------------------- /general/nginx/patches/nginx-mod-njs/102-sizeof_test_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/patches/nginx-mod-njs/102-sizeof_test_fix.patch -------------------------------------------------------------------------------- /general/nginx/patches/nginx-mod-njs/104-endianness_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/patches/nginx-mod-njs/104-endianness_fix.patch -------------------------------------------------------------------------------- /general/nginx/patches/nginx-mod-rtmp/100-bigedian.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/patches/nginx-mod-rtmp/100-bigedian.patch -------------------------------------------------------------------------------- /general/nginx/patches/nginx/101-feature_test_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/patches/nginx/101-feature_test_fix.patch -------------------------------------------------------------------------------- /general/nginx/patches/nginx/102-sizeof_test_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/patches/nginx/102-sizeof_test_fix.patch -------------------------------------------------------------------------------- /general/nginx/patches/nginx/103-sys_nerr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/patches/nginx/103-sys_nerr.patch -------------------------------------------------------------------------------- /general/nginx/patches/nginx/104-endianness_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/patches/nginx/104-endianness_fix.patch -------------------------------------------------------------------------------- /general/nginx/patches/nginx/105-optional-libexslt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/patches/nginx/105-optional-libexslt.patch -------------------------------------------------------------------------------- /general/nginx/patches/nginx/106-libxslt-fix-detection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/patches/nginx/106-libxslt-fix-detection.patch -------------------------------------------------------------------------------- /general/nginx/patches/nginx/200-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/patches/nginx/200-config.patch -------------------------------------------------------------------------------- /general/nginx/patches/nginx/201-ignore-invalid-options.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/patches/nginx/201-ignore-invalid-options.patch -------------------------------------------------------------------------------- /general/nginx/patches/nginx/202-fix-fPIC-on-link.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/nginx/patches/nginx/202-fix-fPIC-on-link.patch -------------------------------------------------------------------------------- /general/node/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/node/Makefile -------------------------------------------------------------------------------- /general/node/patches/003-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/node/patches/003-path.patch -------------------------------------------------------------------------------- /general/node/patches/004-musl_support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/node/patches/004-musl_support.patch -------------------------------------------------------------------------------- /general/node/patches/007-fix_host_build_on_macos.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/node/patches/007-fix_host_build_on_macos.patch -------------------------------------------------------------------------------- /general/node/patches/010-execvp-arg-list-too-long.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/node/patches/010-execvp-arg-list-too-long.patch -------------------------------------------------------------------------------- /general/node/patches/999-cast_for_mips32.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/node/patches/999-cast_for_mips32.patch -------------------------------------------------------------------------------- /general/node/patches/999-fix_icu_conflict.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/node/patches/999-fix_icu_conflict.patch -------------------------------------------------------------------------------- /general/node/patches/999-localhost-no-addrconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/node/patches/999-localhost-no-addrconfig.patch -------------------------------------------------------------------------------- /general/node/patches/999-v8_zlib_support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/node/patches/999-v8_zlib_support.patch -------------------------------------------------------------------------------- /general/ntfs3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/ntfs3/Makefile -------------------------------------------------------------------------------- /general/openssh/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openssh/Config.in -------------------------------------------------------------------------------- /general/openssh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openssh/Makefile -------------------------------------------------------------------------------- /general/openssh/files/sftp-ssh.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openssh/files/sftp-ssh.service -------------------------------------------------------------------------------- /general/openssh/files/sshd.failsafe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openssh/files/sshd.failsafe -------------------------------------------------------------------------------- /general/openssh/files/sshd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openssh/files/sshd.init -------------------------------------------------------------------------------- /general/openssh/files/sshd.pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openssh/files/sshd.pam -------------------------------------------------------------------------------- /general/openssh/files/sshd.pam-access: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openssh/files/sshd.pam-access -------------------------------------------------------------------------------- /general/openssh/patches/900-sshd_config-include-dir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openssh/patches/900-sshd_config-include-dir.patch -------------------------------------------------------------------------------- /general/openvpn/Config-mbedtls.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openvpn/Config-mbedtls.in -------------------------------------------------------------------------------- /general/openvpn/Config-openssl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openvpn/Config-openssl.in -------------------------------------------------------------------------------- /general/openvpn/Config-wolfssl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openvpn/Config-wolfssl.in -------------------------------------------------------------------------------- /general/openvpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openvpn/Makefile -------------------------------------------------------------------------------- /general/openvpn/files/etc/hotplug.d/openvpn/01-user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openvpn/files/etc/hotplug.d/openvpn/01-user -------------------------------------------------------------------------------- /general/openvpn/files/etc/openvpn.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openvpn/files/etc/openvpn.user -------------------------------------------------------------------------------- /general/openvpn/files/lib/functions/openvpn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openvpn/files/lib/functions/openvpn.sh -------------------------------------------------------------------------------- /general/openvpn/files/openvpn.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openvpn/files/openvpn.config -------------------------------------------------------------------------------- /general/openvpn/files/openvpn.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openvpn/files/openvpn.init -------------------------------------------------------------------------------- /general/openvpn/files/openvpn.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openvpn/files/openvpn.options -------------------------------------------------------------------------------- /general/openvpn/files/openvpn.upgrade: -------------------------------------------------------------------------------- 1 | /etc/openvpn/ 2 | -------------------------------------------------------------------------------- /general/openvpn/files/usr/libexec/openvpn-hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openvpn/files/usr/libexec/openvpn-hotplug -------------------------------------------------------------------------------- /general/openvpn/patches/001-reproducible-remove_DATE.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openvpn/patches/001-reproducible-remove_DATE.patch -------------------------------------------------------------------------------- /general/openvpn/patches/002-add-wolfssl-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openvpn/patches/002-add-wolfssl-support.patch -------------------------------------------------------------------------------- /general/openvpn/patches/220-disable_des.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openvpn/patches/220-disable_des.patch -------------------------------------------------------------------------------- /general/openvpn/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openvpn/test.sh -------------------------------------------------------------------------------- /general/openwrt_banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/openwrt_banner -------------------------------------------------------------------------------- /general/pcre2/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/pcre2/Config.in -------------------------------------------------------------------------------- /general/pcre2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/pcre2/Makefile -------------------------------------------------------------------------------- /general/perl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/Config.in -------------------------------------------------------------------------------- /general/perl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/Makefile -------------------------------------------------------------------------------- /general/perl/README.patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/README.patches -------------------------------------------------------------------------------- /general/perl/files/README.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/README.config -------------------------------------------------------------------------------- /general/perl/files/aarch64.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/aarch64.config -------------------------------------------------------------------------------- /general/perl/files/architecture.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/architecture.config -------------------------------------------------------------------------------- /general/perl/files/arm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/arm.config -------------------------------------------------------------------------------- /general/perl/files/armeb.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/armeb.config -------------------------------------------------------------------------------- /general/perl/files/base.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/base.config -------------------------------------------------------------------------------- /general/perl/files/i486.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/i486.config -------------------------------------------------------------------------------- /general/perl/files/libc.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/libc.config -------------------------------------------------------------------------------- /general/perl/files/mips.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/mips.config -------------------------------------------------------------------------------- /general/perl/files/mips64.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/mips64.config -------------------------------------------------------------------------------- /general/perl/files/mips64el.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/mips64el.config -------------------------------------------------------------------------------- /general/perl/files/mipsel.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/mipsel.config -------------------------------------------------------------------------------- /general/perl/files/misc.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/misc.config -------------------------------------------------------------------------------- /general/perl/files/perl-run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/perl-run_tests.sh -------------------------------------------------------------------------------- /general/perl/files/perlconfig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/perlconfig.pl -------------------------------------------------------------------------------- /general/perl/files/powerpc.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/powerpc.config -------------------------------------------------------------------------------- /general/perl/files/powerpc64.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/powerpc64.config -------------------------------------------------------------------------------- /general/perl/files/riscv64.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/riscv64.config -------------------------------------------------------------------------------- /general/perl/files/signal.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/signal.config -------------------------------------------------------------------------------- /general/perl/files/threads.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/threads.config -------------------------------------------------------------------------------- /general/perl/files/version.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/version.config -------------------------------------------------------------------------------- /general/perl/files/x86_64.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/files/x86_64.config -------------------------------------------------------------------------------- /general/perl/patches/010-musl-compat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/patches/010-musl-compat.patch -------------------------------------------------------------------------------- /general/perl/patches/110-always_use_miniperl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/patches/110-always_use_miniperl.patch -------------------------------------------------------------------------------- /general/perl/patches/120-remove-build-timestamp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/patches/120-remove-build-timestamp.patch -------------------------------------------------------------------------------- /general/perl/patches/300-add-relink-hack.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/patches/300-add-relink-hack.patch -------------------------------------------------------------------------------- /general/perl/patches/320-copy-pod-hack.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/patches/320-copy-pod-hack.patch -------------------------------------------------------------------------------- /general/perl/patches/710-threads_join-skip_ps_on_busybox.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/patches/710-threads_join-skip_ps_on_busybox.patch -------------------------------------------------------------------------------- /general/perl/patches/900-use-rm-force.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/patches/900-use-rm-force.patch -------------------------------------------------------------------------------- /general/perl/patches/910-miniperl-needs-inc-dot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/patches/910-miniperl-needs-inc-dot.patch -------------------------------------------------------------------------------- /general/perl/patches/998-Errno_errno.h_path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/patches/998-Errno_errno.h_path.patch -------------------------------------------------------------------------------- /general/perl/perlbase.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/perlbase.mk -------------------------------------------------------------------------------- /general/perl/perlmod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/perlmod.mk -------------------------------------------------------------------------------- /general/perl/perlver.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/perl/perlver.mk -------------------------------------------------------------------------------- /general/python-docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python-docker/Makefile -------------------------------------------------------------------------------- /general/python/2to3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/2to3/Makefile -------------------------------------------------------------------------------- /general/python/2to3/files/2to3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/2to3/files/2to3.py -------------------------------------------------------------------------------- /general/python/2to3/files/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/2to3/files/copyright -------------------------------------------------------------------------------- /general/python/Flask/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/Flask/Makefile -------------------------------------------------------------------------------- /general/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/README.md -------------------------------------------------------------------------------- /general/python/django-restframework/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/django-restframework/Makefile -------------------------------------------------------------------------------- /general/python/django/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/django/Makefile -------------------------------------------------------------------------------- /general/python/django/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/django/test.sh -------------------------------------------------------------------------------- /general/python/flup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/flup/Makefile -------------------------------------------------------------------------------- /general/python/itsdangerous/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/itsdangerous/Makefile -------------------------------------------------------------------------------- /general/python/micropython-lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/micropython-lib/Makefile -------------------------------------------------------------------------------- /general/python/micropython-lib/files/micropython-unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/micropython-lib/files/micropython-unix -------------------------------------------------------------------------------- /general/python/micropython-lib/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/micropython-lib/install.py -------------------------------------------------------------------------------- /general/python/micropython/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/micropython/Makefile -------------------------------------------------------------------------------- /general/python/micropython/patches/030-target-no-darwin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/micropython/patches/030-target-no-darwin.patch -------------------------------------------------------------------------------- /general/python/micropython/src/ports/unix/variants/standard/manifest-nossl.py: -------------------------------------------------------------------------------- 1 | include("$(MPY_DIR)/extmod/asyncio") 2 | -------------------------------------------------------------------------------- /general/python/micropython/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/micropython/test.sh -------------------------------------------------------------------------------- /general/python/numpy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/numpy/Makefile -------------------------------------------------------------------------------- /general/python/numpy/patches/003-without-vendored-meson.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/numpy/patches/003-without-vendored-meson.patch -------------------------------------------------------------------------------- /general/python/openpyxl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/openpyxl/Makefile -------------------------------------------------------------------------------- /general/python/pillow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/pillow/Makefile -------------------------------------------------------------------------------- /general/python/pillow/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/pillow/test.sh -------------------------------------------------------------------------------- /general/python/pipx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/pipx/Makefile -------------------------------------------------------------------------------- /general/python/pipx/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/pipx/test.sh -------------------------------------------------------------------------------- /general/python/pymysql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/pymysql/Makefile -------------------------------------------------------------------------------- /general/python/pypi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/pypi.mk -------------------------------------------------------------------------------- /general/python/pyproject-metadata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/pyproject-metadata/Makefile -------------------------------------------------------------------------------- /general/python/python-aio-mqtt-mod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-aio-mqtt-mod/Makefile -------------------------------------------------------------------------------- /general/python/python-aiohttp-cors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-aiohttp-cors/Makefile -------------------------------------------------------------------------------- /general/python/python-aiohttp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-aiohttp/Makefile -------------------------------------------------------------------------------- /general/python/python-aiosignal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-aiosignal/Makefile -------------------------------------------------------------------------------- /general/python/python-apipkg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-apipkg/Makefile -------------------------------------------------------------------------------- /general/python/python-appdirs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-appdirs/Makefile -------------------------------------------------------------------------------- /general/python/python-argcomplete/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-argcomplete/Makefile -------------------------------------------------------------------------------- /general/python/python-argcomplete/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-argcomplete/test.sh -------------------------------------------------------------------------------- /general/python/python-asgiref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-asgiref/Makefile -------------------------------------------------------------------------------- /general/python/python-astral/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-astral/Makefile -------------------------------------------------------------------------------- /general/python/python-async-generator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-async-generator/Makefile -------------------------------------------------------------------------------- /general/python/python-async-timeout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-async-timeout/Makefile -------------------------------------------------------------------------------- /general/python/python-atomicwrites/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-atomicwrites/Makefile -------------------------------------------------------------------------------- /general/python/python-attrs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-attrs/Makefile -------------------------------------------------------------------------------- /general/python/python-augeas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-augeas/Makefile -------------------------------------------------------------------------------- /general/python/python-automat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-automat/Makefile -------------------------------------------------------------------------------- /general/python/python-automat/patches/002-omit-visualize.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-automat/patches/002-omit-visualize.patch -------------------------------------------------------------------------------- /general/python/python-automat/patches/003-omit-tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-automat/patches/003-omit-tests.patch -------------------------------------------------------------------------------- /general/python/python-awesomeversion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-awesomeversion/Makefile -------------------------------------------------------------------------------- /general/python/python-awscli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-awscli/Makefile -------------------------------------------------------------------------------- /general/python/python-babel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-babel/Makefile -------------------------------------------------------------------------------- /general/python/python-bcrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-bcrypt/Makefile -------------------------------------------------------------------------------- /general/python/python-bcrypt/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-bcrypt/test.sh -------------------------------------------------------------------------------- /general/python/python-bidict/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-bidict/Makefile -------------------------------------------------------------------------------- /general/python/python-ble2mqtt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-ble2mqtt/Makefile -------------------------------------------------------------------------------- /general/python/python-ble2mqtt/files/ble2mqtt.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-ble2mqtt/files/ble2mqtt.init -------------------------------------------------------------------------------- /general/python/python-bleak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-bleak/Makefile -------------------------------------------------------------------------------- /general/python/python-boto3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-boto3/Makefile -------------------------------------------------------------------------------- /general/python/python-botocore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-botocore/Makefile -------------------------------------------------------------------------------- /general/python/python-build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-build/Makefile -------------------------------------------------------------------------------- /general/python/python-cached-property/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-cached-property/Makefile -------------------------------------------------------------------------------- /general/python/python-cachelib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-cachelib/Makefile -------------------------------------------------------------------------------- /general/python/python-cachetools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-cachetools/Makefile -------------------------------------------------------------------------------- /general/python/python-calver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-calver/Makefile -------------------------------------------------------------------------------- /general/python/python-certifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-certifi/Makefile -------------------------------------------------------------------------------- /general/python/python-certifi/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-certifi/test.sh -------------------------------------------------------------------------------- /general/python/python-cffi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-cffi/Makefile -------------------------------------------------------------------------------- /general/python/python-cffi/patches/001-unpin-setuptools.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-cffi/patches/001-unpin-setuptools.patch -------------------------------------------------------------------------------- /general/python/python-cffi/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-cffi/test.sh -------------------------------------------------------------------------------- /general/python/python-chardet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-chardet/Makefile -------------------------------------------------------------------------------- /general/python/python-charset-normalizer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-charset-normalizer/Makefile -------------------------------------------------------------------------------- /general/python/python-charset-normalizer/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-charset-normalizer/test.sh -------------------------------------------------------------------------------- /general/python/python-ciso8601/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-ciso8601/Makefile -------------------------------------------------------------------------------- /general/python/python-click-log/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-click-log/Makefile -------------------------------------------------------------------------------- /general/python/python-click/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-click/Makefile -------------------------------------------------------------------------------- /general/python/python-colorama/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-colorama/Makefile -------------------------------------------------------------------------------- /general/python/python-constantly/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-constantly/Makefile -------------------------------------------------------------------------------- /general/python/python-constantly/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-constantly/test.sh -------------------------------------------------------------------------------- /general/python/python-contextlib2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-contextlib2/Makefile -------------------------------------------------------------------------------- /general/python/python-crcmod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-crcmod/Makefile -------------------------------------------------------------------------------- /general/python/python-cryptodome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-cryptodome/Makefile -------------------------------------------------------------------------------- /general/python/python-cryptodome/patches/002-omit-tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-cryptodome/patches/002-omit-tests.patch -------------------------------------------------------------------------------- /general/python/python-cryptodomex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-cryptodomex/Makefile -------------------------------------------------------------------------------- /general/python/python-cryptodomex/patches/002-omit-tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-cryptodomex/patches/002-omit-tests.patch -------------------------------------------------------------------------------- /general/python/python-cryptography/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-cryptography/Makefile -------------------------------------------------------------------------------- /general/python/python-cryptography/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-cryptography/test.sh -------------------------------------------------------------------------------- /general/python/python-curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-curl/Makefile -------------------------------------------------------------------------------- /general/python/python-curl/patches/100_macos_compat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-curl/patches/100_macos_compat.patch -------------------------------------------------------------------------------- /general/python/python-cython/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-cython/Makefile -------------------------------------------------------------------------------- /general/python/python-dateutil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-dateutil/Makefile -------------------------------------------------------------------------------- /general/python/python-dbus-fast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-dbus-fast/Makefile -------------------------------------------------------------------------------- /general/python/python-decorator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-decorator/Makefile -------------------------------------------------------------------------------- /general/python/python-defusedxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-defusedxml/Makefile -------------------------------------------------------------------------------- /general/python/python-distro/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-distro/Makefile -------------------------------------------------------------------------------- /general/python/python-dns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-dns/Makefile -------------------------------------------------------------------------------- /general/python/python-docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-docker/Makefile -------------------------------------------------------------------------------- /general/python/python-dockerpty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-dockerpty/Makefile -------------------------------------------------------------------------------- /general/python/python-docopt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-docopt/Makefile -------------------------------------------------------------------------------- /general/python/python-docutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-docutils/Makefile -------------------------------------------------------------------------------- /general/python/python-dotenv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-dotenv/Makefile -------------------------------------------------------------------------------- /general/python/python-editables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-editables/Makefile -------------------------------------------------------------------------------- /general/python/python-engineio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-engineio/Makefile -------------------------------------------------------------------------------- /general/python/python-et_xmlfile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-et_xmlfile/Makefile -------------------------------------------------------------------------------- /general/python/python-evdev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-evdev/Makefile -------------------------------------------------------------------------------- /general/python/python-eventlet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-eventlet/Makefile -------------------------------------------------------------------------------- /general/python/python-execnet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-execnet/Makefile -------------------------------------------------------------------------------- /general/python/python-flask-babel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-flask-babel/Makefile -------------------------------------------------------------------------------- /general/python/python-flask-httpauth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-flask-httpauth/Makefile -------------------------------------------------------------------------------- /general/python/python-flask-login/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-flask-login/Makefile -------------------------------------------------------------------------------- /general/python/python-flask-seasurf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-flask-seasurf/Makefile -------------------------------------------------------------------------------- /general/python/python-flask-session/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-flask-session/Makefile -------------------------------------------------------------------------------- /general/python/python-flask-socketio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-flask-socketio/Makefile -------------------------------------------------------------------------------- /general/python/python-flit-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-flit-core/Makefile -------------------------------------------------------------------------------- /general/python/python-flit-scm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-flit-scm/Makefile -------------------------------------------------------------------------------- /general/python/python-fnv-hash-fast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-fnv-hash-fast/Makefile -------------------------------------------------------------------------------- /general/python/python-fnvhash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-fnvhash/Makefile -------------------------------------------------------------------------------- /general/python/python-frozenlist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-frozenlist/Makefile -------------------------------------------------------------------------------- /general/python/python-gevent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-gevent/Makefile -------------------------------------------------------------------------------- /general/python/python-gmpy2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-gmpy2/Makefile -------------------------------------------------------------------------------- /general/python/python-gnupg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-gnupg/Makefile -------------------------------------------------------------------------------- /general/python/python-greenlet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-greenlet/Makefile -------------------------------------------------------------------------------- /general/python/python-hatch-fancy-pypi-readme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-hatch-fancy-pypi-readme/Makefile -------------------------------------------------------------------------------- /general/python/python-hatch-requirements-txt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-hatch-requirements-txt/Makefile -------------------------------------------------------------------------------- /general/python/python-hatch-vcs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-hatch-vcs/Makefile -------------------------------------------------------------------------------- /general/python/python-hatchling/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-hatchling/Makefile -------------------------------------------------------------------------------- /general/python/python-hyperlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-hyperlink/Makefile -------------------------------------------------------------------------------- /general/python/python-hyperlink/patches/001-omit-tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-hyperlink/patches/001-omit-tests.patch -------------------------------------------------------------------------------- /general/python/python-idna/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-idna/Makefile -------------------------------------------------------------------------------- /general/python/python-idna/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-idna/test.sh -------------------------------------------------------------------------------- /general/python/python-ifaddr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-ifaddr/Makefile -------------------------------------------------------------------------------- /general/python/python-incremental/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-incremental/Makefile -------------------------------------------------------------------------------- /general/python/python-influxdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-influxdb/Makefile -------------------------------------------------------------------------------- /general/python/python-iniconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-iniconfig/Makefile -------------------------------------------------------------------------------- /general/python/python-installer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-installer/Makefile -------------------------------------------------------------------------------- /general/python/python-intelhex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-intelhex/Makefile -------------------------------------------------------------------------------- /general/python/python-jdcal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-jdcal/Makefile -------------------------------------------------------------------------------- /general/python/python-jinja2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-jinja2/Makefile -------------------------------------------------------------------------------- /general/python/python-jmespath/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-jmespath/Makefile -------------------------------------------------------------------------------- /general/python/python-jsonpath-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-jsonpath-ng/Makefile -------------------------------------------------------------------------------- /general/python/python-jsonschema-specifications/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-jsonschema-specifications/Makefile -------------------------------------------------------------------------------- /general/python/python-jsonschema-specifications/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-jsonschema-specifications/test.sh -------------------------------------------------------------------------------- /general/python/python-jsonschema/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-jsonschema/Makefile -------------------------------------------------------------------------------- /general/python/python-jsonschema/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-jsonschema/test.sh -------------------------------------------------------------------------------- /general/python/python-libmodbus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-libmodbus/Makefile -------------------------------------------------------------------------------- /general/python/python-lru-dict/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-lru-dict/Makefile -------------------------------------------------------------------------------- /general/python/python-lxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-lxml/Makefile -------------------------------------------------------------------------------- /general/python/python-lxml/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-lxml/test.sh -------------------------------------------------------------------------------- /general/python/python-mako/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-mako/Makefile -------------------------------------------------------------------------------- /general/python/python-markdown/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-markdown/Makefile -------------------------------------------------------------------------------- /general/python/python-markupsafe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-markupsafe/Makefile -------------------------------------------------------------------------------- /general/python/python-maturin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-maturin/Makefile -------------------------------------------------------------------------------- /general/python/python-maxminddb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-maxminddb/Makefile -------------------------------------------------------------------------------- /general/python/python-more-itertools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-more-itertools/Makefile -------------------------------------------------------------------------------- /general/python/python-msgpack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-msgpack/Makefile -------------------------------------------------------------------------------- /general/python/python-multidict/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-multidict/Makefile -------------------------------------------------------------------------------- /general/python/python-netdisco/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-netdisco/Makefile -------------------------------------------------------------------------------- /general/python/python-netifaces/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-netifaces/Makefile -------------------------------------------------------------------------------- /general/python/python-networkx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-networkx/Makefile -------------------------------------------------------------------------------- /general/python/python-orjson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-orjson/Makefile -------------------------------------------------------------------------------- /general/python/python-outcome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-outcome/Makefile -------------------------------------------------------------------------------- /general/python/python-package-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-package-install.sh -------------------------------------------------------------------------------- /general/python/python-packaging/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-packaging/Makefile -------------------------------------------------------------------------------- /general/python/python-packaging/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-packaging/test.sh -------------------------------------------------------------------------------- /general/python/python-paho-mqtt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-paho-mqtt/Makefile -------------------------------------------------------------------------------- /general/python/python-paramiko/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-paramiko/Makefile -------------------------------------------------------------------------------- /general/python/python-parsley/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-parsley/Makefile -------------------------------------------------------------------------------- /general/python/python-parsley/patches/002-omit-tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-parsley/patches/002-omit-tests.patch -------------------------------------------------------------------------------- /general/python/python-passlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-passlib/Makefile -------------------------------------------------------------------------------- /general/python/python-pathspec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pathspec/Makefile -------------------------------------------------------------------------------- /general/python/python-pip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pip/Makefile -------------------------------------------------------------------------------- /general/python/python-pip/files/pip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pip/files/pip.conf -------------------------------------------------------------------------------- /general/python/python-pip/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pip/test.sh -------------------------------------------------------------------------------- /general/python/python-pkgconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pkgconfig/Makefile -------------------------------------------------------------------------------- /general/python/python-platformdirs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-platformdirs/Makefile -------------------------------------------------------------------------------- /general/python/python-platformdirs/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-platformdirs/test.sh -------------------------------------------------------------------------------- /general/python/python-pluggy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pluggy/Makefile -------------------------------------------------------------------------------- /general/python/python-ply/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-ply/Makefile -------------------------------------------------------------------------------- /general/python/python-poetry-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-poetry-core/Makefile -------------------------------------------------------------------------------- /general/python/python-psutil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-psutil/Makefile -------------------------------------------------------------------------------- /general/python/python-psycopg2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-psycopg2/Makefile -------------------------------------------------------------------------------- /general/python/python-py/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-py/Makefile -------------------------------------------------------------------------------- /general/python/python-pyasn1-modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pyasn1-modules/Makefile -------------------------------------------------------------------------------- /general/python/python-pyasn1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pyasn1/Makefile -------------------------------------------------------------------------------- /general/python/python-pyasn1/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pyasn1/test.sh -------------------------------------------------------------------------------- /general/python/python-pycares/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pycares/Makefile -------------------------------------------------------------------------------- /general/python/python-pycparser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pycparser/Makefile -------------------------------------------------------------------------------- /general/python/python-pycrate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pycrate/Makefile -------------------------------------------------------------------------------- /general/python/python-pyfuse3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pyfuse3/Makefile -------------------------------------------------------------------------------- /general/python/python-pynacl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pynacl/Makefile -------------------------------------------------------------------------------- /general/python/python-pyodbc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pyodbc/Makefile -------------------------------------------------------------------------------- /general/python/python-pyodbc/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pyodbc/test.sh -------------------------------------------------------------------------------- /general/python/python-pyopenssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pyopenssl/Makefile -------------------------------------------------------------------------------- /general/python/python-pyopenssl/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pyopenssl/test.sh -------------------------------------------------------------------------------- /general/python/python-pyotp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pyotp/Makefile -------------------------------------------------------------------------------- /general/python/python-pyparsing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pyparsing/Makefile -------------------------------------------------------------------------------- /general/python/python-pyproject-hooks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pyproject-hooks/Makefile -------------------------------------------------------------------------------- /general/python/python-pyroute2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pyroute2/Makefile -------------------------------------------------------------------------------- /general/python/python-pyrsistent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pyrsistent/Makefile -------------------------------------------------------------------------------- /general/python/python-pyserial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pyserial/Makefile -------------------------------------------------------------------------------- /general/python/python-pysocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pysocks/Makefile -------------------------------------------------------------------------------- /general/python/python-pytest-forked/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pytest-forked/Makefile -------------------------------------------------------------------------------- /general/python/python-pytest-xdist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pytest-xdist/Makefile -------------------------------------------------------------------------------- /general/python/python-pytest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pytest/Makefile -------------------------------------------------------------------------------- /general/python/python-pytz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-pytz/Makefile -------------------------------------------------------------------------------- /general/python/python-referencing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-referencing/Makefile -------------------------------------------------------------------------------- /general/python/python-referencing/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-referencing/test.sh -------------------------------------------------------------------------------- /general/python/python-requests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-requests/Makefile -------------------------------------------------------------------------------- /general/python/python-rpds-py/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-rpds-py/Makefile -------------------------------------------------------------------------------- /general/python/python-rpds-py/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-rpds-py/test.sh -------------------------------------------------------------------------------- /general/python/python-rsa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-rsa/Makefile -------------------------------------------------------------------------------- /general/python/python-ruamel-yaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-ruamel-yaml/Makefile -------------------------------------------------------------------------------- /general/python/python-s3transfer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-s3transfer/Makefile -------------------------------------------------------------------------------- /general/python/python-schedule/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-schedule/Makefile -------------------------------------------------------------------------------- /general/python/python-schema/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-schema/Makefile -------------------------------------------------------------------------------- /general/python/python-selinux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-selinux/Makefile -------------------------------------------------------------------------------- /general/python/python-semanage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-semanage/Makefile -------------------------------------------------------------------------------- /general/python/python-semantic-version/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-semantic-version/Makefile -------------------------------------------------------------------------------- /general/python/python-sentry-sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-sentry-sdk/Makefile -------------------------------------------------------------------------------- /general/python/python-service-identity/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-service-identity/Makefile -------------------------------------------------------------------------------- /general/python/python-setuptools-rust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-setuptools-rust/Makefile -------------------------------------------------------------------------------- /general/python/python-setuptools-scm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-setuptools-scm/Makefile -------------------------------------------------------------------------------- /general/python/python-setuptools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-setuptools/Makefile -------------------------------------------------------------------------------- /general/python/python-setuptools/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-setuptools/test.sh -------------------------------------------------------------------------------- /general/python/python-six/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-six/Makefile -------------------------------------------------------------------------------- /general/python/python-slugify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-slugify/Makefile -------------------------------------------------------------------------------- /general/python/python-sniffio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-sniffio/Makefile -------------------------------------------------------------------------------- /general/python/python-socketio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-socketio/Makefile -------------------------------------------------------------------------------- /general/python/python-sortedcontainers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-sortedcontainers/Makefile -------------------------------------------------------------------------------- /general/python/python-sqlalchemy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-sqlalchemy/Makefile -------------------------------------------------------------------------------- /general/python/python-sqlparse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-sqlparse/Makefile -------------------------------------------------------------------------------- /general/python/python-stem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-stem/Makefile -------------------------------------------------------------------------------- /general/python/python-texttable/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-texttable/Makefile -------------------------------------------------------------------------------- /general/python/python-toml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-toml/Makefile -------------------------------------------------------------------------------- /general/python/python-tornado/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-tornado/Makefile -------------------------------------------------------------------------------- /general/python/python-trio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-trio/Makefile -------------------------------------------------------------------------------- /general/python/python-trove-classifiers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-trove-classifiers/Makefile -------------------------------------------------------------------------------- /general/python/python-twisted/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-twisted/Makefile -------------------------------------------------------------------------------- /general/python/python-twisted/patches/001-omit-tkconch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-twisted/patches/001-omit-tkconch.patch -------------------------------------------------------------------------------- /general/python/python-twisted/patches/002-omit-tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-twisted/patches/002-omit-tests.patch -------------------------------------------------------------------------------- /general/python/python-twisted/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-twisted/test.sh -------------------------------------------------------------------------------- /general/python/python-typing-extensions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-typing-extensions/Makefile -------------------------------------------------------------------------------- /general/python/python-typing-extensions/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-typing-extensions/test.sh -------------------------------------------------------------------------------- /general/python/python-ubus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-ubus/Makefile -------------------------------------------------------------------------------- /general/python/python-uci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-uci/Makefile -------------------------------------------------------------------------------- /general/python/python-unidecode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-unidecode/Makefile -------------------------------------------------------------------------------- /general/python/python-urllib3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-urllib3/Makefile -------------------------------------------------------------------------------- /general/python/python-userpath/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-userpath/Makefile -------------------------------------------------------------------------------- /general/python/python-userpath/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-userpath/test.sh -------------------------------------------------------------------------------- /general/python/python-versioneer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-versioneer/Makefile -------------------------------------------------------------------------------- /general/python/python-voluptuous-serialize/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-voluptuous-serialize/Makefile -------------------------------------------------------------------------------- /general/python/python-voluptuous/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-voluptuous/Makefile -------------------------------------------------------------------------------- /general/python/python-wcwidth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-wcwidth/Makefile -------------------------------------------------------------------------------- /general/python/python-websocket-client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-websocket-client/Makefile -------------------------------------------------------------------------------- /general/python/python-websockets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-websockets/Makefile -------------------------------------------------------------------------------- /general/python/python-werkzeug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-werkzeug/Makefile -------------------------------------------------------------------------------- /general/python/python-wheel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-wheel/Makefile -------------------------------------------------------------------------------- /general/python/python-xmltodict/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-xmltodict/Makefile -------------------------------------------------------------------------------- /general/python/python-yaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-yaml/Makefile -------------------------------------------------------------------------------- /general/python/python-yaml/patches/001-cython3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-yaml/patches/001-cython3.patch -------------------------------------------------------------------------------- /general/python/python-yarl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-yarl/Makefile -------------------------------------------------------------------------------- /general/python/python-zeroconf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-zeroconf/Makefile -------------------------------------------------------------------------------- /general/python/python-zipp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-zipp/Makefile -------------------------------------------------------------------------------- /general/python/python-zope-event/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-zope-event/Makefile -------------------------------------------------------------------------------- /general/python/python-zope-interface/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-zope-interface/Makefile -------------------------------------------------------------------------------- /general/python/python-zope-interface/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python-zope-interface/test.sh -------------------------------------------------------------------------------- /general/python/python3-bottle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3-bottle/Makefile -------------------------------------------------------------------------------- /general/python/python3-django-cors-headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3-django-cors-headers/Makefile -------------------------------------------------------------------------------- /general/python/python3-drf-nested-routers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3-drf-nested-routers/Makefile -------------------------------------------------------------------------------- /general/python/python3-find-stdlib-depends.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3-find-stdlib-depends.sh -------------------------------------------------------------------------------- /general/python/python3-host-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3-host-build.mk -------------------------------------------------------------------------------- /general/python/python3-host.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3-host.mk -------------------------------------------------------------------------------- /general/python/python3-iperf3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3-iperf3/Makefile -------------------------------------------------------------------------------- /general/python/python3-package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3-package.mk -------------------------------------------------------------------------------- /general/python/python3-packages/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3-packages/Makefile -------------------------------------------------------------------------------- /general/python/python3-packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3-packages/README.md -------------------------------------------------------------------------------- /general/python/python3-pyinotify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3-pyinotify/Makefile -------------------------------------------------------------------------------- /general/python/python3-speedtest-cli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3-speedtest-cli/Makefile -------------------------------------------------------------------------------- /general/python/python3-version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3-version.mk -------------------------------------------------------------------------------- /general/python/python3/Config-python3-light.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/Config-python3-light.in -------------------------------------------------------------------------------- /general/python/python3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/Makefile -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-asyncio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-asyncio.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-cgi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-cgi.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-codecs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-codecs.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-ctypes.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-ctypes.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-dbm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-dbm.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-decimal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-decimal.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-dev.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-dev.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-distutils.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-distutils.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-email.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-email.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-lib2to3.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-lib2to3.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-logging.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-logging.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-lzma.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-lzma.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-ncurses.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-ncurses.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-openssl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-openssl.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-pydoc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-pydoc.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-readline.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-readline.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-sqlite3.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-sqlite3.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-unittest.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-unittest.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-urllib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-urllib.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-uuid.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-uuid.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-venv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-venv.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-xml.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/files/python3-package-xml.mk -------------------------------------------------------------------------------- /general/python/python3/patches-host-pip/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /general/python/python3/patches-host-setuptools/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /general/python/python3/patches/010-no-ncursesw.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/patches/010-no-ncursesw.patch -------------------------------------------------------------------------------- /general/python/python3/patches/024-musl-find_library.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/patches/024-musl-find_library.patch -------------------------------------------------------------------------------- /general/python/python3/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/python3/test.sh -------------------------------------------------------------------------------- /general/python/text-unidecode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/text-unidecode/Makefile -------------------------------------------------------------------------------- /general/python/vobject/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/python/vobject/Makefile -------------------------------------------------------------------------------- /general/qBittorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/qBittorrent/Makefile -------------------------------------------------------------------------------- /general/qBittorrent/Makefile.qt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/qBittorrent/Makefile.qt6 -------------------------------------------------------------------------------- /general/qtbase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/qtbase/Makefile -------------------------------------------------------------------------------- /general/qtbase/patches/010-marco.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/qtbase/patches/010-marco.patch -------------------------------------------------------------------------------- /general/qttools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/qttools/Makefile -------------------------------------------------------------------------------- /general/qttools/patches/010-no-clang.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/qttools/patches/010-no-clang.patch -------------------------------------------------------------------------------- /general/rblibtorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/rblibtorrent/Makefile -------------------------------------------------------------------------------- /general/shadowsocks-rust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/shadowsocks-rust/Makefile -------------------------------------------------------------------------------- /general/shairport-sync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/shairport-sync/Makefile -------------------------------------------------------------------------------- /general/shairport-sync/files/shairport-sync.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/shairport-sync/files/shairport-sync.config -------------------------------------------------------------------------------- /general/shairport-sync/files/shairport-sync.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/shairport-sync/files/shairport-sync.init -------------------------------------------------------------------------------- /general/shairport-sync/patches/010-no-cxx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/shairport-sync/patches/010-no-cxx.patch -------------------------------------------------------------------------------- /general/sing-box/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/sing-box/Makefile -------------------------------------------------------------------------------- /general/sing-box/files/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/sing-box/files/config.json.example -------------------------------------------------------------------------------- /general/sing-box/files/sing-box.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/sing-box/files/sing-box.init -------------------------------------------------------------------------------- /general/sing-box/patches/100-SniffOverrideDestination.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/sing-box/patches/100-SniffOverrideDestination.patch -------------------------------------------------------------------------------- /general/sing-box/patches/200-ClashApiRulesSets.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/sing-box/patches/200-ClashApiRulesSets.patch -------------------------------------------------------------------------------- /general/sing-box/patches/900-openwrt-branding.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/sing-box/patches/900-openwrt-branding.patch -------------------------------------------------------------------------------- /general/smartdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/smartdns/Makefile -------------------------------------------------------------------------------- /general/sqlite3/Config-cli.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/sqlite3/Config-cli.in -------------------------------------------------------------------------------- /general/sqlite3/Config-lib.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/sqlite3/Config-lib.in -------------------------------------------------------------------------------- /general/sqlite3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/sqlite3/Makefile -------------------------------------------------------------------------------- /general/tailscale/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/tailscale/Makefile -------------------------------------------------------------------------------- /general/tailscale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/tailscale/README.md -------------------------------------------------------------------------------- /general/tailscale/files/tailscale.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/tailscale/files/tailscale.conf -------------------------------------------------------------------------------- /general/tailscale/files/tailscale.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/tailscale/files/tailscale.init -------------------------------------------------------------------------------- /general/tailscale/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/tailscale/test.sh -------------------------------------------------------------------------------- /general/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/tools/Makefile -------------------------------------------------------------------------------- /general/ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/ucode/Makefile -------------------------------------------------------------------------------- /general/unrar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/unrar/Makefile -------------------------------------------------------------------------------- /general/unrar/Makefile.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/unrar/Makefile.orig -------------------------------------------------------------------------------- /general/unrar/patches.orig/100-makefile_fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/unrar/patches.orig/100-makefile_fixes.patch -------------------------------------------------------------------------------- /general/unrar/patches.orig/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/unrar/patches.orig/makefile -------------------------------------------------------------------------------- /general/unrar/patches.orig/makefile.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/unrar/patches.orig/makefile.orig -------------------------------------------------------------------------------- /general/unrar/patches.orig/rar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/unrar/patches.orig/rar.patch -------------------------------------------------------------------------------- /general/unrar/patches/100-makefile_fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/unrar/patches/100-makefile_fixes.patch -------------------------------------------------------------------------------- /general/usb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/usb.mk -------------------------------------------------------------------------------- /general/util-linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/util-linux/Makefile -------------------------------------------------------------------------------- /general/uugamebooster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/uugamebooster/Makefile -------------------------------------------------------------------------------- /general/uugamebooster/files/uugamebooster-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/uugamebooster/files/uugamebooster-update -------------------------------------------------------------------------------- /general/verysync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/verysync -------------------------------------------------------------------------------- /general/vim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/vim/Makefile -------------------------------------------------------------------------------- /general/vim/files/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/vim/files/vimrc -------------------------------------------------------------------------------- /general/vim/files/vimrc.full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/vim/files/vimrc.full -------------------------------------------------------------------------------- /general/vim/patches/002-remove_helptags_generation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/vim/patches/002-remove_helptags_generation.patch -------------------------------------------------------------------------------- /general/vim/patches/010-no-msgfmt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/vim/patches/010-no-msgfmt.patch -------------------------------------------------------------------------------- /general/vim/scripts/uname: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo "Linux" 3 | -------------------------------------------------------------------------------- /general/vim/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/vim/test.sh -------------------------------------------------------------------------------- /general/wget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/wget/Makefile -------------------------------------------------------------------------------- /general/wolfssl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/wolfssl/Config.in -------------------------------------------------------------------------------- /general/wolfssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/wolfssl/Makefile -------------------------------------------------------------------------------- /general/wolfssl/patches/100-disable-hardening-check.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/wolfssl/patches/100-disable-hardening-check.patch -------------------------------------------------------------------------------- /general/wolfssl/patches/200-ecc-rng.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/wolfssl/patches/200-ecc-rng.patch -------------------------------------------------------------------------------- /general/wxbase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/wxbase/Makefile -------------------------------------------------------------------------------- /general/xfsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/xfsprogs/Makefile -------------------------------------------------------------------------------- /general/xfsprogs/patches/110-subdirs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/xfsprogs/patches/110-subdirs.patch -------------------------------------------------------------------------------- /general/xfsprogs/patches/140-mman.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/xfsprogs/patches/140-mman.patch -------------------------------------------------------------------------------- /general/xray-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/xray-core/Makefile -------------------------------------------------------------------------------- /general/xray-core/files/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/xray-core/files/config.json.example -------------------------------------------------------------------------------- /general/xray-core/files/vpoint_socks_vmess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/xray-core/files/vpoint_socks_vmess.json -------------------------------------------------------------------------------- /general/xray-core/files/vpoint_vmess_freedom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/xray-core/files/vpoint_vmess_freedom.json -------------------------------------------------------------------------------- /general/xray-core/files/xray.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/xray-core/files/xray.conf -------------------------------------------------------------------------------- /general/xray-core/files/xray.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/xray-core/files/xray.init -------------------------------------------------------------------------------- /general/xray-plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/xray-plugin/Makefile -------------------------------------------------------------------------------- /general/xtables-addons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/xtables-addons/Makefile -------------------------------------------------------------------------------- /general/xtables-addons/patches/100-add-rtsp-conntrack.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/xtables-addons/patches/100-add-rtsp-conntrack.patch -------------------------------------------------------------------------------- /general/xtables-addons/patches/210-freebsd-build-fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/xtables-addons/patches/210-freebsd-build-fix.patch -------------------------------------------------------------------------------- /general/zerotier/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/zerotier/Config.in -------------------------------------------------------------------------------- /general/zerotier/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/zerotier/Makefile -------------------------------------------------------------------------------- /general/zerotier/files/etc/config/zerotier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/zerotier/files/etc/config/zerotier -------------------------------------------------------------------------------- /general/zerotier/files/etc/init.d/zerotier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/zerotier/files/etc/init.d/zerotier -------------------------------------------------------------------------------- /general/zerotier/files/etc/uci-defaults/80-zt-migration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/zerotier/files/etc/uci-defaults/80-zt-migration -------------------------------------------------------------------------------- /general/zerotier/patches/0002-remove-PIE-options.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/zerotier/patches/0002-remove-PIE-options.patch -------------------------------------------------------------------------------- /general/zerotier/patches/0004-add-missing-libatomic.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/zerotier/patches/0004-add-missing-libatomic.patch -------------------------------------------------------------------------------- /general/zerotier/patches/0005-remove-noexecstack.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/zerotier/patches/0005-remove-noexecstack.patch -------------------------------------------------------------------------------- /general/zh_Hans.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/zh_Hans.sh -------------------------------------------------------------------------------- /general/zoneinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/zoneinfo/Makefile -------------------------------------------------------------------------------- /general/zzz-default-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/general/zzz-default-settings -------------------------------------------------------------------------------- /immortalwrt.feeds.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/immortalwrt.feeds.conf.default -------------------------------------------------------------------------------- /lienol-21.02-diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/lienol-21.02-diy-part2.sh -------------------------------------------------------------------------------- /lienol-diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/lienol-diy-part2.sh -------------------------------------------------------------------------------- /official.feeds.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/official.feeds.conf.default -------------------------------------------------------------------------------- /openwrt-19.07-diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/openwrt-19.07-diy-part2.sh -------------------------------------------------------------------------------- /openwrt-21.02-diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/openwrt-21.02-diy-part2.sh -------------------------------------------------------------------------------- /openwrt-21.02.feeds.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/openwrt-21.02.feeds.conf.default -------------------------------------------------------------------------------- /opt/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/Dockerfile -------------------------------------------------------------------------------- /opt/docker/buildImage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/buildImage.sh -------------------------------------------------------------------------------- /opt/docker/buildImageX.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/buildImageX.sh -------------------------------------------------------------------------------- /opt/docker/buildOfficial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/buildOfficial.sh -------------------------------------------------------------------------------- /opt/docker/patches/30-sysinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/patches/30-sysinfo.sh -------------------------------------------------------------------------------- /opt/docker/patches/99-custom.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/patches/99-custom.conf -------------------------------------------------------------------------------- /opt/docker/patches/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/patches/banner -------------------------------------------------------------------------------- /opt/docker/patches/cbi_turboacc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/patches/cbi_turboacc.patch -------------------------------------------------------------------------------- /opt/docker/patches/cbi_turboacc_new.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/patches/cbi_turboacc_new.patch -------------------------------------------------------------------------------- /opt/docker/patches/coremark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/patches/coremark.sh -------------------------------------------------------------------------------- /opt/docker/patches/cpustat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/patches/cpustat -------------------------------------------------------------------------------- /opt/docker/patches/dnsmasq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/patches/dnsmasq -------------------------------------------------------------------------------- /opt/docker/patches/getcpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/patches/getcpu -------------------------------------------------------------------------------- /opt/docker/patches/init.d_turboacc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/patches/init.d_turboacc.patch -------------------------------------------------------------------------------- /opt/docker/patches/kmod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/patches/kmod -------------------------------------------------------------------------------- /opt/docker/patches/luci-admin-status-index-html-02.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/patches/luci-admin-status-index-html-02.patch -------------------------------------------------------------------------------- /opt/docker/patches/luci-admin-status-index-html.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/patches/luci-admin-status-index-html.patch -------------------------------------------------------------------------------- /opt/docker/patches/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/patches/rc.local -------------------------------------------------------------------------------- /opt/docker/patches/smb4.11_enable_smb1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/opt/docker/patches/smb4.11_enable_smb1.patch -------------------------------------------------------------------------------- /opt/whoami: -------------------------------------------------------------------------------- 1 | WHOAMI="jack@archlinux" 2 | -------------------------------------------------------------------------------- /x86/lede-x86.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/x86/lede-x86.config -------------------------------------------------------------------------------- /x86/lede-x86_k6.6.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/x86/lede-x86_k6.6.config -------------------------------------------------------------------------------- /x86/official-x86.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/breakings/OpenWrt/HEAD/x86/official-x86.config --------------------------------------------------------------------------------