├── .github └── workflows │ ├── Build_ARMv8.yml │ ├── Release_Newifi-D2.yml │ ├── Release_Redmi-AX6_plus.yml │ ├── Releases_ARMv8.yml │ ├── Sync-upstream.yml │ └── old │ ├── Build_OpenWrt_MiWifi-mini.yml │ ├── Build_OpenWrt_Redmi-AX6_mini.yml │ ├── Build_lede_js_Newifi-D2.yml │ ├── Build_lede_js_Redmi-AX6_plus.yml │ ├── Build_lede_js_armvirt.yml │ ├── Build_lede_lua_Redmi-AX6_plus.yml │ ├── Releases_ARMv8_imm.yml │ └── Releases_ARMv8_lede_js.yml ├── 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 ├── libquadmath.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 ├── backup ├── 001-fix-cmake-compatibility.patch ├── AX6 │ ├── mac80211 │ │ └── package │ │ │ ├── kernel │ │ │ ├── ath10k-ct │ │ │ │ ├── Makefile │ │ │ │ └── patches │ │ │ │ │ ├── 100-api_update.patch │ │ │ │ │ ├── 120-ath10k-fetch-calibration-data-via-nvmem-subsystem.patch │ │ │ │ │ ├── 201-ath10k-add-LED-and-GPIO-controlling-support-for-various-chipsets.patch │ │ │ │ │ ├── 202-ath10k-use-tpt-trigger-by-default.patch │ │ │ │ │ ├── 300-ath10k-ct-Fix-spectral-scan-NULL-pointer.patch │ │ │ │ │ ├── 960-0010-ath10k-limit-htt-rx-ring-size.patch │ │ │ │ │ └── 960-0011-ath10k-limit-pci-buffer-size.patch │ │ │ ├── mac80211 │ │ │ │ ├── Makefile │ │ │ │ ├── ath.mk │ │ │ │ ├── broadcom.mk │ │ │ │ ├── files │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── netifd │ │ │ │ │ │ │ └── wireless │ │ │ │ │ │ │ │ └── mac80211.sh │ │ │ │ │ │ └── wifi │ │ │ │ │ │ │ └── mac80211.sh │ │ │ │ │ └── mac80211.hotplug │ │ │ │ ├── intel.mk │ │ │ │ ├── marvell.mk │ │ │ │ ├── patches │ │ │ │ │ ├── ath │ │ │ │ │ │ ├── 070-ath_common_config.patch │ │ │ │ │ │ ├── 400-ath_move_debug_code.patch │ │ │ │ │ │ ├── 402-ath_regd_optional.patch │ │ │ │ │ │ ├── 403-world_regd_fixup.patch │ │ │ │ │ │ ├── 404-regd_no_assoc_hints.patch │ │ │ │ │ │ ├── 405-ath_regd_us.patch │ │ │ │ │ │ ├── 406-ath_relax_default_regd.patch │ │ │ │ │ │ └── 431-add_platform_eeprom_support_to_ath5k.patch │ │ │ │ │ ├── ath10k │ │ │ │ │ │ ├── 080-ath10k_thermal_config.patch │ │ │ │ │ │ ├── 081-01-ath10k-improve-tx-status-reporting.patch │ │ │ │ │ │ ├── 081-02-ath10k-turn-rawmode-into-frame-mode.patch │ │ │ │ │ │ ├── 081-03-ath10k-htt-tx-do-not-interpret-Eth-frames-as-WiFi.patch │ │ │ │ │ │ ├── 081-04-ath10k-add-encapsulation-offloading-support.patch │ │ │ │ │ │ ├── 100-ath10k-support-bus-and-device-specific-API-1-BDF-sel.patch │ │ │ │ │ │ ├── 120-ath10k-fetch-calibration-data-via-nvmem-subsystem.patch │ │ │ │ │ │ ├── 911-ath10k-disable-caldata-prefetch-for-sdio-bus.patch │ │ │ │ │ │ ├── 921-ath10k_init_devices_synchronously.patch │ │ │ │ │ │ ├── 930-ath10k_add_tpt_led_trigger.patch │ │ │ │ │ │ ├── 974-ath10k_add-LED-and-GPIO-controlling-support-for-various-chipsets.patch │ │ │ │ │ │ ├── 975-ath10k-use-tpt-trigger-by-default.patch │ │ │ │ │ │ ├── 981-ath10k-adjust-tx-power-reduction-for-US-regulatory-d.patch │ │ │ │ │ │ ├── 984-ath10k-Try-to-get-mac-address-from-dts.patch │ │ │ │ │ │ ├── 985-ath10k-allow-vht-on-2g.patch │ │ │ │ │ │ ├── 990-ath10k-small-buffers.patch │ │ │ │ │ │ └── 991-ath10k-5.19.patch │ │ │ │ │ ├── ath11k │ │ │ │ │ │ ├── 0001-ath11k-fix-4-addr-tx-failure-for-AP-and-STA-modes.patch │ │ │ │ │ │ ├── 0002-ath11k-fix-4addr-multicast-packet-tx.patch │ │ │ │ │ │ ├── 0003-ath11k-Rename-atf_config-to-flag1-in-target_resource.patch │ │ │ │ │ │ ├── 0004-ath11k-add-support-in-survey-dump-with-bss_chan_info.patch │ │ │ │ │ │ ├── 0006-ath11k-move-static-function-ath11k_mac_vdev_setup_sy.patch │ │ │ │ │ │ ├── 0007-ath11k-add-separate-APIs-for-monitor-mode.patch │ │ │ │ │ │ ├── 0008-ath11k-monitor-mode-clean-up-to-use-separate-APIs.patch │ │ │ │ │ │ ├── 0009-ath11k-add-support-for-setting-fixed-HE-rate-gi-ltf.patch │ │ │ │ │ │ ├── 0010-ath11k-add-support-for-80P80-and-160-MHz-bandwidth.patch │ │ │ │ │ │ ├── 0011-ath11k-Refactor-spectral-FFT-bin-size.patch │ │ │ │ │ │ ├── 0012-ath11k-Introduce-spectral-hw-configurable-param.patch │ │ │ │ │ │ ├── 0013-ath11k-Fix-the-spectral-minimum-FFT-bin-count.patch │ │ │ │ │ │ ├── 0014-ath11k-Add-spectral-scan-support-for-QCN9074.patch │ │ │ │ │ │ ├── 0015-ath11k-Wstringop-overread-warning.patch │ │ │ │ │ │ ├── 0016-ath11k-use-hw_params-to-access-board_size-and-cal_of.patch │ │ │ │ │ │ ├── 0017-ath11k-clean-up-BDF-download-functions.patch │ │ │ │ │ │ ├── 0018-ath11k-add-caldata-file-for-multiple-radios.patch │ │ │ │ │ │ ├── 0019-ath11k-add-caldata-download-support-from-EEPROM.patch │ │ │ │ │ │ ├── 0020-ath11k-Replace-one-element-array-with-flexible-array.patch │ │ │ │ │ │ ├── 0023-ath11k-Add-support-for-RX-decapsulation-offload.patch │ │ │ │ │ │ ├── 0024-ath11k-Fix-pktlog-lite-rx-events.patch │ │ │ │ │ │ ├── 0025-ath11k-Update-pdev-tx-and-rx-firmware-stats.patch │ │ │ │ │ │ ├── 0028-ath11k-Add-vdev-start-flag-to-disable-hardware-encry.patch │ │ │ │ │ │ ├── 0029-ath11k-Assign-free_vdev_map-value-before-ieee80211_r.patch │ │ │ │ │ │ ├── 0030-ath11k-Fix-crash-during-firmware-recovery-on-reo-cmd.patch │ │ │ │ │ │ ├── 0031-ath11k-Avoid-No-VIF-found-warning-message.patch │ │ │ │ │ │ ├── 0032-ath11k-Add-wmi-peer-create-conf-event-in-wmi_tlv_eve.patch │ │ │ │ │ │ ├── 0033-ath11k-add-channel-2-into-6-GHz-channel-list.patch │ │ │ │ │ │ ├── 0035-ath11k-fix-survey-dump-collection-in-6-GHz.patch │ │ │ │ │ │ ├── 0036-ath11k-re-enable-ht_cap-vht_cap-for-5G-band-for-WCN6.patch │ │ │ │ │ │ ├── 0037-ath11k-enable-6G-channels-for-WCN6855.patch │ │ │ │ │ │ ├── 0038-ath11k-copy-cap-info-of-6G-band-under-WMI_HOST_WLAN_.patch │ │ │ │ │ │ ├── 0039-ath11k-Drop-MSDU-with-length-error-in-DP-rx-path.patch │ │ │ │ │ │ ├── 0040-ath11k-Fix-inaccessible-debug-registers.patch │ │ │ │ │ │ ├── 0042-ath11k-Rename-macro-ARRAY_TO_STRING-to-PRINT_ARRAY_T.patch │ │ │ │ │ │ ├── 0043-ath11k-Replace-HTT_DBG_OUT-with-scnprintf.patch │ │ │ │ │ │ ├── 0044-ath11k-Remove-htt-stats-fixed-size-array-usage.patch │ │ │ │ │ │ ├── 0045-ath11k-Change-masking-and-shifting-in-htt-stats.patch │ │ │ │ │ │ ├── 0046-ath11k-add-HTT-stats-support-for-new-stats.patch │ │ │ │ │ │ ├── 0048-ath11k-indicate-scan-complete-for-scan-canceled-when.patch │ │ │ │ │ │ ├── 0049-ath11k-indicate-to-mac80211-scan-complete-with-abort.patch │ │ │ │ │ │ ├── 0050-ath11k-add-6-GHz-params-in-peer-assoc-command.patch │ │ │ │ │ │ ├── 0051-ath11k-support-SMPS-configuration-for-6-GHz.patch │ │ │ │ │ │ ├── 0053-ath11k-Remove-unused-variable-in-ath11k_dp_rx_mon_me.patch │ │ │ │ │ │ ├── 0054-ath11k-Fix-spelling-mistake-incompaitiblity-incompat.patch │ │ │ │ │ │ ├── 0055-ath11k-fix-m68k-and-xtensa-build-failure-in-ath11k_p.patch │ │ │ │ │ │ ├── 0056-ath11k-Remove-redundant-assignment-to-variable-fw_si.patch │ │ │ │ │ │ ├── 0057-ath11k-Use-kcalloc-instead-of-kzalloc.patch │ │ │ │ │ │ ├── 0058-ath11k-Handle-MSI-enablement-during-rmmod-and-SSR.patch │ │ │ │ │ │ ├── 0059-ath11k-Change-number-of-TCL-rings-to-one-for-QCA6390.patch │ │ │ │ │ │ ├── 0060-ath11k-Identify-DFS-channel-when-sending-scan-channe.patch │ │ │ │ │ │ ├── 0061-ath11k-change-return-buffer-manager-for-QCA6390.patch │ │ │ │ │ │ ├── 0062-ath11k-set-correct-NL80211_FEATURE_DYNAMIC_SMPS-for-.patch │ │ │ │ │ │ ├── 0063-ath11k-convert-ath11k_wmi_pdev_set_ps_mode-to-use-en.patch │ │ │ │ │ │ ├── 0064-ath11k-enable-802.11-power-save-mode-in-station-mode.patch │ │ │ │ │ │ ├── 0066-ath11k-Clear-auth-flag-only-for-actual-association-i.patch │ │ │ │ │ │ ├── 0067-ath11k-fix-fw-crash-due-to-peer-get-authorized-befor.patch │ │ │ │ │ │ ├── 0068-ath11k-fix-error-routine-when-fallback-of-add-interf.patch │ │ │ │ │ │ ├── 0069-ath11k-avoid-unnecessary-BH-disable-lock-in-STA-kick.patch │ │ │ │ │ │ ├── 0070-ath11k-fix-DMA-memory-free-in-CE-pipe-cleanup.patch │ │ │ │ │ │ ├── 0071-ath11k-Fix-unused-but-set-parameter-error.patch │ │ │ │ │ │ ├── 0072-ath11k-fix-firmware-crash-during-channel-switch.patch │ │ │ │ │ │ ├── 0073-ath11k-disable-unused-CE8-interrupts-for-ipq8074.patch │ │ │ │ │ │ ├── 0074-ath11k-allocate-dst-ring-descriptors-from-cacheable-.patch │ │ │ │ │ │ ├── 0075-ath11k-modify-dp_rx-desc-access-wrapper-calls-inline.patch │ │ │ │ │ │ ├── 0076-ath11k-avoid-additional-access-to-ath11k_hal_srng_ds.patch │ │ │ │ │ │ ├── 0077-ath11k-avoid-active-pdev-check-for-each-msdu.patch │ │ │ │ │ │ ├── 0078-ath11k-remove-usage-quota-while-processing-rx-packet.patch │ │ │ │ │ │ ├── 0079-ath11k-add-branch-predictors-in-process_rx.patch │ │ │ │ │ │ ├── 0080-ath11k-allocate-HAL_WBM2SW_RELEASE-ring-from-cacheab.patch │ │ │ │ │ │ ├── 0081-ath11k-remove-mod-operator-in-dst-ring-processing.patch │ │ │ │ │ │ ├── 0082-ath11k-avoid-while-loop-in-ring-selection-of-tx-comp.patch │ │ │ │ │ │ ├── 0083-ath11k-add-branch-predictors-in-dp_tx-path.patch │ │ │ │ │ │ ├── 0084-ath11k-avoid-unnecessary-lock-contention-in-tx_compl.patch │ │ │ │ │ │ ├── 0085-ath11k-enable-IEEE80211_VHT_EXT_NSS_BW_CAPABLE-if-NS.patch │ │ │ │ │ │ ├── 0086-ath11k-remove-return-for-empty-tx-bitrate-in-mac_op_.patch │ │ │ │ │ │ ├── 0087-ath11k-fix-the-value-of-msecs_to_jiffies-in-ath11k_d.patch │ │ │ │ │ │ ├── 0088-ath11k-move-peer-delete-after-vdev-stop-of-station-f.patch │ │ │ │ │ │ ├── 0089-ath11k-fix-FCS_ERR-flag-in-radio-tap-header.patch │ │ │ │ │ │ ├── 0090-ath11k-send-proper-txpower-and-maxregpower-values-to.patch │ │ │ │ │ │ ├── 0091-ath11k-Increment-pending_mgmt_tx-count-before-tx-sen.patch │ │ │ │ │ │ ├── 0093-ath11k-Disabling-credit-flow-for-WMI-path.patch │ │ │ │ │ │ ├── 0094-ath11k-use-cache-line-aligned-buffers-for-dbring.patch │ │ │ │ │ │ ├── 0095-ath11k-Add-missing-qmi_txn_cancel.patch │ │ │ │ │ │ ├── 0096-ath11k-add-trace-log-support.patch │ │ │ │ │ │ ├── 0099-ath11k-add-support-for-BSS-color-change.patch │ │ │ │ │ │ ├── 0102-ath11k-add-hw_param-for-wakeup_mhi.patch │ │ │ │ │ │ ├── 0103-ath11k-get-msi_data-again-after-request_irq-is-calle.patch │ │ │ │ │ │ ├── 0104-ath11k-add-CE-and-ext-IRQ-flag-to-indicate-irq_handl.patch │ │ │ │ │ │ ├── 0105-ath11k-use-ATH11K_PCI_IRQ_DP_OFFSET-for-DP-IRQ.patch │ │ │ │ │ │ ├── 0106-ath11k-refactor-multiple-MSI-vector-implementation.patch │ │ │ │ │ │ ├── 0107-ath11k-add-support-one-MSI-vector.patch │ │ │ │ │ │ ├── 0108-ath11k-do-not-restore-ASPM-in-case-of-single-MSI-vec.patch │ │ │ │ │ │ ├── 0109-ath11k-Set-IRQ-affinity-to-CPU0-in-case-of-one-MSI-v.patch │ │ │ │ │ │ ├── 0110-ath11k-change-to-treat-alpha-code-na-as-world-wide-r.patch │ │ │ │ │ │ ├── 0111-ath11k-calculate-the-correct-NSS-of-peer-for-HE-capa.patch │ │ │ │ │ │ ├── 0112-ath11k-fix-read-fail-for-htt_stats-and-htt_peer_stat.patch │ │ │ │ │ │ ├── 0113-ath11k-skip-sending-vdev-down-for-channel-switch.patch │ │ │ │ │ │ ├── 0114-ath11k-add-read-variant-from-SMBIOS-for-download-boa.patch │ │ │ │ │ │ ├── 0115-ath11k-Fix-mon-status-ring-rx-tlv-processing.patch │ │ │ │ │ │ ├── 0116-Revert-ath11k-add-read-variant-from-SMBIOS-for-downl.patch │ │ │ │ │ │ ├── 0117-ath11k-Fix-spelling-mistake-detetction-detection.patch │ │ │ │ │ │ ├── 0121-ath11k-add-support-for-WCN6855-hw2.1.patch │ │ │ │ │ │ ├── 0122-ath11k-Fix-QMI-file-type-enum-value.patch │ │ │ │ │ │ ├── 0123-ath11k-change-to-use-dynamic-memory-for-channel-list.patch │ │ │ │ │ │ ├── 0125-ath11k-add-configure-country-code-for-QCA6390-and-WC.patch │ │ │ │ │ │ ├── 0126-ath11k-add-11d-scan-offload-support.patch │ │ │ │ │ │ ├── 0127-ath11k-add-wait-operation-for-tx-management-packets-.patch │ │ │ │ │ │ ├── 0129-ath11k-enable-IEEE80211_HW_SINGLE_SCAN_ON_ALL_BANDS-.patch │ │ │ │ │ │ ├── 0130-ath11k-Add-htt-cmd-to-enable-full-monitor-mode.patch │ │ │ │ │ │ ├── 0131-ath11k-add-software-monitor-ring-descriptor-for-full.patch │ │ │ │ │ │ ├── 0132-ath11k-Process-full-monitor-mode-rx-support.patch │ │ │ │ │ │ ├── 0133-ath11k-add-spectral-CFR-buffer-validation-support.patch │ │ │ │ │ │ ├── 0136-ath11k-support-MAC-address-randomization-in-scan.patch │ │ │ │ │ │ ├── 0137-ath11k-set-DTIM-policy-to-stick-mode-for-station-int.patch │ │ │ │ │ │ ├── 0141-ath11k-add-ab-to-TARGET_NUM_VDEVS-co.patch │ │ │ │ │ │ ├── 0142-ath11k-Change-qcn9074-fw-to-operate-in-mode-2.patch │ │ │ │ │ │ ├── 0143-ath11k-Use-reserved-host-DDR-addresses-from-DT-for-P.patch │ │ │ │ │ │ ├── 0144-ath11k-report-rssi-of-each-chain-to-mac80211-for-QCA.patch │ │ │ │ │ │ ├── 0145-ath11k-add-signal-report-to-mac80211-for-QCA6390-and.patch │ │ │ │ │ │ ├── 0146-ath11k-fix-warning-of-RCU-usage-for-ath11k_mac_get_a.patch │ │ │ │ │ │ ├── 0147-ath11k-report-tx-bitrate-for-iw-wlan-station-dump.patch │ │ │ │ │ │ ├── 0148-ath11k-add-support-for-hardware-rfkill-for-QCA6390.patch │ │ │ │ │ │ ├── 0149-ath11k-add-regdb.bin-download-for-regdb-offload.patch │ │ │ │ │ │ ├── 0151-ath11k-add-support-of-firmware-logging-for-WCN6855.patch │ │ │ │ │ │ ├── 0152-ath11k-Fix-unexpected-return-buffer-manager-error-fo.patch │ │ │ │ │ │ ├── 0153-codel-remove-unnecessary-sock.h-include.patch │ │ │ │ │ │ ├── 0154-codel-remove-unnecessary-pkt_sched.h-include.patch │ │ │ │ │ │ ├── 0155-ath11k-add-missing-of_node_put-to-avoid-leak.patch │ │ │ │ │ │ ├── 0156-ath11k-fix-workqueue-not-getting-destroyed-after-rmm.patch │ │ │ │ │ │ ├── 0157-ath11k-Refactor-the-fallback-routine-when-peer-creat.patch │ │ │ │ │ │ ├── 0158-ath11k-add-LDPC-FEC-type-in-802.11-radiotap-header.patch │ │ │ │ │ │ ├── 0159-ath11k-free-peer-for-station-when-disconnect-from-AP.patch │ │ │ │ │ │ ├── 0160-ath11k-enable-RX-PPDU-stats-in-monitor-co-exist-mode.patch │ │ │ │ │ │ ├── 0161-ath11k-move-function-ath11k_dp_rx_process_mon_status.patch │ │ │ │ │ │ ├── 0162-ath11k-fix-error-code-in-ath11k_qmi_assign_target_me.patch │ │ │ │ │ │ ├── 0163-ath11k-Reconfigure-hardware-rate-for-WCN6855-after-v.patch │ │ │ │ │ │ ├── 0164-ath11k-set-WMI_PEER_40MHZ-while-peer-assoc-for-6-GHz.patch │ │ │ │ │ │ ├── 0165-ath11k-avoid-firmware-crash-when-reg-set-for-QCA6390.patch │ │ │ │ │ │ ├── 0166-ath11k-Rename-ath11k_ahb_ext_irq_config.patch │ │ │ │ │ │ ├── 0167-ath11k-fix-kernel-panic-during-unload-load-ath11k-mo.patch │ │ │ │ │ │ ├── 0168-ath11k-Fix-uninitialized-symbol-rx_buf_sz.patch │ │ │ │ │ │ ├── 0169-ath11k-Fix-missing-rx_desc_get_ldpc_support-in-wcn68.patch │ │ │ │ │ │ ├── 0170-ath11k-pci-fix-crash-on-suspend-if-board-file-is-not.patch │ │ │ │ │ │ ├── 0171-ath11k-mhi-use-mhi_sync_power_up.patch │ │ │ │ │ │ ├── 0172-ath11k-Add-debugfs-interface-to-configure-firmware-d.patch │ │ │ │ │ │ ├── 0173-ath11k-add-WMI-calls-to-manually-add-del-pause-resum.patch │ │ │ │ │ │ ├── 0174-ath11k-add-debugfs-for-TWT-debug-calls.patch │ │ │ │ │ │ ├── 0176-ath11k-fix-uninitialized-rate_idx-in-ath11k_dp_tx_up.patch │ │ │ │ │ │ ├── 0177-ath11k-fix-WARN_ON-during-ath11k_mac_update_vif_chan.patch │ │ │ │ │ │ ├── 0178-ath11k-fix-radar-detection-in-160-Mhz.patch │ │ │ │ │ │ ├── 0179-ath11k-fix-destination-monitor-ring-out-of-sync.patch │ │ │ │ │ │ ├── 0181-ath11k-add-ath11k_qmi_free_resource-for-recovery.patch │ │ │ │ │ │ ├── 0182-ath11k-fix-invalid-m3-buffer-address.patch │ │ │ │ │ │ ├── 0183-ath11k-configure-RDDM-size-to-mhi-for-recovery-by-fi.patch │ │ │ │ │ │ ├── 0184-ath11k-Replace-zero-length-arrays-with-flexible-arra.patch │ │ │ │ │ │ ├── 0185-ath11k-Invalidate-cached-reo-ring-entry-before-acces.patch │ │ │ │ │ │ ├── 0186-ath11k-Handle-failure-in-qmi-firmware-ready.patch │ │ │ │ │ │ ├── 0187-ath11k-Fix-frames-flush-failure-caused-by-deadlock.patch │ │ │ │ │ │ ├── 0188-ath11k-switch-to-using-ieee80211_tx_status_ext.patch │ │ │ │ │ │ ├── 0189-ath11k-decode-HE-status-tlv.patch │ │ │ │ │ │ ├── 0190-ath11k-translate-HE-status-to-radiotap-format.patch │ │ │ │ │ │ ├── 0191-ath11k-add-dbring-debug-support.patch │ │ │ │ │ │ ├── 0192-ath11k-remove-unneeded-flush_workqueue.patch │ │ │ │ │ │ ├── 0193-ath11k-Add-basic-WoW-functionalities.patch │ │ │ │ │ │ ├── 0194-ath11k-Add-WoW-net-detect-functionality.patch │ │ │ │ │ │ ├── 0195-ath11k-implement-hardware-data-filter.patch │ │ │ │ │ │ ├── 0196-ath11k-purge-rx-pktlog-when-entering-WoW.patch │ │ │ │ │ │ ├── 0197-ath11k-support-ARP-and-NS-offload.patch │ │ │ │ │ │ ├── 0198-ath11k-support-GTK-rekey-offload.patch │ │ │ │ │ │ ├── 0199-ath11k-Refactor-the-peer-delete.patch │ │ │ │ │ │ ├── 0200-ath11k-change-fw-build-id-format-in-driver-init-log.patch │ │ │ │ │ │ ├── 0201-ath11k-acquire-ab-base_lock-in-unassign-when-finding.patch │ │ │ │ │ │ ├── 0202-ath11k-remove-unused-ATH11K_BD_IE_BOARD_EXT.patch │ │ │ │ │ │ ├── 0203-ath11k-disable-regdb-support-for-QCA6390.patch │ │ │ │ │ │ ├── 0204-ath11k-add-support-for-device-recovery-for-QCA6390-W.patch │ │ │ │ │ │ ├── 0205-ath11k-add-synchronization-operation-between-reconfi.patch │ │ │ │ │ │ ├── 0206-ath11k-Add-hw-restart-option-to-simulate_fw_crash.patch │ │ │ │ │ │ ├── 0207-ath11k-fix-the-warning-of-dev_wake-in-mhi_pm_disable.patch │ │ │ │ │ │ ├── 0208-ath11k-enable-PLATFORM_CAP_PCIE_GLOBAL_RESET-QMI-hos.patch │ │ │ │ │ │ ├── 0209-ath11k-add-fallback-board-name-without-variant-while.patch │ │ │ │ │ │ ├── 0210-ath11k-add-read-variant-from-SMBIOS-for-download-boa.patch │ │ │ │ │ │ ├── 0211-ath11k-Add-peer-rhash-table-support.patch │ │ │ │ │ │ ├── 0212-ath11k-store-and-send-country-code-to-firmware-after.patch │ │ │ │ │ │ ├── 0213-ath11k-add-support-to-search-regdb-data-in-board-2.b.patch │ │ │ │ │ │ ├── 0214-ath11k-reduce-the-wait-time-of-11d-scan-and-hw-scan-.patch │ │ │ │ │ │ ├── 0215-ath11k-PCI-changes-to-support-WCN6750.patch │ │ │ │ │ │ ├── 0216-ath11k-Refactor-PCI-code-to-support-WCN6750.patch │ │ │ │ │ │ ├── 0217-ath11k-Choose-MSI-config-based-on-HW-revision.patch │ │ │ │ │ │ ├── 0218-ath11k-Refactor-MSI-logic-to-support-WCN6750.patch │ │ │ │ │ │ ├── 0219-ath11k-Remove-core-PCI-references-from-PCI-common-co.patch │ │ │ │ │ │ ├── 0220-ath11k-Change-max-no-of-active-probe-SSID-and-BSSID-.patch │ │ │ │ │ │ ├── 0221-ath11k-Remove-unnecessary-delay-in-ath11k_core_suspe.patch │ │ │ │ │ │ ├── 0222-ath11k-fix-driver-initialization-failure-with-WoW-un.patch │ │ │ │ │ │ ├── 0223-ath11k-mhi-remove-state-machine.patch │ │ │ │ │ │ ├── 0224-ath11k-mhi-add-error-handling-for-suspend-and-resume.patch │ │ │ │ │ │ ├── 0225-ath11k-mhi-remove-unnecessary-goto-from-ath11k_mhi_s.patch │ │ │ │ │ │ ├── 0226-ath11k-Fix-spelling-mistake-reseting-resetting.patch │ │ │ │ │ │ ├── 0227-wifi-ath11k-add-support-to-configure-channel-dwell-time.patch │ │ │ │ │ │ ├── 0228-wifi-ath11k-Fix-scan-request-param-frame-size-warnin.patch │ │ │ │ │ │ ├── 0229-wifi-ath11k-fix-monitor-mode-bringup-crash.patch │ │ │ │ │ │ ├── 100-ath11k-load-appropriate-board-data-from-board-id.patch │ │ │ │ │ │ ├── 101-ath11k-update-debugfs-support-for-mupltiple-radios-i.patch │ │ │ │ │ │ ├── 102-ath11k-Enable-threaded-NAPI-on-some-radios.patch │ │ │ │ │ │ ├── 351-mac80211-fix-mesh-airtime-link-metric-estimating.patch │ │ │ │ │ │ ├── 900-ath11k-Disable-coldboot-calibration-for-IPQ8074.patch │ │ │ │ │ │ ├── 901-ath11k-ipq8074-support-512MB-memory-profile.patch │ │ │ │ │ │ └── 902-ath11k-linux-6.1-support.patch │ │ │ │ │ ├── ath5k │ │ │ │ │ │ ├── 201-ath5k-WAR-for-AR71xx-PCI-bug.patch │ │ │ │ │ │ ├── 411-ath5k_allow_adhoc_and_ap.patch │ │ │ │ │ │ ├── 420-ath5k_disable_fast_cc.patch │ │ │ │ │ │ ├── 430-add_ath5k_platform.patch │ │ │ │ │ │ ├── 432-ath5k_add_pciids.patch │ │ │ │ │ │ └── 440-ath5k_channel_bw_debugfs.patch │ │ │ │ │ ├── ath9k │ │ │ │ │ │ ├── 040-ath9k-support-DT-ieee80211-freq-limit-property-to-li.patch │ │ │ │ │ │ ├── 350-ath9k_hw-reset-AHB-WMAC-interface-on-AR91xx.patch │ │ │ │ │ │ ├── 351-ath9k_hw-issue-external-reset-for-QCA955x.patch │ │ │ │ │ │ ├── 354-ath9k-force-rx_clear-when-disabling-rx.patch │ │ │ │ │ │ ├── 356-Revert-ath9k-interpret-requested-txpower-in-EIRP-dom.patch │ │ │ │ │ │ ├── 365-ath9k-adjust-tx-power-reduction-for-US-regulatory-do.patch │ │ │ │ │ │ ├── 401-ath9k_blink_default.patch │ │ │ │ │ │ ├── 410-ath9k_allow_adhoc_and_ap.patch │ │ │ │ │ │ ├── 450-ath9k-enabled-MFP-capability-unconditionally.patch │ │ │ │ │ │ ├── 500-ath9k_eeprom_debugfs.patch │ │ │ │ │ │ ├── 501-ath9k_ahb_init.patch │ │ │ │ │ │ ├── 510-ath9k_intr_mitigation_tweak.patch │ │ │ │ │ │ ├── 511-ath9k_reduce_rxbuf.patch │ │ │ │ │ │ ├── 512-ath9k_channelbw_debugfs.patch │ │ │ │ │ │ ├── 513-ath9k_add_pci_ids.patch │ │ │ │ │ │ ├── 530-ath9k_extra_leds.patch │ │ │ │ │ │ ├── 531-ath9k_extra_platform_leds.patch │ │ │ │ │ │ ├── 540-ath9k_reduce_ani_interval.patch │ │ │ │ │ │ ├── 542-ath9k_debugfs_diag.patch │ │ │ │ │ │ ├── 543-ath9k_entropy_from_adc.patch │ │ │ │ │ │ ├── 544-ath9k-ar933x-usb-hang-workaround.patch │ │ │ │ │ │ ├── 545-ath9k_ani_ws_detect.patch │ │ │ │ │ │ ├── 547-ath9k_led_defstate_fix.patch │ │ │ │ │ │ ├── 548-ath9k_enable_gpio_chip.patch │ │ │ │ │ │ ├── 549-ath9k_enable_gpio_buttons.patch │ │ │ │ │ │ ├── 551-ath9k_ubnt_uap_plus_hsr.patch │ │ │ │ │ │ ├── 552-ath9k-ahb_of.patch │ │ │ │ │ │ ├── 553-ath9k_of_gpio_mask.patch │ │ │ │ │ │ ├── 600-v5.16-ath9k-fetch-calibration-data-via-nvmem-subsystem.patch │ │ │ │ │ │ └── 601-v5.16-ath9k-owl-loader-fetch-pci-init-values-through-nvmem.patch │ │ │ │ │ ├── brcm │ │ │ │ │ │ ├── 001-brcmfmac-allow-setting-wlan-MAC-address-using-device.patch │ │ │ │ │ │ ├── 040-brcmutil_option.patch │ │ │ │ │ │ ├── 810-b43-gpio-mask-module-option.patch │ │ │ │ │ │ ├── 811-b43_no_pio.patch │ │ │ │ │ │ ├── 812-b43-add-antenna-control.patch │ │ │ │ │ │ ├── 813-b43-reduce-number-of-RX-slots.patch │ │ │ │ │ │ ├── 814-b43-only-use-gpio-0-1-for-led.patch │ │ │ │ │ │ ├── 815-b43-always-take-overlapping-devs.patch │ │ │ │ │ │ ├── 850-brcmsmac-remove-extra-regulation-restriction.patch │ │ │ │ │ │ ├── 860-brcmfmac-register-wiphy-s-during-module_init.patch │ │ │ │ │ │ ├── 861-brcmfmac-workaround-bug-with-some-inconsistent-BSSes.patch │ │ │ │ │ │ ├── 862-brcmfmac-Disable-power-management.patch │ │ │ │ │ │ ├── 863-brcmfmac-add-in-driver-tables-with-country-codes.patch │ │ │ │ │ │ ├── 864-brcmfmac-do-not-use-internal-roaming-engine-by-default.patch │ │ │ │ │ │ ├── 998-survey.patch │ │ │ │ │ │ └── 999-backport-to-linux-5.18.patch │ │ │ │ │ ├── build │ │ │ │ │ │ ├── 000-fix_kconfig.patch │ │ │ │ │ │ ├── 001-fix_build.patch │ │ │ │ │ │ ├── 002-change_allconfig.patch │ │ │ │ │ │ ├── 003-remove_bogus_modparams.patch │ │ │ │ │ │ ├── 012-kernel_build_check.patch │ │ │ │ │ │ ├── 015-ipw200-mtu.patch │ │ │ │ │ │ ├── 050-lib80211_option.patch │ │ │ │ │ │ ├── 060-no_local_ssb_bcma.patch │ │ │ │ │ │ ├── 267-rtl8723_5.18_support.patch │ │ │ │ │ │ ├── 882-use-netif_rx.patch │ │ │ │ │ │ └── 900-fix-iwlwifi-build-with-kernel-6.1.patch │ │ │ │ │ ├── mwl │ │ │ │ │ │ ├── 700-mwl8k-missing-pci-id-for-WNR854T.patch │ │ │ │ │ │ ├── 801-libertas-configure-sysfs-links.patch │ │ │ │ │ │ ├── 802-libertas-set-wireless-macaddr.patch │ │ │ │ │ │ └── 940-mwl8k_init_devices_synchronously.patch │ │ │ │ │ ├── rt2x00 │ │ │ │ │ │ ├── 002-rt2x00-define-RF5592-in-init_eeprom-routine.patch │ │ │ │ │ │ ├── 100-rt2x00_options.patch │ │ │ │ │ │ ├── 501-rt2x00-allow-to-build-rt2800soc-module-for-RT3883.patch │ │ │ │ │ │ ├── 601-rt2x00-introduce-rt2x00_platform_h.patch │ │ │ │ │ │ ├── 602-rt2x00-introduce-rt2x00eeprom.patch │ │ │ │ │ │ ├── 603-rt2x00-of_load_eeprom_filename.patch │ │ │ │ │ │ ├── 604-rt2x00-load-eeprom-on-SoC-from-a-mtd-device-defines-.patch │ │ │ │ │ │ ├── 606-rt2x00-allow_disabling_bands_through_platform_data.patch │ │ │ │ │ │ ├── 607-rt2x00-add_platform_data_mac_addr.patch │ │ │ │ │ │ ├── 608-rt2x00-allow_disabling_bands_through_dts.patch │ │ │ │ │ │ ├── 609-rt2x00-make-wmac-loadable-via-OF-on-rt288x-305x-SoC.patch │ │ │ │ │ │ ├── 610-rt2x00-change-led-polarity-from-OF.patch │ │ │ │ │ │ ├── 611-rt2x00-add-AP+STA-support.patch │ │ │ │ │ │ ├── 612-rt2x00-led-tpt-trigger-support.patch │ │ │ │ │ │ ├── 650-rt2x00-add-support-for-external-PA-on-MT7620.patch │ │ │ │ │ │ ├── 982-rt2x00-add-rf-self-txdc-calibration.patch │ │ │ │ │ │ ├── 983-rt2x00-add-r-calibration.patch │ │ │ │ │ │ ├── 984-rt2x00-add-rxdcoc-calibration.patch │ │ │ │ │ │ ├── 985-rt2x00-add-rxiq-calibration.patch │ │ │ │ │ │ ├── 986-rt2x00-add-TX-LOFT-calibration.patch │ │ │ │ │ │ ├── 990-rt2x00-mt7620-introduce-accessors-for-CHIP_VER-register.patch │ │ │ │ │ │ ├── 991-rt2x00-mt7620-differentiate-based-on-SoC-CHIP_VER.patch │ │ │ │ │ │ └── 999-backport-to-linux-5.18.patch │ │ │ │ │ └── subsys │ │ │ │ │ │ ├── 0001-v5.16-ieee80211-Add-new-A-MPDU-factor-macro-for-HE-6-GHz-p.patch │ │ │ │ │ │ ├── 110-mac80211_keep_keys_on_stop_ap.patch │ │ │ │ │ │ ├── 120-cfg80211_allow_perm_addr_change.patch │ │ │ │ │ │ ├── 150-disable_addr_notifier.patch │ │ │ │ │ │ ├── 210-ap_scan.patch │ │ │ │ │ │ ├── 250-drivers-make-clear-mmc_hw_reset-is-for-cards.patch │ │ │ │ │ │ ├── 301-mac80211-sta-randomize-BA-session-dialog-token-alloc.patch │ │ │ │ │ │ ├── 303-mac80211-set-up-the-fwd_skb-dev-for-mesh-forwarding.patch │ │ │ │ │ │ ├── 306-mac80211-use-coarse-boottime-for-airtime-fairness-co.patch │ │ │ │ │ │ ├── 307-mac80211_hwsim-make-6-GHz-channels-usable.patch │ │ │ │ │ │ ├── 308-mac80211-add-support-for-.ndo_fill_forward_path.patch │ │ │ │ │ │ ├── 309-mac80211-minstrel_ht-fix-MINSTREL_FRAC-macro.patch │ │ │ │ │ │ ├── 310-mac80211-minstrel_ht-reduce-fluctuations-in-rate-pro.patch │ │ │ │ │ │ ├── 311-mac80211-minstrel_ht-rework-rate-downgrade-code-and-.patch │ │ │ │ │ │ ├── 312-mac80211-split-beacon-retrieval-functions.patch │ │ │ │ │ │ ├── 313-nl80211-MBSSID-and-EMA-support-in-AP-mode.patch │ │ │ │ │ │ ├── 314-cfg80211-implement-APIs-for-dedicated-radar-detectio.patch │ │ │ │ │ │ ├── 315-cfg80211-move-offchan_cac_event-to-a-dedicated-work.patch │ │ │ │ │ │ ├── 316-cfg80211-fix-possible-NULL-pointer-dereference-in-cf.patch │ │ │ │ │ │ ├── 317-cfg80211-schedule-offchan_cac_abort_wk-in-cfg80211_r.patch │ │ │ │ │ │ ├── 318-cfg80211-allow-continuous-radar-monitoring-on-offcha.patch │ │ │ │ │ │ ├── 319-mac80211-introduce-set_radar_offchan-callback.patch │ │ │ │ │ │ ├── 320-cfg80211-rename-offchannel_chain-structs-to-backgrou.patch │ │ │ │ │ │ ├── 323-mac80211-MBSSID-support-in-interface-handling.patch │ │ │ │ │ │ ├── 324-mac80211-MBSSID-beacon-handling-in-AP-mode.patch │ │ │ │ │ │ ├── 325-mac80211-MBSSID-channel-switch.patch │ │ │ │ │ │ ├── 326-mac80211-update-bssid_indicator-in-ieee80211_assign_.patch │ │ │ │ │ │ ├── 328-mac80211-do-not-wake-queues-on-a-vif-that-is-being-s.patch │ │ │ │ │ │ ├── 330-mac80211-switch-airtime-fairness-back-to-deficit-rou.patch │ │ │ │ │ │ ├── 331-mac80211-make-sta-airtime-deficit-field-s32-instead-.patch │ │ │ │ │ │ ├── 332-mac80211-consider-aql_tx_pending-when-checking-airti.patch │ │ │ │ │ │ ├── 333-mac80211-keep-recently-active-tx-queues-in-schedulin.patch │ │ │ │ │ │ ├── 334-mac80211-add-a-per-PHY-AQL-limit-to-improve-fairness.patch │ │ │ │ │ │ ├── 335-mac80211-add-debugfs-file-to-display-per-phy-AQL-pen.patch │ │ │ │ │ │ ├── 336-mac80211-only-accumulate-airtime-deficit-for-active-.patch │ │ │ │ │ │ ├── 337-mac80211-increase-quantum-for-airtime-scheduler.patch │ │ │ │ │ │ ├── 346-mac80211-mesh-clean-up-rx_bcn_presp-API.patch │ │ │ │ │ │ ├── 347-mac80211-move-CRC-into-struct-ieee802_11_elems.patch │ │ │ │ │ │ ├── 348-mac80211-mlme-find-auth-challenge-directly.patch │ │ │ │ │ │ ├── 349-mac80211-always-allocate-struct-ieee802_11_elems.patch │ │ │ │ │ │ ├── 350-bss-color-collision.patch │ │ │ │ │ │ ├── 350-mac80211-fix-memory-leaks-with-element-parsing.patch │ │ │ │ │ │ ├── 351-wifi-cfg80211-fix-u8-overflow-in-cfg80211_update_not.patch │ │ │ │ │ │ ├── 352-wifi-cfg80211-mac80211-reject-bad-MBSSID-elements.patch │ │ │ │ │ │ ├── 353-wifi-mac80211-fix-MBSSID-parsing-use-after-free.patch │ │ │ │ │ │ ├── 354-wifi-cfg80211-ensure-length-byte-is-present-before-a.patch │ │ │ │ │ │ ├── 355-wifi-cfg80211-fix-BSS-refcounting-bugs.patch │ │ │ │ │ │ ├── 356-wifi-cfg80211-avoid-nontransmitted-BSS-list-corrupti.patch │ │ │ │ │ │ ├── 357-wifi-mac80211_hwsim-avoid-mac80211-warning-on-bad-ra.patch │ │ │ │ │ │ ├── 358-wifi-mac80211-fix-crash-in-beacon-protection-for-P2P.patch │ │ │ │ │ │ ├── 359-wifi-cfg80211-update-hidden-BSSes-to-avoid-WARN_ON.patch │ │ │ │ │ │ ├── 400-allow-ibss-mixed.patch │ │ │ │ │ │ ├── 500-mac80211_configure_antenna_gain.patch │ │ │ │ │ │ ├── 600-mac80211-allow-vht-on-2g.patch │ │ │ │ │ │ ├── 783-sync-nl80211.patch │ │ │ │ │ │ ├── 784-ethtool_ringparam.patch │ │ │ │ │ │ ├── 785-backport-of_get_mac_address.patch │ │ │ │ │ │ ├── 800-mac80211-mask-nested-A-MSDU-support-for-mesh.patch │ │ │ │ │ │ ├── 995-backport-pskb_pull.patch │ │ │ │ │ │ ├── 996-use-prandom_u32_max.patch │ │ │ │ │ │ └── 997-backport-API-from-v6.1.patch │ │ │ │ ├── ralink.mk │ │ │ │ ├── realtek.mk │ │ │ │ └── scripts │ │ │ │ │ └── import-backports.sh │ │ │ ├── mt76 │ │ │ │ ├── Makefile │ │ │ │ └── patches │ │ │ │ │ ├── 001-Revert-sync-with-upstream.patch │ │ │ │ │ ├── 002-Revert-wifi-mt76-mt7921-introduce-chanctx-support.patch │ │ │ │ │ ├── 003-Revert-changed-IEEE80211_MAX_AMPDU_BUF-defi.patch │ │ │ │ │ ├── 010-bypass-werror.patch │ │ │ │ │ ├── 020-fix-crash-in-chip-reset-fail.patch │ │ │ │ │ ├── 030-01-net-ethernet-mtk_wed-add-reset-to-rx_ring_setup-callback.patch │ │ │ │ │ ├── 030-02-net-ethernet-mtk_wed-add-reset-to-tx_ring_setup-callback.patch │ │ │ │ │ ├── 090-backport-to-linux-5.19.patch │ │ │ │ │ └── 091-fix-linux-6.1-build.patch │ │ │ └── mwlwifi │ │ │ │ ├── Makefile │ │ │ │ └── patches │ │ │ │ ├── 001-Fix-compile-with-mac80211-backports-5_3+.patch │ │ │ │ ├── 002-mwlwifi-remove-MODULE_SUPPORTED_DEVICE.patch │ │ │ │ ├── 003-mwlwifi-replace-get-set_fs-calls.patch │ │ │ │ └── 004-mwlwifi-fix-PCIe-DT-node-null-pointer-dereference.patch │ │ │ ├── network │ │ │ ├── services │ │ │ │ └── hostapd │ │ │ │ │ ├── Config.in │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── files │ │ │ │ │ ├── dhcp-get-server.sh │ │ │ │ │ ├── hostapd-basic.config │ │ │ │ │ ├── hostapd-full.config │ │ │ │ │ ├── hostapd-mini.config │ │ │ │ │ ├── hostapd.sh │ │ │ │ │ ├── multicall.c │ │ │ │ │ ├── wpa_supplicant-basic.config │ │ │ │ │ ├── wpa_supplicant-full.config │ │ │ │ │ ├── wpa_supplicant-mini.config │ │ │ │ │ ├── wpa_supplicant-p2p.config │ │ │ │ │ ├── wpad.init │ │ │ │ │ ├── wpad.json │ │ │ │ │ ├── wpad_acl.json │ │ │ │ │ └── wps-hotplug.sh │ │ │ │ │ ├── patches │ │ │ │ │ ├── 0001-Sync-with-mac80211-next.git-include-uapi-linux-nl802.patch │ │ │ │ │ ├── 001-wolfssl-init-RNG-with-ECC-key.patch │ │ │ │ │ ├── 010-mesh-Allow-DFS-channels-to-be-selected-if-dfs-is-ena.patch │ │ │ │ │ ├── 011-mesh-use-deterministic-channel-on-channel-switch.patch │ │ │ │ │ ├── 021-fix-sta-add-after-previous-connection.patch │ │ │ │ │ ├── 022-hostapd-fix-use-of-uninitialized-stack-variables.patch │ │ │ │ │ ├── 023-ndisc_snoop-call-dl_list_del-before-freeing-ipv6-add.patch │ │ │ │ │ ├── 030-driver_nl80211-rewrite-neigh-code-to-not-depend-on-l.patch │ │ │ │ │ ├── 040-mesh-allow-processing-authentication-frames-in-block.patch │ │ │ │ │ ├── 050-build_fix.patch │ │ │ │ │ ├── 100-daemonize_fix.patch │ │ │ │ │ ├── 200-multicall.patch │ │ │ │ │ ├── 300-noscan.patch │ │ │ │ │ ├── 301-mesh-noscan.patch │ │ │ │ │ ├── 310-rescan_immediately.patch │ │ │ │ │ ├── 320-optional_rfkill.patch │ │ │ │ │ ├── 330-nl80211_fix_set_freq.patch │ │ │ │ │ ├── 340-reload_freq_change.patch │ │ │ │ │ ├── 341-mesh-ctrl-iface-channel-switch.patch │ │ │ │ │ ├── 350-nl80211_del_beacon_bss.patch │ │ │ │ │ ├── 360-ctrl_iface_reload.patch │ │ │ │ │ ├── 370-ap_sta_support.patch │ │ │ │ │ ├── 380-disable_ctrl_iface_mib.patch │ │ │ │ │ ├── 381-hostapd_cli_UNKNOWN-COMMAND.patch │ │ │ │ │ ├── 390-wpa_ie_cap_workaround.patch │ │ │ │ │ ├── 400-wps_single_auth_enc_type.patch │ │ │ │ │ ├── 410-limit_debug_messages.patch │ │ │ │ │ ├── 420-indicate-features.patch │ │ │ │ │ ├── 430-hostapd_cli_ifdef.patch │ │ │ │ │ ├── 431-wpa_cli_ifdef.patch │ │ │ │ │ ├── 432-missing-typedef.patch │ │ │ │ │ ├── 450-scan_wait.patch │ │ │ │ │ ├── 460-wpa_supplicant-add-new-config-params-to-be-used-with.patch │ │ │ │ │ ├── 461-driver_nl80211-use-new-parameters-during-ibss-join.patch │ │ │ │ │ ├── 463-add-mcast_rate-to-11s.patch │ │ │ │ │ ├── 464-fix-mesh-obss-check.patch │ │ │ │ │ ├── 470-survey_data_fallback.patch │ │ │ │ │ ├── 500-lto-jobserver-support.patch │ │ │ │ │ ├── 590-rrm-wnm-statistics.patch │ │ │ │ │ ├── 599-wpa_supplicant-fix-warnings.patch │ │ │ │ │ ├── 600-ubus_support.patch │ │ │ │ │ ├── 610-hostapd_cli_ujail_permission.patch │ │ │ │ │ ├── 700-wifi-reload.patch │ │ │ │ │ ├── 710-vlan_no_bridge.patch │ │ │ │ │ ├── 711-wds_bridge_force.patch │ │ │ │ │ ├── 720-iface_max_num_sta.patch │ │ │ │ │ ├── 730-ft_iface.patch │ │ │ │ │ ├── 740-snoop_iface.patch │ │ │ │ │ ├── 750-qos_map_set_without_interworking.patch │ │ │ │ │ ├── 751-qos_map_ignore_when_unsupported.patch │ │ │ │ │ ├── 800-hostapd-2.10-lar.patch │ │ │ │ │ ├── v2-1-5-bss-coloring-add-support-for-handling-collision-events-and-triggering-CCA.patch │ │ │ │ │ ├── v2-2-5-bss_coloring-add-the-code-required-to-generate-the-CCA-IE.patch │ │ │ │ │ ├── v2-3-5-bss-coloring-disable-BSS-color-during-CCA.patch │ │ │ │ │ ├── v2-4-5-bss-coloring-add-the-switch_color-handler-to-the-nl80211-driver.patch │ │ │ │ │ └── v2-5-5-bss-coloring-handle-the-collision-and-CCA-events-coming-from-the-kernel.patch │ │ │ │ │ └── src │ │ │ │ │ ├── src │ │ │ │ │ ├── ap │ │ │ │ │ │ ├── ubus.c │ │ │ │ │ │ └── ubus.h │ │ │ │ │ └── utils │ │ │ │ │ │ └── build_features.h │ │ │ │ │ └── wpa_supplicant │ │ │ │ │ ├── ubus.c │ │ │ │ │ └── ubus.h │ │ │ └── utils │ │ │ │ ├── iw │ │ │ │ ├── Makefile │ │ │ │ └── patches │ │ │ │ │ ├── 001-nl80211_h_sync.patch │ │ │ │ │ ├── 010-Revert-iw-allow-specifying-CFLAGS-LIBS-externally.patch │ │ │ │ │ ├── 120-antenna_gain.patch │ │ │ │ │ ├── 130-survey-bss-rx-time.patch │ │ │ │ │ └── 200-reduce_size.patch │ │ │ │ └── iwinfo │ │ │ │ ├── Makefile │ │ │ │ └── patches │ │ │ │ ├── 001-ralink.patch │ │ │ │ ├── 002-devices-add-MT7986.patch │ │ │ │ ├── 003-devices-add-IPQ8074.patch │ │ │ │ └── 004-devices-add-QCNxxxx.patch │ │ │ └── system │ │ │ └── rpcd │ │ │ ├── Makefile │ │ │ └── files │ │ │ ├── 50-migrate-rpcd-ubus-sock.sh │ │ │ ├── rpcd.config │ │ │ └── rpcd.init │ ├── package │ │ └── firmware │ │ │ ├── ath11k-firmware │ │ │ └── Makefile │ │ │ └── ipq-wifi │ │ │ ├── Makefile │ │ │ ├── board-redmi_ax6.ipq8074 │ │ │ ├── board-xiaomi_ax3600.ipq8074 │ │ │ ├── board-xiaomi_ax3600.qca9889 │ │ │ └── board-xiaomi_ax9000.ipq8074 │ └── target │ │ └── linux │ │ └── qualcommax │ │ └── 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 ├── Script │ ├── openwrt-update-amlogic │ └── update-amlogic-openwrt.sh ├── kmod-xdp-sockets-diag │ ├── xdp-sockets-diag_support.mk │ └── xdp-sockets-diag_support.sh ├── newifi3 │ └── files │ │ └── etc │ │ └── hotplug.d │ │ └── block │ │ └── 30-usbmount └── nps │ ├── Makefile │ └── patches │ └── 100-remove-useless-sdk-in-npc.patch ├── compilecfg ├── ARMv8_imm.ini ├── ARMv8_lede_js.ini ├── ARMv8_lede_lua.ini ├── RedMi-AX6_plus_imm.ini ├── RedMi-AX6_plus_libwrt.ini └── old │ ├── aliyun_ap8220_immwrt.ini │ ├── cmcc_rax3000m_immwrt.ini │ ├── jdcloud_ax6000_immwrt.ini │ ├── jdcloud_ipq60xx_immwrt.ini │ ├── jdcloud_ipq60xx_libwrt.ini │ ├── n1_immwrt.ini │ ├── redmi_ax5_immwrt.ini │ ├── redmi_ax6000_immwrt21.ini │ ├── x64_immwrt.ini │ ├── zn_m2_immwrt.ini │ └── zn_m2_libwrt.ini ├── config ├── ARMv8_imm.config ├── ARMv8_lede_js.config ├── ARMv8_lede_lua.config ├── Newifi-D2_imm.config ├── Newifi-D2_lede_js.config ├── Newifi-D2_lede_lua.config ├── RedMi-AX6_plus_imm.config ├── RedMi-AX6_plus_libwrt.config ├── nss.config ├── old │ ├── AX6_mini_js.config │ ├── AX6_mini_lua..config │ ├── AX6_plus_js.config │ ├── AX6_plus_lua..config │ ├── mini_js.config │ └── mini_lua..config └── proxy.config ├── depends-ubuntu-2204 ├── diy-part1.sh ├── diy-part2.sh ├── 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 │ │ ├── db.root │ │ └── named.conf │ │ └── 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 │ ├── files │ │ ├── frpc.config │ │ ├── frpc.init │ │ ├── frpc.uci-defaults │ │ ├── frps.config │ │ └── frps.init │ └── test.sh ├── fs.mk ├── geoview │ └── Makefile ├── 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 ├── haproxy │ ├── Makefile │ ├── files │ │ ├── haproxy.cfg │ │ └── haproxy.init │ └── get-latest-patches.sh ├── 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 ├── lua5.4 │ ├── Makefile │ ├── patches-host │ │ ├── 001-include-version-number.patch │ │ └── 100-no_readline.patch │ └── patches │ │ ├── 001-include-version-number.patch │ │ ├── 020-shared_liblua.patch │ │ └── 100-no_readline.patch ├── 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 ├── nmap │ ├── Makefile │ └── patches │ │ ├── 030-ncat-drop-ca-bundle.patch │ │ └── 100-nsock-Fix-compilation-error-with-OPENSSL_NO_DTLS.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 │ ├── Makefile │ ├── files │ │ ├── sftp-ssh.service │ │ ├── sshd.failsafe │ │ ├── sshd.init │ │ ├── sshd.pam │ │ └── sshd.pam-access │ └── patches │ │ └── 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 ├── php8 │ ├── Makefile │ ├── files │ │ ├── php.ini │ │ ├── php8-fastcgi.config │ │ ├── php8-fastcgi.init │ │ ├── php8-fpm-www.conf │ │ ├── php8-fpm.conf │ │ ├── php8-fpm.config │ │ └── php8-fpm.init │ ├── patches │ │ ├── 0007-Add-support-for-use-of-the-system-timezone-database.patch │ │ ├── 0022-Use-system-timezone.patch │ │ ├── 0025-php-5.4.9-fixheader.patch │ │ ├── 0030-Remove-W3C-validation-icon-to-not-expose-the-reader-.patch │ │ ├── 1004-disable-phar-command.patch │ │ ├── 1010-dont-try-to-install-mod_php.patch │ │ └── 1020_workaround-external-libgd-feature-detection.patch │ ├── pecl.mk │ └── test.sh ├── python-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 │ ├── micropython │ │ ├── Makefile │ │ ├── patches │ │ │ ├── 010-lib-berkeley-db-cdefs.patch │ │ │ ├── 011-lib-berkeley-db-fix-no-init.patch │ │ │ ├── 030-target-no-darwin.patch │ │ │ └── 040-extmod-use-external-mbedtls.patch │ │ ├── src │ │ │ └── ports │ │ │ │ └── unix │ │ │ │ └── variants │ │ │ │ └── standard │ │ │ │ └── manifest-nossl.py │ │ └── test.sh │ ├── numpy │ │ ├── Makefile │ │ ├── files │ │ │ └── openwrt-cross.txt.in │ │ ├── patches │ │ │ └── 002-avoid-build-user-config-files.patch │ │ └── test.sh │ ├── openpyxl │ │ └── Makefile │ ├── pillow │ │ ├── Makefile │ │ ├── patches │ │ │ └── 001-remove-setuptools-version-limit.patch │ │ └── test.sh │ ├── pipx │ │ ├── Makefile │ │ └── test.sh │ ├── pymysql │ │ └── Makefile │ ├── pypi.mk │ ├── pyproject-metadata │ │ └── Makefile │ ├── python-aio-mqtt-mod │ │ └── Makefile │ ├── python-aiohttp-cors │ │ └── Makefile │ ├── python-aiohttp │ │ └── Makefile │ ├── python-aiosignal │ │ └── Makefile │ ├── python-apipkg │ │ └── Makefile │ ├── python-appdirs │ │ └── Makefile │ ├── python-argcomplete │ │ ├── Makefile │ │ ├── patches │ │ │ └── 001-unpin-setuptools.patch │ │ └── test.sh │ ├── python-asgiref │ │ └── Makefile │ ├── python-astral │ │ └── Makefile │ ├── python-async-generator │ │ └── Makefile │ ├── python-async-timeout │ │ └── Makefile │ ├── python-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 │ │ └── test.sh │ ├── python-evdev │ │ └── Makefile │ ├── python-eventlet │ │ └── Makefile │ ├── python-execnet │ │ └── Makefile │ ├── python-flask-babel │ │ └── Makefile │ ├── python-flask-httpauth │ │ └── Makefile │ ├── python-flask-login │ │ └── Makefile │ ├── python-flask-seasurf │ │ └── Makefile │ ├── python-flask-session │ │ └── Makefile │ ├── python-flask-socketio │ │ └── Makefile │ ├── python-flit-core │ │ └── Makefile │ ├── python-flit-scm │ │ └── Makefile │ ├── python-fnv-hash-fast │ │ └── Makefile │ ├── python-fnvhash │ │ └── Makefile │ ├── python-frozenlist │ │ └── Makefile │ ├── python-gevent │ │ └── Makefile │ ├── python-gmpy2 │ │ └── Makefile │ ├── python-gnupg │ │ └── Makefile │ ├── python-greenlet │ │ └── Makefile │ ├── python-hatch-fancy-pypi-readme │ │ └── Makefile │ ├── python-hatch-requirements-txt │ │ └── Makefile │ ├── python-hatch-vcs │ │ └── Makefile │ ├── python-hatchling │ │ └── Makefile │ ├── python-hyperlink │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-omit-tests.patch │ ├── python-idna │ │ ├── Makefile │ │ └── test.sh │ ├── python-ifaddr │ │ └── Makefile │ ├── python-incremental │ │ └── Makefile │ ├── python-influxdb │ │ └── Makefile │ ├── python-iniconfig │ │ └── Makefile │ ├── python-installer │ │ └── Makefile │ ├── python-intelhex │ │ └── Makefile │ ├── python-jdcal │ │ └── Makefile │ ├── python-jinja2 │ │ └── Makefile │ ├── python-jmespath │ │ └── Makefile │ ├── python-jsonpath-ng │ │ └── Makefile │ ├── python-jsonschema-specifications │ │ ├── Makefile │ │ └── test.sh │ ├── python-jsonschema │ │ ├── Makefile │ │ └── test.sh │ ├── python-libmodbus │ │ └── Makefile │ ├── python-lru-dict │ │ └── Makefile │ ├── python-lxml │ │ ├── Makefile │ │ ├── patches │ │ │ └── 001-downgrade-cython-requirement.patch │ │ └── 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-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-platformio │ │ └── Makefile │ ├── python-pluggy │ │ └── Makefile │ ├── python-ply │ │ └── Makefile │ ├── python-poetry-core │ │ └── Makefile │ ├── python-psutil │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-fix-non-Linux-compile.patch │ ├── python-psycopg2 │ │ └── Makefile │ ├── python-py │ │ └── Makefile │ ├── python-pyasn1-modules │ │ └── Makefile │ ├── python-pyasn1 │ │ ├── Makefile │ │ └── test.sh │ ├── python-pycares │ │ └── Makefile │ ├── python-pycparser │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-use-external-ply.patch │ ├── python-pycrate │ │ └── Makefile │ ├── python-pyelftools │ │ └── Makefile │ ├── python-pyfuse3 │ │ └── Makefile │ ├── python-pynacl │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-always-compile-ed25519.patch │ ├── python-pyodbc │ │ ├── Makefile │ │ └── test.sh │ ├── python-pyopenssl │ │ ├── Makefile │ │ └── test.sh │ ├── python-pyotp │ │ └── Makefile │ ├── python-pyparsing │ │ └── Makefile │ ├── python-pyproject-hooks │ │ └── Makefile │ ├── python-pypubsub │ │ └── 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 │ │ └── patches │ │ │ ├── 0001-Inject-matchpathcon_filespec_add64-if-defined-__INO_.patch │ │ │ └── 100-v2-libselinux-be-careful-with-non-portable-LFS-macro.patch │ ├── python-semanage │ │ ├── Makefile │ │ └── patches │ │ │ └── 0001-libsemanage-create-semanage_basename-to-ensure-posix.patch │ ├── 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-tabulate │ │ └── Makefile │ ├── python-texttable │ │ └── Makefile │ ├── python-toml │ │ └── Makefile │ ├── python-tornado │ │ └── Makefile │ ├── python-trio │ │ └── Makefile │ ├── python-trove-classifiers │ │ └── Makefile │ ├── python-twisted │ │ ├── Makefile │ │ ├── patches │ │ │ └── 001-omit-tkconch.patch │ │ └── test.sh │ ├── python-typing-extensions │ │ ├── Makefile │ │ └── test.sh │ ├── python-ubus │ │ └── Makefile │ ├── python-uci │ │ └── Makefile │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 020-uuid.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.old │ │ ├── 100-SniffOverrideDestination.patch │ │ ├── 200-ClashApiRulesSets.patch │ │ └── 900-openwrt-branding.patch │ └── patches │ │ └── 900-openwrt-branding.patch ├── smartdns │ └── Makefile ├── sqlite3 │ ├── Config-cli.in │ ├── Config-lib.in │ ├── Makefile │ └── test.sh ├── tailscale │ ├── Makefile │ ├── README.md │ ├── files │ │ ├── tailscale.conf │ │ └── tailscale.init │ └── test.sh ├── tools │ └── Makefile ├── ttyd │ ├── Makefile │ ├── files │ │ ├── ttyd.config │ │ └── ttyd.init │ └── patches │ │ └── 100-log-to-syslog.patch ├── ucode │ ├── Makefile │ └── patches │ │ ├── 010-Revert-nl80211-read-all-pending-event-messages.patch │ │ ├── 100-lexer-fix-parsing-xHH-and-0OOO-escape-sequences.patch │ │ ├── 110-uloop-allow-reusing-the-existing-environment.patch │ │ ├── 111-uloop-add-optional-setup-callback-to-process.patch │ │ ├── 120-fs-add-dup2-function.patch │ │ ├── 121-fs-add-read_nb-method-for-non-blocking-reads.patch │ │ └── 122-fs-add-mkdtemp-method-for-creating-temporary-directo.patch ├── 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 │ │ └── 0006-add-support-for-miniupnpc-2.2.8.patch ├── zh_Hans.sh ├── zoneinfo │ └── Makefile └── zzz-default-settings ├── patches ├── 100-smartdns-optimize.patch ├── 990_set_argon_primary ├── 991_custom_settings ├── 992_set-wifi-uci.sh ├── 999-chanage-default-leaseduration.patch ├── cpuusage ├── hnatusage ├── lucky_2.19.5_Linux_arm64_wanji.tar.gz ├── lucky_2.19.5_Linux_x86_64_wanji.tar.gz ├── nss_diag.sh ├── openssl │ ├── Config.in │ ├── Makefile │ ├── files │ │ ├── afalg.cnf │ │ ├── devcrypto.cnf │ │ ├── legacy.cnf │ │ ├── openssl.init │ │ └── padlock.cnf │ └── patches │ │ ├── 100-Configure-afalg-support.patch │ │ ├── 110-openwrt_targets.patch │ │ ├── 120-strip-cflags-from-binary.patch │ │ ├── 130-dont-build-fuzz-docs.patch │ │ ├── 140-allow-prefer-chacha20.patch │ │ ├── 150-openssl.cnf-add-engines-conf.patch │ │ ├── 500-e_devcrypto-default-to-not-use-digests-in-engine.patch │ │ └── 510-e_devcrypto-ignore-error-when-closing-session.patch ├── smp_affinity └── tempinfo ├── sh ├── ARMv8_imm_diy-part2.sh ├── ARMv8_lede_js_diy-part2.sh ├── ARMv8_lede_lua_diy-part2.sh ├── Newifi-D2_imm_diy-part2.sh ├── Newifi-D2_lede_js_diy-part2.sh ├── Newifi-D2_lede_lua_diy-part2.sh ├── ax6_imm_diy-part2.sh ├── breakings_diy-part2.sh ├── build.sh ├── lede_diy-part1.sh ├── old │ ├── AX6_js_diy-part2.sh │ ├── AX6_lua_diy-part2.sh │ ├── ax6_imm_diy-part2.sh │ ├── imm_diy-part1.sh │ └── mini_diy-part2.sh ├── pre_clone_action.sh └── update.sh └── ubuntu2404-make-openwrt /.github/workflows/Build_ARMv8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/.github/workflows/Build_ARMv8.yml -------------------------------------------------------------------------------- /.github/workflows/Release_Newifi-D2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/.github/workflows/Release_Newifi-D2.yml -------------------------------------------------------------------------------- /.github/workflows/Release_Redmi-AX6_plus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/.github/workflows/Release_Redmi-AX6_plus.yml -------------------------------------------------------------------------------- /.github/workflows/Releases_ARMv8.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/.github/workflows/Releases_ARMv8.yml -------------------------------------------------------------------------------- /.github/workflows/Sync-upstream.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/.github/workflows/Sync-upstream.yml -------------------------------------------------------------------------------- /.github/workflows/old/Build_OpenWrt_MiWifi-mini.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/.github/workflows/old/Build_OpenWrt_MiWifi-mini.yml -------------------------------------------------------------------------------- /.github/workflows/old/Build_OpenWrt_Redmi-AX6_mini.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/.github/workflows/old/Build_OpenWrt_Redmi-AX6_mini.yml -------------------------------------------------------------------------------- /.github/workflows/old/Build_lede_js_Newifi-D2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/.github/workflows/old/Build_lede_js_Newifi-D2.yml -------------------------------------------------------------------------------- /.github/workflows/old/Build_lede_js_Redmi-AX6_plus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/.github/workflows/old/Build_lede_js_Redmi-AX6_plus.yml -------------------------------------------------------------------------------- /.github/workflows/old/Build_lede_js_armvirt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/.github/workflows/old/Build_lede_js_armvirt.yml -------------------------------------------------------------------------------- /.github/workflows/old/Build_lede_lua_Redmi-AX6_plus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/.github/workflows/old/Build_lede_lua_Redmi-AX6_plus.yml -------------------------------------------------------------------------------- /.github/workflows/old/Releases_ARMv8_imm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/.github/workflows/old/Releases_ARMv8_imm.yml -------------------------------------------------------------------------------- /.github/workflows/old/Releases_ARMv8_lede_js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/.github/workflows/old/Releases_ARMv8_lede_js.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/LICENSE -------------------------------------------------------------------------------- /PATCH/001-elf.h-add-typedefs-for-Elf-_Relr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/001-elf.h-add-typedefs-for-Elf-_Relr.patch -------------------------------------------------------------------------------- /PATCH/add-xdp-diag.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/add-xdp-diag.patch -------------------------------------------------------------------------------- /PATCH/duplicate/addition-trans-zh-r2s/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/duplicate/addition-trans-zh-r2s/Makefile -------------------------------------------------------------------------------- /PATCH/duplicate/addition-trans-zh-r2s/status/status.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/duplicate/addition-trans-zh-r2s/status/status.lua -------------------------------------------------------------------------------- /PATCH/duplicate/addition-trans-zh-x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/duplicate/addition-trans-zh-x86/Makefile -------------------------------------------------------------------------------- /PATCH/duplicate/addition-trans-zh-x86/status/status.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/duplicate/addition-trans-zh-x86/status/status.lua -------------------------------------------------------------------------------- /PATCH/duplicate/fullconenat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/duplicate/fullconenat/Makefile -------------------------------------------------------------------------------- /PATCH/duplicate/fullconenat/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/duplicate/fullconenat/files/Makefile -------------------------------------------------------------------------------- /PATCH/duplicate/fullconenat/patches/000-printk.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/duplicate/fullconenat/patches/000-printk.patch -------------------------------------------------------------------------------- /PATCH/lede_add_immotalwrt_download_method.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/lede_add_immotalwrt_download_method.patch -------------------------------------------------------------------------------- /PATCH/libquadmath.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/libquadmath.patch -------------------------------------------------------------------------------- /PATCH/new/dmc/0001-dmc-rk3328.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/new/dmc/0001-dmc-rk3328.patch -------------------------------------------------------------------------------- /PATCH/new/overclock/999-rk3328-enable-1512mhz.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/new/overclock/999-rk3328-enable-1512mhz.patch -------------------------------------------------------------------------------- /PATCH/new/overclock/999-rk3328-enable-1608mhz.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/new/overclock/999-rk3328-enable-1608mhz.patch -------------------------------------------------------------------------------- /PATCH/new/package/900-add-filter-aaaa-option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/new/package/900-add-filter-aaaa-option.patch -------------------------------------------------------------------------------- /PATCH/new/package/dnsmasq-add-filter-aaaa-option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/new/package/dnsmasq-add-filter-aaaa-option.patch -------------------------------------------------------------------------------- /PATCH/new/package/luci-add-filter-aaaa-option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/new/package/luci-add-filter-aaaa-option.patch -------------------------------------------------------------------------------- /PATCH/new/package/luci-app-firewall_add_fullcone.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/new/package/luci-app-firewall_add_fullcone.patch -------------------------------------------------------------------------------- /PATCH/new/package/use_json_object_new_int64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/new/package/use_json_object_new_int64.patch -------------------------------------------------------------------------------- /PATCH/new/script/cputemp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/new/script/cputemp.sh -------------------------------------------------------------------------------- /PATCH/new/script/fuck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/new/script/fuck -------------------------------------------------------------------------------- /PATCH/new/script/onekeyr2s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/PATCH/new/script/onekeyr2s.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/README.md -------------------------------------------------------------------------------- /backup/001-fix-cmake-compatibility.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/001-fix-cmake-compatibility.patch -------------------------------------------------------------------------------- /backup/AX6/mac80211/package/kernel/ath10k-ct/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/AX6/mac80211/package/kernel/ath10k-ct/Makefile -------------------------------------------------------------------------------- /backup/AX6/mac80211/package/kernel/mac80211/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/AX6/mac80211/package/kernel/mac80211/Makefile -------------------------------------------------------------------------------- /backup/AX6/mac80211/package/kernel/mac80211/ath.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/AX6/mac80211/package/kernel/mac80211/ath.mk -------------------------------------------------------------------------------- /backup/AX6/mac80211/package/kernel/mac80211/broadcom.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/AX6/mac80211/package/kernel/mac80211/broadcom.mk -------------------------------------------------------------------------------- /backup/AX6/mac80211/package/kernel/mac80211/files/mac80211.hotplug: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | [ "${ACTION}" = "add" ] && { 4 | /sbin/wifi config 5 | } 6 | -------------------------------------------------------------------------------- /backup/AX6/mac80211/package/kernel/mac80211/intel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/AX6/mac80211/package/kernel/mac80211/intel.mk -------------------------------------------------------------------------------- /backup/AX6/mac80211/package/kernel/mac80211/marvell.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/AX6/mac80211/package/kernel/mac80211/marvell.mk -------------------------------------------------------------------------------- /backup/AX6/mac80211/package/kernel/mac80211/ralink.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/AX6/mac80211/package/kernel/mac80211/ralink.mk -------------------------------------------------------------------------------- /backup/AX6/mac80211/package/kernel/mac80211/realtek.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/AX6/mac80211/package/kernel/mac80211/realtek.mk -------------------------------------------------------------------------------- /backup/AX6/mac80211/package/kernel/mt76/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/AX6/mac80211/package/kernel/mt76/Makefile -------------------------------------------------------------------------------- /backup/AX6/mac80211/package/kernel/mwlwifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/AX6/mac80211/package/kernel/mwlwifi/Makefile -------------------------------------------------------------------------------- /backup/AX6/mac80211/package/network/services/hostapd/files/dhcp-get-server.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | [ "$1" = bound ] && echo "$serverid" 3 | -------------------------------------------------------------------------------- /backup/AX6/mac80211/package/network/utils/iw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/AX6/mac80211/package/network/utils/iw/Makefile -------------------------------------------------------------------------------- /backup/AX6/mac80211/package/network/utils/iwinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/AX6/mac80211/package/network/utils/iwinfo/Makefile -------------------------------------------------------------------------------- /backup/AX6/mac80211/package/system/rpcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/AX6/mac80211/package/system/rpcd/Makefile -------------------------------------------------------------------------------- /backup/AX6/mac80211/package/system/rpcd/files/rpcd.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/AX6/mac80211/package/system/rpcd/files/rpcd.config -------------------------------------------------------------------------------- /backup/AX6/mac80211/package/system/rpcd/files/rpcd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/AX6/mac80211/package/system/rpcd/files/rpcd.init -------------------------------------------------------------------------------- /backup/AX6/package/firmware/ath11k-firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/AX6/package/firmware/ath11k-firmware/Makefile -------------------------------------------------------------------------------- /backup/AX6/package/firmware/ipq-wifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/AX6/package/firmware/ipq-wifi/Makefile -------------------------------------------------------------------------------- /backup/Script/openwrt-update-amlogic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/Script/openwrt-update-amlogic -------------------------------------------------------------------------------- /backup/Script/update-amlogic-openwrt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/Script/update-amlogic-openwrt.sh -------------------------------------------------------------------------------- /backup/kmod-xdp-sockets-diag/xdp-sockets-diag_support.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/kmod-xdp-sockets-diag/xdp-sockets-diag_support.mk -------------------------------------------------------------------------------- /backup/kmod-xdp-sockets-diag/xdp-sockets-diag_support.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/kmod-xdp-sockets-diag/xdp-sockets-diag_support.sh -------------------------------------------------------------------------------- /backup/newifi3/files/etc/hotplug.d/block/30-usbmount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/newifi3/files/etc/hotplug.d/block/30-usbmount -------------------------------------------------------------------------------- /backup/nps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/nps/Makefile -------------------------------------------------------------------------------- /backup/nps/patches/100-remove-useless-sdk-in-npc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/backup/nps/patches/100-remove-useless-sdk-in-npc.patch -------------------------------------------------------------------------------- /compilecfg/ARMv8_imm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/compilecfg/ARMv8_imm.ini -------------------------------------------------------------------------------- /compilecfg/ARMv8_lede_js.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/compilecfg/ARMv8_lede_js.ini -------------------------------------------------------------------------------- /compilecfg/ARMv8_lede_lua.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/compilecfg/ARMv8_lede_lua.ini -------------------------------------------------------------------------------- /compilecfg/RedMi-AX6_plus_imm.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/compilecfg/RedMi-AX6_plus_imm.ini -------------------------------------------------------------------------------- /compilecfg/RedMi-AX6_plus_libwrt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/compilecfg/RedMi-AX6_plus_libwrt.ini -------------------------------------------------------------------------------- /compilecfg/old/aliyun_ap8220_immwrt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/compilecfg/old/aliyun_ap8220_immwrt.ini -------------------------------------------------------------------------------- /compilecfg/old/cmcc_rax3000m_immwrt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/compilecfg/old/cmcc_rax3000m_immwrt.ini -------------------------------------------------------------------------------- /compilecfg/old/jdcloud_ax6000_immwrt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/compilecfg/old/jdcloud_ax6000_immwrt.ini -------------------------------------------------------------------------------- /compilecfg/old/jdcloud_ipq60xx_immwrt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/compilecfg/old/jdcloud_ipq60xx_immwrt.ini -------------------------------------------------------------------------------- /compilecfg/old/jdcloud_ipq60xx_libwrt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/compilecfg/old/jdcloud_ipq60xx_libwrt.ini -------------------------------------------------------------------------------- /compilecfg/old/n1_immwrt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/compilecfg/old/n1_immwrt.ini -------------------------------------------------------------------------------- /compilecfg/old/redmi_ax5_immwrt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/compilecfg/old/redmi_ax5_immwrt.ini -------------------------------------------------------------------------------- /compilecfg/old/redmi_ax6000_immwrt21.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/compilecfg/old/redmi_ax6000_immwrt21.ini -------------------------------------------------------------------------------- /compilecfg/old/x64_immwrt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/compilecfg/old/x64_immwrt.ini -------------------------------------------------------------------------------- /compilecfg/old/zn_m2_immwrt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/compilecfg/old/zn_m2_immwrt.ini -------------------------------------------------------------------------------- /compilecfg/old/zn_m2_libwrt.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/compilecfg/old/zn_m2_libwrt.ini -------------------------------------------------------------------------------- /config/ARMv8_imm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/config/ARMv8_imm.config -------------------------------------------------------------------------------- /config/ARMv8_lede_js.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/config/ARMv8_lede_js.config -------------------------------------------------------------------------------- /config/ARMv8_lede_lua.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/config/ARMv8_lede_lua.config -------------------------------------------------------------------------------- /config/Newifi-D2_imm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/config/Newifi-D2_imm.config -------------------------------------------------------------------------------- /config/Newifi-D2_lede_js.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/config/Newifi-D2_lede_js.config -------------------------------------------------------------------------------- /config/Newifi-D2_lede_lua.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/config/Newifi-D2_lede_lua.config -------------------------------------------------------------------------------- /config/RedMi-AX6_plus_imm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/config/RedMi-AX6_plus_imm.config -------------------------------------------------------------------------------- /config/RedMi-AX6_plus_libwrt.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/config/RedMi-AX6_plus_libwrt.config -------------------------------------------------------------------------------- /config/nss.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/config/nss.config -------------------------------------------------------------------------------- /config/old/AX6_mini_js.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/config/old/AX6_mini_js.config -------------------------------------------------------------------------------- /config/old/AX6_mini_lua..config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/config/old/AX6_mini_lua..config -------------------------------------------------------------------------------- /config/old/AX6_plus_js.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/config/old/AX6_plus_js.config -------------------------------------------------------------------------------- /config/old/AX6_plus_lua..config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/config/old/AX6_plus_lua..config -------------------------------------------------------------------------------- /config/old/mini_js.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/config/old/mini_js.config -------------------------------------------------------------------------------- /config/old/mini_lua..config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/config/old/mini_lua..config -------------------------------------------------------------------------------- /config/proxy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/config/proxy.config -------------------------------------------------------------------------------- /depends-ubuntu-2204: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/depends-ubuntu-2204 -------------------------------------------------------------------------------- /diy-part1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/diy-part1.sh -------------------------------------------------------------------------------- /diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/diy-part2.sh -------------------------------------------------------------------------------- /general/001-gcc11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/001-gcc11.patch -------------------------------------------------------------------------------- /general/003-add-module_supported_device-macro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/003-add-module_supported_device-macro.patch -------------------------------------------------------------------------------- /general/01-export-nfs_ssc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/01-export-nfs_ssc.patch -------------------------------------------------------------------------------- /general/101-bcm-fullconenat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/101-bcm-fullconenat.patch -------------------------------------------------------------------------------- /general/220-arm-gc_sections.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/220-arm-gc_sections.patch -------------------------------------------------------------------------------- /general/651-rt2x00-driver-compile-with-kernel-5.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/651-rt2x00-driver-compile-with-kernel-5.15.patch -------------------------------------------------------------------------------- /general/900-bcm-fullconenat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/900-bcm-fullconenat.patch -------------------------------------------------------------------------------- /general/982-add-bcm-fullconenat-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/982-add-bcm-fullconenat-support.patch -------------------------------------------------------------------------------- /general/AX6/package/firmware/ipq-wifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/AX6/package/firmware/ipq-wifi/Makefile -------------------------------------------------------------------------------- /general/AX6/target/linux/ipq807x/image/generic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/AX6/target/linux/ipq807x/image/generic.mk -------------------------------------------------------------------------------- /general/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/Makefile -------------------------------------------------------------------------------- /general/advancedtomato.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/advancedtomato.woff -------------------------------------------------------------------------------- /general/alsa-lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/alsa-lib/Makefile -------------------------------------------------------------------------------- /general/alsa-lib/patches/100-link_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/alsa-lib/patches/100-link_fix.patch -------------------------------------------------------------------------------- /general/alsa-lib/patches/200-usleep.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/alsa-lib/patches/200-usleep.patch -------------------------------------------------------------------------------- /general/ariang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/ariang/Makefile -------------------------------------------------------------------------------- /general/ariang/files/80_ariang-nginx-support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/ariang/files/80_ariang-nginx-support -------------------------------------------------------------------------------- /general/ariang/files/ariang.locations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/ariang/files/ariang.locations -------------------------------------------------------------------------------- /general/at/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/at/Makefile -------------------------------------------------------------------------------- /general/at/files/atd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/at/files/atd.init -------------------------------------------------------------------------------- /general/at/patches/100-remove-glibc-assumption.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/at/patches/100-remove-glibc-assumption.patch -------------------------------------------------------------------------------- /general/at/patches/110-getloadavg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/at/patches/110-getloadavg.patch -------------------------------------------------------------------------------- /general/autocore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/autocore/Makefile -------------------------------------------------------------------------------- /general/autocore/files/arm/090-cover-index_files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/autocore/files/arm/090-cover-index_files -------------------------------------------------------------------------------- /general/autocore/files/arm/cpuinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/autocore/files/arm/cpuinfo -------------------------------------------------------------------------------- /general/autocore/files/arm/rpcd_10_system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/autocore/files/arm/rpcd_10_system.js -------------------------------------------------------------------------------- /general/autocore/files/arm/rpcd_luci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/autocore/files/arm/rpcd_luci -------------------------------------------------------------------------------- /general/autocore/files/arm/rpcd_luci-mod-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/autocore/files/arm/rpcd_luci-mod-status.json -------------------------------------------------------------------------------- /general/autocore/files/x86/autocore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/autocore/files/x86/autocore -------------------------------------------------------------------------------- /general/autocore/files/x86/cpuinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/autocore/files/x86/cpuinfo -------------------------------------------------------------------------------- /general/autocore/files/x86/ethinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/autocore/files/x86/ethinfo -------------------------------------------------------------------------------- /general/autocore/files/x86/rpcd_10_system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/autocore/files/x86/rpcd_10_system.js -------------------------------------------------------------------------------- /general/autocore/files/x86/rpcd_21_ethinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/autocore/files/x86/rpcd_21_ethinfo.js -------------------------------------------------------------------------------- /general/autocore/files/x86/rpcd_luci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/autocore/files/x86/rpcd_luci -------------------------------------------------------------------------------- /general/autocore/files/x86/rpcd_luci-mod-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/autocore/files/x86/rpcd_luci-mod-status.json -------------------------------------------------------------------------------- /general/bind/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/bind/Config.in -------------------------------------------------------------------------------- /general/bind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/bind/Makefile -------------------------------------------------------------------------------- /general/bind/files/bind/db.root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/bind/files/bind/db.root -------------------------------------------------------------------------------- /general/bind/files/bind/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/bind/files/bind/named.conf -------------------------------------------------------------------------------- /general/bind/files/named.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/bind/files/named.init -------------------------------------------------------------------------------- /general/boost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/boost/Makefile -------------------------------------------------------------------------------- /general/bpftools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/bpftools/Makefile -------------------------------------------------------------------------------- /general/bpftools/patches/002-includes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/bpftools/patches/002-includes.patch -------------------------------------------------------------------------------- /general/brook/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/brook/Makefile -------------------------------------------------------------------------------- /general/containerd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/containerd/Makefile -------------------------------------------------------------------------------- /general/coremark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/coremark -------------------------------------------------------------------------------- /general/coremark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/coremark.sh -------------------------------------------------------------------------------- /general/coreutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/coreutils/Makefile -------------------------------------------------------------------------------- /general/coreutils/patches/001-no_docs_man_tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/coreutils/patches/001-no_docs_man_tests.patch -------------------------------------------------------------------------------- /general/crypto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/crypto.mk -------------------------------------------------------------------------------- /general/cryptsetup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/cryptsetup/Makefile -------------------------------------------------------------------------------- /general/curl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/curl/Config.in -------------------------------------------------------------------------------- /general/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/curl/Makefile -------------------------------------------------------------------------------- /general/curl/patches/200-no_docs_tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/curl/patches/200-no_docs_tests.patch -------------------------------------------------------------------------------- /general/dae/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dae/Makefile -------------------------------------------------------------------------------- /general/dae/files/dae.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dae/files/dae.config -------------------------------------------------------------------------------- /general/dae/files/dae.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dae/files/dae.init -------------------------------------------------------------------------------- /general/dae/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dae/test.sh -------------------------------------------------------------------------------- /general/default-settings/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/default-settings/Makefile -------------------------------------------------------------------------------- /general/default-settings/files/openwrt_banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/default-settings/files/openwrt_banner -------------------------------------------------------------------------------- /general/default-settings/files/zzz-default-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/default-settings/files/zzz-default-settings -------------------------------------------------------------------------------- /general/default-settings/i18n/default.zh_Hans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/default-settings/i18n/default.zh_Hans.po -------------------------------------------------------------------------------- /general/default-settings/i18n/more.zh_Hans.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/default-settings/i18n/more.zh_Hans.po -------------------------------------------------------------------------------- /general/dnsmasq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dnsmasq/Makefile -------------------------------------------------------------------------------- /general/dnsmasq/files/50-dnsmasq-migrate-ipset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dnsmasq/files/50-dnsmasq-migrate-ipset.sh -------------------------------------------------------------------------------- /general/dnsmasq/files/dhcp-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dnsmasq/files/dhcp-script.sh -------------------------------------------------------------------------------- /general/dnsmasq/files/dhcp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dnsmasq/files/dhcp.conf -------------------------------------------------------------------------------- /general/dnsmasq/files/dhcpbogushostname.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dnsmasq/files/dhcpbogushostname.conf -------------------------------------------------------------------------------- /general/dnsmasq/files/dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dnsmasq/files/dnsmasq.conf -------------------------------------------------------------------------------- /general/dnsmasq/files/dnsmasq.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dnsmasq/files/dnsmasq.init -------------------------------------------------------------------------------- /general/dnsmasq/files/dnsmasq_acl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dnsmasq/files/dnsmasq_acl.json -------------------------------------------------------------------------------- /general/dnsmasq/files/dnsmasqsec.hotplug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dnsmasq/files/dnsmasqsec.hotplug -------------------------------------------------------------------------------- /general/dnsmasq/files/rfc6761.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dnsmasq/files/rfc6761.conf -------------------------------------------------------------------------------- /general/dnsmasq/patches/200-ubus_dns.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dnsmasq/patches/200-ubus_dns.patch -------------------------------------------------------------------------------- /general/docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/docker/Makefile -------------------------------------------------------------------------------- /general/dockerd/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dockerd/Config.in -------------------------------------------------------------------------------- /general/dockerd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dockerd/Makefile -------------------------------------------------------------------------------- /general/dockerd/files/daemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dockerd/files/daemon.json -------------------------------------------------------------------------------- /general/dockerd/files/dockerd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dockerd/files/dockerd.init -------------------------------------------------------------------------------- /general/dockerd/files/etc/config/dockerd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dockerd/files/etc/config/dockerd -------------------------------------------------------------------------------- /general/dockerd/git-short-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/dockerd/git-short-commit.sh -------------------------------------------------------------------------------- /general/exfatprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/exfatprogs/Makefile -------------------------------------------------------------------------------- /general/expat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/expat/Makefile -------------------------------------------------------------------------------- /general/ffmpeg/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/ffmpeg/Config.in -------------------------------------------------------------------------------- /general/ffmpeg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/ffmpeg/Makefile -------------------------------------------------------------------------------- /general/ffmpeg/patches/010-pkgconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/ffmpeg/patches/010-pkgconfig.patch -------------------------------------------------------------------------------- /general/ffmpeg/patches/050-glibc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/ffmpeg/patches/050-glibc.patch -------------------------------------------------------------------------------- /general/file/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/file/Makefile -------------------------------------------------------------------------------- /general/flac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/flac/Makefile -------------------------------------------------------------------------------- /general/frp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/frp/Makefile -------------------------------------------------------------------------------- /general/frp/files/frpc.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/frp/files/frpc.config -------------------------------------------------------------------------------- /general/frp/files/frpc.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/frp/files/frpc.init -------------------------------------------------------------------------------- /general/frp/files/frpc.uci-defaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/frp/files/frpc.uci-defaults -------------------------------------------------------------------------------- /general/frp/files/frps.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/frp/files/frps.config -------------------------------------------------------------------------------- /general/frp/files/frps.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/frp/files/frps.init -------------------------------------------------------------------------------- /general/frp/test.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | $1 -v 2>&1 | grep -F "$PKG_VERSION" 4 | -------------------------------------------------------------------------------- /general/fs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/fs.mk -------------------------------------------------------------------------------- /general/geoview/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/geoview/Makefile -------------------------------------------------------------------------------- /general/gnupg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/gnupg/Makefile -------------------------------------------------------------------------------- /general/golang/golang-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/golang/golang-build.sh -------------------------------------------------------------------------------- /general/golang/golang-compiler.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/golang/golang-compiler.mk -------------------------------------------------------------------------------- /general/golang/golang-host-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/golang/golang-host-build.mk -------------------------------------------------------------------------------- /general/golang/golang-package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/golang/golang-package.mk -------------------------------------------------------------------------------- /general/golang/golang-values.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/golang/golang-values.mk -------------------------------------------------------------------------------- /general/golang/golang/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/golang/golang/Config.in -------------------------------------------------------------------------------- /general/golang/golang/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/golang/golang/Makefile -------------------------------------------------------------------------------- /general/golang/golang/files/go-gcc-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-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/fichenx/Actions-OpenWrt/HEAD/general/gost/Makefile -------------------------------------------------------------------------------- /general/gost/files/gost.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/gost/files/gost.config -------------------------------------------------------------------------------- /general/gost/files/gost.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/gost/files/gost.init -------------------------------------------------------------------------------- /general/gost/patches/010-go1-20.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-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/fichenx/Actions-OpenWrt/HEAD/general/gost/patches/030-bump-deps-bump-sdk-to-1.21.patch -------------------------------------------------------------------------------- /general/haproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/haproxy/Makefile -------------------------------------------------------------------------------- /general/haproxy/files/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/haproxy/files/haproxy.cfg -------------------------------------------------------------------------------- /general/haproxy/files/haproxy.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/haproxy/files/haproxy.init -------------------------------------------------------------------------------- /general/haproxy/get-latest-patches.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/haproxy/get-latest-patches.sh -------------------------------------------------------------------------------- /general/inih/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/inih/Makefile -------------------------------------------------------------------------------- /general/iptables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/iptables/Makefile -------------------------------------------------------------------------------- /general/iptables/patches/101-remove-check-already.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/iptables/patches/101-remove-check-already.patch -------------------------------------------------------------------------------- /general/iptables/patches/103-optional-xml.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/iptables/patches/103-optional-xml.patch -------------------------------------------------------------------------------- /general/iptables/patches/200-configurable_builtin.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/iptables/patches/200-configurable_builtin.patch -------------------------------------------------------------------------------- /general/iptables/patches/600-shared-libext.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/iptables/patches/600-shared-libext.patch -------------------------------------------------------------------------------- /general/iptables/patches/800-flowoffload_target.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/iptables/patches/800-flowoffload_target.patch -------------------------------------------------------------------------------- /general/jq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/jq/Makefile -------------------------------------------------------------------------------- /general/libnetfilter-conntrack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/libnetfilter-conntrack/Makefile -------------------------------------------------------------------------------- /general/libpfring/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/libpfring/Makefile -------------------------------------------------------------------------------- /general/libpfring/patches/0001-fix-cross-compiling.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/libpfring/patches/0001-fix-cross-compiling.patch -------------------------------------------------------------------------------- /general/libpfring/patches/900-fix-linux-6.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/libpfring/patches/900-fix-linux-6.6.patch -------------------------------------------------------------------------------- /general/libtorrent-rasterbar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/libtorrent-rasterbar/Makefile -------------------------------------------------------------------------------- /general/libxml2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/libxml2/Makefile -------------------------------------------------------------------------------- /general/lrzsz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/lrzsz/Makefile -------------------------------------------------------------------------------- /general/lrzsz/patches/100-install_delete_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/lrzsz/patches/100-install_delete_fix.patch -------------------------------------------------------------------------------- /general/lrzsz/patches/200-format.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/lrzsz/patches/200-format.patch -------------------------------------------------------------------------------- /general/lsof/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/lsof/Makefile -------------------------------------------------------------------------------- /general/lsof/patches/000-disable-man.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/lsof/patches/000-disable-man.patch -------------------------------------------------------------------------------- /general/lua5.4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/lua5.4/Makefile -------------------------------------------------------------------------------- /general/lua5.4/patches-host/100-no_readline.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/lua5.4/patches-host/100-no_readline.patch -------------------------------------------------------------------------------- /general/lua5.4/patches/001-include-version-number.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/lua5.4/patches/001-include-version-number.patch -------------------------------------------------------------------------------- /general/lua5.4/patches/020-shared_liblua.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/lua5.4/patches/020-shared_liblua.patch -------------------------------------------------------------------------------- /general/lua5.4/patches/100-no_readline.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/lua5.4/patches/100-no_readline.patch -------------------------------------------------------------------------------- /general/luci-app-cpufreq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-cpufreq/Makefile -------------------------------------------------------------------------------- /general/luci-app-cpufreq/luasrc/controller/cpufreq.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-cpufreq/luasrc/controller/cpufreq.lua -------------------------------------------------------------------------------- /general/luci-app-cpufreq/luasrc/model/cbi/cpufreq.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-cpufreq/luasrc/model/cbi/cpufreq.lua -------------------------------------------------------------------------------- /general/luci-app-cpufreq/po/zh-cn/cpufreq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-cpufreq/po/zh-cn/cpufreq.po -------------------------------------------------------------------------------- /general/luci-app-cpufreq/root/etc/config/cpufreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-cpufreq/root/etc/config/cpufreq -------------------------------------------------------------------------------- /general/luci-app-cpufreq/root/etc/init.d/cpufreq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-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/fichenx/Actions-OpenWrt/HEAD/general/luci-app-cpufreq/root/etc/init.d/cpufreq.lean -------------------------------------------------------------------------------- /general/luci-app-dae/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-dae/Makefile -------------------------------------------------------------------------------- /general/luci-app-dae/luasrc/controller/dae.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-dae/luasrc/controller/dae.lua -------------------------------------------------------------------------------- /general/luci-app-dae/luasrc/model/cbi/dae.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-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/fichenx/Actions-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/fichenx/Actions-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/fichenx/Actions-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/fichenx/Actions-OpenWrt/HEAD/general/luci-app-flowoffload/Makefile -------------------------------------------------------------------------------- /general/luci-app-flowoffload/luasrc/view/flow/status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-flowoffload/luasrc/view/flow/status.htm -------------------------------------------------------------------------------- /general/luci-app-flowoffload/po/zh_Hans/flowoffload.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-flowoffload/po/zh_Hans/flowoffload.po -------------------------------------------------------------------------------- /general/luci-app-flowoffload/root/etc/config/flowoffload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-flowoffload/root/etc/config/flowoffload -------------------------------------------------------------------------------- /general/luci-app-flowoffload/root/etc/init.d/flowoffload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-flowoffload/root/etc/init.d/flowoffload -------------------------------------------------------------------------------- /general/luci-app-gost/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-gost/Makefile -------------------------------------------------------------------------------- /general/luci-app-gost/luasrc/controller/gost.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-gost/luasrc/controller/gost.lua -------------------------------------------------------------------------------- /general/luci-app-gost/luasrc/model/cbi/gost.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-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/fichenx/Actions-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/fichenx/Actions-OpenWrt/HEAD/general/luci-app-gost/po/zh_Hans/gost.po -------------------------------------------------------------------------------- /general/luci-app-gost/po/zh_Hans/gpsysupgrade.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-gost/po/zh_Hans/gpsysupgrade.po -------------------------------------------------------------------------------- /general/luci-app-gost/root/etc/uci-defaults/gost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-gost/root/etc/uci-defaults/gost -------------------------------------------------------------------------------- /general/luci-app-kodexplorer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-kodexplorer/Makefile -------------------------------------------------------------------------------- /general/luci-app-kodexplorer/po/zh-cn/kodexplorer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-kodexplorer/po/zh-cn/kodexplorer.po -------------------------------------------------------------------------------- /general/luci-app-kodexplorer/root/etc/config/kodexplorer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-kodexplorer/root/etc/config/kodexplorer -------------------------------------------------------------------------------- /general/luci-app-kodexplorer/root/etc/init.d/kodexplorer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-kodexplorer/root/etc/init.d/kodexplorer -------------------------------------------------------------------------------- /general/luci-app-netdata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-netdata/Makefile -------------------------------------------------------------------------------- /general/luci-app-netdata/luasrc/controller/netdata.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-netdata/luasrc/controller/netdata.lua -------------------------------------------------------------------------------- /general/luci-app-netdata/luasrc/view/netdata.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-netdata/luasrc/view/netdata.htm -------------------------------------------------------------------------------- /general/luci-app-netdata/po/zh_Hans/netdata.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-netdata/po/zh_Hans/netdata.po -------------------------------------------------------------------------------- /general/luci-app-passwall/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-passwall/Makefile -------------------------------------------------------------------------------- /general/luci-app-passwall/luasrc/controller/passwall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-passwall/luasrc/controller/passwall.lua -------------------------------------------------------------------------------- /general/luci-app-passwall/po/zh-cn/passwall.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-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/fichenx/Actions-OpenWrt/HEAD/general/luci-app-passwall/root/etc/config/passwall_server -------------------------------------------------------------------------------- /general/luci-app-passwall/root/etc/init.d/passwall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-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/fichenx/Actions-OpenWrt/HEAD/general/luci-app-passwall/root/etc/init.d/passwall_server -------------------------------------------------------------------------------- /general/luci-app-passwall/root/usr/share/passwall/app.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-passwall/root/usr/share/passwall/app.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/fichenx/Actions-OpenWrt/HEAD/general/luci-app-passwall/root/usr/share/passwall/test.sh -------------------------------------------------------------------------------- /general/luci-app-qbittorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-qbittorrent/Makefile -------------------------------------------------------------------------------- /general/luci-app-qbittorrent/po/zh_Hans/qbittorrent.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-qbittorrent/po/zh_Hans/qbittorrent.po -------------------------------------------------------------------------------- /general/luci-app-qbittorrent/root/etc/config/qbittorrent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-qbittorrent/root/etc/config/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/fichenx/Actions-OpenWrt/HEAD/general/luci-app-socat/Makefile -------------------------------------------------------------------------------- /general/luci-app-socat/luasrc/controller/socat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-socat/luasrc/controller/socat.lua -------------------------------------------------------------------------------- /general/luci-app-socat/luasrc/view/socat/status.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-socat/luasrc/view/socat/status.htm -------------------------------------------------------------------------------- /general/luci-app-socat/po/zh-cn/socat.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-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/fichenx/Actions-OpenWrt/HEAD/general/luci-app-socat/root/etc/config/socat -------------------------------------------------------------------------------- /general/luci-app-socat/root/etc/init.d/socat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-socat/root/etc/init.d/socat -------------------------------------------------------------------------------- /general/luci-app-turboacc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-turboacc/Makefile -------------------------------------------------------------------------------- /general/luci-app-turboacc/po/zh_Hans/turboacc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-turboacc/po/zh_Hans/turboacc.po -------------------------------------------------------------------------------- /general/luci-app-turboacc/root/etc/config/turboacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-turboacc/root/etc/config/turboacc -------------------------------------------------------------------------------- /general/luci-app-turboacc/root/etc/init.d/turboacc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-turboacc/root/etc/init.d/turboacc -------------------------------------------------------------------------------- /general/luci-app-v2ray-server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/luci-app-v2ray-server/Makefile -------------------------------------------------------------------------------- /general/luci-app-v2ray-server/po/zh-cn/v2ray_server.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-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/mt7621/target/linux/ramips/image/mt7621.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/mt7621/target/linux/ramips/image/mt7621.mk -------------------------------------------------------------------------------- /general/n2n_v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/n2n_v2/Makefile -------------------------------------------------------------------------------- /general/n2n_v2/files/n2n_v2.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/n2n_v2/files/n2n_v2.config -------------------------------------------------------------------------------- /general/n2n_v2/files/n2n_v2.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/n2n_v2/files/n2n_v2.init -------------------------------------------------------------------------------- /general/naiveproxy.orig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/naiveproxy.orig/Makefile -------------------------------------------------------------------------------- /general/naiveproxy.orig/src/init_env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/naiveproxy.orig/src/init_env.sh -------------------------------------------------------------------------------- /general/naiveproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/naiveproxy/Makefile -------------------------------------------------------------------------------- /general/naiveproxy/files/naiveproxy.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/naiveproxy/files/naiveproxy.config -------------------------------------------------------------------------------- /general/naiveproxy/files/naiveproxy.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/naiveproxy/files/naiveproxy.init -------------------------------------------------------------------------------- /general/nano/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/nano/Makefile -------------------------------------------------------------------------------- /general/nano/files/nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/nano/files/nanorc -------------------------------------------------------------------------------- /general/nano/files/uci.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/nano/files/uci.nanorc -------------------------------------------------------------------------------- /general/nano/files/ucode.nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/nano/files/ucode.nanorc -------------------------------------------------------------------------------- /general/netdevices.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/netdevices.mk -------------------------------------------------------------------------------- /general/netsupport.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/netsupport.mk -------------------------------------------------------------------------------- /general/nginx/Config_ssl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/nginx/Config_ssl.in -------------------------------------------------------------------------------- /general/nginx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/nginx/Makefile -------------------------------------------------------------------------------- /general/nginx/files-luci-support/60_nginx-luci-support: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/nginx/files-luci-support/60_nginx-luci-support -------------------------------------------------------------------------------- /general/nginx/files-luci-support/luci.locations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/nginx/files-luci-support/luci.locations -------------------------------------------------------------------------------- /general/nginx/files/nginx.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/nginx/files/nginx.init -------------------------------------------------------------------------------- /general/nginx/patches/nginx/101-feature_test_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/nginx/patches/nginx/101-feature_test_fix.patch -------------------------------------------------------------------------------- /general/nginx/patches/nginx/102-sizeof_test_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/nginx/patches/nginx/102-sizeof_test_fix.patch -------------------------------------------------------------------------------- /general/nginx/patches/nginx/103-sys_nerr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/nginx/patches/nginx/103-sys_nerr.patch -------------------------------------------------------------------------------- /general/nginx/patches/nginx/104-endianness_fix.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/nginx/patches/nginx/104-endianness_fix.patch -------------------------------------------------------------------------------- /general/nginx/patches/nginx/200-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/nginx/patches/nginx/200-config.patch -------------------------------------------------------------------------------- /general/nginx/patches/nginx/202-fix-fPIC-on-link.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/nginx/patches/nginx/202-fix-fPIC-on-link.patch -------------------------------------------------------------------------------- /general/nmap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/nmap/Makefile -------------------------------------------------------------------------------- /general/nmap/patches/030-ncat-drop-ca-bundle.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/nmap/patches/030-ncat-drop-ca-bundle.patch -------------------------------------------------------------------------------- /general/node/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/node/Makefile -------------------------------------------------------------------------------- /general/node/patches/003-path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/node/patches/003-path.patch -------------------------------------------------------------------------------- /general/node/patches/004-musl_support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/node/patches/004-musl_support.patch -------------------------------------------------------------------------------- /general/node/patches/007-fix_host_build_on_macos.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/node/patches/007-fix_host_build_on_macos.patch -------------------------------------------------------------------------------- /general/node/patches/999-cast_for_mips32.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/node/patches/999-cast_for_mips32.patch -------------------------------------------------------------------------------- /general/node/patches/999-fix_icu_conflict.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/node/patches/999-fix_icu_conflict.patch -------------------------------------------------------------------------------- /general/node/patches/999-localhost-no-addrconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/node/patches/999-localhost-no-addrconfig.patch -------------------------------------------------------------------------------- /general/node/patches/999-v8_zlib_support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/node/patches/999-v8_zlib_support.patch -------------------------------------------------------------------------------- /general/ntfs3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/ntfs3/Makefile -------------------------------------------------------------------------------- /general/openssh/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openssh/Makefile -------------------------------------------------------------------------------- /general/openssh/files/sftp-ssh.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openssh/files/sftp-ssh.service -------------------------------------------------------------------------------- /general/openssh/files/sshd.failsafe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openssh/files/sshd.failsafe -------------------------------------------------------------------------------- /general/openssh/files/sshd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openssh/files/sshd.init -------------------------------------------------------------------------------- /general/openssh/files/sshd.pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openssh/files/sshd.pam -------------------------------------------------------------------------------- /general/openssh/files/sshd.pam-access: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openssh/files/sshd.pam-access -------------------------------------------------------------------------------- /general/openvpn/Config-mbedtls.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openvpn/Config-mbedtls.in -------------------------------------------------------------------------------- /general/openvpn/Config-openssl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openvpn/Config-openssl.in -------------------------------------------------------------------------------- /general/openvpn/Config-wolfssl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openvpn/Config-wolfssl.in -------------------------------------------------------------------------------- /general/openvpn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openvpn/Makefile -------------------------------------------------------------------------------- /general/openvpn/files/etc/hotplug.d/openvpn/01-user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openvpn/files/etc/hotplug.d/openvpn/01-user -------------------------------------------------------------------------------- /general/openvpn/files/etc/openvpn.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openvpn/files/etc/openvpn.user -------------------------------------------------------------------------------- /general/openvpn/files/lib/functions/openvpn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openvpn/files/lib/functions/openvpn.sh -------------------------------------------------------------------------------- /general/openvpn/files/openvpn.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openvpn/files/openvpn.config -------------------------------------------------------------------------------- /general/openvpn/files/openvpn.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openvpn/files/openvpn.init -------------------------------------------------------------------------------- /general/openvpn/files/openvpn.options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-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/fichenx/Actions-OpenWrt/HEAD/general/openvpn/files/usr/libexec/openvpn-hotplug -------------------------------------------------------------------------------- /general/openvpn/patches/002-add-wolfssl-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openvpn/patches/002-add-wolfssl-support.patch -------------------------------------------------------------------------------- /general/openvpn/patches/220-disable_des.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openvpn/patches/220-disable_des.patch -------------------------------------------------------------------------------- /general/openvpn/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openvpn/test.sh -------------------------------------------------------------------------------- /general/openwrt_banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/openwrt_banner -------------------------------------------------------------------------------- /general/pcre2/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/pcre2/Config.in -------------------------------------------------------------------------------- /general/pcre2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/pcre2/Makefile -------------------------------------------------------------------------------- /general/perl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/Config.in -------------------------------------------------------------------------------- /general/perl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/Makefile -------------------------------------------------------------------------------- /general/perl/README.patches: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/README.patches -------------------------------------------------------------------------------- /general/perl/files/README.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/README.config -------------------------------------------------------------------------------- /general/perl/files/aarch64.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/aarch64.config -------------------------------------------------------------------------------- /general/perl/files/architecture.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/architecture.config -------------------------------------------------------------------------------- /general/perl/files/arm.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/arm.config -------------------------------------------------------------------------------- /general/perl/files/armeb.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/armeb.config -------------------------------------------------------------------------------- /general/perl/files/base.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/base.config -------------------------------------------------------------------------------- /general/perl/files/i486.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/i486.config -------------------------------------------------------------------------------- /general/perl/files/libc.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/libc.config -------------------------------------------------------------------------------- /general/perl/files/mips.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/mips.config -------------------------------------------------------------------------------- /general/perl/files/mips64.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/mips64.config -------------------------------------------------------------------------------- /general/perl/files/mips64el.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/mips64el.config -------------------------------------------------------------------------------- /general/perl/files/mipsel.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/mipsel.config -------------------------------------------------------------------------------- /general/perl/files/misc.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/misc.config -------------------------------------------------------------------------------- /general/perl/files/perl-run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/perl-run_tests.sh -------------------------------------------------------------------------------- /general/perl/files/perlconfig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/perlconfig.pl -------------------------------------------------------------------------------- /general/perl/files/powerpc.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/powerpc.config -------------------------------------------------------------------------------- /general/perl/files/powerpc64.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/powerpc64.config -------------------------------------------------------------------------------- /general/perl/files/riscv64.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/riscv64.config -------------------------------------------------------------------------------- /general/perl/files/signal.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/signal.config -------------------------------------------------------------------------------- /general/perl/files/threads.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/threads.config -------------------------------------------------------------------------------- /general/perl/files/version.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/version.config -------------------------------------------------------------------------------- /general/perl/files/x86_64.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/files/x86_64.config -------------------------------------------------------------------------------- /general/perl/patches/010-musl-compat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/patches/010-musl-compat.patch -------------------------------------------------------------------------------- /general/perl/patches/110-always_use_miniperl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/patches/110-always_use_miniperl.patch -------------------------------------------------------------------------------- /general/perl/patches/120-remove-build-timestamp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/patches/120-remove-build-timestamp.patch -------------------------------------------------------------------------------- /general/perl/patches/300-add-relink-hack.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/patches/300-add-relink-hack.patch -------------------------------------------------------------------------------- /general/perl/patches/320-copy-pod-hack.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/patches/320-copy-pod-hack.patch -------------------------------------------------------------------------------- /general/perl/patches/900-use-rm-force.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/patches/900-use-rm-force.patch -------------------------------------------------------------------------------- /general/perl/patches/910-miniperl-needs-inc-dot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/patches/910-miniperl-needs-inc-dot.patch -------------------------------------------------------------------------------- /general/perl/patches/998-Errno_errno.h_path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/patches/998-Errno_errno.h_path.patch -------------------------------------------------------------------------------- /general/perl/perlbase.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/perlbase.mk -------------------------------------------------------------------------------- /general/perl/perlmod.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/perlmod.mk -------------------------------------------------------------------------------- /general/perl/perlver.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/perl/perlver.mk -------------------------------------------------------------------------------- /general/php8/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/php8/Makefile -------------------------------------------------------------------------------- /general/php8/files/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/php8/files/php.ini -------------------------------------------------------------------------------- /general/php8/files/php8-fastcgi.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/php8/files/php8-fastcgi.config -------------------------------------------------------------------------------- /general/php8/files/php8-fastcgi.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/php8/files/php8-fastcgi.init -------------------------------------------------------------------------------- /general/php8/files/php8-fpm-www.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/php8/files/php8-fpm-www.conf -------------------------------------------------------------------------------- /general/php8/files/php8-fpm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/php8/files/php8-fpm.conf -------------------------------------------------------------------------------- /general/php8/files/php8-fpm.config: -------------------------------------------------------------------------------- 1 | config php8-fpm 2 | option enabled 1 3 | -------------------------------------------------------------------------------- /general/php8/files/php8-fpm.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/php8/files/php8-fpm.init -------------------------------------------------------------------------------- /general/php8/patches/0022-Use-system-timezone.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/php8/patches/0022-Use-system-timezone.patch -------------------------------------------------------------------------------- /general/php8/patches/0025-php-5.4.9-fixheader.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/php8/patches/0025-php-5.4.9-fixheader.patch -------------------------------------------------------------------------------- /general/php8/patches/1004-disable-phar-command.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/php8/patches/1004-disable-phar-command.patch -------------------------------------------------------------------------------- /general/php8/pecl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/php8/pecl.mk -------------------------------------------------------------------------------- /general/php8/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/php8/test.sh -------------------------------------------------------------------------------- /general/python-docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python-docker/Makefile -------------------------------------------------------------------------------- /general/python/2to3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/2to3/Makefile -------------------------------------------------------------------------------- /general/python/2to3/files/2to3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/2to3/files/2to3.py -------------------------------------------------------------------------------- /general/python/2to3/files/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/2to3/files/copyright -------------------------------------------------------------------------------- /general/python/Flask/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/Flask/Makefile -------------------------------------------------------------------------------- /general/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/README.md -------------------------------------------------------------------------------- /general/python/django-restframework/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/django-restframework/Makefile -------------------------------------------------------------------------------- /general/python/django/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/django/Makefile -------------------------------------------------------------------------------- /general/python/django/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/django/test.sh -------------------------------------------------------------------------------- /general/python/flup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/flup/Makefile -------------------------------------------------------------------------------- /general/python/itsdangerous/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/itsdangerous/Makefile -------------------------------------------------------------------------------- /general/python/micropython-lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/micropython-lib/Makefile -------------------------------------------------------------------------------- /general/python/micropython-lib/files/micropython-unix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/micropython-lib/files/micropython-unix -------------------------------------------------------------------------------- /general/python/micropython-lib/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/micropython-lib/install.py -------------------------------------------------------------------------------- /general/python/micropython/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/micropython/Makefile -------------------------------------------------------------------------------- /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/fichenx/Actions-OpenWrt/HEAD/general/python/micropython/test.sh -------------------------------------------------------------------------------- /general/python/numpy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/numpy/Makefile -------------------------------------------------------------------------------- /general/python/numpy/files/openwrt-cross.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/numpy/files/openwrt-cross.txt.in -------------------------------------------------------------------------------- /general/python/numpy/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/numpy/test.sh -------------------------------------------------------------------------------- /general/python/openpyxl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/openpyxl/Makefile -------------------------------------------------------------------------------- /general/python/pillow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/pillow/Makefile -------------------------------------------------------------------------------- /general/python/pillow/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/pillow/test.sh -------------------------------------------------------------------------------- /general/python/pipx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/pipx/Makefile -------------------------------------------------------------------------------- /general/python/pipx/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/pipx/test.sh -------------------------------------------------------------------------------- /general/python/pymysql/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/pymysql/Makefile -------------------------------------------------------------------------------- /general/python/pypi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/pypi.mk -------------------------------------------------------------------------------- /general/python/pyproject-metadata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/pyproject-metadata/Makefile -------------------------------------------------------------------------------- /general/python/python-aio-mqtt-mod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-aio-mqtt-mod/Makefile -------------------------------------------------------------------------------- /general/python/python-aiohttp-cors/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-aiohttp-cors/Makefile -------------------------------------------------------------------------------- /general/python/python-aiohttp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-aiohttp/Makefile -------------------------------------------------------------------------------- /general/python/python-aiosignal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-aiosignal/Makefile -------------------------------------------------------------------------------- /general/python/python-apipkg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-apipkg/Makefile -------------------------------------------------------------------------------- /general/python/python-appdirs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-appdirs/Makefile -------------------------------------------------------------------------------- /general/python/python-argcomplete/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-argcomplete/Makefile -------------------------------------------------------------------------------- /general/python/python-argcomplete/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-argcomplete/test.sh -------------------------------------------------------------------------------- /general/python/python-asgiref/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-asgiref/Makefile -------------------------------------------------------------------------------- /general/python/python-astral/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-astral/Makefile -------------------------------------------------------------------------------- /general/python/python-async-generator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-async-generator/Makefile -------------------------------------------------------------------------------- /general/python/python-async-timeout/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-async-timeout/Makefile -------------------------------------------------------------------------------- /general/python/python-attrs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-attrs/Makefile -------------------------------------------------------------------------------- /general/python/python-augeas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-augeas/Makefile -------------------------------------------------------------------------------- /general/python/python-automat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-automat/Makefile -------------------------------------------------------------------------------- /general/python/python-awesomeversion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-awesomeversion/Makefile -------------------------------------------------------------------------------- /general/python/python-awscli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-awscli/Makefile -------------------------------------------------------------------------------- /general/python/python-babel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-babel/Makefile -------------------------------------------------------------------------------- /general/python/python-bcrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-bcrypt/Makefile -------------------------------------------------------------------------------- /general/python/python-bcrypt/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-bcrypt/test.sh -------------------------------------------------------------------------------- /general/python/python-bidict/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-bidict/Makefile -------------------------------------------------------------------------------- /general/python/python-ble2mqtt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-ble2mqtt/Makefile -------------------------------------------------------------------------------- /general/python/python-ble2mqtt/files/ble2mqtt.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-ble2mqtt/files/ble2mqtt.init -------------------------------------------------------------------------------- /general/python/python-bleak/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-bleak/Makefile -------------------------------------------------------------------------------- /general/python/python-boto3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-boto3/Makefile -------------------------------------------------------------------------------- /general/python/python-botocore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-botocore/Makefile -------------------------------------------------------------------------------- /general/python/python-build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-build/Makefile -------------------------------------------------------------------------------- /general/python/python-cached-property/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-cached-property/Makefile -------------------------------------------------------------------------------- /general/python/python-cachelib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-cachelib/Makefile -------------------------------------------------------------------------------- /general/python/python-cachetools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-cachetools/Makefile -------------------------------------------------------------------------------- /general/python/python-calver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-calver/Makefile -------------------------------------------------------------------------------- /general/python/python-certifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-certifi/Makefile -------------------------------------------------------------------------------- /general/python/python-certifi/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-certifi/test.sh -------------------------------------------------------------------------------- /general/python/python-cffi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-cffi/Makefile -------------------------------------------------------------------------------- /general/python/python-cffi/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-cffi/test.sh -------------------------------------------------------------------------------- /general/python/python-chardet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-chardet/Makefile -------------------------------------------------------------------------------- /general/python/python-charset-normalizer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-charset-normalizer/Makefile -------------------------------------------------------------------------------- /general/python/python-charset-normalizer/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-charset-normalizer/test.sh -------------------------------------------------------------------------------- /general/python/python-ciso8601/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-ciso8601/Makefile -------------------------------------------------------------------------------- /general/python/python-click-log/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-click-log/Makefile -------------------------------------------------------------------------------- /general/python/python-click/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-click/Makefile -------------------------------------------------------------------------------- /general/python/python-colorama/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-colorama/Makefile -------------------------------------------------------------------------------- /general/python/python-constantly/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-constantly/Makefile -------------------------------------------------------------------------------- /general/python/python-constantly/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-constantly/test.sh -------------------------------------------------------------------------------- /general/python/python-contextlib2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-contextlib2/Makefile -------------------------------------------------------------------------------- /general/python/python-crcmod/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-crcmod/Makefile -------------------------------------------------------------------------------- /general/python/python-cryptodome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-cryptodome/Makefile -------------------------------------------------------------------------------- /general/python/python-cryptodomex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-cryptodomex/Makefile -------------------------------------------------------------------------------- /general/python/python-cryptography/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-cryptography/Makefile -------------------------------------------------------------------------------- /general/python/python-cryptography/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-cryptography/test.sh -------------------------------------------------------------------------------- /general/python/python-curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-curl/Makefile -------------------------------------------------------------------------------- /general/python/python-cython/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-cython/Makefile -------------------------------------------------------------------------------- /general/python/python-dateutil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-dateutil/Makefile -------------------------------------------------------------------------------- /general/python/python-dbus-fast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-dbus-fast/Makefile -------------------------------------------------------------------------------- /general/python/python-decorator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-decorator/Makefile -------------------------------------------------------------------------------- /general/python/python-defusedxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-defusedxml/Makefile -------------------------------------------------------------------------------- /general/python/python-distro/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-distro/Makefile -------------------------------------------------------------------------------- /general/python/python-dns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-dns/Makefile -------------------------------------------------------------------------------- /general/python/python-docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-docker/Makefile -------------------------------------------------------------------------------- /general/python/python-dockerpty/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-dockerpty/Makefile -------------------------------------------------------------------------------- /general/python/python-docopt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-docopt/Makefile -------------------------------------------------------------------------------- /general/python/python-docutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-docutils/Makefile -------------------------------------------------------------------------------- /general/python/python-dotenv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-dotenv/Makefile -------------------------------------------------------------------------------- /general/python/python-editables/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-editables/Makefile -------------------------------------------------------------------------------- /general/python/python-engineio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-engineio/Makefile -------------------------------------------------------------------------------- /general/python/python-et_xmlfile/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-et_xmlfile/Makefile -------------------------------------------------------------------------------- /general/python/python-et_xmlfile/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-et_xmlfile/test.sh -------------------------------------------------------------------------------- /general/python/python-evdev/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-evdev/Makefile -------------------------------------------------------------------------------- /general/python/python-eventlet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-eventlet/Makefile -------------------------------------------------------------------------------- /general/python/python-execnet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-execnet/Makefile -------------------------------------------------------------------------------- /general/python/python-flask-babel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-flask-babel/Makefile -------------------------------------------------------------------------------- /general/python/python-flask-httpauth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-flask-httpauth/Makefile -------------------------------------------------------------------------------- /general/python/python-flask-login/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-flask-login/Makefile -------------------------------------------------------------------------------- /general/python/python-flask-seasurf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-flask-seasurf/Makefile -------------------------------------------------------------------------------- /general/python/python-flask-session/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-flask-session/Makefile -------------------------------------------------------------------------------- /general/python/python-flask-socketio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-flask-socketio/Makefile -------------------------------------------------------------------------------- /general/python/python-flit-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-flit-core/Makefile -------------------------------------------------------------------------------- /general/python/python-flit-scm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-flit-scm/Makefile -------------------------------------------------------------------------------- /general/python/python-fnv-hash-fast/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-fnv-hash-fast/Makefile -------------------------------------------------------------------------------- /general/python/python-fnvhash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-fnvhash/Makefile -------------------------------------------------------------------------------- /general/python/python-frozenlist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-frozenlist/Makefile -------------------------------------------------------------------------------- /general/python/python-gevent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-gevent/Makefile -------------------------------------------------------------------------------- /general/python/python-gmpy2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-gmpy2/Makefile -------------------------------------------------------------------------------- /general/python/python-gnupg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-gnupg/Makefile -------------------------------------------------------------------------------- /general/python/python-greenlet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-greenlet/Makefile -------------------------------------------------------------------------------- /general/python/python-hatch-fancy-pypi-readme/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-hatch-fancy-pypi-readme/Makefile -------------------------------------------------------------------------------- /general/python/python-hatch-requirements-txt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-hatch-requirements-txt/Makefile -------------------------------------------------------------------------------- /general/python/python-hatch-vcs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-hatch-vcs/Makefile -------------------------------------------------------------------------------- /general/python/python-hatchling/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-hatchling/Makefile -------------------------------------------------------------------------------- /general/python/python-hyperlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-hyperlink/Makefile -------------------------------------------------------------------------------- /general/python/python-idna/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-idna/Makefile -------------------------------------------------------------------------------- /general/python/python-idna/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-idna/test.sh -------------------------------------------------------------------------------- /general/python/python-ifaddr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-ifaddr/Makefile -------------------------------------------------------------------------------- /general/python/python-incremental/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-incremental/Makefile -------------------------------------------------------------------------------- /general/python/python-influxdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-influxdb/Makefile -------------------------------------------------------------------------------- /general/python/python-iniconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-iniconfig/Makefile -------------------------------------------------------------------------------- /general/python/python-installer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-installer/Makefile -------------------------------------------------------------------------------- /general/python/python-intelhex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-intelhex/Makefile -------------------------------------------------------------------------------- /general/python/python-jdcal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-jdcal/Makefile -------------------------------------------------------------------------------- /general/python/python-jinja2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-jinja2/Makefile -------------------------------------------------------------------------------- /general/python/python-jmespath/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-jmespath/Makefile -------------------------------------------------------------------------------- /general/python/python-jsonpath-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-jsonpath-ng/Makefile -------------------------------------------------------------------------------- /general/python/python-jsonschema/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-jsonschema/Makefile -------------------------------------------------------------------------------- /general/python/python-jsonschema/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-jsonschema/test.sh -------------------------------------------------------------------------------- /general/python/python-libmodbus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-libmodbus/Makefile -------------------------------------------------------------------------------- /general/python/python-lru-dict/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-lru-dict/Makefile -------------------------------------------------------------------------------- /general/python/python-lxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-lxml/Makefile -------------------------------------------------------------------------------- /general/python/python-lxml/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-lxml/test.sh -------------------------------------------------------------------------------- /general/python/python-mako/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-mako/Makefile -------------------------------------------------------------------------------- /general/python/python-markdown/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-markdown/Makefile -------------------------------------------------------------------------------- /general/python/python-markupsafe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-markupsafe/Makefile -------------------------------------------------------------------------------- /general/python/python-maturin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-maturin/Makefile -------------------------------------------------------------------------------- /general/python/python-maxminddb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-maxminddb/Makefile -------------------------------------------------------------------------------- /general/python/python-more-itertools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-more-itertools/Makefile -------------------------------------------------------------------------------- /general/python/python-msgpack/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-msgpack/Makefile -------------------------------------------------------------------------------- /general/python/python-multidict/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-multidict/Makefile -------------------------------------------------------------------------------- /general/python/python-netdisco/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-netdisco/Makefile -------------------------------------------------------------------------------- /general/python/python-networkx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-networkx/Makefile -------------------------------------------------------------------------------- /general/python/python-orjson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-orjson/Makefile -------------------------------------------------------------------------------- /general/python/python-outcome/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-outcome/Makefile -------------------------------------------------------------------------------- /general/python/python-package-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-package-install.sh -------------------------------------------------------------------------------- /general/python/python-packaging/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-packaging/Makefile -------------------------------------------------------------------------------- /general/python/python-packaging/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-packaging/test.sh -------------------------------------------------------------------------------- /general/python/python-paho-mqtt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-paho-mqtt/Makefile -------------------------------------------------------------------------------- /general/python/python-paramiko/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-paramiko/Makefile -------------------------------------------------------------------------------- /general/python/python-parsley/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-parsley/Makefile -------------------------------------------------------------------------------- /general/python/python-passlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-passlib/Makefile -------------------------------------------------------------------------------- /general/python/python-pathspec/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pathspec/Makefile -------------------------------------------------------------------------------- /general/python/python-pip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pip/Makefile -------------------------------------------------------------------------------- /general/python/python-pip/files/pip.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pip/files/pip.conf -------------------------------------------------------------------------------- /general/python/python-pip/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pip/test.sh -------------------------------------------------------------------------------- /general/python/python-pkgconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pkgconfig/Makefile -------------------------------------------------------------------------------- /general/python/python-platformdirs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-platformdirs/Makefile -------------------------------------------------------------------------------- /general/python/python-platformdirs/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-platformdirs/test.sh -------------------------------------------------------------------------------- /general/python/python-platformio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-platformio/Makefile -------------------------------------------------------------------------------- /general/python/python-pluggy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pluggy/Makefile -------------------------------------------------------------------------------- /general/python/python-ply/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-ply/Makefile -------------------------------------------------------------------------------- /general/python/python-poetry-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-poetry-core/Makefile -------------------------------------------------------------------------------- /general/python/python-psutil/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-psutil/Makefile -------------------------------------------------------------------------------- /general/python/python-psycopg2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-psycopg2/Makefile -------------------------------------------------------------------------------- /general/python/python-py/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-py/Makefile -------------------------------------------------------------------------------- /general/python/python-pyasn1-modules/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pyasn1-modules/Makefile -------------------------------------------------------------------------------- /general/python/python-pyasn1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pyasn1/Makefile -------------------------------------------------------------------------------- /general/python/python-pyasn1/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pyasn1/test.sh -------------------------------------------------------------------------------- /general/python/python-pycares/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pycares/Makefile -------------------------------------------------------------------------------- /general/python/python-pycparser/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pycparser/Makefile -------------------------------------------------------------------------------- /general/python/python-pycrate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pycrate/Makefile -------------------------------------------------------------------------------- /general/python/python-pyelftools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pyelftools/Makefile -------------------------------------------------------------------------------- /general/python/python-pyfuse3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pyfuse3/Makefile -------------------------------------------------------------------------------- /general/python/python-pynacl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pynacl/Makefile -------------------------------------------------------------------------------- /general/python/python-pyodbc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pyodbc/Makefile -------------------------------------------------------------------------------- /general/python/python-pyodbc/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pyodbc/test.sh -------------------------------------------------------------------------------- /general/python/python-pyopenssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pyopenssl/Makefile -------------------------------------------------------------------------------- /general/python/python-pyopenssl/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pyopenssl/test.sh -------------------------------------------------------------------------------- /general/python/python-pyotp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pyotp/Makefile -------------------------------------------------------------------------------- /general/python/python-pyparsing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pyparsing/Makefile -------------------------------------------------------------------------------- /general/python/python-pyproject-hooks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pyproject-hooks/Makefile -------------------------------------------------------------------------------- /general/python/python-pypubsub/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pypubsub/Makefile -------------------------------------------------------------------------------- /general/python/python-pyroute2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pyroute2/Makefile -------------------------------------------------------------------------------- /general/python/python-pyrsistent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pyrsistent/Makefile -------------------------------------------------------------------------------- /general/python/python-pyserial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pyserial/Makefile -------------------------------------------------------------------------------- /general/python/python-pysocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pysocks/Makefile -------------------------------------------------------------------------------- /general/python/python-pytest-forked/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pytest-forked/Makefile -------------------------------------------------------------------------------- /general/python/python-pytest-xdist/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pytest-xdist/Makefile -------------------------------------------------------------------------------- /general/python/python-pytest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pytest/Makefile -------------------------------------------------------------------------------- /general/python/python-pytz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-pytz/Makefile -------------------------------------------------------------------------------- /general/python/python-referencing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-referencing/Makefile -------------------------------------------------------------------------------- /general/python/python-referencing/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-referencing/test.sh -------------------------------------------------------------------------------- /general/python/python-requests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-requests/Makefile -------------------------------------------------------------------------------- /general/python/python-rpds-py/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-rpds-py/Makefile -------------------------------------------------------------------------------- /general/python/python-rpds-py/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-rpds-py/test.sh -------------------------------------------------------------------------------- /general/python/python-rsa/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-rsa/Makefile -------------------------------------------------------------------------------- /general/python/python-ruamel-yaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-ruamel-yaml/Makefile -------------------------------------------------------------------------------- /general/python/python-s3transfer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-s3transfer/Makefile -------------------------------------------------------------------------------- /general/python/python-schedule/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-schedule/Makefile -------------------------------------------------------------------------------- /general/python/python-schema/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-schema/Makefile -------------------------------------------------------------------------------- /general/python/python-selinux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-selinux/Makefile -------------------------------------------------------------------------------- /general/python/python-semanage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-semanage/Makefile -------------------------------------------------------------------------------- /general/python/python-semantic-version/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-semantic-version/Makefile -------------------------------------------------------------------------------- /general/python/python-sentry-sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-sentry-sdk/Makefile -------------------------------------------------------------------------------- /general/python/python-service-identity/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-service-identity/Makefile -------------------------------------------------------------------------------- /general/python/python-setuptools-rust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-setuptools-rust/Makefile -------------------------------------------------------------------------------- /general/python/python-setuptools-scm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-setuptools-scm/Makefile -------------------------------------------------------------------------------- /general/python/python-setuptools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-setuptools/Makefile -------------------------------------------------------------------------------- /general/python/python-setuptools/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-setuptools/test.sh -------------------------------------------------------------------------------- /general/python/python-six/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-six/Makefile -------------------------------------------------------------------------------- /general/python/python-slugify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-slugify/Makefile -------------------------------------------------------------------------------- /general/python/python-sniffio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-sniffio/Makefile -------------------------------------------------------------------------------- /general/python/python-socketio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-socketio/Makefile -------------------------------------------------------------------------------- /general/python/python-sortedcontainers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-sortedcontainers/Makefile -------------------------------------------------------------------------------- /general/python/python-sqlalchemy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-sqlalchemy/Makefile -------------------------------------------------------------------------------- /general/python/python-sqlparse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-sqlparse/Makefile -------------------------------------------------------------------------------- /general/python/python-stem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-stem/Makefile -------------------------------------------------------------------------------- /general/python/python-tabulate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-tabulate/Makefile -------------------------------------------------------------------------------- /general/python/python-texttable/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-texttable/Makefile -------------------------------------------------------------------------------- /general/python/python-toml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-toml/Makefile -------------------------------------------------------------------------------- /general/python/python-tornado/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-tornado/Makefile -------------------------------------------------------------------------------- /general/python/python-trio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-trio/Makefile -------------------------------------------------------------------------------- /general/python/python-trove-classifiers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-trove-classifiers/Makefile -------------------------------------------------------------------------------- /general/python/python-twisted/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-twisted/Makefile -------------------------------------------------------------------------------- /general/python/python-twisted/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-twisted/test.sh -------------------------------------------------------------------------------- /general/python/python-typing-extensions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-typing-extensions/Makefile -------------------------------------------------------------------------------- /general/python/python-typing-extensions/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-typing-extensions/test.sh -------------------------------------------------------------------------------- /general/python/python-ubus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-ubus/Makefile -------------------------------------------------------------------------------- /general/python/python-uci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-uci/Makefile -------------------------------------------------------------------------------- /general/python/python-unidecode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-unidecode/Makefile -------------------------------------------------------------------------------- /general/python/python-urllib3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-urllib3/Makefile -------------------------------------------------------------------------------- /general/python/python-userpath/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-userpath/Makefile -------------------------------------------------------------------------------- /general/python/python-userpath/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-userpath/test.sh -------------------------------------------------------------------------------- /general/python/python-versioneer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-versioneer/Makefile -------------------------------------------------------------------------------- /general/python/python-voluptuous-serialize/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-voluptuous-serialize/Makefile -------------------------------------------------------------------------------- /general/python/python-voluptuous/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-voluptuous/Makefile -------------------------------------------------------------------------------- /general/python/python-wcwidth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-wcwidth/Makefile -------------------------------------------------------------------------------- /general/python/python-websocket-client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-websocket-client/Makefile -------------------------------------------------------------------------------- /general/python/python-websockets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-websockets/Makefile -------------------------------------------------------------------------------- /general/python/python-werkzeug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-werkzeug/Makefile -------------------------------------------------------------------------------- /general/python/python-wheel/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-wheel/Makefile -------------------------------------------------------------------------------- /general/python/python-xmltodict/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-xmltodict/Makefile -------------------------------------------------------------------------------- /general/python/python-yaml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-yaml/Makefile -------------------------------------------------------------------------------- /general/python/python-yaml/patches/001-cython3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-yaml/patches/001-cython3.patch -------------------------------------------------------------------------------- /general/python/python-yarl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-yarl/Makefile -------------------------------------------------------------------------------- /general/python/python-zeroconf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-zeroconf/Makefile -------------------------------------------------------------------------------- /general/python/python-zipp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-zipp/Makefile -------------------------------------------------------------------------------- /general/python/python-zope-event/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-zope-event/Makefile -------------------------------------------------------------------------------- /general/python/python-zope-interface/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-zope-interface/Makefile -------------------------------------------------------------------------------- /general/python/python-zope-interface/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python-zope-interface/test.sh -------------------------------------------------------------------------------- /general/python/python3-bottle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3-bottle/Makefile -------------------------------------------------------------------------------- /general/python/python3-django-cors-headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3-django-cors-headers/Makefile -------------------------------------------------------------------------------- /general/python/python3-drf-nested-routers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3-drf-nested-routers/Makefile -------------------------------------------------------------------------------- /general/python/python3-find-stdlib-depends.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3-find-stdlib-depends.sh -------------------------------------------------------------------------------- /general/python/python3-host-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3-host-build.mk -------------------------------------------------------------------------------- /general/python/python3-host.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3-host.mk -------------------------------------------------------------------------------- /general/python/python3-iperf3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3-iperf3/Makefile -------------------------------------------------------------------------------- /general/python/python3-package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3-package.mk -------------------------------------------------------------------------------- /general/python/python3-packages/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3-packages/Makefile -------------------------------------------------------------------------------- /general/python/python3-packages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3-packages/README.md -------------------------------------------------------------------------------- /general/python/python3-pyinotify/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3-pyinotify/Makefile -------------------------------------------------------------------------------- /general/python/python3-speedtest-cli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3-speedtest-cli/Makefile -------------------------------------------------------------------------------- /general/python/python3-version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3-version.mk -------------------------------------------------------------------------------- /general/python/python3/Config-python3-light.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3/Config-python3-light.in -------------------------------------------------------------------------------- /general/python/python3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3/Makefile -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-cgi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3/files/python3-package-cgi.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-codecs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3/files/python3-package-codecs.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-ctypes.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3/files/python3-package-ctypes.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-dbm.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3/files/python3-package-dbm.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-dev.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3/files/python3-package-dev.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-email.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3/files/python3-package-email.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-lzma.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3/files/python3-package-lzma.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-pydoc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3/files/python3-package-pydoc.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-urllib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3/files/python3-package-urllib.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-uuid.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3/files/python3-package-uuid.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-venv.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3/files/python3-package-venv.mk -------------------------------------------------------------------------------- /general/python/python3/files/python3-package-xml.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3/files/python3-package-xml.mk -------------------------------------------------------------------------------- /general/python/python3/patches/010-no-ncursesw.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3/patches/010-no-ncursesw.patch -------------------------------------------------------------------------------- /general/python/python3/patches/020-uuid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3/patches/020-uuid.patch -------------------------------------------------------------------------------- /general/python/python3/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/python3/test.sh -------------------------------------------------------------------------------- /general/python/text-unidecode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/text-unidecode/Makefile -------------------------------------------------------------------------------- /general/python/vobject/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/python/vobject/Makefile -------------------------------------------------------------------------------- /general/qBittorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/qBittorrent/Makefile -------------------------------------------------------------------------------- /general/qBittorrent/Makefile.qt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/qBittorrent/Makefile.qt6 -------------------------------------------------------------------------------- /general/qtbase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/qtbase/Makefile -------------------------------------------------------------------------------- /general/qtbase/patches/010-marco.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/qtbase/patches/010-marco.patch -------------------------------------------------------------------------------- /general/qttools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/qttools/Makefile -------------------------------------------------------------------------------- /general/qttools/patches/010-no-clang.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/qttools/patches/010-no-clang.patch -------------------------------------------------------------------------------- /general/rblibtorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/rblibtorrent/Makefile -------------------------------------------------------------------------------- /general/shadowsocks-rust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/shadowsocks-rust/Makefile -------------------------------------------------------------------------------- /general/shairport-sync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/shairport-sync/Makefile -------------------------------------------------------------------------------- /general/shairport-sync/files/shairport-sync.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/shairport-sync/files/shairport-sync.config -------------------------------------------------------------------------------- /general/shairport-sync/files/shairport-sync.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/shairport-sync/files/shairport-sync.init -------------------------------------------------------------------------------- /general/shairport-sync/patches/010-no-cxx.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/shairport-sync/patches/010-no-cxx.patch -------------------------------------------------------------------------------- /general/sing-box/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/sing-box/Makefile -------------------------------------------------------------------------------- /general/sing-box/files/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/sing-box/files/config.json.example -------------------------------------------------------------------------------- /general/sing-box/files/sing-box.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/sing-box/files/sing-box.init -------------------------------------------------------------------------------- /general/sing-box/patches/900-openwrt-branding.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/sing-box/patches/900-openwrt-branding.patch -------------------------------------------------------------------------------- /general/smartdns/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/smartdns/Makefile -------------------------------------------------------------------------------- /general/sqlite3/Config-cli.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/sqlite3/Config-cli.in -------------------------------------------------------------------------------- /general/sqlite3/Config-lib.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/sqlite3/Config-lib.in -------------------------------------------------------------------------------- /general/sqlite3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/sqlite3/Makefile -------------------------------------------------------------------------------- /general/sqlite3/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/sqlite3/test.sh -------------------------------------------------------------------------------- /general/tailscale/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/tailscale/Makefile -------------------------------------------------------------------------------- /general/tailscale/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/tailscale/README.md -------------------------------------------------------------------------------- /general/tailscale/files/tailscale.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/tailscale/files/tailscale.conf -------------------------------------------------------------------------------- /general/tailscale/files/tailscale.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/tailscale/files/tailscale.init -------------------------------------------------------------------------------- /general/tailscale/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/tailscale/test.sh -------------------------------------------------------------------------------- /general/tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/tools/Makefile -------------------------------------------------------------------------------- /general/ttyd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/ttyd/Makefile -------------------------------------------------------------------------------- /general/ttyd/files/ttyd.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/ttyd/files/ttyd.config -------------------------------------------------------------------------------- /general/ttyd/files/ttyd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/ttyd/files/ttyd.init -------------------------------------------------------------------------------- /general/ttyd/patches/100-log-to-syslog.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/ttyd/patches/100-log-to-syslog.patch -------------------------------------------------------------------------------- /general/ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/ucode/Makefile -------------------------------------------------------------------------------- /general/ucode/patches/120-fs-add-dup2-function.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/ucode/patches/120-fs-add-dup2-function.patch -------------------------------------------------------------------------------- /general/unrar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/unrar/Makefile -------------------------------------------------------------------------------- /general/unrar/Makefile.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/unrar/Makefile.orig -------------------------------------------------------------------------------- /general/unrar/patches.orig/100-makefile_fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/unrar/patches.orig/100-makefile_fixes.patch -------------------------------------------------------------------------------- /general/unrar/patches.orig/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/unrar/patches.orig/makefile -------------------------------------------------------------------------------- /general/unrar/patches.orig/makefile.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/unrar/patches.orig/makefile.orig -------------------------------------------------------------------------------- /general/unrar/patches.orig/rar.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/unrar/patches.orig/rar.patch -------------------------------------------------------------------------------- /general/unrar/patches/100-makefile_fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/unrar/patches/100-makefile_fixes.patch -------------------------------------------------------------------------------- /general/usb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/usb.mk -------------------------------------------------------------------------------- /general/util-linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/util-linux/Makefile -------------------------------------------------------------------------------- /general/uugamebooster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/uugamebooster/Makefile -------------------------------------------------------------------------------- /general/uugamebooster/files/uugamebooster-update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/uugamebooster/files/uugamebooster-update -------------------------------------------------------------------------------- /general/verysync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/verysync -------------------------------------------------------------------------------- /general/vim/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/vim/Makefile -------------------------------------------------------------------------------- /general/vim/files/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/vim/files/vimrc -------------------------------------------------------------------------------- /general/vim/files/vimrc.full: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/vim/files/vimrc.full -------------------------------------------------------------------------------- /general/vim/patches/010-no-msgfmt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-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/fichenx/Actions-OpenWrt/HEAD/general/vim/test.sh -------------------------------------------------------------------------------- /general/wget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/wget/Makefile -------------------------------------------------------------------------------- /general/wolfssl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/wolfssl/Config.in -------------------------------------------------------------------------------- /general/wolfssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/wolfssl/Makefile -------------------------------------------------------------------------------- /general/wolfssl/patches/200-ecc-rng.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/wolfssl/patches/200-ecc-rng.patch -------------------------------------------------------------------------------- /general/wxbase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/wxbase/Makefile -------------------------------------------------------------------------------- /general/xfsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/xfsprogs/Makefile -------------------------------------------------------------------------------- /general/xfsprogs/patches/110-subdirs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/xfsprogs/patches/110-subdirs.patch -------------------------------------------------------------------------------- /general/xfsprogs/patches/140-mman.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/xfsprogs/patches/140-mman.patch -------------------------------------------------------------------------------- /general/xray-core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/xray-core/Makefile -------------------------------------------------------------------------------- /general/xray-core/files/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/xray-core/files/config.json.example -------------------------------------------------------------------------------- /general/xray-core/files/vpoint_socks_vmess.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/xray-core/files/vpoint_socks_vmess.json -------------------------------------------------------------------------------- /general/xray-core/files/vpoint_vmess_freedom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/xray-core/files/vpoint_vmess_freedom.json -------------------------------------------------------------------------------- /general/xray-core/files/xray.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/xray-core/files/xray.conf -------------------------------------------------------------------------------- /general/xray-core/files/xray.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/xray-core/files/xray.init -------------------------------------------------------------------------------- /general/xray-plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/xray-plugin/Makefile -------------------------------------------------------------------------------- /general/xtables-addons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/xtables-addons/Makefile -------------------------------------------------------------------------------- /general/zerotier/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/zerotier/Config.in -------------------------------------------------------------------------------- /general/zerotier/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/zerotier/Makefile -------------------------------------------------------------------------------- /general/zerotier/files/etc/config/zerotier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/zerotier/files/etc/config/zerotier -------------------------------------------------------------------------------- /general/zerotier/files/etc/init.d/zerotier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/zerotier/files/etc/init.d/zerotier -------------------------------------------------------------------------------- /general/zerotier/patches/0002-remove-PIE-options.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/zerotier/patches/0002-remove-PIE-options.patch -------------------------------------------------------------------------------- /general/zerotier/patches/0005-remove-noexecstack.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/zerotier/patches/0005-remove-noexecstack.patch -------------------------------------------------------------------------------- /general/zh_Hans.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/zh_Hans.sh -------------------------------------------------------------------------------- /general/zoneinfo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/zoneinfo/Makefile -------------------------------------------------------------------------------- /general/zzz-default-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/general/zzz-default-settings -------------------------------------------------------------------------------- /patches/100-smartdns-optimize.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/patches/100-smartdns-optimize.patch -------------------------------------------------------------------------------- /patches/990_set_argon_primary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/patches/990_set_argon_primary -------------------------------------------------------------------------------- /patches/991_custom_settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/patches/991_custom_settings -------------------------------------------------------------------------------- /patches/992_set-wifi-uci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/patches/992_set-wifi-uci.sh -------------------------------------------------------------------------------- /patches/999-chanage-default-leaseduration.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/patches/999-chanage-default-leaseduration.patch -------------------------------------------------------------------------------- /patches/cpuusage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/patches/cpuusage -------------------------------------------------------------------------------- /patches/hnatusage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/patches/hnatusage -------------------------------------------------------------------------------- /patches/lucky_2.19.5_Linux_arm64_wanji.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/patches/lucky_2.19.5_Linux_arm64_wanji.tar.gz -------------------------------------------------------------------------------- /patches/lucky_2.19.5_Linux_x86_64_wanji.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/patches/lucky_2.19.5_Linux_x86_64_wanji.tar.gz -------------------------------------------------------------------------------- /patches/nss_diag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/patches/nss_diag.sh -------------------------------------------------------------------------------- /patches/openssl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/patches/openssl/Config.in -------------------------------------------------------------------------------- /patches/openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/patches/openssl/Makefile -------------------------------------------------------------------------------- /patches/openssl/files/afalg.cnf: -------------------------------------------------------------------------------- 1 | [afalg_sect] 2 | default_algorithms = ALL 3 | 4 | -------------------------------------------------------------------------------- /patches/openssl/files/devcrypto.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/patches/openssl/files/devcrypto.cnf -------------------------------------------------------------------------------- /patches/openssl/files/legacy.cnf: -------------------------------------------------------------------------------- 1 | [legacy_sect] 2 | activate = 1 3 | 4 | -------------------------------------------------------------------------------- /patches/openssl/files/openssl.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/patches/openssl/files/openssl.init -------------------------------------------------------------------------------- /patches/openssl/files/padlock.cnf: -------------------------------------------------------------------------------- 1 | [padlock_sect] 2 | default_algorithms = ALL 3 | 4 | -------------------------------------------------------------------------------- /patches/openssl/patches/110-openwrt_targets.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/patches/openssl/patches/110-openwrt_targets.patch -------------------------------------------------------------------------------- /patches/openssl/patches/130-dont-build-fuzz-docs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/patches/openssl/patches/130-dont-build-fuzz-docs.patch -------------------------------------------------------------------------------- /patches/smp_affinity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/patches/smp_affinity -------------------------------------------------------------------------------- /patches/tempinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/patches/tempinfo -------------------------------------------------------------------------------- /sh/ARMv8_imm_diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/sh/ARMv8_imm_diy-part2.sh -------------------------------------------------------------------------------- /sh/ARMv8_lede_js_diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/sh/ARMv8_lede_js_diy-part2.sh -------------------------------------------------------------------------------- /sh/ARMv8_lede_lua_diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/sh/ARMv8_lede_lua_diy-part2.sh -------------------------------------------------------------------------------- /sh/Newifi-D2_imm_diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/sh/Newifi-D2_imm_diy-part2.sh -------------------------------------------------------------------------------- /sh/Newifi-D2_lede_js_diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/sh/Newifi-D2_lede_js_diy-part2.sh -------------------------------------------------------------------------------- /sh/Newifi-D2_lede_lua_diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/sh/Newifi-D2_lede_lua_diy-part2.sh -------------------------------------------------------------------------------- /sh/ax6_imm_diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/sh/ax6_imm_diy-part2.sh -------------------------------------------------------------------------------- /sh/breakings_diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/sh/breakings_diy-part2.sh -------------------------------------------------------------------------------- /sh/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/sh/build.sh -------------------------------------------------------------------------------- /sh/lede_diy-part1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/sh/lede_diy-part1.sh -------------------------------------------------------------------------------- /sh/old/AX6_js_diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/sh/old/AX6_js_diy-part2.sh -------------------------------------------------------------------------------- /sh/old/AX6_lua_diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/sh/old/AX6_lua_diy-part2.sh -------------------------------------------------------------------------------- /sh/old/ax6_imm_diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/sh/old/ax6_imm_diy-part2.sh -------------------------------------------------------------------------------- /sh/old/imm_diy-part1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/sh/old/imm_diy-part1.sh -------------------------------------------------------------------------------- /sh/old/mini_diy-part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/sh/old/mini_diy-part2.sh -------------------------------------------------------------------------------- /sh/pre_clone_action.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/sh/pre_clone_action.sh -------------------------------------------------------------------------------- /sh/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/sh/update.sh -------------------------------------------------------------------------------- /ubuntu2404-make-openwrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fichenx/Actions-OpenWrt/HEAD/ubuntu2404-make-openwrt --------------------------------------------------------------------------------