gitextract_7kdwm0il/ ├── .github/ │ └── workflows/ │ ├── Openwrt-AutoBuild.yml │ └── repo-dispatcher.yml ├── LICENSE ├── README.md └── devices/ ├── airoha_an7581/ │ ├── .config │ ├── diy/ │ │ └── target/ │ │ └── linux/ │ │ └── airoha/ │ │ └── dts/ │ │ └── an7581-xg-040g-md.dts │ ├── diy.sh │ └── patches/ │ └── xg-040g-md.patch ├── amlogic_meson/ │ ├── .config │ ├── diy.sh │ └── patches/ │ └── fix.patch ├── amlogic_meson8b/ │ ├── .config │ ├── diy.sh │ └── patches/ │ ├── BRCMFMAC_SDIO.patch │ └── onecloud.patch ├── armsr_armv8/ │ ├── .config │ ├── diy.sh │ └── patches/ │ └── rootfs.patch ├── ath79_nand/ │ ├── .config │ └── diy.sh ├── bcm27xx_bcm2708/ │ ├── .config │ └── diy.sh ├── bcm27xx_bcm2709/ │ ├── .config │ └── diy.sh ├── bcm27xx_bcm2710/ │ ├── .config │ ├── diy.sh │ └── patches/ │ └── Zero-2.patch ├── bcm27xx_bcm2711/ │ ├── .config │ └── diy.sh ├── bcm27xx_bcm2712/ │ ├── .config │ └── diy.sh ├── bcm53xx/ │ ├── .config │ └── diy.sh ├── common/ │ ├── .config │ ├── diy/ │ │ ├── feeds/ │ │ │ └── luci/ │ │ │ └── modules/ │ │ │ └── luci-base/ │ │ │ └── htdocs/ │ │ │ └── luci-static/ │ │ │ └── resources/ │ │ │ └── tools/ │ │ │ └── github.js │ │ └── package/ │ │ ├── base-files/ │ │ │ └── files/ │ │ │ └── etc/ │ │ │ └── banner │ │ ├── network/ │ │ │ └── config/ │ │ │ ├── firewall/ │ │ │ │ ├── files/ │ │ │ │ │ └── firewall.exwan │ │ │ │ └── patches/ │ │ │ │ └── fullconenat.patch │ │ │ └── firewall4/ │ │ │ ├── files/ │ │ │ │ ├── firewall.exwan │ │ │ │ └── firewall.include │ │ │ └── patches/ │ │ │ ├── 001-firewall4-add-support-for-fullcone-nat.patch │ │ │ ├── 100-fw4-support-script.patch │ │ │ └── 200-fw4-hotplug-fork.patch │ │ └── system/ │ │ └── opkg/ │ │ └── patches/ │ │ ├── 010-opkg-force-depends.patch │ │ ├── ignore_error.patch │ │ ├── pkg_hash.patch │ │ └── zh-cn.patch │ ├── diy.sh │ ├── patches/ │ │ ├── LINUX_VERSION.patch │ │ ├── autoreconf.patch │ │ ├── base-files.patch │ │ ├── china_mirrors.patch.b │ │ ├── cmake.patch │ │ ├── compressed-memory.patch.b │ │ ├── crontab.patch │ │ ├── curl.patch │ │ ├── default-packages.patch │ │ ├── disable-seccomp-ujail.patch │ │ ├── dnsmasq.patch │ │ ├── feeds.patch │ │ ├── firewall.patch │ │ ├── getcwd-fix.patch │ │ ├── imagebuilder.patch │ │ ├── kernel-defaults.patch │ │ ├── luci-base.patch │ │ ├── luci-dhcp.patch │ │ ├── luci-mod-system.patch │ │ ├── luci_mk.patch │ │ ├── netfilter.patch.b │ │ ├── netsupport.patch │ │ ├── nftables.patch │ │ ├── nginx-fancyindex.patch.bak │ │ ├── nonshared.patch │ │ ├── opkginstall.patch │ │ ├── package.patch │ │ ├── rootfs.patch │ │ ├── status.patch │ │ ├── use_json_object_new_int64.patch.b │ │ ├── wifi-scripts.patch │ │ └── wireless.patch │ └── settings.ini ├── ipq40xx_generic/ │ ├── .config │ ├── diy.sh │ └── patches/ │ ├── ap4220.patch │ ├── cm520.patch │ └── target.patch ├── ipq806x_generic/ │ ├── .config │ ├── diy.sh │ └── patches/ │ └── xiaomi_r3d.patch ├── mediatek_filogic/ │ ├── .config │ ├── diy/ │ │ └── target/ │ │ └── linux/ │ │ └── mediatek/ │ │ └── dts/ │ │ ├── mt7981b-aigo-ags21.dts │ │ ├── mt7981b-bt-r320.dts │ │ ├── mt7981b-cmcc-a10.dts │ │ ├── mt7981b-cmcc-mr3000d-ciq-256m.dts │ │ ├── mt7981b-cmcc-rax3000m-emmc.dts │ │ ├── mt7981b-cmcc-rax3000m-nand.dts │ │ ├── mt7981b-cmcc-xr30-emmc.dts │ │ ├── mt7981b-cmcc-xr30.dts │ │ ├── mt7981b-cmcc-xr30.dtsi │ │ ├── mt7981b-cudy-tr3000-mod.dts │ │ ├── mt7981b-ikuai-q3000.dts │ │ ├── mt7981b-konka-komi-a31.dts │ │ ├── mt7981b-newland-nl-wr8103.dts │ │ ├── mt7981b-nradio-c8-660.dts │ │ ├── mt7981b-nradio-c8-668gl.dts │ │ ├── mt7981b-philips-hy3000.dts │ │ ├── mt7981b-sl-3000-emmc.dts │ │ ├── mt7981b-sl-3000.dts │ │ ├── mt7981b-umi-uax3000e.dts │ │ ├── mt7981b-xiaomi-mi-router-wr30u.dts │ │ └── mt7987a-glinet-gl-mt3600be.dts │ ├── diy.sh │ └── patches/ │ ├── 01-360t7.patch │ ├── 02-ax6000.patch │ ├── 03-nx30.patch │ ├── 08-cmcc_rax3000m.patch │ ├── 09-jcg_q30-pro.patch │ ├── 12-asr3000.patch │ ├── 16-komi-a31.patch │ ├── 17-lc-hx3001.patch │ ├── 19-ct3003.patch │ ├── 20-ea0326gmp.patch │ ├── 22-netcore-n60-pro.patch │ ├── 22-netcore-n60.patch │ ├── 23-ax3000t.patch │ ├── 25-platform.patch │ ├── 26-ruijie-rg-x60-pro.patch │ ├── 99-bpi-r4-lite.patch.b │ ├── Winbond-NMBM-fix.patch │ ├── ags21.patch │ ├── ax6s.patch │ └── tr3000-mod.patch ├── mediatek_mt7622/ │ ├── .config │ └── diy.sh ├── mvebu_cortexa9/ │ ├── .config │ └── diy.sh ├── qualcommax_ipq50xx/ │ ├── .config │ ├── diy/ │ │ ├── package/ │ │ │ └── firmware/ │ │ │ └── ipq-wifi/ │ │ │ └── files/ │ │ │ ├── board-cmcc_pz-l8.ipq5018 │ │ │ └── board-cmcc_pz-l8.qcn6122 │ │ └── target/ │ │ └── linux/ │ │ └── qualcommax/ │ │ └── files/ │ │ └── arch/ │ │ └── arm64/ │ │ └── boot/ │ │ └── dts/ │ │ └── qcom/ │ │ └── ipq5018-re-cs-03.dts │ ├── diy.sh │ └── patches/ │ ├── ath11k-smallbuffers.patch │ ├── fix.patch │ └── pz-l8-enable-wifi.patch ├── qualcommax_ipq60xx/ │ ├── .config │ ├── diy.sh │ └── patches/ │ └── ax6600.patch ├── qualcommax_ipq807x/ │ ├── .config │ ├── diy/ │ │ └── target/ │ │ └── linux/ │ │ └── qualcommax/ │ │ ├── files/ │ │ │ └── arch/ │ │ │ └── arm64/ │ │ │ └── boot/ │ │ │ └── dts/ │ │ │ └── qcom/ │ │ │ ├── ipq8071-ax3600.dts │ │ │ ├── ipq8071-ax6.dts │ │ │ ├── ipq8072-ax9000.dts │ │ │ └── ipq8074-nss.dtsi │ │ └── patches-6.12/ │ │ └── 0102-arm64-dts-ipq8074-add-reserved-memory-nodes.patch │ ├── diy.sh │ └── patches/ │ └── 04-stock.patch ├── ramips_mt7620/ │ ├── .config │ ├── diy.sh │ └── patches/ │ ├── mir3.patch │ └── tblsection.patch ├── ramips_mt7621/ │ ├── .config │ ├── diy/ │ │ └── target/ │ │ └── linux/ │ │ └── ramips/ │ │ └── dts/ │ │ ├── mt7621_ht-jsh_0211.dts │ │ ├── mt7621_zte_e8820s.dts │ │ └── mt7621_zte_e8820v2.dts │ ├── diy.sh │ └── patches/ │ ├── 02-cr660x.patch │ ├── ht-jsh_0211.patch │ ├── jcg_q20-pb-boot.patch │ ├── k2p_32m.patch │ ├── luban.patch │ ├── tblsection.patch │ └── zte_e8820s.patch ├── ramips_mt76x8/ │ ├── .config │ ├── diy.sh │ └── patches/ │ └── tblsection.patch ├── rockchip_armv8/ │ ├── .config │ ├── README.md │ ├── diy.sh │ └── patches/ │ ├── 55-xgp.patch.b │ ├── Photonicat_wireless.patch │ ├── add_extra_CPU_FLAGS.b │ ├── nanopi-zero2.patch │ └── r4s-fan.patch ├── siflower_sf21/ │ ├── .config │ └── diy.sh ├── sunxi_cortexa53/ │ ├── .config │ └── diy.sh ├── sunxi_cortexa7/ │ ├── .config │ └── diy.sh ├── x86_64/ │ ├── .config │ ├── diy.sh │ └── patches/ │ ├── Intel_gpu.patch │ ├── def_set_interfaces_lan_wan.patch │ ├── image-commands.patch │ └── image.patch └── x86_generic/ ├── .config ├── diy.sh └── patches/ ├── image-commands.patch └── image.patch