gitextract_i7pq5dhb/ ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ ├── pull_request_template │ └── workflows/ │ ├── ci_helpers.sh │ ├── formal.yml │ └── tools.yml ├── .gitignore ├── BSDmakefile ├── COPYING ├── Config.in ├── LICENSES/ │ ├── BSD-2-Clause │ ├── BSD-3-Clause │ ├── GPL-1.0 │ ├── GPL-2.0 │ ├── ISC │ ├── Linux-syscall-note │ └── MIT ├── Makefile ├── README.md ├── config/ │ ├── Config-build.in │ ├── Config-devel.in │ ├── Config-images.in │ ├── Config-kernel.in │ └── check-uname.sh ├── configs/ │ ├── OrangePi_R1_Plus_LTS_defconfig │ └── OrangePi_R1_Plus_defconfig ├── feeds.conf.default ├── include/ │ ├── autotools.mk │ ├── bpf.mk │ ├── cmake.mk │ ├── debug.mk │ ├── depends.mk │ ├── device_table.txt │ ├── download.mk │ ├── feeds.mk │ ├── hardened-ld-pie.specs │ ├── hardening.mk │ ├── host-build.mk │ ├── image-commands.mk │ ├── image.mk │ ├── kernel-5.10 │ ├── kernel-5.15 │ ├── kernel-build.mk │ ├── kernel-defaults.mk │ ├── kernel-version.mk │ ├── kernel.mk │ ├── meson.mk │ ├── netfilter.mk │ ├── nls.mk │ ├── openssl-engine.mk │ ├── package-bin.mk │ ├── package-defaults.mk │ ├── package-dumpinfo.mk │ ├── package-ipkg.mk │ ├── package-seccomp.mk │ ├── package.mk │ ├── prereq-build.mk │ ├── prereq.mk │ ├── quilt.mk │ ├── rootfs.mk │ ├── scan.awk │ ├── scan.mk │ ├── shell.sh │ ├── site/ │ │ ├── aarch64 │ │ ├── aarch64_be │ │ ├── arc │ │ ├── arm │ │ ├── armeb │ │ ├── darwin │ │ ├── i386 │ │ ├── i486 │ │ ├── i686 │ │ ├── linux │ │ ├── m68k │ │ ├── mips │ │ ├── mips64 │ │ ├── mips64el │ │ ├── mipsel │ │ ├── powerpc │ │ ├── powerpc64 │ │ ├── sparc │ │ └── x86_64 │ ├── subdir.mk │ ├── target.mk │ ├── toolchain-build.mk │ ├── toplevel.mk │ ├── trusted-firmware-a.mk │ ├── u-boot.mk │ ├── uclibc++.mk │ ├── unpack.mk │ ├── verbose.mk │ └── version.mk ├── package/ │ ├── Makefile │ ├── base-files/ │ │ ├── Makefile │ │ ├── files/ │ │ │ ├── bin/ │ │ │ │ ├── board_detect │ │ │ │ ├── config_generate │ │ │ │ └── ipcalc.sh │ │ │ ├── etc/ │ │ │ │ ├── banner │ │ │ │ ├── banner.failsafe │ │ │ │ ├── board.d/ │ │ │ │ │ └── 99-default_network │ │ │ │ ├── device_info │ │ │ │ ├── diag.sh │ │ │ │ ├── ethers │ │ │ │ ├── fstab │ │ │ │ ├── group │ │ │ │ ├── hosts │ │ │ │ ├── hotplug.d/ │ │ │ │ │ └── net/ │ │ │ │ │ └── 00-sysctl │ │ │ │ ├── init.d/ │ │ │ │ │ ├── boot │ │ │ │ │ ├── done │ │ │ │ │ ├── gpio_switch │ │ │ │ │ ├── led │ │ │ │ │ ├── sysctl │ │ │ │ │ ├── sysfixtime │ │ │ │ │ ├── system │ │ │ │ │ └── umount │ │ │ │ ├── inittab │ │ │ │ ├── iproute2/ │ │ │ │ │ ├── ematch_map │ │ │ │ │ ├── rt_protos │ │ │ │ │ └── rt_tables │ │ │ │ ├── openwrt_release │ │ │ │ ├── openwrt_version │ │ │ │ ├── passwd │ │ │ │ ├── preinit │ │ │ │ ├── profile │ │ │ │ ├── protocols │ │ │ │ ├── rc.button/ │ │ │ │ │ ├── failsafe │ │ │ │ │ ├── power │ │ │ │ │ ├── reboot │ │ │ │ │ ├── reset │ │ │ │ │ └── rfkill │ │ │ │ ├── rc.common │ │ │ │ ├── rc.local │ │ │ │ ├── services │ │ │ │ ├── shadow │ │ │ │ ├── shells │ │ │ │ ├── shinit │ │ │ │ ├── sysctl.conf │ │ │ │ ├── sysctl.d/ │ │ │ │ │ └── 10-default.conf │ │ │ │ ├── sysupgrade.conf │ │ │ │ └── uci-defaults/ │ │ │ │ ├── 10_migrate-shadow │ │ │ │ ├── 12_network-generate-ula │ │ │ │ └── 13_fix-group-user │ │ │ ├── lib/ │ │ │ │ ├── functions/ │ │ │ │ │ ├── caldata.sh │ │ │ │ │ ├── leds.sh │ │ │ │ │ ├── migrations.sh │ │ │ │ │ ├── network.sh │ │ │ │ │ ├── preinit.sh │ │ │ │ │ ├── service.sh │ │ │ │ │ ├── system.sh │ │ │ │ │ └── uci-defaults.sh │ │ │ │ ├── functions.sh │ │ │ │ ├── preinit/ │ │ │ │ │ ├── 02_default_set_state │ │ │ │ │ ├── 02_sysinfo │ │ │ │ │ ├── 10_indicate_failsafe │ │ │ │ │ ├── 10_indicate_preinit │ │ │ │ │ ├── 30_failsafe_wait │ │ │ │ │ ├── 40_run_failsafe_hook │ │ │ │ │ ├── 50_indicate_regular_preinit │ │ │ │ │ ├── 70_initramfs_test │ │ │ │ │ ├── 80_mount_root │ │ │ │ │ ├── 99_10_failsafe_login │ │ │ │ │ └── 99_10_run_init │ │ │ │ └── upgrade/ │ │ │ │ ├── common.sh │ │ │ │ ├── do_stage2 │ │ │ │ ├── emmc.sh │ │ │ │ ├── fwtool.sh │ │ │ │ ├── keep.d/ │ │ │ │ │ └── base-files-essential │ │ │ │ ├── legacy-sdcard.sh │ │ │ │ ├── nand.sh │ │ │ │ └── stage2 │ │ │ ├── rom/ │ │ │ │ └── note │ │ │ ├── sbin/ │ │ │ │ ├── firstboot │ │ │ │ ├── hotplug-call │ │ │ │ ├── led.sh │ │ │ │ ├── pkg_check │ │ │ │ ├── sysupgrade │ │ │ │ └── wifi │ │ │ └── usr/ │ │ │ ├── lib/ │ │ │ │ └── os-release │ │ │ └── libexec/ │ │ │ ├── login.sh │ │ │ └── validate_firmware_image │ │ └── image-config.in │ ├── boot/ │ │ ├── arm-trusted-firmware-bcm63xx/ │ │ │ └── Makefile │ │ ├── arm-trusted-firmware-mediatek/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 100-increase-nor-bl3-size.patch │ │ ├── arm-trusted-firmware-mvebu/ │ │ │ ├── Makefile │ │ │ ├── patches/ │ │ │ │ ├── 100-fix-plat-marvell-a3720-uart-fix-UART-clock-rate-valu.patch │ │ │ │ ├── 101-fix-plat-marvell-a3720-uart-fix-configuring-UART-clo.patch │ │ │ │ ├── 102-refactor-plat-marvell-uart-de-duplicate-PLAT_MARVELL.patch │ │ │ │ ├── 103-fix-plat-marvell-a3720-uart-fix-UART-parent-clock-ra.patch │ │ │ │ └── 200-hostssl.patch │ │ │ ├── patches-a3700-utils/ │ │ │ │ ├── 001-version.patch │ │ │ │ └── 002-version_mv_ddr_fix.patch │ │ │ ├── patches-mox-boot-builder/ │ │ │ │ ├── 001-version.patch │ │ │ │ └── 002-no-gold.patch │ │ │ └── patches-mv-ddr-marvell/ │ │ │ └── 001-version.patch │ │ ├── arm-trusted-firmware-rk3328/ │ │ │ ├── Makefile │ │ │ └── src/ │ │ │ └── trust.ini │ │ ├── arm-trusted-firmware-rockchip/ │ │ │ └── Makefile │ │ ├── arm-trusted-firmware-sunxi/ │ │ │ └── Makefile │ │ ├── arm-trusted-firmware-tools/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 001-respect-LDFLAGS.patch │ │ ├── at91bootstrap/ │ │ │ ├── Makefile │ │ │ └── at91bootstrap.mk │ │ ├── fconfig/ │ │ │ └── Makefile │ │ ├── grub2/ │ │ │ ├── Makefile │ │ │ ├── files/ │ │ │ │ └── grub-early.cfg │ │ │ └── patches/ │ │ │ └── 100-grub_setup_root.patch │ │ ├── imx-bootlets/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 001-skip_sb_generation.patch │ │ │ ├── 002-set_elftosb_config.patch │ │ │ └── 003-add-olinuxino.patch │ │ ├── kexec-tools/ │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files/ │ │ │ │ ├── kdump.config │ │ │ │ ├── kdump.defaults │ │ │ │ └── kdump.init │ │ │ └── patches/ │ │ │ └── 001-arm-do-not-copy-magic-4-bytes-of-appended-DTB-in-zIm.patch │ │ ├── kobs-ng/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 001-compile.patch │ │ │ ├── 002-add-init-size-param.patch │ │ │ ├── 003-raw-mode.patch │ │ │ └── 004-fix-cal_nfc_geometry.patch │ │ ├── mt7623n-preloader/ │ │ │ └── Makefile │ │ ├── tfa-layerscape/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 001-fiptool-hostbuild-fixes.patch │ │ │ └── 003-plat-nxp-tools-fix-create_pbl-and-byte_swap-host-bui.patch │ │ ├── uboot-at91/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 001-fix-Wformat-security.patch │ │ ├── uboot-bcm4908/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 100-check-config-allow-to-complete-build-even-with-ad-ho.patch │ │ │ ├── 200-configs-bcm94908-unset-CONFIG_SPL.patch │ │ │ └── 201-Assume-TPL-support-for-ATF-when-compiling-U-Boot-wit.patch │ │ ├── uboot-envtools/ │ │ │ ├── Makefile │ │ │ ├── files/ │ │ │ │ ├── apm821xx │ │ │ │ ├── ath79 │ │ │ │ ├── cns3xxx │ │ │ │ ├── fw_printsys │ │ │ │ ├── fw_setsys │ │ │ │ ├── imx_cortexa9 │ │ │ │ ├── ipq40xx │ │ │ │ ├── ipq806x │ │ │ │ ├── kirkwood │ │ │ │ ├── lantiq │ │ │ │ ├── layerscape │ │ │ │ ├── mediatek_mt7622 │ │ │ │ ├── mediatek_mt7623 │ │ │ │ ├── mpc85xx │ │ │ │ ├── mvebu │ │ │ │ ├── mxs │ │ │ │ ├── oxnas │ │ │ │ ├── pistachio │ │ │ │ ├── qoriq │ │ │ │ ├── ramips │ │ │ │ ├── realtek │ │ │ │ └── uboot-envtools.sh │ │ │ └── patches/ │ │ │ └── 001-compile.patch │ │ ├── uboot-fritz4040/ │ │ │ └── Makefile │ │ ├── uboot-imx/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 0001-apalis_imx6_defconfig-enable-some-useful-commands.patch │ │ ├── uboot-kirkwood/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 007-nsa310-uboot-generic.patch │ │ │ ├── 008-nsa325-uboot-generic.patch │ │ │ ├── 010-pogoplug_v4.patch │ │ │ ├── 110-dockstar.patch │ │ │ ├── 120-iconnect.patch │ │ │ ├── 130-ib62x0.patch │ │ │ ├── 140-pogoplug_e02.patch │ │ │ ├── 150-goflexhome.patch │ │ │ ├── 151-arm-kirkwood-add-CheckPoint-L-50-device.patch │ │ │ ├── 160-nsa310s.patch │ │ │ ├── 170-sheevaplug.patch │ │ │ ├── 200-openwrt-config.patch │ │ │ ├── 201-blackarmor-nas220.patch │ │ │ ├── 701-phy-mv88e61xx-add-support-for-RGMII-TX-RX-delay.patch │ │ │ └── 702-phy-mv88e61xx-add-support-for-MV88E6171.patch │ │ ├── uboot-lantiq/ │ │ │ ├── Makefile │ │ │ ├── README │ │ │ └── patches/ │ │ │ ├── 0001-sf-fix-out-of-order-calls-for-spi_claim_bus-and-spi_.patch │ │ │ ├── 0002-sf-consistently-use-debug-for-warning-error-messages.patch │ │ │ ├── 0003-sf-move-malloc-of-spi_flash-to-spi_flash_probe.patch │ │ │ ├── 0004-sf-add-slim-probe-funtions-for-SPL.patch │ │ │ ├── 0005-sf-make-calculatiom-of-address-bytes-completely-conf.patch │ │ │ ├── 0006-sf-add-support-for-4-byte-addressing.patch │ │ │ ├── 0007-sf-add-support-for-EN25QH256.patch │ │ │ ├── 0008-sf-fix-sector-layout-of-S25FL256S_256K-and-S25FL512S.patch │ │ │ ├── 0009-net-switchlib-add-framework-for-ethernet-switch-driv.patch │ │ │ ├── 0010-net-switchlib-add-driver-for-Lantiq-PSB697X-switch-f.patch │ │ │ ├── 0011-net-switchlib-add-driver-for-Lantiq-ADM6996I-switch-.patch │ │ │ ├── 0012-net-switchlib-add-driver-for-Atheros-AR8216.patch │ │ │ ├── 0013-net-switchlib-add-driver-for-REALTEK-RTL8306.patch │ │ │ ├── 0014-MIPS-add-support-for-Lantiq-XWAY-SoCs.patch │ │ │ ├── 0015-MIPS-lantiq-add-support-for-Lantiq-XWAY-ARX100-SoC-f.patch │ │ │ ├── 0016-net-add-driver-for-Lantiq-XWAY-ARX100-switch.patch │ │ │ ├── 0017-tools-add-some-helper-tools-for-Lantiq-SoCs.patch │ │ │ ├── 0018-tools-lantiq-add-NAND-SPL-support.patch │ │ │ ├── 0019-Makefile-add-Lantiq-NAND-SPL-images.patch │ │ │ ├── 0020-MIPS-lantiq-add-NAND-SPL-support.patch │ │ │ ├── 0021-MIPS-vrx200-add-NAND-SPL-support.patch │ │ │ ├── 0022-MIPS-lantiq-add-default-openwrt-config.patch │ │ │ ├── 0023-lzma-fixup.patch │ │ │ ├── 0024-Makefile-prepare-u-boot-lantiq-v2013.10-openwrt4.patch │ │ │ ├── 0025-arx100-cgu-fixes.patch │ │ │ ├── 0026-no_extern_inline.patch │ │ │ ├── 0027-no_weak_alias.patch │ │ │ ├── 0028-gcc-compat.patch │ │ │ ├── 0029-net-Use_packed_structures-for_networking.patch │ │ │ ├── 0030-lzma-force-8bit-reads.patch │ │ │ ├── 0031-dma-lantiq-fix-out-of-bounds-cache-invalidate.patch │ │ │ ├── 0032-MIPS-lantiq-danube-fix-SPL-boot.patch │ │ │ ├── 0033-MIPS-lantiq-reduce-stack-size.patch │ │ │ ├── 0100-MIPS-add-board-support-for-Easy-50712.patch │ │ │ ├── 0101-MIPS-add-board-support-for-Easy-80920.patch │ │ │ ├── 0102-MIPS-add-board-support-for-Arcadyan-ARV4519PW.patch │ │ │ ├── 0103-MIPS-add-board-support-for-Arcadyan-ARV7518PW.patch │ │ │ ├── 0104-MIPS-add-board-support-for-AudioCodes-MP-252.patch │ │ │ ├── 0105-MIPS-add-board-support-for-AVM-FritzBox-3370.patch │ │ │ ├── 0106-MIPS-add-board-support-for-Gigaset-SX76X.patch │ │ │ ├── 0107-MIPS-add-board-support-for-ZyXEL-P-2812HNU-Fx.patch │ │ │ ├── 0108-MIPS-add-board-support-for-Arcadyan-ARV752DPW.patch │ │ │ ├── 0109-MIPS-add-board-support-for-Arcadyan-ARV752DPW22.patch │ │ │ ├── 0110-MIPS-add-board-support-for-Arcadyan-ARV7510PW.patch │ │ │ ├── 0111-MIPS-add-board-support-for-Arcadyan-ARV7510PW22.patch │ │ │ ├── 0112-MIPS-add-board-support-for-Arcadyan-VGV7510KW22.patch │ │ │ ├── 0113-MIPS-add-board-support-for-Arcadyan-ARV8539PW22.patch │ │ │ ├── 0114-MIPS-add-board-support-for-Arcadyan-VGV7519.patch │ │ │ ├── 0115-MIPS-add-board-support-for-Arcadyan-ARV7506PW11.patch │ │ │ ├── 0116-MIPS-add-board-support-for-BT-Home-Hub-5A.patch │ │ │ ├── 100-portability.patch │ │ │ ├── 101-fix-crypt-header-clash.patch │ │ │ └── 200-fix-dtc-header-guard.patch │ │ ├── uboot-layerscape/ │ │ │ ├── Makefile │ │ │ ├── files/ │ │ │ │ ├── fsl_ls1012a-frdm-uEnv.txt │ │ │ │ ├── fsl_ls1012a-frwy-sdboot-uEnv.txt │ │ │ │ ├── fsl_ls1012a-rdb-uEnv.txt │ │ │ │ ├── fsl_ls1021a-iot-sdboot-uEnv.txt │ │ │ │ ├── fsl_ls1021a-twr-sdboot-uEnv.txt │ │ │ │ ├── fsl_ls1021a-twr-uEnv.txt │ │ │ │ ├── fsl_ls1043a-rdb-sdboot-uEnv.txt │ │ │ │ ├── fsl_ls1043a-rdb-uEnv.txt │ │ │ │ ├── fsl_ls1046a-frwy-sdboot-uEnv.txt │ │ │ │ ├── fsl_ls1046a-frwy-uEnv.txt │ │ │ │ ├── fsl_ls1046a-rdb-sdboot-uEnv.txt │ │ │ │ ├── fsl_ls1046a-rdb-uEnv.txt │ │ │ │ ├── fsl_ls1088a-rdb-sdboot-uEnv.txt │ │ │ │ ├── fsl_ls1088a-rdb-uEnv.txt │ │ │ │ ├── fsl_ls2088a-rdb-uEnv.txt │ │ │ │ ├── fsl_lx2160a-rdb-sdboot-uEnv.txt │ │ │ │ └── fsl_lx2160a-rdb-uEnv.txt │ │ │ └── patches/ │ │ │ ├── 0001-board-ls1046ardb-force-PCI-device-enumeration.patch │ │ │ └── 0002-board-ls1043ardb-force-PCI-device-enumeration.patch │ │ ├── uboot-mediatek/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 000-mtk-01-Revert-clk-Add-debugging-for-return-values.patch │ │ │ ├── 000-mtk-09-board-mediatek-add-more-network-configurations.patch │ │ │ ├── 000-mtk-10-mmc-mtk-sd-increase-the-minimum-bus-frequency.patch │ │ │ ├── 000-mtk-14-drivers-mtd-add-support-for-MediaTek-SPI-NAND-flash-.patch │ │ │ ├── 000-mtk-15-mtd-mtk-snand-add-support-for-SPL.patch │ │ │ ├── 000-mtk-16-env-add-support-for-generic-MTD-device.patch │ │ │ ├── 000-mtk-17-board-mt7629-add-support-for-booting-from-SPI-NAND.patch │ │ │ ├── 000-mtk-18-board-mt7622-use-new-spi-nand-driver.patch │ │ │ ├── 000-mtk-19-configs-mt7629-remove-unused-options-and-add-dm-comm.patch │ │ │ ├── 000-mtk-20-configs-mt7622-enable-environment-for-mt7622_rfb.patch │ │ │ ├── 050-mt7622-enable-pstore.patch │ │ │ ├── 100-scripts-remove-dependency-on-swig.patch │ │ │ ├── 110-no-kwbimage.patch │ │ │ ├── 120-use-xz-instead-of-lzma.patch │ │ │ ├── 200-cmd-add-imsz-and-imszb.patch │ │ │ ├── 210-cmd-bootmenu-add-ability-to-select-item-by-shortkey.patch │ │ │ ├── 211-cmd-bootmenu-custom-title.patch │ │ │ ├── 220-cmd-env-readmem.patch │ │ │ ├── 230-cmd-add-pstore-check.patch │ │ │ ├── 260-add-missing-type-u64.patch │ │ │ ├── 280-image-fdt-save-name-of-FIT-configuration-in-chosen-node.patch │ │ │ ├── 300-mt7622-generic-reset-button-ignore-env.patch │ │ │ ├── 301-mt7623-generic-reset-button-ignore-env.patch │ │ │ ├── 350-add-support-for-Winbond-W25Q512JV.patch │ │ │ ├── 400-update-bpir2-defconfig.patch │ │ │ ├── 401-update-u7623-defconfig.patch │ │ │ ├── 402-update-bananapi-bpi-r64-device-tree.patch │ │ │ ├── 403-add-bananapi_bpi-r64-snand.patch │ │ │ ├── 404-add-bananapi_bpi-r64_defconfigs.patch │ │ │ ├── 405-dts-mt7623n-bpi-r2-fix-leds.patch │ │ │ ├── 410-add-linksys-e8450.patch │ │ │ ├── 412-add-ubnt-unifi-6-lr.patch │ │ │ └── 500-board-mt7623-fix-mmc-detect.patch │ │ ├── uboot-mvebu/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 103-arm-mvebu-clearfog_defconfig-enable-setexpr-command.patch │ │ ├── uboot-mxs/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 001-add-i2se-duckbill.patch │ │ ├── uboot-omap/ │ │ │ ├── Makefile │ │ │ └── files/ │ │ │ └── boot.scr.txt │ │ ├── uboot-oxnas/ │ │ │ ├── Makefile │ │ │ ├── patches/ │ │ │ │ ├── 010-capacity-is-unsigned.patch │ │ │ │ ├── 020-socfpgaimage_portability.patch │ │ │ │ ├── 150-spl-block.patch │ │ │ │ ├── 200-icplus-phy.patch │ │ │ │ ├── 300-oxnas-target.patch │ │ │ │ ├── 400-gcc-5-compiler.patch │ │ │ │ ├── 410-gcc-6-compiler.patch │ │ │ │ ├── 420-gcc-7-compiler.patch │ │ │ │ └── 800-fix-bootm-assertion.patch │ │ │ └── src/ │ │ │ ├── arch/ │ │ │ │ └── arm/ │ │ │ │ ├── cpu/ │ │ │ │ │ └── arm1136/ │ │ │ │ │ └── nas782x/ │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── pinmux.c │ │ │ │ │ ├── reset.c │ │ │ │ │ └── timer.c │ │ │ │ └── include/ │ │ │ │ └── asm/ │ │ │ │ └── arch-nas782x/ │ │ │ │ ├── clock.h │ │ │ │ ├── cpu.h │ │ │ │ ├── hardware.h │ │ │ │ ├── pinmux.h │ │ │ │ ├── spl.h │ │ │ │ ├── sysctl.h │ │ │ │ └── timer.h │ │ │ ├── board/ │ │ │ │ └── ox820/ │ │ │ │ ├── Kconfig │ │ │ │ ├── MAINTAINERS │ │ │ │ ├── Makefile │ │ │ │ ├── ddr.c │ │ │ │ ├── ddr.h │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── ox820.c │ │ │ │ ├── spl_start.S │ │ │ │ └── u-boot-spl.lds │ │ │ ├── common/ │ │ │ │ ├── env_ext4.c │ │ │ │ └── spl/ │ │ │ │ └── spl_block.c │ │ │ ├── configs/ │ │ │ │ └── ox820_defconfig │ │ │ ├── drivers/ │ │ │ │ ├── block/ │ │ │ │ │ └── plxsata_ide.c │ │ │ │ └── usb/ │ │ │ │ └── host/ │ │ │ │ └── ehci-oxnas.c │ │ │ ├── include/ │ │ │ │ └── configs/ │ │ │ │ └── ox820.h │ │ │ └── tools/ │ │ │ └── mkox820crc.c │ │ ├── uboot-ramips/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 0001-add-support-for-RAVPower-RP-WD009.patch │ │ ├── uboot-rockchip/ │ │ │ ├── Makefile │ │ │ ├── patches/ │ │ │ │ ├── 001-scripts-remove-dependency-on-swig.patch │ │ │ │ ├── 002-spl-remove-dtoc-of-pdata-generation.patch │ │ │ │ ├── 101-rock64pro-disable-CONFIG_USE_PREBOOT.patch │ │ │ │ ├── 200-rockchip-rk3328-Add-support-for-Orangepi-R1-Plus.patch │ │ │ │ └── 201-Add-support-for-Orangepi-R1-Plus-LTS.patch │ │ │ └── src/ │ │ │ └── of-platdata/ │ │ │ ├── nanopi-r2s-rk3328/ │ │ │ │ ├── dt-decl.h │ │ │ │ ├── dt-plat.c │ │ │ │ └── dt-structs-gen.h │ │ │ ├── orangepi-r1-plus-lts-rk3328/ │ │ │ │ ├── dt-decl.h │ │ │ │ ├── dt-plat.c │ │ │ │ └── dt-structs-gen.h │ │ │ └── orangepi-r1-plus-rk3328/ │ │ │ ├── dt-decl.h │ │ │ ├── dt-plat.c │ │ │ └── dt-structs-gen.h │ │ ├── uboot-sunxi/ │ │ │ ├── Makefile │ │ │ ├── patches/ │ │ │ │ ├── 002-add-olimex-a13-som.patch │ │ │ │ ├── 003-add-theobroma-a31-pangolin.patch │ │ │ │ ├── 062-A20-improve-gmac-upload.patch │ │ │ │ ├── 063-fix-lime2-revK-add-micrel-PHY.patch │ │ │ │ ├── 091-sun6i-sync-PLL1-multdiv-with-Boot1.patch │ │ │ │ ├── 093-sun6i-fix-PLL-LDO-voltselect.patch │ │ │ │ ├── 100-sun6i-alternate-on-UART2.patch │ │ │ │ ├── 101-sun6i-support-console-on-UART2.patch │ │ │ │ ├── 102-sunxi-make_CONS_INDEX-configurable.patch │ │ │ │ ├── 200-mkimage-check-environment-for-dtc-binary-location.patch │ │ │ │ ├── 210-sunxi-deactivate-binman.patch │ │ │ │ ├── 230-disable-axp209-on-a13-olinuxino.diff │ │ │ │ ├── 250-sun8i-h3-zeropi-add-device-tree.patch │ │ │ │ ├── 251-sun8i-h3-zeropi-add-defconfig.patch │ │ │ │ ├── 252-sunxi-h3-add-support-for-nanopi-r1.patch │ │ │ │ ├── 253-sunxi-h5-add-support-for-nanopi-r1s-h5.patch │ │ │ │ └── 260-add-missing-type-u64.patch │ │ │ ├── uEnv-a64.txt │ │ │ ├── uEnv-default.txt │ │ │ ├── uEnv-h6.txt │ │ │ └── uEnv-pangolin.txt │ │ ├── uboot-tegra/ │ │ │ └── Makefile │ │ └── uboot-zynq/ │ │ ├── Makefile │ │ ├── files/ │ │ │ └── uEnv-default.txt │ │ └── patches/ │ │ ├── 010-fix_dtc_compilation_on_host_gcc10.patch │ │ └── 110-zybo-z7-read-mac-address-from-SPI-flash-memory.patch │ ├── devel/ │ │ ├── binutils/ │ │ │ └── Makefile │ │ ├── gdb/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 001-gdb-pr14523-mips-signal-number.patch │ │ │ ├── 110-shared_libgcc.patch │ │ │ ├── 120-sigprocmask-invalid-call.patch │ │ │ ├── 130-gdb-ctrl-c.patch │ │ │ ├── 140-sgidefs.patch │ │ │ └── 150-mips64.patch │ │ ├── perf/ │ │ │ └── Makefile │ │ ├── strace/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 010-m4.patch │ │ ├── trace-cmd/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 100-musl.patch │ │ │ └── 110-mac80211_tracepoint.patch │ │ └── valgrind/ │ │ ├── Makefile │ │ ├── files/ │ │ │ └── default.supp │ │ └── patches/ │ │ ├── 010-mips-Fix-new-syscall-numbers.patch │ │ ├── 100-fix_configure_check.patch │ │ ├── 130-fix_arm_arch_detection.patch │ │ └── 130-mips_fix_soft_float.patch │ ├── firmware/ │ │ ├── ath10k-ct-firmware/ │ │ │ └── Makefile │ │ ├── b43legacy-firmware/ │ │ │ └── Makefile │ │ ├── cypress-firmware/ │ │ │ └── Makefile │ │ ├── cypress-nvram/ │ │ │ └── Makefile │ │ ├── intel-microcode/ │ │ │ └── Makefile │ │ ├── ipq-wifi/ │ │ │ ├── Makefile │ │ │ ├── board-devolo_magic-2-wifi-next.qca4019 │ │ │ ├── board-edgecore_ecw5410.qca9984 │ │ │ ├── board-edgecore_oap100.qca4019 │ │ │ ├── board-glinet_gl-ap1300.qca4019 │ │ │ ├── board-glinet_gl-b2200.qca4019 │ │ │ ├── board-glinet_gl-b2200.qca9888 │ │ │ ├── board-glinet_gl-s1300.qca4019 │ │ │ ├── board-linksys_ea8300.qca4019 │ │ │ ├── board-linksys_ea8300.qca9888 │ │ │ ├── board-mikrotik_cap-ac.qca4019 │ │ │ ├── board-mikrotik_hap-ac2.qca4019 │ │ │ ├── board-mikrotik_hap-ac3.qca4019 │ │ │ ├── board-mikrotik_sxtsq-5-ac.qca4019 │ │ │ ├── board-p2w_r619ac.qca4019 │ │ │ ├── board-qxwlan_e2600ac-c1.qca4019 │ │ │ ├── board-qxwlan_e2600ac-c2.qca4019 │ │ │ ├── board-qxwlan_e2600ac.qca4019 │ │ │ └── board-teltonika_rutx.qca4019 │ │ ├── lantiq/ │ │ │ └── dsl-vrx200-firmware-xdsl/ │ │ │ └── Makefile │ │ ├── layerscape/ │ │ │ ├── fman-ucode/ │ │ │ │ └── Makefile │ │ │ ├── ls-ddr-phy/ │ │ │ │ └── Makefile │ │ │ ├── ls-dpl/ │ │ │ │ └── Makefile │ │ │ ├── ls-mc/ │ │ │ │ └── Makefile │ │ │ ├── ls-rcw/ │ │ │ │ ├── Makefile │ │ │ │ └── patches/ │ │ │ │ └── 0002-fix_rcw_for_ls1012a-frdm.patch │ │ │ └── ppfe-firmware/ │ │ │ └── Makefile │ │ ├── linux-firmware/ │ │ │ ├── Makefile │ │ │ ├── amd.mk │ │ │ ├── broadcom.mk │ │ │ ├── cis.mk │ │ │ ├── edgeport.mk │ │ │ ├── intel.mk │ │ │ ├── marvell.mk │ │ │ ├── mediatek.mk │ │ │ ├── misc.mk │ │ │ ├── qca.mk │ │ │ ├── qca_ath10k.mk │ │ │ ├── realtek.mk │ │ │ ├── rsi.mk │ │ │ └── ti.mk │ │ ├── prism54-firmware/ │ │ │ └── Makefile │ │ └── wireless-regdb/ │ │ ├── Makefile │ │ └── patches/ │ │ └── 500-world-regd-5GHz.patch │ ├── kernel/ │ │ ├── acx-mac80211/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 100-compat.patch │ │ │ ├── 200-initial-macaddr.patch │ │ │ └── 300-api_sync.patch │ │ ├── ath10k-ct/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 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 │ │ ├── bcm27xx-gpu-fw/ │ │ │ └── Makefile │ │ ├── bcm63xx-cfe/ │ │ │ └── Makefile │ │ ├── bpf-headers/ │ │ │ ├── Makefile │ │ │ ├── files/ │ │ │ │ └── stdarg.h │ │ │ ├── patches/ │ │ │ │ └── 100-support_hz_300.patch │ │ │ └── src/ │ │ │ └── include/ │ │ │ └── generated/ │ │ │ └── bounds.h │ │ ├── broadcom-wl/ │ │ │ ├── Makefile │ │ │ ├── files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ └── net/ │ │ │ │ │ │ ├── 00-broadcom-wifi-detect │ │ │ │ │ │ └── 20-broadcom_wds │ │ │ │ │ └── init.d/ │ │ │ │ │ └── wlunbind │ │ │ │ └── lib/ │ │ │ │ └── wifi/ │ │ │ │ └── broadcom.sh │ │ │ ├── patches/ │ │ │ │ ├── 003-compat-2.6.35.patch │ │ │ │ ├── 004-remove-pcmcia.patch │ │ │ │ ├── 005-fix-mem-leak-on-unload.patch │ │ │ │ ├── 006-generic-dma-api.patch │ │ │ │ ├── 007-use-glue-driver.patch │ │ │ │ ├── 008-fix_virtual_interfaces.patch │ │ │ │ ├── 009-fix_compile_3_2.patch │ │ │ │ ├── 010-remove_irqf_samble_random.patch │ │ │ │ ├── 011-fix_compile_3_4.patch │ │ │ │ ├── 012-compat-3.10.patch │ │ │ │ ├── 013-interface-name.patch │ │ │ │ ├── 014-fix-band-reporting.patch │ │ │ │ ├── 015-support-probe-of-wds-interfaces.patch │ │ │ │ ├── 020-musl-fixes.patch │ │ │ │ ├── 030-remove_devinit_devexit.patch │ │ │ │ ├── 040-remove_last_rx_usage.patch │ │ │ │ ├── 100-fix_nvram_two_devices.patch │ │ │ │ ├── 110-add_number_to_dev_name.patch │ │ │ │ ├── 120-fixup-mac-addresses.patch │ │ │ │ ├── 200-add_bcm_a8xx_support.patch │ │ │ │ ├── 910-fallback-sprom.patch │ │ │ │ ├── 912-pci-bus-nvram-hack.patch │ │ │ │ ├── 913-avoid-dbe-on-ifs_ctl-readw-hack.patch │ │ │ │ ├── 914-eliminate-date-time-error.patch │ │ │ │ ├── 915-fix-wl_timer-for-4_15.patch │ │ │ │ └── 916-fix-compilation-for-5_4.patch │ │ │ └── src/ │ │ │ ├── glue/ │ │ │ │ ├── Makefile │ │ │ │ ├── wl_glue.c │ │ │ │ └── wl_glue.h │ │ │ └── wlc.c │ │ ├── button-hotplug/ │ │ │ ├── Makefile │ │ │ └── src/ │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── button-hotplug.c │ │ ├── cryptodev-linux/ │ │ │ └── Makefile │ │ ├── dtc/ │ │ │ └── patches/ │ │ │ └── 0001-scripts-dtc-Update-to-version-with-overlays.patch │ │ ├── gpio-button-hotplug/ │ │ │ ├── Makefile │ │ │ └── src/ │ │ │ ├── Makefile │ │ │ └── gpio-button-hotplug.c │ │ ├── gpio-nct5104d/ │ │ │ ├── Makefile │ │ │ └── src/ │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── gpio-nct5104d.c │ │ ├── hwmon-gsc/ │ │ │ ├── Makefile │ │ │ └── src/ │ │ │ ├── Makefile │ │ │ └── gsc.c │ │ ├── ksmbd/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 01-keep_kmod_metadata.patch │ │ ├── lantiq/ │ │ │ ├── ltq-adsl/ │ │ │ │ ├── Config.in │ │ │ │ ├── Makefile │ │ │ │ └── patches/ │ │ │ │ ├── 020-not-leak-cflags.patch │ │ │ │ ├── 100-dsl_compat.patch │ │ │ │ ├── 110-fix_status_polling_loop.patch │ │ │ │ ├── 120-platform.patch │ │ │ │ ├── 130-linux3.8.patch │ │ │ │ ├── 140-linux_3.18.patch │ │ │ │ ├── 150-linux_5.9.patch │ │ │ │ └── 200-fix-elapsed-time.patch │ │ │ ├── ltq-adsl-fw/ │ │ │ │ └── Makefile │ │ │ ├── ltq-adsl-mei/ │ │ │ │ ├── Makefile │ │ │ │ └── src/ │ │ │ │ ├── Makefile │ │ │ │ ├── drv_mei_cpe.c │ │ │ │ └── ifxmips_mei_interface.h │ │ │ ├── ltq-atm/ │ │ │ │ ├── Makefile │ │ │ │ └── src/ │ │ │ │ ├── Makefile │ │ │ │ ├── ifxmips_atm_amazon_se.c │ │ │ │ ├── ifxmips_atm_ar9.c │ │ │ │ ├── ifxmips_atm_core.h │ │ │ │ ├── ifxmips_atm_danube.c │ │ │ │ ├── ifxmips_atm_fw_amazon_se.h │ │ │ │ ├── ifxmips_atm_fw_ar9.h │ │ │ │ ├── ifxmips_atm_fw_ar9_retx.h │ │ │ │ ├── ifxmips_atm_fw_danube.h │ │ │ │ ├── ifxmips_atm_fw_danube_retx.h │ │ │ │ ├── ifxmips_atm_fw_regs_amazon_se.h │ │ │ │ ├── ifxmips_atm_fw_regs_ar9.h │ │ │ │ ├── ifxmips_atm_fw_regs_common.h │ │ │ │ ├── ifxmips_atm_fw_regs_danube.h │ │ │ │ ├── ifxmips_atm_fw_regs_vr9.h │ │ │ │ ├── ifxmips_atm_fw_vr9.h │ │ │ │ ├── ifxmips_atm_ppe_amazon_se.h │ │ │ │ ├── ifxmips_atm_ppe_ar9.h │ │ │ │ ├── ifxmips_atm_ppe_common.h │ │ │ │ ├── ifxmips_atm_ppe_danube.h │ │ │ │ ├── ifxmips_atm_ppe_vr9.h │ │ │ │ ├── ifxmips_atm_vr9.c │ │ │ │ └── ltq_atm.c │ │ │ ├── ltq-deu/ │ │ │ │ ├── Makefile │ │ │ │ └── src/ │ │ │ │ ├── Makefile │ │ │ │ ├── ifxmips_aes.c │ │ │ │ ├── ifxmips_arc4.c │ │ │ │ ├── ifxmips_async_aes.c │ │ │ │ ├── ifxmips_async_des.c │ │ │ │ ├── ifxmips_des.c │ │ │ │ ├── ifxmips_deu.c │ │ │ │ ├── ifxmips_deu.h │ │ │ │ ├── ifxmips_deu_ar9.c │ │ │ │ ├── ifxmips_deu_ar9.h │ │ │ │ ├── ifxmips_deu_danube.c │ │ │ │ ├── ifxmips_deu_danube.h │ │ │ │ ├── ifxmips_deu_dma.c │ │ │ │ ├── ifxmips_deu_dma.h │ │ │ │ ├── ifxmips_deu_vr9.c │ │ │ │ ├── ifxmips_deu_vr9.h │ │ │ │ ├── ifxmips_md5.c │ │ │ │ ├── ifxmips_md5_hmac.c │ │ │ │ ├── ifxmips_sha1.c │ │ │ │ ├── ifxmips_sha1_hmac.c │ │ │ │ ├── ifxmips_tcrypt.h │ │ │ │ └── internal.h │ │ │ ├── ltq-ifxos/ │ │ │ │ ├── Makefile │ │ │ │ └── patches/ │ │ │ │ ├── 001-warnings.patch │ │ │ │ ├── 002-fix-compile.patch │ │ │ │ ├── 020-no-O3.patch │ │ │ │ └── 100-compat.patch │ │ │ ├── ltq-ptm/ │ │ │ │ ├── Makefile │ │ │ │ └── src/ │ │ │ │ ├── Makefile │ │ │ │ ├── ifxmips_ptm_adsl.c │ │ │ │ ├── ifxmips_ptm_adsl.h │ │ │ │ ├── ifxmips_ptm_amazon_se.c │ │ │ │ ├── ifxmips_ptm_ar9.c │ │ │ │ ├── ifxmips_ptm_common.h │ │ │ │ ├── ifxmips_ptm_danube.c │ │ │ │ ├── ifxmips_ptm_fw_amazon_se.h │ │ │ │ ├── ifxmips_ptm_fw_ar9.h │ │ │ │ ├── ifxmips_ptm_fw_danube.h │ │ │ │ ├── ifxmips_ptm_fw_regs_adsl.h │ │ │ │ ├── ifxmips_ptm_fw_regs_amazon_se.h │ │ │ │ ├── ifxmips_ptm_fw_regs_ar9.h │ │ │ │ ├── ifxmips_ptm_fw_regs_danube.h │ │ │ │ ├── ifxmips_ptm_fw_regs_vdsl.h │ │ │ │ ├── ifxmips_ptm_fw_regs_vr9.h │ │ │ │ ├── ifxmips_ptm_fw_vr9.h │ │ │ │ ├── ifxmips_ptm_ppe_amazon_se.h │ │ │ │ ├── ifxmips_ptm_ppe_ar9.h │ │ │ │ ├── ifxmips_ptm_ppe_common.h │ │ │ │ ├── ifxmips_ptm_ppe_danube.h │ │ │ │ ├── ifxmips_ptm_ppe_vr9.h │ │ │ │ ├── ifxmips_ptm_test.c │ │ │ │ ├── ifxmips_ptm_vdsl.c │ │ │ │ ├── ifxmips_ptm_vdsl.h │ │ │ │ └── ifxmips_ptm_vr9.c │ │ │ ├── ltq-tapi/ │ │ │ │ ├── Config.in │ │ │ │ ├── Makefile │ │ │ │ └── patches/ │ │ │ │ ├── 000-portability.patch │ │ │ │ ├── 010-fix-compile.patch │ │ │ │ ├── 020-not-leak-cflags.patch │ │ │ │ ├── 100-ifxmips.patch │ │ │ │ ├── 200-linux-37.patch │ │ │ │ ├── 300-linux-310.patch │ │ │ │ ├── 400-linux-415.patch │ │ │ │ └── 500-linux-509.patch │ │ │ ├── ltq-vdsl/ │ │ │ │ ├── Makefile │ │ │ │ └── patches/ │ │ │ │ ├── 001-fix-compile.patch │ │ │ │ ├── 020-not-leak-cflags.patch │ │ │ │ ├── 100-compat.patch │ │ │ │ ├── 110-semaphore-lock.patch │ │ │ │ └── 200-fix-elapsed-time.patch │ │ │ ├── ltq-vdsl-fw/ │ │ │ │ ├── Makefile │ │ │ │ └── src/ │ │ │ │ ├── LzmaDecode.c │ │ │ │ ├── LzmaDecode.h │ │ │ │ ├── LzmaTypes.h │ │ │ │ ├── LzmaWrapper.c │ │ │ │ ├── LzmaWrapper.h │ │ │ │ ├── Makefile │ │ │ │ ├── vdsl_fw_install.sh │ │ │ │ └── w921v_fw_cutter.c │ │ │ ├── ltq-vdsl-mei/ │ │ │ │ ├── Makefile │ │ │ │ └── patches/ │ │ │ │ ├── 001-fix-compile.patch │ │ │ │ ├── 010-warnings.patch │ │ │ │ ├── 020-not-leak-cflags.patch │ │ │ │ ├── 030-no-static-linking.patch │ │ │ │ ├── 100-compat.patch │ │ │ │ ├── 101_no-date-time.patch │ │ │ │ ├── 110-reset-g_tx_link_rate-on-showtime-exit.patch │ │ │ │ └── 200-interrupt-lock.patch │ │ │ ├── ltq-vectoring/ │ │ │ │ ├── Makefile │ │ │ │ └── patches/ │ │ │ │ ├── 001-fix-compile.patch │ │ │ │ ├── 100-cleanup.patch │ │ │ │ └── 200-compat.patch │ │ │ └── ltq-vmmc/ │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files/ │ │ │ │ └── vmmc.init │ │ │ └── patches/ │ │ │ ├── 000-portability.patch │ │ │ ├── 020-not-leak-cflags.patch │ │ │ ├── 100-target.patch │ │ │ ├── 200-compat.patch │ │ │ ├── 400-falcon.patch │ │ │ └── 500-ar9_vr9.patch │ │ ├── linux/ │ │ │ ├── Makefile │ │ │ ├── files/ │ │ │ │ ├── hotplug-sched-teql.sh │ │ │ │ ├── sysctl-br-netfilter.conf │ │ │ │ ├── sysctl-nf-conntrack.conf │ │ │ │ └── sysctl-tcp-bbr.conf │ │ │ └── modules/ │ │ │ ├── 001-depends.mk │ │ │ ├── block.mk │ │ │ ├── can.mk │ │ │ ├── crypto.mk │ │ │ ├── firewire.mk │ │ │ ├── fs.mk │ │ │ ├── gpio-cascade.mk │ │ │ ├── hwmon.mk │ │ │ ├── i2c.mk │ │ │ ├── iio.mk │ │ │ ├── input.mk │ │ │ ├── leds.mk │ │ │ ├── lib.mk │ │ │ ├── multiplexer.mk │ │ │ ├── netdevices.mk │ │ │ ├── netfilter.mk │ │ │ ├── netsupport.mk │ │ │ ├── nls.mk │ │ │ ├── other.mk │ │ │ ├── pcmcia.mk │ │ │ ├── sound.mk │ │ │ ├── spi.mk │ │ │ ├── usb.mk │ │ │ ├── video.mk │ │ │ ├── virt.mk │ │ │ ├── w1.mk │ │ │ ├── wireless.mk │ │ │ └── wpan.mk │ │ ├── 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 │ │ │ │ │ ├── 120-ath10k-fetch-calibration-data-via-nvmem-subsystem.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 │ │ │ │ │ └── 990-ath10k-small-buffers.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 │ │ │ │ │ ├── 580-ath9k_ar9561_fix_bias_level.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/ │ │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ └── subsys/ │ │ │ │ ├── 110-mac80211_keep_keys_on_stop_ap.patch │ │ │ │ ├── 120-cfg80211_allow_perm_addr_change.patch │ │ │ │ ├── 150-disable_addr_notifier.patch │ │ │ │ ├── 210-ap_scan.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 │ │ │ │ ├── 329-mac80211-minstrel_ht-fix-where-rate-stats-are-stored.patch │ │ │ │ ├── 400-allow-ibss-mixed.patch │ │ │ │ ├── 500-mac80211_configure_antenna_gain.patch │ │ │ │ └── 782-net-next-1-of-net-pass-the-dst-buffer-to-of_get_mac_address.patch │ │ │ ├── ralink.mk │ │ │ ├── realtek.mk │ │ │ └── scripts/ │ │ │ └── import-backports.sh │ │ ├── mt76/ │ │ │ └── Makefile │ │ ├── mt7621-qtn-rgmii/ │ │ │ ├── Makefile │ │ │ └── src/ │ │ │ ├── Makefile │ │ │ └── mt7621-qtn-rgmii.c │ │ ├── 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 │ │ ├── nat46/ │ │ │ └── Makefile │ │ ├── rtc-rv5c386a/ │ │ │ ├── Makefile │ │ │ └── src/ │ │ │ ├── Makefile │ │ │ └── rtc.c │ │ ├── rtl8812au-ct/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 001-use-kernel-byteorder.patch │ │ │ ├── 002-vendor_command_policy.patch │ │ │ └── 003-wireless-5.8.patch │ │ └── trelay/ │ │ ├── Makefile │ │ ├── files/ │ │ │ ├── trelay.config │ │ │ ├── trelay.hotplug │ │ │ └── trelay.init │ │ └── src/ │ │ ├── Makefile │ │ └── trelay.c │ ├── libs/ │ │ ├── argp-standalone/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 001-throw-in-funcdef.patch │ │ │ ├── 002-no_optimize.patch │ │ │ └── 900-fix-segfault-in_canon_doc_option.patch │ │ ├── elfutils/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 003-libintl-compatibility.patch │ │ │ ├── 005-build_only_libs.patch │ │ │ ├── 006-Fix-build-on-aarch64-musl.patch │ │ │ ├── 100-musl-compat.patch │ │ │ └── 101-no-fts.patch │ │ ├── gettext-full/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 000-relocatable.patch │ │ │ ├── 001-autotools.patch │ │ │ ├── 001-no_examples_and_tests.patch │ │ │ ├── 010-m4.patch │ │ │ └── 150-disable_libxml_iconv.patch │ │ ├── gmp/ │ │ │ └── Makefile │ │ ├── jansson/ │ │ │ └── Makefile │ │ ├── libaudit/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 0001-Add-substitue-functions-for-strndupa-rawmemchr.patch │ │ │ └── 0002-fix-gcc-10.patch │ │ ├── libbsd/ │ │ │ └── Makefile │ │ ├── libcap/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 300-disable-tests.patch │ │ ├── libevent2/ │ │ │ └── Makefile │ │ ├── libiconv/ │ │ │ ├── COPYING │ │ │ ├── COPYRIGHT │ │ │ ├── Makefile │ │ │ └── src/ │ │ │ ├── LICENSE │ │ │ ├── iconv.c │ │ │ ├── include/ │ │ │ │ ├── charmaps/ │ │ │ │ │ ├── iso-8859-10.h │ │ │ │ │ ├── iso-8859-13.h │ │ │ │ │ ├── iso-8859-14.h │ │ │ │ │ ├── iso-8859-16.h │ │ │ │ │ ├── iso-8859-2.h │ │ │ │ │ ├── iso-8859-3.h │ │ │ │ │ ├── iso-8859-4.h │ │ │ │ │ ├── iso-8859-5.h │ │ │ │ │ ├── iso-8859-6.h │ │ │ │ │ ├── iso-8859-7.h │ │ │ │ │ ├── iso-8859-8.h │ │ │ │ │ ├── iso-8859-9.h │ │ │ │ │ ├── koi8-r.h │ │ │ │ │ ├── windows-1250.h │ │ │ │ │ ├── windows-1251.h │ │ │ │ │ ├── windows-1252.h │ │ │ │ │ ├── windows-1253.h │ │ │ │ │ ├── windows-1254.h │ │ │ │ │ ├── windows-1255.h │ │ │ │ │ ├── windows-1256.h │ │ │ │ │ ├── windows-1257.h │ │ │ │ │ ├── windows-1258.h │ │ │ │ │ └── windows-874.h │ │ │ │ ├── charmaps.h │ │ │ │ └── iconv.h │ │ │ └── m4/ │ │ │ └── iconv.m4 │ │ ├── libiconv-full/ │ │ │ └── Makefile │ │ ├── libjson-c/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 001-dont-build-docs.patch │ │ │ └── 010-clang.patch │ │ ├── libmnl/ │ │ │ └── Makefile │ │ ├── libnetfilter-conntrack/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 0001-conntrack-fix-build-with-kernel-5_15-and-musl.patch │ │ ├── libnfnetlink/ │ │ │ └── Makefile │ │ ├── libnftnl/ │ │ │ └── Makefile │ │ ├── libnl/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 100-build-add-Libs.private-field-in-libnl-pkg-config-file.patch │ │ ├── libnl-tiny/ │ │ │ └── Makefile │ │ ├── libpcap/ │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 100-no-openssl.patch │ │ │ ├── 102-skip-manpages.patch │ │ │ └── 201-space_optimization.patch │ │ ├── libselinux/ │ │ │ └── Makefile │ │ ├── libsemanage/ │ │ │ └── Makefile │ │ ├── libsepol/ │ │ │ └── Makefile │ │ ├── libtool/ │ │ │ └── Makefile │ │ ├── libubox/ │ │ │ └── Makefile │ │ ├── libunwind/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 001-Don-t-force-exec_prefix-lib64-libdir-on-ppc64.patch │ │ │ ├── 002-fix-building-getcontext_S.patch │ │ │ ├── 003-fix-missing-ef_reg-defs-with-musl.patch │ │ │ └── 004-ppc-musl.patch │ │ ├── libusb/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 001-Correct-a-typo-in-the-Changelog-and-clean-up-a-stray.patch │ │ │ └── 002-linux_usbfs-Fix-parsing-of-descriptors-for-multi-con.patch │ │ ├── mbedtls/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 200-config.patch │ │ ├── musl-fts/ │ │ │ └── Makefile │ │ ├── ncurses/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 100-ncurses-5.6-20080112-urxvt.patch │ │ │ ├── 101-ncurses-5.6-20080628-kbs.patch │ │ │ ├── 102-ncurses-5.9-gcc-5.patch │ │ │ ├── 103-ncurses-ar-determinism.patch │ │ │ ├── 200-fix_missing_include.patch │ │ │ └── 900-terminfo.patch │ │ ├── nettle/ │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 100-portability.patch │ │ ├── openssl/ │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files/ │ │ │ │ ├── afalg.cnf │ │ │ │ ├── devcrypto.cnf │ │ │ │ ├── openssl.init │ │ │ │ └── padlock.cnf │ │ │ └── patches/ │ │ │ ├── 001-crypto-perlasm-ppc-xlate.pl-add-linux64v2-flavour.patch │ │ │ ├── 100-Configure-afalg-support.patch │ │ │ ├── 110-openwrt_targets.patch │ │ │ ├── 120-strip-cflags-from-binary.patch │ │ │ ├── 130-dont-build-tests-fuzz.patch │ │ │ ├── 140-allow-prefer-chacha20.patch │ │ │ ├── 150-openssl.cnf-add-engines-conf.patch │ │ │ ├── 400-eng_devcrypto-save-ioctl-if-EVP_MD_.FLAG_ONESHOT.patch │ │ │ ├── 410-eng_devcrypto-add-configuration-options.patch │ │ │ ├── 420-eng_devcrypto-add-command-to-dump-driver-info.patch │ │ │ ├── 430-e_devcrypto-make-the-dev-crypto-engine-dynamic.patch │ │ │ ├── 500-e_devcrypto-default-to-not-use-digests-in-engine.patch │ │ │ └── 510-e_devcrypto-ignore-error-when-closing-session.patch │ │ ├── pcre/ │ │ │ ├── Config.in │ │ │ └── Makefile │ │ ├── popt/ │ │ │ └── Makefile │ │ ├── readline/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 001-curses-link.patch │ │ ├── sysfsutils/ │ │ │ ├── Makefile │ │ │ ├── files/ │ │ │ │ ├── local.conf │ │ │ │ ├── sysfs.conf │ │ │ │ └── sysfsutils │ │ │ └── patches/ │ │ │ └── 200-mnt_path_check.patch │ │ ├── toolchain/ │ │ │ ├── Makefile │ │ │ └── glibc-files/ │ │ │ └── etc/ │ │ │ └── nsswitch.conf │ │ ├── uclient/ │ │ │ └── Makefile │ │ ├── ustream-ssl/ │ │ │ └── Makefile │ │ ├── wolfssl/ │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 100-disable-hardening-check.patch │ │ │ ├── 200-ecc-rng.patch │ │ │ ├── 300-fix-SSL_get_verify_result-regression.patch │ │ │ └── 400-wolfcrypt-src-port-devcrypto-devcrypto_aes.c-remove-.patch │ │ └── zlib/ │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches/ │ │ ├── 001-neon-implementation-of-adler32.patch │ │ ├── 002-arm-specific-optimisations-for-inflate.patch │ │ ├── 003-arm-specific-optimisations-for-inflate.patch │ │ ├── 004-attach-sourcefiles-in-patch-002-to-buildsystem.patch │ │ └── 005-relative-pkg-config-paths.patch │ ├── network/ │ │ ├── config/ │ │ │ ├── firewall/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ ├── firewall.config │ │ │ │ ├── firewall.hotplug │ │ │ │ ├── firewall.init │ │ │ │ └── firewall.user │ │ │ ├── firewall4/ │ │ │ │ └── Makefile │ │ │ ├── gre/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ └── gre.sh │ │ │ ├── ipip/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ └── ipip.sh │ │ │ ├── ltq-adsl-app/ │ │ │ │ ├── Makefile │ │ │ │ ├── files/ │ │ │ │ │ ├── 10_atm.sh │ │ │ │ │ ├── 10_ptm.sh │ │ │ │ │ └── dsl_control │ │ │ │ └── patches/ │ │ │ │ ├── 001-stupid_breakage_fix.patch │ │ │ │ ├── 010-eglibc_compile_fix.patch │ │ │ │ ├── 100-add-more-script-notifications.patch │ │ │ │ └── 300-ubus.patch │ │ │ ├── ltq-vdsl-app/ │ │ │ │ ├── Makefile │ │ │ │ ├── files/ │ │ │ │ │ ├── 10_atm.sh │ │ │ │ │ ├── 10_ptm.sh │ │ │ │ │ ├── dsl_control │ │ │ │ │ └── dsl_cpe_pipe.sh │ │ │ │ ├── patches/ │ │ │ │ │ ├── 100-compat.patch │ │ │ │ │ ├── 101-musl.patch │ │ │ │ │ ├── 200-autoboot.patch │ │ │ │ │ ├── 201-sigterm.patch │ │ │ │ │ └── 300-ubus.patch │ │ │ │ └── src/ │ │ │ │ └── src/ │ │ │ │ └── dsl_cpe_ubus.c │ │ │ ├── netifd/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ ├── iface/ │ │ │ │ │ │ │ └── 00-netstate │ │ │ │ │ │ └── net/ │ │ │ │ │ │ └── 20-smp-packet-steering │ │ │ │ │ ├── init.d/ │ │ │ │ │ │ └── network │ │ │ │ │ ├── uci-defaults/ │ │ │ │ │ │ └── 14_migrate-dhcp-release │ │ │ │ │ └── udhcpc.user │ │ │ │ ├── lib/ │ │ │ │ │ ├── netifd/ │ │ │ │ │ │ ├── dhcp.script │ │ │ │ │ │ └── proto/ │ │ │ │ │ │ └── dhcp.sh │ │ │ │ │ └── network/ │ │ │ │ │ └── config.sh │ │ │ │ ├── sbin/ │ │ │ │ │ ├── devstatus │ │ │ │ │ ├── ifstatus │ │ │ │ │ └── ifup │ │ │ │ └── usr/ │ │ │ │ └── share/ │ │ │ │ └── udhcpc/ │ │ │ │ └── default.script │ │ │ ├── qos-scripts/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── config/ │ │ │ │ │ │ └── qos │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ └── iface/ │ │ │ │ │ │ └── 10-qos │ │ │ │ │ └── init.d/ │ │ │ │ │ └── qos │ │ │ │ └── usr/ │ │ │ │ ├── bin/ │ │ │ │ │ ├── qos-start │ │ │ │ │ ├── qos-stat │ │ │ │ │ └── qos-stop │ │ │ │ └── lib/ │ │ │ │ └── qos/ │ │ │ │ ├── generate.sh │ │ │ │ └── tcrules.awk │ │ │ ├── qosify/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ ├── qosify-defaults.conf │ │ │ │ ├── qosify-status │ │ │ │ ├── qosify.conf │ │ │ │ ├── qosify.hotplug │ │ │ │ └── qosify.init │ │ │ ├── soloscli/ │ │ │ │ ├── Makefile │ │ │ │ ├── files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ │ └── atm/ │ │ │ │ │ │ │ └── 15-solos-init │ │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ │ └── solos │ │ │ │ │ └── solos-log-stats │ │ │ │ └── patches/ │ │ │ │ ├── 001-no-driver.patch │ │ │ │ └── 002-cflags.patch │ │ │ ├── swconfig/ │ │ │ │ ├── Makefile │ │ │ │ ├── files/ │ │ │ │ │ └── switch.sh │ │ │ │ └── src/ │ │ │ │ ├── Makefile │ │ │ │ ├── cli.c │ │ │ │ ├── swlib.c │ │ │ │ ├── swlib.h │ │ │ │ └── uci.c │ │ │ ├── vti/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ └── vti.sh │ │ │ ├── vxlan/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ └── vxlan.sh │ │ │ └── xfrm/ │ │ │ ├── Makefile │ │ │ └── files/ │ │ │ └── xfrm.sh │ │ ├── ipv6/ │ │ │ ├── 464xlat/ │ │ │ │ ├── Makefile │ │ │ │ ├── files/ │ │ │ │ │ └── 464xlat.sh │ │ │ │ └── src/ │ │ │ │ ├── 464xlatcfg.c │ │ │ │ └── Makefile │ │ │ ├── 6in4/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ └── 6in4.sh │ │ │ ├── 6rd/ │ │ │ │ ├── Makefile │ │ │ │ ├── files/ │ │ │ │ │ └── 6rd.sh │ │ │ │ └── src/ │ │ │ │ ├── 6rdcalc.c │ │ │ │ └── Makefile │ │ │ ├── 6to4/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ └── 6to4.sh │ │ │ ├── ds-lite/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ └── dslite.sh │ │ │ ├── map/ │ │ │ │ ├── Makefile │ │ │ │ ├── files/ │ │ │ │ │ └── map.sh │ │ │ │ └── src/ │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── mapcalc.c │ │ │ ├── odhcp6c/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ ├── dhcpv6.script │ │ │ │ ├── dhcpv6.sh │ │ │ │ └── odhcp6c.user │ │ │ └── thc-ipv6/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 000-cflags_override.patch │ │ │ └── 100-no-ssl.patch │ │ ├── services/ │ │ │ ├── bridger/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ ├── bridger.conf │ │ │ │ └── bridger.init │ │ │ ├── dnsmasq/ │ │ │ │ ├── Makefile │ │ │ │ ├── files/ │ │ │ │ │ ├── 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 │ │ │ ├── dropbear/ │ │ │ │ ├── Config.in │ │ │ │ ├── Makefile │ │ │ │ ├── files/ │ │ │ │ │ ├── dropbear.config │ │ │ │ │ ├── dropbear.failsafe │ │ │ │ │ └── dropbear.init │ │ │ │ └── patches/ │ │ │ │ ├── 100-pubkey_path.patch │ │ │ │ ├── 110-change_user.patch │ │ │ │ ├── 130-ssh_ignore_x_args.patch │ │ │ │ ├── 140-disable_assert.patch │ │ │ │ ├── 160-lto-jobserver.patch │ │ │ │ ├── 600-allow-blank-root-password.patch │ │ │ │ ├── 900-configure-hardening.patch │ │ │ │ ├── 901-bundled-libs-cflags.patch │ │ │ │ └── 910-signkey-fix-use-of-rsa-sha2-256-pubkeys.patch │ │ │ ├── ead/ │ │ │ │ ├── Makefile │ │ │ │ └── src/ │ │ │ │ ├── Makefile │ │ │ │ ├── aes.c │ │ │ │ ├── ead-client.c │ │ │ │ ├── ead-crypt.c │ │ │ │ ├── ead-crypt.h │ │ │ │ ├── ead-pcap.h │ │ │ │ ├── ead.c │ │ │ │ ├── ead.h │ │ │ │ ├── filter.c │ │ │ │ ├── libbridge.h │ │ │ │ ├── libbridge_init.c │ │ │ │ ├── libbridge_private.h │ │ │ │ ├── list.h │ │ │ │ ├── passwd │ │ │ │ ├── pfc.c │ │ │ │ ├── pw_encrypt_md5.c │ │ │ │ ├── sha1.c │ │ │ │ └── tinysrp/ │ │ │ │ ├── Makefile.am │ │ │ │ ├── Makefile.in │ │ │ │ ├── Notes │ │ │ │ ├── acconfig.h │ │ │ │ ├── acinclude.m4 │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── bn.h │ │ │ │ ├── bn_add.c │ │ │ │ ├── bn_asm.c │ │ │ │ ├── bn_ctx.c │ │ │ │ ├── bn_div.c │ │ │ │ ├── bn_exp.c │ │ │ │ ├── bn_lcl.h │ │ │ │ ├── bn_lib.c │ │ │ │ ├── bn_mul.c │ │ │ │ ├── bn_prime.h │ │ │ │ ├── bn_shift.c │ │ │ │ ├── bn_sqr.c │ │ │ │ ├── bn_word.c │ │ │ │ ├── clitest.c │ │ │ │ ├── config.h.in │ │ │ │ ├── configure │ │ │ │ ├── configure.in │ │ │ │ ├── install-sh │ │ │ │ ├── missing │ │ │ │ ├── mkinstalldirs │ │ │ │ ├── srvtest.c │ │ │ │ ├── stamp-h.in │ │ │ │ ├── t_client.c │ │ │ │ ├── t_client.h │ │ │ │ ├── t_conf.c │ │ │ │ ├── t_conv.c │ │ │ │ ├── t_defines.h │ │ │ │ ├── t_getconf.c │ │ │ │ ├── t_getpass.c │ │ │ │ ├── t_math.c │ │ │ │ ├── t_misc.c │ │ │ │ ├── t_pw.c │ │ │ │ ├── t_pwd.h │ │ │ │ ├── t_read.c │ │ │ │ ├── t_read.h │ │ │ │ ├── t_server.c │ │ │ │ ├── t_server.h │ │ │ │ ├── t_sha.c │ │ │ │ ├── t_sha.h │ │ │ │ ├── t_truerand.c │ │ │ │ ├── tconf.c │ │ │ │ ├── tinysrp.c │ │ │ │ ├── tinysrp.h │ │ │ │ ├── tpasswd │ │ │ │ └── tphrase.c │ │ │ ├── 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/ │ │ │ │ │ ├── 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 │ │ │ │ └── src/ │ │ │ │ ├── src/ │ │ │ │ │ ├── ap/ │ │ │ │ │ │ ├── ubus.c │ │ │ │ │ │ └── ubus.h │ │ │ │ │ └── utils/ │ │ │ │ │ └── build_features.h │ │ │ │ └── wpa_supplicant/ │ │ │ │ ├── ubus.c │ │ │ │ └── ubus.h │ │ │ ├── ipset-dns/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ ├── ipset-dns.config │ │ │ │ └── ipset-dns.init │ │ │ ├── lldpd/ │ │ │ │ ├── Config.in │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ ├── lldpd.config │ │ │ │ └── lldpd.init │ │ │ ├── odhcpd/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ ├── odhcpd-update │ │ │ │ ├── odhcpd.defaults │ │ │ │ └── odhcpd.init │ │ │ ├── omcproxy/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ ├── omcproxy.config │ │ │ │ └── omcproxy.init │ │ │ ├── ppp/ │ │ │ │ ├── Makefile │ │ │ │ ├── files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ └── ppp/ │ │ │ │ │ │ ├── chap-secrets │ │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── options │ │ │ │ │ │ ├── options.pptp │ │ │ │ │ │ ├── radius/ │ │ │ │ │ │ │ ├── dictionary │ │ │ │ │ │ │ ├── dictionary.asnet │ │ │ │ │ │ │ ├── dictionary.microsoft │ │ │ │ │ │ │ └── servers │ │ │ │ │ │ └── radius.conf │ │ │ │ │ ├── lib/ │ │ │ │ │ │ └── netifd/ │ │ │ │ │ │ ├── ppp-down │ │ │ │ │ │ ├── ppp-up │ │ │ │ │ │ └── ppp6-up │ │ │ │ │ └── ppp.sh │ │ │ │ ├── patches/ │ │ │ │ │ ├── 010-use_target_for_configure.patch │ │ │ │ │ ├── 105-debian_demand.patch │ │ │ │ │ ├── 120-debian_ipv6_updown_option.patch │ │ │ │ │ ├── 133-fix_sha1_include.patch │ │ │ │ │ ├── 200-makefile.patch │ │ │ │ │ ├── 201-mppe_mppc_1.1.patch │ │ │ │ │ ├── 203-opt_flags.patch │ │ │ │ │ ├── 204-radius_config.patch │ │ │ │ │ ├── 205-no_exponential_timeout.patch │ │ │ │ │ ├── 207-lcp_mtu_max.patch │ │ │ │ │ ├── 208-fix_status_code.patch │ │ │ │ │ ├── 300-filter-pcap-includes-lib.patch │ │ │ │ │ ├── 310-precompile_filter.patch │ │ │ │ │ ├── 321-multilink_support_custom_iface_names.patch │ │ │ │ │ ├── 330-retain_foreign_default_routes.patch │ │ │ │ │ ├── 340-populate_default_gateway.patch │ │ │ │ │ ├── 400-simplify_kernel_checks.patch │ │ │ │ │ ├── 401-no_record_file.patch │ │ │ │ │ ├── 403-no_wtmp.patch │ │ │ │ │ ├── 404-remove_obsolete_protocol_names.patch │ │ │ │ │ ├── 405-no_multilink_option.patch │ │ │ │ │ ├── 500-add-pptp-plugin.patch │ │ │ │ │ ├── 510-pptp_compile_fix.patch │ │ │ │ │ ├── 511-pptp_cflags.patch │ │ │ │ │ ├── 600-Revert-pppd-Use-openssl-for-the-DES-instead-of-the-l.patch │ │ │ │ │ └── 610-pppd_compile_fix.patch │ │ │ │ └── utils/ │ │ │ │ └── pfc.c │ │ │ ├── relayd/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ └── relay.init │ │ │ ├── uhttpd/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ ├── ubus.default │ │ │ │ ├── uhttpd.config │ │ │ │ └── uhttpd.init │ │ │ ├── umdns/ │ │ │ │ ├── Makefile │ │ │ │ └── files/ │ │ │ │ ├── umdns.config │ │ │ │ ├── umdns.init │ │ │ │ └── umdns.json │ │ │ └── ustp/ │ │ │ ├── Makefile │ │ │ └── files/ │ │ │ └── ustpd.init │ │ └── utils/ │ │ ├── adb-enablemodem/ │ │ │ ├── Makefile │ │ │ └── files/ │ │ │ └── adb-enablemodem │ │ ├── arptables/ │ │ │ └── Makefile │ │ ├── bpftools/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 001-cflags.patch │ │ │ └── 002-includes.patch │ │ ├── comgt/ │ │ │ ├── Makefile │ │ │ ├── files/ │ │ │ │ ├── 3g.chat │ │ │ │ ├── 3g.sh │ │ │ │ ├── 3g.usb │ │ │ │ ├── directip-stop.gcom │ │ │ │ ├── directip.gcom │ │ │ │ ├── directip.sh │ │ │ │ ├── evdo.chat │ │ │ │ ├── getcardinfo.gcom │ │ │ │ ├── getcarrier.gcom │ │ │ │ ├── getcnum.gcom │ │ │ │ ├── getimsi.gcom │ │ │ │ ├── getstrength.gcom │ │ │ │ ├── ncm.json │ │ │ │ ├── ncm.sh │ │ │ │ ├── runcommand.gcom │ │ │ │ ├── setmode.gcom │ │ │ │ ├── setpin.gcom │ │ │ │ └── ussd.gcom │ │ │ └── patches/ │ │ │ ├── 001-compile_fix.patch │ │ │ ├── 002-termios.patch │ │ │ ├── 003-no_XCASE.patch │ │ │ └── 004-check_tty.patch │ │ ├── ebtables/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 100-musl_fix.patch │ │ │ └── 200-fix-extension-init.patch │ │ ├── ethtool/ │ │ │ └── Makefile │ │ ├── iproute2/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 100-configure.patch │ │ │ ├── 110-darwin_fixes.patch │ │ │ ├── 115-add-config-xtlibdir.patch │ │ │ ├── 120-no_arpd_ifstat_rtacct_lnstat.patch │ │ │ ├── 130-no_netem_tipc_dcb_man_vdpa.patch │ │ │ ├── 140-allow_pfifo_fast.patch │ │ │ ├── 140-keep_libmnl_optional.patch │ │ │ ├── 145-keep_libelf_optional.patch │ │ │ ├── 150-keep_libcap_optional.patch │ │ │ ├── 160-libnetlink-pic.patch │ │ │ ├── 170-ip_tiny.patch │ │ │ ├── 175-reduce-dynamic-syms.patch │ │ │ ├── 180-drop_FAILED_POLICY.patch │ │ │ ├── 190-fix-nls-rpath-link.patch │ │ │ ├── 195-build_variant_ip_tc.patch │ │ │ ├── 200-drop_libbsd_dependency.patch │ │ │ └── 300-selinux-configurable.patch │ │ ├── ipset/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 0001-lib-ipset-fix-printf-warning.patch │ │ │ └── 0002-Fix-IPv6-sets-nftables-translation.patch │ │ ├── iptables/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 001-xtables-Call-init_extensions6-for-static-builds.patch │ │ │ ├── 002-xtables-Call-init_extensions_a_b.patch │ │ │ ├── 010-add-set-dscpmark-support.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 │ │ ├── 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 │ │ ├── iwcap/ │ │ │ ├── Makefile │ │ │ └── src/ │ │ │ └── iwcap.c │ │ ├── iwinfo/ │ │ │ └── Makefile │ │ ├── layerscape/ │ │ │ └── restool/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── remove-manpage.patch │ │ ├── linux-atm/ │ │ │ ├── Makefile │ │ │ ├── files/ │ │ │ │ ├── atm.hotplug │ │ │ │ ├── br2684-up │ │ │ │ ├── br2684ctl │ │ │ │ └── br2684ctl_wrap │ │ │ └── patches/ │ │ │ ├── 000-debian_16.patch │ │ │ ├── 200-no_libfl.patch │ │ │ ├── 300-objcopy_path.patch │ │ │ ├── 400-portability_fixes.patch │ │ │ ├── 500-br2684ctl_script.patch │ │ │ ├── 501-br2684ctl_itfname.patch │ │ │ ├── 510-remove-LINUX_NETDEVICE-hack.patch │ │ │ ├── 600-fix-format-errors.patch │ │ │ ├── 700-musl-include.patch │ │ │ └── 800-include_sockios.patch │ │ ├── ltq-dsl-base/ │ │ │ ├── Makefile │ │ │ └── files/ │ │ │ ├── etc/ │ │ │ │ └── hotplug.d/ │ │ │ │ └── dsl/ │ │ │ │ ├── led_dsl.sh │ │ │ │ └── pppoa.sh │ │ │ └── sbin/ │ │ │ └── dsl_notify.sh │ │ ├── nftables/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 001-examples-compile-with-make-check.patch │ │ ├── resolveip/ │ │ │ ├── Makefile │ │ │ └── src/ │ │ │ └── resolveip.c │ │ ├── rssileds/ │ │ │ ├── Makefile │ │ │ ├── files/ │ │ │ │ ├── rssi │ │ │ │ └── rssileds.init │ │ │ └── src/ │ │ │ └── rssileds.c │ │ ├── tcpdump/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 001-remove_pcap_debug.patch │ │ │ ├── 100-tcpdump_mini.patch │ │ │ ├── 101-CVE-2020-8037.patch │ │ │ └── 102-CVE-2018-16301.patch │ │ ├── umbim/ │ │ │ ├── Makefile │ │ │ └── files/ │ │ │ └── lib/ │ │ │ └── netifd/ │ │ │ └── proto/ │ │ │ └── mbim.sh │ │ ├── uqmi/ │ │ │ ├── Makefile │ │ │ └── files/ │ │ │ └── lib/ │ │ │ └── netifd/ │ │ │ └── proto/ │ │ │ └── qmi.sh │ │ ├── wireguard-tools/ │ │ │ ├── Makefile │ │ │ └── files/ │ │ │ ├── wireguard.sh │ │ │ └── wireguard_watchdog │ │ ├── wireless-tools/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ ├── 001-debian.patch │ │ │ ├── 002-fix-iwconfig-power-argument-parsing.patch │ │ │ ├── 003-we_essential_def.patch │ │ │ └── 004-increase_iwlist_buffer.patch │ │ ├── wpan-tools/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 001-src-nl_extras.h-fix-compatibility-with-libnl-3.3.0.patch │ │ └── wwan/ │ │ ├── Makefile │ │ └── files/ │ │ ├── data/ │ │ │ ├── 0421-03a7 │ │ │ ├── 0421-060d │ │ │ ├── 0421-060e │ │ │ ├── 0421-0612 │ │ │ ├── 0421-0619 │ │ │ ├── 0421-061e │ │ │ ├── 0421-0623 │ │ │ ├── 0421-0629 │ │ │ ├── 0421-062d │ │ │ ├── 0421-062f │ │ │ ├── 0421-0638 │ │ │ ├── 05c6-0016 │ │ │ ├── 05c6-0023 │ │ │ ├── 05c6-00a0 │ │ │ ├── 05c6-6000 │ │ │ ├── 05c6-9000 │ │ │ ├── 07d1-3e01 │ │ │ ├── 07d1-3e02 │ │ │ ├── 07d1-7e11 │ │ │ ├── 0af0-4005 │ │ │ ├── 0af0-6901 │ │ │ ├── 0af0-7201 │ │ │ ├── 0af0-8120 │ │ │ ├── 0af0-9200 │ │ │ ├── 0b3c-c000 │ │ │ ├── 0b3c-c001 │ │ │ ├── 0b3c-c002 │ │ │ ├── 0b3c-c003 │ │ │ ├── 0b3c-c004 │ │ │ ├── 0b3c-c005 │ │ │ ├── 0b3c-c00a │ │ │ ├── 0b3c-c00b │ │ │ ├── 0bdb-1900 │ │ │ ├── 0bdb-1902 │ │ │ ├── 0bdb-190a │ │ │ ├── 0bdb-190d │ │ │ ├── 0bdb-1910 │ │ │ ├── 0c88-17da │ │ │ ├── 0c88-180a │ │ │ ├── 0f3d-68a2 │ │ │ ├── 0f3d-68aa │ │ │ ├── 1004-6124 │ │ │ ├── 1004-6141 │ │ │ ├── 1004-6157 │ │ │ ├── 1004-618f │ │ │ ├── 106c-3711 │ │ │ ├── 106c-3714 │ │ │ ├── 106c-3715 │ │ │ ├── 106c-3716 │ │ │ ├── 106c-3717 │ │ │ ├── 106c-3718 │ │ │ ├── 106c-3721 │ │ │ ├── 1199-0017 │ │ │ ├── 1199-0018 │ │ │ ├── 1199-0019 │ │ │ ├── 1199-0020 │ │ │ ├── 1199-0021 │ │ │ ├── 1199-0022 │ │ │ ├── 1199-0023 │ │ │ ├── 1199-0024 │ │ │ ├── 1199-0025 │ │ │ ├── 1199-0026 │ │ │ ├── 1199-0027 │ │ │ ├── 1199-0028 │ │ │ ├── 1199-0112 │ │ │ ├── 1199-0120 │ │ │ ├── 1199-0218 │ │ │ ├── 1199-0220 │ │ │ ├── 1199-0224 │ │ │ ├── 1199-0301 │ │ │ ├── 1199-6802 │ │ │ ├── 1199-6803 │ │ │ ├── 1199-6804 │ │ │ ├── 1199-6805 │ │ │ ├── 1199-6808 │ │ │ ├── 1199-6809 │ │ │ ├── 1199-6813 │ │ │ ├── 1199-6815 │ │ │ ├── 1199-6816 │ │ │ ├── 1199-6820 │ │ │ ├── 1199-6821 │ │ │ ├── 1199-6822 │ │ │ ├── 1199-6833 │ │ │ ├── 1199-6834 │ │ │ ├── 1199-6835 │ │ │ ├── 1199-6838 │ │ │ ├── 1199-6839 │ │ │ ├── 1199-683a │ │ │ ├── 1199-683b │ │ │ ├── 1199-6850 │ │ │ ├── 1199-6851 │ │ │ ├── 1199-6852 │ │ │ ├── 1199-6853 │ │ │ ├── 1199-6855 │ │ │ ├── 1199-6856 │ │ │ ├── 1199-6859 │ │ │ ├── 1199-685a │ │ │ ├── 1199-6880 │ │ │ ├── 1199-6890 │ │ │ ├── 1199-6891 │ │ │ ├── 1199-6892 │ │ │ ├── 1199-6893 │ │ │ ├── 1199-68a2 │ │ │ ├── 1199-68aa │ │ │ ├── 1199-68c0 │ │ │ ├── 12d1-1035 │ │ │ ├── 12d1-1404 │ │ │ ├── 12d1-1406 │ │ │ ├── 12d1-140b │ │ │ ├── 12d1-140c │ │ │ ├── 12d1-1412 │ │ │ ├── 12d1-141b │ │ │ ├── 12d1-1433 │ │ │ ├── 12d1-1436 │ │ │ ├── 12d1-1444 │ │ │ ├── 12d1-144e │ │ │ ├── 12d1-1464 │ │ │ ├── 12d1-1465 │ │ │ ├── 12d1-1491 │ │ │ ├── 12d1-14a5 │ │ │ ├── 12d1-14a8 │ │ │ ├── 12d1-14ac │ │ │ ├── 12d1-14ae │ │ │ ├── 12d1-14c6 │ │ │ ├── 12d1-14c8 │ │ │ ├── 12d1-14c9 │ │ │ ├── 12d1-14ca │ │ │ ├── 12d1-14cb │ │ │ ├── 12d1-14cc │ │ │ ├── 12d1-14cf │ │ │ ├── 12d1-14d2 │ │ │ ├── 12d1-1506 │ │ │ ├── 12d1-150a │ │ │ ├── 12d1-150c │ │ │ ├── 12d1-150f │ │ │ ├── 12d1-151b │ │ │ ├── 12d1-151d │ │ │ ├── 12d1-156c │ │ │ ├── 12d1-1576 │ │ │ ├── 12d1-1577 │ │ │ ├── 12d1-1578 │ │ │ ├── 12d1-1589 │ │ │ ├── 12d1-1c05 │ │ │ ├── 12d1-1c07 │ │ │ ├── 12d1-1c08 │ │ │ ├── 12d1-1c10 │ │ │ ├── 12d1-1c12 │ │ │ ├── 12d1-1c1e │ │ │ ├── 12d1-1c1f │ │ │ ├── 12d1-1c23 │ │ │ ├── 12d1-1f16 │ │ │ ├── 1410-1400 │ │ │ ├── 1410-1410 │ │ │ ├── 1410-1420 │ │ │ ├── 1410-1430 │ │ │ ├── 1410-1450 │ │ │ ├── 1410-2100 │ │ │ ├── 1410-2110 │ │ │ ├── 1410-2120 │ │ │ ├── 1410-2130 │ │ │ ├── 1410-2400 │ │ │ ├── 1410-2410 │ │ │ ├── 1410-2420 │ │ │ ├── 1410-4100 │ │ │ ├── 1410-4400 │ │ │ ├── 1410-6000 │ │ │ ├── 1410-6001 │ │ │ ├── 1410-6002 │ │ │ ├── 1410-6010 │ │ │ ├── 1410-7001 │ │ │ ├── 1410-7003 │ │ │ ├── 1410-7030 │ │ │ ├── 1410-7031 │ │ │ ├── 1410-7041 │ │ │ ├── 1410-7042 │ │ │ ├── 1410-9011 │ │ │ ├── 1410-b001 │ │ │ ├── 1529-3100 │ │ │ ├── 16d5-6202 │ │ │ ├── 16d5-6501 │ │ │ ├── 16d5-6502 │ │ │ ├── 16d5-6603 │ │ │ ├── 16d5-900d │ │ │ ├── 16d8-5141 │ │ │ ├── 16d8-5533 │ │ │ ├── 16d8-5543 │ │ │ ├── 16d8-5553 │ │ │ ├── 16d8-6002 │ │ │ ├── 16d8-6006 │ │ │ ├── 16d8-6007 │ │ │ ├── 16d8-6008 │ │ │ ├── 16d8-6522 │ │ │ ├── 16d8-6523 │ │ │ ├── 16d8-6532 │ │ │ ├── 16d8-6533 │ │ │ ├── 16d8-6543 │ │ │ ├── 16d8-680a │ │ │ ├── 19d2-0001 │ │ │ ├── 19d2-0002 │ │ │ ├── 19d2-0015 │ │ │ ├── 19d2-0016 │ │ │ ├── 19d2-0017 │ │ │ ├── 19d2-0018 │ │ │ ├── 19d2-0019 │ │ │ ├── 19d2-0022 │ │ │ ├── 19d2-0024 │ │ │ ├── 19d2-0025 │ │ │ ├── 19d2-0031 │ │ │ ├── 19d2-0033 │ │ │ ├── 19d2-0037 │ │ │ ├── 19d2-0039 │ │ │ ├── 19d2-0042 │ │ │ ├── 19d2-0052 │ │ │ ├── 19d2-0055 │ │ │ ├── 19d2-0057 │ │ │ ├── 19d2-0063 │ │ │ ├── 19d2-0064 │ │ │ ├── 19d2-0066 │ │ │ ├── 19d2-0073 │ │ │ ├── 19d2-0079 │ │ │ ├── 19d2-0082 │ │ │ ├── 19d2-0086 │ │ │ ├── 19d2-0091 │ │ │ ├── 19d2-0094 │ │ │ ├── 19d2-0104 │ │ │ ├── 19d2-0108 │ │ │ ├── 19d2-0116 │ │ │ ├── 19d2-0117 │ │ │ ├── 19d2-0121 │ │ │ ├── 19d2-0124 │ │ │ ├── 19d2-0128 │ │ │ ├── 19d2-0142 │ │ │ ├── 19d2-0143 │ │ │ ├── 19d2-0152 │ │ │ ├── 19d2-0157 │ │ │ ├── 19d2-0167 │ │ │ ├── 19d2-0170 │ │ │ ├── 19d2-0199 │ │ │ ├── 19d2-0257 │ │ │ ├── 19d2-0265 │ │ │ ├── 19d2-0284 │ │ │ ├── 19d2-0326 │ │ │ ├── 19d2-1003 │ │ │ ├── 19d2-1008 │ │ │ ├── 19d2-1010 │ │ │ ├── 19d2-1015 │ │ │ ├── 19d2-1018 │ │ │ ├── 19d2-1172 │ │ │ ├── 19d2-1173 │ │ │ ├── 19d2-1176 │ │ │ ├── 19d2-1177 │ │ │ ├── 19d2-1181 │ │ │ ├── 19d2-1203 │ │ │ ├── 19d2-1208 │ │ │ ├── 19d2-1211 │ │ │ ├── 19d2-1212 │ │ │ ├── 19d2-1217 │ │ │ ├── 19d2-1218 │ │ │ ├── 19d2-1220 │ │ │ ├── 19d2-1222 │ │ │ ├── 19d2-1245 │ │ │ ├── 19d2-1252 │ │ │ ├── 19d2-1254 │ │ │ ├── 19d2-1256 │ │ │ ├── 19d2-1270 │ │ │ ├── 19d2-1401 │ │ │ ├── 19d2-1402 │ │ │ ├── 19d2-1426 │ │ │ ├── 19d2-1512 │ │ │ ├── 19d2-1515 │ │ │ ├── 19d2-1518 │ │ │ ├── 19d2-1519 │ │ │ ├── 19d2-1522 │ │ │ ├── 19d2-1525 │ │ │ ├── 19d2-1527 │ │ │ ├── 19d2-1537 │ │ │ ├── 19d2-1538 │ │ │ ├── 19d2-1544 │ │ │ ├── 19d2-2002 │ │ │ ├── 19d2-2003 │ │ │ ├── 19d2-ffdd │ │ │ ├── 19d2-ffe4 │ │ │ ├── 19d2-ffe9 │ │ │ ├── 19d2-fff1 │ │ │ ├── 19d2-fffb │ │ │ ├── 19d2-fffc │ │ │ ├── 19d2-fffd │ │ │ ├── 19d2-fffe │ │ │ ├── 19d2-ffff │ │ │ ├── 1a8d-1002 │ │ │ ├── 1a8d-1003 │ │ │ ├── 1a8d-1007 │ │ │ ├── 1a8d-1009 │ │ │ ├── 1a8d-100c │ │ │ ├── 1a8d-100d │ │ │ ├── 1a8d-2006 │ │ │ ├── 1bbb-0000 │ │ │ ├── 1bbb-0012 │ │ │ ├── 1bbb-0017 │ │ │ ├── 1bbb-0052 │ │ │ ├── 1bbb-00b7 │ │ │ ├── 1bbb-00ca │ │ │ ├── 1bbb-011e │ │ │ ├── 1bbb-0203 │ │ │ ├── 1c9e-6060 │ │ │ ├── 1c9e-6061 │ │ │ ├── 1c9e-9000 │ │ │ ├── 1c9e-9603 │ │ │ ├── 1c9e-9605 │ │ │ ├── 1c9e-9607 │ │ │ ├── 1c9e-9801 │ │ │ ├── 1c9e-9900 │ │ │ ├── 1e0e-9000 │ │ │ ├── 1e0e-9100 │ │ │ ├── 1e0e-9200 │ │ │ ├── 1e0e-ce16 │ │ │ ├── 1e0e-cefe │ │ │ ├── 1e2d-0053 │ │ │ ├── 1e2d-005b │ │ │ ├── 2001-7d00 │ │ │ ├── 2001-7d01 │ │ │ ├── 2001-7d02 │ │ │ ├── 2001-7d03 │ │ │ ├── 211f-6801 │ │ │ ├── 2357-0201 │ │ │ ├── 2357-0202 │ │ │ ├── 2357-0203 │ │ │ ├── 2357-9000 │ │ │ ├── 2c7c-0125 │ │ │ ├── 413c-8114 │ │ │ ├── 413c-8115 │ │ │ ├── 413c-8116 │ │ │ ├── 413c-8117 │ │ │ ├── 413c-8118 │ │ │ ├── 413c-8128 │ │ │ ├── 413c-8129 │ │ │ ├── 413c-8133 │ │ │ ├── 413c-8134 │ │ │ ├── 413c-8135 │ │ │ ├── 413c-8136 │ │ │ ├── 413c-8137 │ │ │ ├── 413c-8138 │ │ │ ├── 413c-8147 │ │ │ ├── 413c-8180 │ │ │ ├── 413c-8181 │ │ │ ├── 413c-8182 │ │ │ ├── 413c-8186 │ │ │ ├── 413c-8194 │ │ │ ├── 413c-8195 │ │ │ ├── 413c-8196 │ │ │ └── 413c-819b │ │ ├── wwan.sh │ │ ├── wwan.usb │ │ └── wwan.usbmisc │ ├── system/ │ │ ├── ca-certificates/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 0001-ca-certificates-fix-python3-cryptography-woes-in-cer.patch │ │ ├── fstools/ │ │ │ ├── Makefile │ │ │ └── files/ │ │ │ ├── blockd.init │ │ │ ├── fstab.default │ │ │ ├── fstab.init │ │ │ ├── media-change.hotplug │ │ │ ├── mount.hotplug │ │ │ └── snapshot │ │ ├── fwtool/ │ │ │ └── Makefile │ │ ├── gpio-cdev/ │ │ │ └── nu801/ │ │ │ ├── Makefile │ │ │ └── files/ │ │ │ └── nu801.init │ │ ├── iucode-tool/ │ │ │ ├── Makefile │ │ │ └── patches/ │ │ │ └── 200_add-cpuid-compatibility-header-to-build-on-non-x86.patch │ │ ├── mtd/ │ │ │ ├── Makefile │ │ │ └── src/ │ │ │ ├── Makefile │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── fis.c │ │ │ ├── fis.h │ │ │ ├── imagetag.c │ │ │ ├── jffs2.c │ │ │ ├── jffs2.h │ │ │ ├── linksys_bootcount.c │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ ├── mtd.c │ │ │ ├── mtd.h │ │ │ ├── seama.c │ │ │ ├── seama.h │ │ │ ├── tpl_ramips_recoveryflag.c │ │ │ ├── trx.c │ │ │ ├── wrg.c │ │ │ ├── wrgg.c │ │ │ └── wrgg.h │ │ ├── openwrt-keyring/ │ │ │ └── Makefile │ │ ├── opkg/ │ │ │ ├── Makefile │ │ │ └── files/ │ │ │ ├── 20_migrate-feeds │ │ │ ├── customfeeds.conf │ │ │ ├── opkg-key │ │ │ ├── opkg-smime.conf │ │ │ └── opkg.conf │ │ ├── procd/ │ │ │ ├── Makefile │ │ │ └── files/ │ │ │ ├── hotplug-preinit.json │ │ │ ├── hotplug.json │ │ │ ├── procd.sh │ │ │ ├── reload_config │ │ │ ├── service │ │ │ └── uxc.init │ │ ├── refpolicy/ │ │ │ ├── Makefile │ │ │ ├── files/ │ │ │ │ └── selinux-config │ │ │ └── patches/ │ │ │ └── 100-no-docs.patch │ │ ├── rpcd/ │ │ │ ├── Makefile │ │ │ └── files/ │ │ │ ├── 50-migrate-rpcd-ubus-sock.sh │ │ │ ├── rpcd.config │ │ │ └── rpcd.init │ │ ├── selinux-policy/ │ │ │ ├── Makefile │ │ │ └── files/ │ │ │ └── selinux-config │ │ ├── ubox/ │ │ │ ├── Makefile │ │ │ └── files/ │ │ │ ├── log.init │ │ │ └── modules.conf │ │ ├── ubus/ │ │ │ └── Makefile │ │ ├── ucert/ │ │ │ └── Makefile │ │ ├── uci/ │ │ │ ├── Makefile │ │ │ └── files/ │ │ │ └── lib/ │ │ │ └── config/ │ │ │ └── uci.sh │ │ ├── urandom-seed/ │ │ │ ├── Makefile │ │ │ └── files/ │ │ │ ├── etc/ │ │ │ │ └── init.d/ │ │ │ │ └── urandom_seed │ │ │ ├── lib/ │ │ │ │ └── preinit/ │ │ │ │ └── 81_urandom_seed │ │ │ └── sbin/ │ │ │ └── urandom_seed │ │ ├── urngd/ │ │ │ ├── Makefile │ │ │ └── files/ │ │ │ └── urngd.init │ │ ├── usign/ │ │ │ └── Makefile │ │ └── zram-swap/ │ │ ├── Makefile │ │ └── files/ │ │ └── zram.init │ └── utils/ │ ├── adb/ │ │ ├── Makefile │ │ └── patches/ │ │ ├── 001-create_Makefile.patch │ │ ├── 003-fix-musl-build.patch │ │ ├── 010-openssl-1.1.patch │ │ └── 020-cherry-picked-superspeed-fix.patch │ ├── bcm27xx-userland/ │ │ └── Makefile │ ├── bcm4908img/ │ │ ├── Makefile │ │ └── src/ │ │ ├── Makefile │ │ └── bcm4908img.c │ ├── bsdiff/ │ │ ├── Makefile │ │ └── patches/ │ │ └── 001-musl.patch │ ├── busybox/ │ │ ├── Config-defaults.in │ │ ├── Config.in │ │ ├── Makefile │ │ ├── config/ │ │ │ ├── Config.in │ │ │ ├── archival/ │ │ │ │ └── Config.in │ │ │ ├── console-tools/ │ │ │ │ └── Config.in │ │ │ ├── coreutils/ │ │ │ │ └── Config.in │ │ │ ├── debianutils/ │ │ │ │ └── Config.in │ │ │ ├── e2fsprogs/ │ │ │ │ ├── Config.in │ │ │ │ └── old_e2fsprogs/ │ │ │ │ └── Config.in │ │ │ ├── editors/ │ │ │ │ └── Config.in │ │ │ ├── findutils/ │ │ │ │ └── Config.in │ │ │ ├── init/ │ │ │ │ └── Config.in │ │ │ ├── klibc-utils/ │ │ │ │ └── Config.in │ │ │ ├── libbb/ │ │ │ │ └── Config.in │ │ │ ├── loginutils/ │ │ │ │ └── Config.in │ │ │ ├── mailutils/ │ │ │ │ └── Config.in │ │ │ ├── miscutils/ │ │ │ │ └── Config.in │ │ │ ├── modutils/ │ │ │ │ └── Config.in │ │ │ ├── networking/ │ │ │ │ ├── Config.in │ │ │ │ └── udhcp/ │ │ │ │ └── Config.in │ │ │ ├── printutils/ │ │ │ │ └── Config.in │ │ │ ├── procps/ │ │ │ │ └── Config.in │ │ │ ├── runit/ │ │ │ │ └── Config.in │ │ │ ├── selinux/ │ │ │ │ └── Config.in │ │ │ ├── shell/ │ │ │ │ └── Config.in │ │ │ ├── sysklogd/ │ │ │ │ └── Config.in │ │ │ └── util-linux/ │ │ │ ├── Config.in │ │ │ └── volume_id/ │ │ │ └── Config.in │ │ ├── convert_defaults.pl │ │ ├── convert_menuconfig.pl │ │ ├── files/ │ │ │ ├── cron │ │ │ ├── ntpd-hotplug │ │ │ ├── ntpd.capabilities │ │ │ ├── ntpd_acl.json │ │ │ └── sysntpd │ │ ├── patches/ │ │ │ ├── 120-lto-jobserver.patch │ │ │ ├── 200-udhcpc_reduce_msgs.patch │ │ │ ├── 201-udhcpc_changed_ifindex.patch │ │ │ ├── 210-add_netmsg_util.patch │ │ │ ├── 220-add_lock_util.patch │ │ │ ├── 270-libbb_make_unicode_printable.patch │ │ │ ├── 301-ip-link-fix-netlink-msg-size.patch │ │ │ ├── 500-move-traceroute-applets-to-bin.patch │ │ │ ├── 510-move-passwd-applet-to-bin.patch │ │ │ └── 520-loginutils-handle-crypt-failures.patch │ │ └── selinux.config │ ├── bzip2/ │ │ ├── Makefile │ │ └── patches/ │ │ ├── 020-no-utime.patch │ │ └── 021-fix-LDFLAGS.patch │ ├── checkpolicy/ │ │ └── Makefile │ ├── ct-bugcheck/ │ │ ├── Makefile │ │ └── src/ │ │ ├── bugcheck.initd │ │ ├── bugcheck.sh │ │ └── bugchecker.sh │ ├── dtc/ │ │ ├── Makefile │ │ └── patches/ │ │ └── 0001-Support-r-format-for-printing-raw-bytes-with-fdtget.patch │ ├── e2fsprogs/ │ │ ├── Makefile │ │ ├── files/ │ │ │ ├── e2fsck.conf │ │ │ └── e2fsck.sh │ │ └── patches/ │ │ ├── 000-relocatable.patch │ │ ├── 001-com_err_version.patch │ │ └── 002-fix-subst-host-build.patch │ ├── f2fs-tools/ │ │ ├── Makefile │ │ └── patches/ │ │ └── 200-resize_f2fs-fix_wrong_ovp_calculation.patch │ ├── fbtest/ │ │ ├── Makefile │ │ └── src/ │ │ ├── Makefile │ │ └── fbtest.c │ ├── fritz-tools/ │ │ ├── Makefile │ │ ├── README.md │ │ └── src/ │ │ ├── CMakeLists.txt │ │ ├── fritz_cal_extract.c │ │ ├── fritz_tffs_nand_read.c │ │ └── fritz_tffs_read.c │ ├── jboot-tools/ │ │ ├── Makefile │ │ ├── README.md │ │ └── src/ │ │ ├── CMakeLists.txt │ │ └── jboot_config_read.c │ ├── jsonfilter/ │ │ └── Makefile │ ├── lua/ │ │ ├── Makefile │ │ ├── patches/ │ │ │ ├── 001-include-version-number.patch │ │ │ ├── 010-lua-5.1.3-lnum-full-260308.patch │ │ │ ├── 011-lnum-use-double.patch │ │ │ ├── 012-lnum-fix-ltle-relational-operators.patch │ │ │ ├── 013-lnum-strtoul-parsing-fixes.patch │ │ │ ├── 015-lnum-ppc-compat.patch │ │ │ ├── 020-shared_liblua.patch │ │ │ ├── 030-archindependent-bytecode.patch │ │ │ ├── 040-use-symbolic-functions.patch │ │ │ ├── 050-honor-cflags.patch │ │ │ ├── 100-no_readline.patch │ │ │ ├── 200-lua-path.patch │ │ │ └── 300-opcode_performance.patch │ │ └── patches-host/ │ │ ├── 001-include-version-number.patch │ │ ├── 010-lua-5.1.3-lnum-full-260308.patch │ │ ├── 011-lnum-use-double.patch │ │ ├── 012-lnum-fix-ltle-relational-operators.patch │ │ ├── 013-lnum-strtoul-parsing-fixes.patch │ │ ├── 015-lnum-ppc-compat.patch │ │ ├── 030-archindependent-bytecode.patch │ │ └── 100-no_readline.patch │ ├── lua5.3/ │ │ ├── Makefile │ │ ├── patches/ │ │ │ ├── 001-include-version-number.patch │ │ │ ├── 020-shared_liblua.patch │ │ │ └── 100-no_readline.patch │ │ └── patches-host/ │ │ ├── 001-include-version-number.patch │ │ └── 100-no_readline.patch │ ├── mdadm/ │ │ ├── Makefile │ │ ├── files/ │ │ │ ├── mdadm.config │ │ │ └── mdadm.init │ │ └── patches/ │ │ ├── 100-cross_compile.patch │ │ └── 200-reduce_size.patch │ ├── mtd-utils/ │ │ ├── Makefile │ │ └── patches/ │ │ ├── 100-fix_includes.patch │ │ └── 130-lzma_jffs2.patch │ ├── nvram/ │ │ ├── Makefile │ │ ├── files/ │ │ │ ├── nvram-bcm47xx.init │ │ │ └── nvram-bcm53xx.init │ │ └── src/ │ │ ├── Makefile │ │ ├── cli.c │ │ ├── crc.c │ │ ├── nvram.c │ │ ├── nvram.h │ │ └── sdinitvals.h │ ├── osafeloader/ │ │ ├── Makefile │ │ └── src/ │ │ ├── Makefile │ │ ├── md5.c │ │ ├── md5.h │ │ └── osafeloader.c │ ├── oseama/ │ │ ├── Makefile │ │ └── src/ │ │ ├── Makefile │ │ ├── md5.c │ │ ├── md5.h │ │ └── oseama.c │ ├── otrx/ │ │ └── Makefile │ ├── policycoreutils/ │ │ └── Makefile │ ├── px5g-mbedtls/ │ │ ├── Makefile │ │ └── px5g-mbedtls.c │ ├── px5g-wolfssl/ │ │ ├── Makefile │ │ └── px5g-wolfssl.c │ ├── ravpower-mcu/ │ │ └── Makefile │ ├── secilc/ │ │ └── Makefile │ ├── spidev_test/ │ │ └── Makefile │ ├── ucode/ │ │ └── Makefile │ ├── ugps/ │ │ ├── Makefile │ │ └── files/ │ │ ├── gps.config │ │ └── ugps.init │ ├── usbmode/ │ │ ├── Makefile │ │ ├── data/ │ │ │ └── 12d1-1f16 │ │ └── files/ │ │ ├── usbmode.hotplug │ │ └── usbmode.init │ └── util-linux/ │ ├── Makefile │ └── patches/ │ ├── 010-meson-typo.patch │ ├── 020-meson-fix-compilation-without-systemd.patch │ ├── 030-meson-don-t-use-run.patch │ ├── 040-meson-fix-cpu_set_t-test.patch │ ├── 050-meson-fix-environ-search.patch │ ├── 060-meson-add-_GNU_SOURCE-for-sighandler_t.patch │ ├── 070-meson-fix-isnan-check.patch │ ├── 080-meson-fix-tzname-check.patch │ ├── 090-meson-libpam.patch │ ├── 100-meson-make-libcap-ng-dependent-on-setpriv.patch │ ├── 110-meson-fix-when-HAVE_CLOCK_GETTIME-is-set.patch │ ├── 120-meson-get-the-project-version-from-the-version-gen-s.patch │ ├── 130-meson-fix-error-in-processing-version-for-pc-files.patch │ ├── 200-meson-no-po.patch │ └── 210-use-urandom.patch ├── rules.mk ├── scripts/ │ ├── arm-magic.sh │ ├── brcmImage.pl │ ├── bundle-libraries.sh │ ├── cfe-bin-header.py │ ├── cfe-partition-tag.py │ ├── cfe-wfi-tag.py │ ├── check-toolchain-clean.sh │ ├── checkpatch.pl │ ├── clean-package.sh │ ├── cleanfile │ ├── cleanpatch │ ├── combined-ext-image.sh │ ├── combined-image.sh │ ├── command_all.sh │ ├── config/ │ │ ├── Makefile │ │ ├── README │ │ ├── conf.c │ │ ├── confdata.c │ │ ├── expr.c │ │ ├── expr.h │ │ ├── images.c │ │ ├── images.h │ │ ├── internal.h │ │ ├── lexer.l │ │ ├── lexer.lex.c │ │ ├── list.h │ │ ├── lkc.h │ │ ├── lkc_proto.h │ │ ├── lxdialog/ │ │ │ ├── checklist.c │ │ │ ├── dialog.h │ │ │ ├── inputbox.c │ │ │ ├── menubox.c │ │ │ ├── textbox.c │ │ │ ├── util.c │ │ │ └── yesno.c │ │ ├── mconf-cfg.sh │ │ ├── mconf.c │ │ ├── menu.c │ │ ├── nconf-cfg.sh │ │ ├── nconf.c │ │ ├── nconf.gui.c │ │ ├── nconf.h │ │ ├── parser.tab.c │ │ ├── parser.tab.h │ │ ├── parser.y │ │ ├── preprocess.c │ │ ├── qconf-cfg.sh │ │ ├── qconf.cc │ │ ├── qconf.h │ │ ├── symbol.c │ │ └── util.c │ ├── config.guess │ ├── config.rpath │ ├── config.sub │ ├── const_structs.checkpatch │ ├── deptest.sh │ ├── diffconfig.sh │ ├── dl_cleanup.py │ ├── dl_github_archive.py │ ├── download.pl │ ├── dump-target-info.pl │ ├── env │ ├── ext-toolchain.sh │ ├── feeds │ ├── fixup-makefile.pl │ ├── flashing/ │ │ ├── adam2flash-502T.pl │ │ ├── adam2flash-fritzbox.pl │ │ ├── adam2flash.pl │ │ ├── adsl2mue_flash.pl │ │ ├── eva_ramboot.py │ │ ├── flash.sh │ │ └── jungo-image.py │ ├── functions.sh │ ├── gen-dependencies.sh │ ├── gen_image_generic.sh │ ├── get_source_date_epoch.sh │ ├── getver.sh │ ├── ipkg-build │ ├── ipkg-make-index.sh │ ├── ipkg-remove │ ├── json_add_image_info.py │ ├── json_overview_image_info.py │ ├── kconfig.pl │ ├── linksys-image.sh │ ├── make-ipkg-dir.sh │ ├── md5sum │ ├── metadata.pm │ ├── mkhash.c │ ├── mkits-qsdk-ipq-image.sh │ ├── mkits.sh │ ├── om-fwupgradecfg-gen.sh │ ├── package-metadata.pl │ ├── pad_image │ ├── patch-kernel.sh │ ├── patch-specs.sh │ ├── portable_date.sh │ ├── qemustart │ ├── redboot-script.pl │ ├── relink-lib.sh │ ├── remote-gdb │ ├── rstrip.sh │ ├── sercomm-crypto.py │ ├── sercomm-partition-tag.py │ ├── sercomm-payload.py │ ├── sign_images.sh │ ├── size_compare.sh │ ├── slugimage.pl │ ├── spelling.txt │ ├── srecimage.pl │ ├── strip-kmod.sh │ ├── symlink-tree.sh │ ├── sysupgrade-tar.sh │ ├── target-metadata.pl │ ├── time.pl │ ├── timestamp.pl │ └── ubinize-image.sh ├── target/ │ ├── Config.in │ ├── Makefile │ ├── imagebuilder/ │ │ ├── Config.in │ │ ├── Makefile │ │ └── files/ │ │ ├── Makefile │ │ ├── README.md │ │ └── repositories.conf │ ├── linux/ │ │ ├── Makefile │ │ ├── apm821xx/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ ├── diag.sh │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ └── ieee80211/ │ │ │ │ │ │ └── 10_fix_wifi_mac │ │ │ │ │ ├── init.d/ │ │ │ │ │ │ └── hwmon_fancontrol │ │ │ │ │ ├── inittab │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ ├── 04_led_migration │ │ │ │ │ └── 05_fix-compat-version │ │ │ │ └── lib/ │ │ │ │ ├── preinit/ │ │ │ │ │ ├── 05_set_iface_mac_apm821xx │ │ │ │ │ ├── 05_set_preinit_iface_apm821xx │ │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade/ │ │ │ │ ├── platform.sh │ │ │ │ └── wdbook.sh │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ ├── dts/ │ │ │ │ ├── apm82181.dtsi │ │ │ │ ├── meraki-mr24.dts │ │ │ │ ├── meraki-mx60.dts │ │ │ │ ├── netgear-wndap620.dts │ │ │ │ ├── netgear-wndap660.dts │ │ │ │ ├── netgear-wndap6x0.dtsi │ │ │ │ ├── netgear-wndr4700.dts │ │ │ │ └── wd-mybooklive.dts │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── mbl_boot.scr │ │ │ │ ├── mbl_gen_hdd_img.sh │ │ │ │ ├── nand.mk │ │ │ │ └── sata.mk │ │ │ ├── nand/ │ │ │ │ ├── config-default │ │ │ │ ├── profiles/ │ │ │ │ │ └── 00-default.mk │ │ │ │ └── target.mk │ │ │ ├── patches-5.10/ │ │ │ │ ├── 100-dwc2-disable-powerdown.patch │ │ │ │ ├── 201-add-amcc-apollo3g-support.patch │ │ │ │ ├── 300-fix-atheros-nics-on-apm82181.patch │ │ │ │ ├── 301-fix-memory-map-wndr4700.patch │ │ │ │ ├── 802-usb-xhci-force-msi-renesas-xhci.patch │ │ │ │ ├── 803-hwmon-tc654-add-detection-routine.patch │ │ │ │ ├── 804-hwmon-tc654-add-thermal_cooling-device.patch │ │ │ │ └── 900-powerpc-bootwrapper-force-gzip-as-mkimage-s-compress.patch │ │ │ ├── patches-5.15/ │ │ │ │ ├── 010-hwmon-tc654-add-thermal_cooling-device.patch │ │ │ │ ├── 201-add-amcc-apollo3g-support.patch │ │ │ │ ├── 300-fix-atheros-nics-on-apm82181.patch │ │ │ │ ├── 301-fix-memory-map-wndr4700.patch │ │ │ │ └── 900-powerpc-bootwrapper-force-gzip-as-mkimage-s-compress.patch │ │ │ └── sata/ │ │ │ ├── config-default │ │ │ ├── profiles/ │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── archs38/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ └── etc/ │ │ │ │ └── board.d/ │ │ │ │ └── 02_network │ │ │ ├── config-5.10 │ │ │ ├── generic/ │ │ │ │ ├── profiles/ │ │ │ │ │ └── 00-default.mk │ │ │ │ └── target.mk │ │ │ └── image/ │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_axs10x_sdcard_img.sh │ │ │ ├── uEnv.txt │ │ │ └── uboot.env.txt │ │ ├── armvirt/ │ │ │ ├── 32/ │ │ │ │ ├── config-5.10 │ │ │ │ ├── config-5.15 │ │ │ │ └── target.mk │ │ │ ├── 64/ │ │ │ │ ├── config-5.10 │ │ │ │ ├── config-5.15 │ │ │ │ └── target.mk │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── base-files/ │ │ │ │ └── etc/ │ │ │ │ ├── board.d/ │ │ │ │ │ └── 00_model │ │ │ │ └── inittab │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ └── image/ │ │ │ └── Makefile │ │ ├── at91/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ └── etc/ │ │ │ │ ├── board.d/ │ │ │ │ │ └── 02_network │ │ │ │ └── config/ │ │ │ │ └── network │ │ │ ├── files/ │ │ │ │ └── arch/ │ │ │ │ └── arm/ │ │ │ │ └── boot/ │ │ │ │ └── dts/ │ │ │ │ ├── at91-q5xr5.dts │ │ │ │ └── lmu5000.dts │ │ │ ├── image/ │ │ │ │ ├── Config.in │ │ │ │ ├── Makefile │ │ │ │ ├── dfboot/ │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src/ │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── _udivsi3.S │ │ │ │ │ ├── _umodsi3.S │ │ │ │ │ ├── asm_isr.S │ │ │ │ │ ├── asm_mci_isr.S │ │ │ │ │ ├── at45.c │ │ │ │ │ ├── com.c │ │ │ │ │ ├── com.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── cstartup_ram.S │ │ │ │ │ ├── dataflash.c │ │ │ │ │ ├── dataflash.h │ │ │ │ │ ├── div0.c │ │ │ │ │ ├── elf32-littlearm.lds │ │ │ │ │ ├── embedded_services.h │ │ │ │ │ ├── include/ │ │ │ │ │ │ ├── AT91C_MCI_Device.h │ │ │ │ │ │ ├── AT91RM9200.h │ │ │ │ │ │ ├── AT91RM9200.inc │ │ │ │ │ │ ├── AT91RM9200_inc.h │ │ │ │ │ │ ├── led.h │ │ │ │ │ │ └── lib_AT91RM9200.h │ │ │ │ │ ├── init.c │ │ │ │ │ ├── jump.S │ │ │ │ │ ├── led.c │ │ │ │ │ ├── main.c │ │ │ │ │ ├── main.h │ │ │ │ │ ├── mci_device.c │ │ │ │ │ └── stdio.h │ │ │ │ ├── gen_at91_sdcard_img.sh │ │ │ │ ├── sam9x.mk │ │ │ │ ├── sama5.mk │ │ │ │ ├── sama7.mk │ │ │ │ └── uboot-env.txt │ │ │ ├── modules.mk │ │ │ ├── patches-5.10/ │ │ │ │ ├── 101-ARM-at91-build-dtb-for-q5xr5.patch │ │ │ │ ├── 102-dt-bindings-clock-at91-add-sama7g5-pll-defines.patch │ │ │ │ ├── 103-clk-at91-sama7g5-allow-SYS-and-CPU-PLLs-to-be-export.patch │ │ │ │ ├── 104-clk-at91-clk-master-add-5th-divisor-for-mck-master.patch │ │ │ │ ├── 105-clk-at91-sama7g5-add-5th-divisor-for-mck0-layout-and.patch │ │ │ │ ├── 106-clk-at91-clk-sam9x60-pll-allow-runtime-changes-for-p.patch │ │ │ │ ├── 107-clk-at91-sama7g5-remove-mck0-from-parent-list-of-oth.patch │ │ │ │ ├── 108-clk-at91-sama7g5-decrease-lower-limit-for-MCK0-rate.patch │ │ │ │ ├── 109-clk-at91-sama7g5-do-not-allow-cpu-pll-to-go-higher-t.patch │ │ │ │ ├── 110-clk-at91-clk-master-re-factor-master-clock.patch │ │ │ │ ├── 111-clk-at91-sama7g5-register-cpu-clock.patch │ │ │ │ ├── 112-clk-at91-Fix-the-declaration-of-the-clocks.patch │ │ │ │ ├── 113-clk-at91-Trivial-typo-fixes-in-the-file-sama7g5.c.patch │ │ │ │ ├── 114-clk-at91-sama7g5-remove-all-kernel-doc-kernel-doc-wa.patch │ │ │ │ ├── 115-net-macb-add-userio-bits-as-platform-configuration.patch │ │ │ │ ├── 116-net-macb-add-capability-to-not-set-the-clock-rate.patch │ │ │ │ ├── 117-net-macb-add-function-to-disable-all-macb-clocks.patch │ │ │ │ ├── 118-net-macb-unprepare-clocks-in-case-of-failure.patch │ │ │ │ ├── 119-net-macb-add-support-for-sama7g5-gem-interface.patch │ │ │ │ ├── 120-net-macb-add-support-for-sama7g5-emac-interface.patch │ │ │ │ ├── 121-ASoC-pcm5102a-Make-codec-selectable.patch │ │ │ │ ├── 122-ASoC-atmel-i2s-do-not-warn-if-muxclk-is-missing.patch │ │ │ │ ├── 123-regulator-mcp16502-add-linear_min_sel.patch │ │ │ │ ├── 124-regulator-mcp16502-adapt-for-get-set-on-other-regist.patch │ │ │ │ ├── 125-regulator-mcp16502-add-support-for-ramp-delay.patch │ │ │ │ ├── 126-regulator-mcp16502-remove-void-documentation-of-stru.patch │ │ │ │ ├── 127-regulator-core-validate-selector-against-linear_min_.patch │ │ │ │ ├── 128-regulator-core-do-not-continue-if-selector-match.patch │ │ │ │ ├── 129-regulator-core-return-zero-for-selectors-lower-than-.patch │ │ │ │ ├── 130-regulator-mcp16502-lpm-pin-can-be-optional-on-some-p.patch │ │ │ │ ├── 131-pinctrl-at91-pio4-add-support-for-fewer-lines-on-las.patch │ │ │ │ ├── 132-dmaengine-at_xdmac-adapt-perid-for-mem2mem-operation.patch │ │ │ │ ├── 133-dmaengine-at_xdmac-add-support-for-sama7g5-based-at_.patch │ │ │ │ ├── 134-dmaengine-at_xdmac-add-AXI-priority-support-and-reco.patch │ │ │ │ ├── 135-net-macb-Correct-usage-of-MACB_CAPS_CLK_HW_CHG-flag.patch │ │ │ │ ├── 136-ARM-at91-sam9x60-SiP-types-added-to-soc-description.patch │ │ │ │ ├── 137-drivers-soc-atmel-use-GENMASK.patch │ │ │ │ ├── 138-drivers-soc-atmel-fix-__initconst-should-be-placed-a.patch │ │ │ │ ├── 139-drivers-soc-atmel-add-per-soc-id-and-version-match-m.patch │ │ │ │ ├── 140-drivers-soc-atmel-add-support-for-sama7g5.patch │ │ │ │ ├── 141-drivers-soc-atmel-add-spdx-license-identifier.patch │ │ │ │ ├── 142-drivers-soc-atmel-fix-type-for-same7.patch │ │ │ │ ├── 143-clocksource-drivers-timer-microchip-pit64b-Add-clock.patch │ │ │ │ ├── 144-ASoC-atmel-pdc-Use-managed-DMA-buffer-allocation.patch │ │ │ │ ├── 145-power-reset-at91-sama5d2_shdwc-add-support-for-sama7.patch │ │ │ │ ├── 146-pinctrl-at91-pio4-add-support-for-slew-rate.patch │ │ │ │ ├── 147-pinctrl-at91-pio4-fix-Prefer-unsigned-int-to-bare-us.patch │ │ │ │ ├── 148-net-macb-Add-default-usrio-config-to-default-gem-con.patch │ │ │ │ ├── 149-ARM-at91-pm-Move-prototypes-to-mutually-included-hea.patch │ │ │ │ ├── 150-ASoC-mchp-i2s-mcc-Add-compatible-for-SAMA7G5.patch │ │ │ │ ├── 151-ASoC-mchp-i2s-mcc-Add-multi-channel-support-for-I2S-.patch │ │ │ │ ├── 152-ASoC-mchp-i2s-mcc-Add-support-to-select-TDM-pins.patch │ │ │ │ ├── 153-ASoC-mchp-i2s-mcc-Add-FIFOs-support.patch │ │ │ │ ├── 154-pinctrl-at91-pio4-Fix-slew-rate-disablement.patch │ │ │ │ ├── 155-media-atmel-properly-get-pm_runtime.patch │ │ │ │ ├── 156-media-atmel-atmel-isc-Remove-redundant-assignment-to.patch │ │ │ │ ├── 157-media-atmel-atmel-isc-specialize-gamma-table-into-pr.patch │ │ │ │ ├── 158-media-atmel-atmel-isc-specialize-driver-name-constan.patch │ │ │ │ ├── 159-media-atmel-atmel-isc-add-checks-for-limiting-frame-.patch │ │ │ │ ├── 160-media-atmel-atmel-isc-specialize-max-width-and-max-h.patch │ │ │ │ ├── 161-media-atmel-atmel-isc-specialize-dma-cfg.patch │ │ │ │ ├── 162-media-atmel-atmel-isc-extract-CSC-submodule-config-i.patch │ │ │ │ ├── 163-media-atmel-atmel-isc-base-add-id-to-clock-debug-mes.patch │ │ │ │ ├── 164-media-atmel-atmel-isc-create-register-offsets-struct.patch │ │ │ │ ├── 165-media-atmel-atmel-isc-extract-CBC-submodule-config-i.patch │ │ │ │ ├── 166-media-atmel-atmel-isc-add-CBC-to-the-reg-offsets-str.patch │ │ │ │ ├── 167-media-atmel-atmel-isc-add-SUB422-and-SUB420-to-regis.patch │ │ │ │ ├── 168-media-atmel-atmel-isc-add-RLP-to-register-offsets.patch │ │ │ │ ├── 169-media-atmel-atmel-isc-add-HIS-to-register-offsets.patch │ │ │ │ ├── 170-media-atmel-atmel-isc-add-DMA-to-register-offsets.patch │ │ │ │ ├── 171-media-atmel-atmel-isc-add-support-for-version-regist.patch │ │ │ │ ├── 172-media-atmel-atmel-isc-add-his_entry-to-register-offs.patch │ │ │ │ ├── 173-media-atmel-atmel-isc-add-register-description-for-a.patch │ │ │ │ ├── 174-media-atmel-atmel-isc-extend-pipeline-with-extra-mod.patch │ │ │ │ ├── 175-media-atmel-atmel-isc-add-CC-initialization-function.patch │ │ │ │ ├── 176-media-atmel-atmel-isc-create-product-specific-v4l2-c.patch │ │ │ │ ├── 177-media-atmel-atmel-isc-create-callback-for-DPC-submod.patch │ │ │ │ ├── 178-media-atmel-atmel-isc-create-callback-for-GAM-submod.patch │ │ │ │ ├── 179-media-atmel-atmel-isc-create-callback-for-RLP-submod.patch │ │ │ │ ├── 180-media-atmel-atmel-isc-move-the-formats-list-into-pro.patch │ │ │ │ ├── 181-media-atmel-atmel-isc-create-an-adapt-pipeline-callb.patch │ │ │ │ ├── 182-media-atmel-atmel-isc-regs-add-additional-fields-for.patch │ │ │ │ ├── 183-media-atmel-atmel-isc-base-add-support-for-more-form.patch │ │ │ │ ├── 184-media-atmel-atmel-isc-sama5d2-remove-duplicate-defin.patch │ │ │ │ ├── 185-media-atmel-atmel-isc-add-microchip-xisc-driver.patch │ │ │ │ ├── 186-ASoC-atmel-fix-shadowed-variable.patch │ │ │ │ ├── 187-ASoC-atmel-atmel-i2s-remove-useless-initialization.patch │ │ │ │ ├── 188-ASoC-atmel-i2s-Set-symmetric-sample-bits.patch │ │ │ │ ├── 189-watchdog-sama5d4_wdt-add-support-for-sama7g5-wdt.patch │ │ │ │ ├── 190-media-atmel-fix-build-when-ISC-m-and-XISC-y.patch │ │ │ │ ├── 191-i2c-at91-remove-define-CONFIG_PM.patch │ │ │ │ ├── 192-ASoC-codecs-ad193x-add-support-for-96kHz-and-192kHz-.patch │ │ │ │ ├── 193-media-atmel-atmel-sama5d2-isc-fix-YUYV-format.patch │ │ │ │ ├── 194-clk-at91-add-register-definition-for-sama7g5-s-maste.patch │ │ │ │ ├── 195-ARM-at91-add-new-SoC-sama7g5.patch │ │ │ │ ├── 196-ARM-at91-debug-add-sama7g5-low-level-debug-uart.patch │ │ │ │ ├── 197-ARM-at91-pm-move-pm_bu-to-soc_pm-data-structure.patch │ │ │ │ ├── 198-ARM-at91-pm-move-the-setup-of-soc_pm.bu-suspended.patch │ │ │ │ ├── 199-ARM-at91-pm-document-at91_soc_pm-structure.patch │ │ │ │ ├── 200-ARM-at91-pm-check-for-different-controllers-in-at91_.patch │ │ │ │ ├── 201-ARM-at91-pm-do-not-initialize-pdev.patch │ │ │ │ ├── 202-ARM-at91-pm-use-r7-instead-of-tmp1.patch │ │ │ │ ├── 203-ARM-at91-pm-avoid-push-and-pop-on-stack-while-memory.patch │ │ │ │ ├── 204-ARM-at91-pm-s-CONFIG_SOC_SAM9X60-CONFIG_HAVE_AT91_SA.patch │ │ │ │ ├── 205-ARM-at91-pm-add-support-for-waiting-MCK1.4.patch │ │ │ │ ├── 206-ARM-at91-sfrbu-add-sfrbu-registers-definitions-for-s.patch │ │ │ │ ├── 207-ARM-at91-ddr-add-registers-definitions-for-sama7g5-s.patch │ │ │ │ ├── 208-ARM-at91-pm-add-self-refresh-support-for-sama7g5.patch │ │ │ │ ├── 209-ARM-at91-pm-add-support-for-MCK1.4-save-restore-for-.patch │ │ │ │ ├── 210-ARM-at91-pm-add-support-for-2.5V-LDO-regulator-contr.patch │ │ │ │ ├── 211-ARM-at91-pm-wait-for-ddr-power-mode-off.patch │ │ │ │ ├── 212-ARM-at91-pm-add-sama7g5-ddr-controller.patch │ │ │ │ ├── 213-ARM-at91-pm-add-sama7g5-ddr-phy-controller.patch │ │ │ │ ├── 214-ARM-at91-pm-save-ddr-phy-calibration-data-to-securam.patch │ │ │ │ ├── 215-ARM-at91-pm-add-backup-mode-support-for-SAMA7G5.patch │ │ │ │ ├── 216-ARM-at91-pm-add-sama7g5-s-pmc.patch │ │ │ │ ├── 217-ARM-at91-sama7-introduce-sama7-SoC-family.patch │ │ │ │ ├── 218-ARM-at91-pm-add-pm-support-for-SAMA7G5.patch │ │ │ │ ├── 219-ARM-at91-pm-add-sama7g5-shdwc.patch │ │ │ │ ├── 220-ARM-configs-at91-add-defconfig-for-sama7-family-of-S.patch │ │ │ │ ├── 221-ARM-multi_v7_defconfig-add-sama7g5-SoC.patch │ │ │ │ ├── 222-ARM-dts-at91-add-sama7g5-SoC-DT-and-sama7g5-ek.patch │ │ │ │ ├── 223-ARM-at91-pm-do-not-panic-if-ram-controllers-are-not-.patch │ │ │ │ ├── 224-ARM-dts-at91-sama7g5-add-ram-controllers.patch │ │ │ │ ├── 225-ARM-dts-at91-sama7g5-add-securam-node.patch │ │ │ │ ├── 226-ARM-dts-at91-sama7g5-add-shdwc-node.patch │ │ │ │ ├── 227-ARM-dts-at91-sama7g5-add-chipid.patch │ │ │ │ ├── 228-ARM-at91-pm-switch-backup-area-to-vbat-in-backup-mod.patch │ │ │ │ ├── 229-ARM-dts-at91-sama7g5ek-add-suspend-voltage-for-ddr3l.patch │ │ │ │ ├── 230-ARM-at91-pm-group-constants-and-addresses-loading.patch │ │ │ │ ├── 231-ARM-at91-pm-preload-base-address-of-controllers-in-t.patch │ │ │ │ ├── 232-ARM-dts-at91-sama7g5ek-use-proper-slew-rate-settings.patch │ │ │ │ ├── 233-ARM-dts-at91-sama7g5ek-to-not-touch-slew-rate-for-SD.patch │ │ │ │ ├── 234-clk-at91-re-factor-clocks-suspend-resume.patch │ │ │ │ ├── 235-clk-at91-pmc-execute-suspend-resume-only-for-backup-.patch │ │ │ │ ├── 236-clk-at91-sama7g5-add-securam-s-peripheral-clock.patch │ │ │ │ ├── 237-clk-at91-clk-master-add-register-definition-for-sama.patch │ │ │ │ ├── 238-clk-at91-clk-master-improve-readability-by-using-loc.patch │ │ │ │ ├── 239-clk-at91-pmc-add-sama7g5-to-the-list-of-available-pm.patch │ │ │ │ ├── 240-clk-at91-clk-master-check-if-div-or-pres-is-zero.patch │ │ │ │ ├── 241-clk-at91-clk-master-mask-mckr-against-layout-mask.patch │ │ │ │ ├── 242-clk-at91-clk-master-fix-prescaler-logic.patch │ │ │ │ ├── 243-clk-at91-clk-sam9x60-pll-add-notifier-for-div-part-o.patch │ │ │ │ ├── 244-clk-at91-clk-master-add-notifier-for-divider.patch │ │ │ │ ├── 245-clk-at91-sama7g5-remove-prescaler-part-of-master-clo.patch │ │ │ │ ├── 246-clk-at91-sama7g5-set-low-limit-for-mck0-at-32KHz.patch │ │ │ │ ├── 247-clk-use-clk_core_get_rate_recalc-in-clk_rate_get.patch │ │ │ │ └── 99-scripts-fix-compilation-error.patch │ │ │ ├── sam9x/ │ │ │ │ ├── config-default │ │ │ │ └── target.mk │ │ │ ├── sama5/ │ │ │ │ ├── config-default │ │ │ │ └── target.mk │ │ │ └── sama7/ │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── ath25/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ └── board.d/ │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ └── lib/ │ │ │ │ ├── preinit/ │ │ │ │ │ └── 15_preinit_iface_atheros │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── files/ │ │ │ │ └── drivers/ │ │ │ │ └── net/ │ │ │ │ └── phy/ │ │ │ │ ├── mvswitch.c │ │ │ │ └── mvswitch.h │ │ │ ├── image/ │ │ │ │ └── Makefile │ │ │ ├── patches-5.10/ │ │ │ │ ├── 107-ar5312_gpio.patch │ │ │ │ ├── 108-ar2315_gpio.patch │ │ │ │ ├── 110-ar2313_ethernet.patch │ │ │ │ ├── 120-spiflash.patch │ │ │ │ ├── 130-watchdog.patch │ │ │ │ ├── 140-redboot_boardconfig.patch │ │ │ │ ├── 141-redboot_partition_scan.patch │ │ │ │ ├── 142-redboot_various_erase_size_fix.patch │ │ │ │ ├── 210-reset_button.patch │ │ │ │ ├── 220-enet_micrel_workaround.patch │ │ │ │ ├── 330-board_leds.patch │ │ │ │ └── 700-swconfig_mvswitch.patch │ │ │ └── profiles/ │ │ │ └── 00-default.mk │ │ ├── ath79/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ └── etc/ │ │ │ │ └── hotplug.d/ │ │ │ │ └── ieee80211/ │ │ │ │ └── 00-wifi-migration │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ ├── dts/ │ │ │ │ ├── ar1022_iodata_wn-ag300dgr.dts │ │ │ │ ├── ar1022_sitecom_wlr-7100.dts │ │ │ │ ├── ar7100.dtsi │ │ │ │ ├── ar7100_mikrotik_routerboard-4xx.dtsi │ │ │ │ ├── ar7161_adtran_bsap1800-v2.dts │ │ │ │ ├── ar7161_adtran_bsap1840.dts │ │ │ │ ├── ar7161_adtran_bsap1880.dtsi │ │ │ │ ├── ar7161_aruba_ap-105.dts │ │ │ │ ├── ar7161_buffalo_wzr-600dhp.dts │ │ │ │ ├── ar7161_buffalo_wzr-hp-ag300h.dts │ │ │ │ ├── ar7161_buffalo_wzr-hp-ag300h.dtsi │ │ │ │ ├── ar7161_dlink_dir-825-b1.dts │ │ │ │ ├── ar7161_jjplus_ja76pf2.dts │ │ │ │ ├── ar7161_meraki_mr16.dts │ │ │ │ ├── ar7161_mikrotik_routerboard-493g.dts │ │ │ │ ├── ar7161_netgear_wndap360.dts │ │ │ │ ├── ar7161_netgear_wndr.dtsi │ │ │ │ ├── ar7161_netgear_wndr3700-v2.dts │ │ │ │ ├── ar7161_netgear_wndr3700.dts │ │ │ │ ├── ar7161_netgear_wndr3800.dts │ │ │ │ ├── ar7161_netgear_wndr3800ch.dts │ │ │ │ ├── ar7161_netgear_wndrmac-v1.dts │ │ │ │ ├── ar7161_netgear_wndrmac-v2.dts │ │ │ │ ├── ar7161_siemens_ws-ap3610.dts │ │ │ │ ├── ar7161_ubnt_routerstation-pro.dts │ │ │ │ ├── ar7161_ubnt_routerstation.dts │ │ │ │ ├── ar7161_ubnt_routerstation.dtsi │ │ │ │ ├── ar7240.dtsi │ │ │ │ ├── ar7240_buffalo_whr-g301n.dts │ │ │ │ ├── ar7240_dlink_dir-615-e4.dts │ │ │ │ ├── ar7240_engenius_enh202-v1.dts │ │ │ │ ├── ar7240_netgear_wnr1000-v2.dts │ │ │ │ ├── ar7240_netgear_wnr612-v2.dts │ │ │ │ ├── ar7240_netgear_wnr612-v2.dtsi │ │ │ │ ├── ar7240_on_n150r.dts │ │ │ │ ├── ar7240_openmesh_om2p-v1.dts │ │ │ │ ├── ar7240_tplink.dtsi │ │ │ │ ├── ar7240_tplink_tl-wa.dtsi │ │ │ │ ├── ar7240_tplink_tl-wa701nd-v1.dts │ │ │ │ ├── ar7240_tplink_tl-wa730re-v1.dts │ │ │ │ ├── ar7240_tplink_tl-wa801nd-v1.dts │ │ │ │ ├── ar7240_tplink_tl-wa830re-v1.dts │ │ │ │ ├── ar7240_tplink_tl-wa901nd-v1.dts │ │ │ │ ├── ar7240_tplink_tl-wr.dtsi │ │ │ │ ├── ar7240_tplink_tl-wr740n-v1.dts │ │ │ │ ├── ar7240_tplink_tl-wr740n-v3.dts │ │ │ │ ├── ar7240_tplink_tl-wr741-v1.dts │ │ │ │ ├── ar7240_tplink_tl-wr743nd-v1.dts │ │ │ │ ├── ar7240_tplink_tl-wr841-v5.dts │ │ │ │ ├── ar7240_tplink_tl-wr941-v4.dts │ │ │ │ ├── ar7240_ubnt_bullet-m-ar7240.dts │ │ │ │ ├── ar7241.dtsi │ │ │ │ ├── ar7241_netgear_wnr2000-v3.dts │ │ │ │ ├── ar7241_netgear_wnr2200-16m.dts │ │ │ │ ├── ar7241_netgear_wnr2200-8m.dts │ │ │ │ ├── ar7241_netgear_wnr2200.dtsi │ │ │ │ ├── ar7241_tplink.dtsi │ │ │ │ ├── ar7241_tplink_tl-mr3220-v1.dts │ │ │ │ ├── ar7241_tplink_tl-mr3420-v1.dts │ │ │ │ ├── ar7241_tplink_tl-mr3x20.dtsi │ │ │ │ ├── ar7241_tplink_tl-wr841-v7.dts │ │ │ │ ├── ar7241_tplink_tl-wr842n-v1.dts │ │ │ │ ├── ar7241_ubnt_airrouter.dts │ │ │ │ ├── ar7241_ubnt_bullet-m-ar7241.dts │ │ │ │ ├── ar7241_ubnt_nanobridge-m.dts │ │ │ │ ├── ar7241_ubnt_nanostation-loco-m.dts │ │ │ │ ├── ar7241_ubnt_nanostation-m.dts │ │ │ │ ├── ar7241_ubnt_picostation-m.dts │ │ │ │ ├── ar7241_ubnt_powerbridge-m.dts │ │ │ │ ├── ar7241_ubnt_rocket-m.dts │ │ │ │ ├── ar7241_ubnt_unifi-ap-outdoor-plus.dts │ │ │ │ ├── ar7241_ubnt_unifi.dts │ │ │ │ ├── ar7241_ubnt_unifi.dtsi │ │ │ │ ├── ar7242.dtsi │ │ │ │ ├── ar7242_avm_fritz300e.dts │ │ │ │ ├── ar7242_buffalo_bhr-4grv.dts │ │ │ │ ├── ar7242_buffalo_wzr-bhr.dtsi │ │ │ │ ├── ar7242_buffalo_wzr-hp-g302h-a1a0.dts │ │ │ │ ├── ar7242_buffalo_wzr-hp-g450h.dts │ │ │ │ ├── ar7242_engenius_eap350-v1.dts │ │ │ │ ├── ar7242_engenius_ecb350-v1.dts │ │ │ │ ├── ar7242_meraki_mr12.dts │ │ │ │ ├── ar7242_tplink_tl-wr2543-v1.dts │ │ │ │ ├── ar7242_ubnt_edgeswitch-5xp.dts │ │ │ │ ├── ar7242_ubnt_edgeswitch-8xp.dts │ │ │ │ ├── ar7242_ubnt_sw.dtsi │ │ │ │ ├── ar724x.dtsi │ │ │ │ ├── ar724x_senao_loader-4k.dtsi │ │ │ │ ├── ar724x_senao_loader-64k.dtsi │ │ │ │ ├── ar724x_ubnt_xm.dtsi │ │ │ │ ├── ar724x_ubnt_xm_outdoor.dtsi │ │ │ │ ├── ar9132.dtsi │ │ │ │ ├── ar9132_buffalo_wzr-hp-g300nh-rb.dts │ │ │ │ ├── ar9132_buffalo_wzr-hp-g300nh-s.dts │ │ │ │ ├── ar9132_buffalo_wzr-hp-g300nh.dtsi │ │ │ │ ├── ar9132_tplink_tl-wa901nd-v2.dts │ │ │ │ ├── ar9132_tplink_tl-wr1043nd-v1.dts │ │ │ │ ├── ar9132_tplink_tl-wr941-v2.dts │ │ │ │ ├── ar9330.dtsi │ │ │ │ ├── ar9330_dlink_dir-505.dts │ │ │ │ ├── ar9330_glinet_gl-ar150.dts │ │ │ │ ├── ar9330_openmesh_om2p-lc.dts │ │ │ │ ├── ar9330_openmesh_om2p-v2.dts │ │ │ │ ├── ar9330_openmesh_om2p.dtsi │ │ │ │ ├── ar9330_pqi_air-pen.dts │ │ │ │ ├── ar9330_ziking_cpe46b.dts │ │ │ │ ├── ar9331.dtsi │ │ │ │ ├── ar9331_8dev_carambola2.dts │ │ │ │ ├── ar9331_alfa-network_ap121f.dts │ │ │ │ ├── ar9331_alfa-network_ap121f.dtsi │ │ │ │ ├── ar9331_alfa-network_ap121fe.dts │ │ │ │ ├── ar9331_arduino_yun.dts │ │ │ │ ├── ar9331_embeddedwireless_dorin.dts │ │ │ │ ├── ar9331_etactica_eg200.dts │ │ │ │ ├── ar9331_glinet_6408.dts │ │ │ │ ├── ar9331_glinet_6416.dts │ │ │ │ ├── ar9331_glinet_64xx.dtsi │ │ │ │ ├── ar9331_glinet_gl-mifi.dts │ │ │ │ ├── ar9331_glinet_gl-usb150.dts │ │ │ │ ├── ar9331_hak5_lan-turtle.dts │ │ │ │ ├── ar9331_hak5_lan-turtle.dtsi │ │ │ │ ├── ar9331_hak5_packet-squirrel.dts │ │ │ │ ├── ar9331_hak5_wifi-pineapple-nano.dts │ │ │ │ ├── ar9331_hiwifi_hc6361.dts │ │ │ │ ├── ar9331_onion_omega.dts │ │ │ │ ├── ar9331_pisen_ts-d084.dts │ │ │ │ ├── ar9331_pisen_wmm003n.dts │ │ │ │ ├── ar9331_teltonika_rut230-v1.dts │ │ │ │ ├── ar9331_tplink_tl-mr10u.dts │ │ │ │ ├── ar9331_tplink_tl-mr3020-v1.dts │ │ │ │ ├── ar9331_tplink_tl-mr3040-v2.dts │ │ │ │ ├── ar9331_tplink_tl-wr703n.dts │ │ │ │ ├── ar9331_tplink_tl-wr703n_tl-mr10u.dtsi │ │ │ │ ├── ar9331_tplink_tl-wr710n-8m.dtsi │ │ │ │ ├── ar9331_tplink_tl-wr710n-v1.dts │ │ │ │ ├── ar9331_tplink_tl-wr710n-v2.1.dts │ │ │ │ ├── ar9331_tplink_tl-wr710n.dtsi │ │ │ │ ├── ar9331_tplink_tl-wr740n-v4.dts │ │ │ │ ├── ar9331_tplink_tl-wr740n-v5.dts │ │ │ │ ├── ar9331_tplink_tl-wr741nd-v4.dts │ │ │ │ ├── ar9331_tplink_tl-wr741nd-v4.dtsi │ │ │ │ ├── ar9341.dtsi │ │ │ │ ├── ar9341_engenius_eap300-v2.dts │ │ │ │ ├── ar9341_engenius_ens202ext-v1.dts │ │ │ │ ├── ar9341_openmesh_om2p-hs-v1.dts │ │ │ │ ├── ar9341_openmesh_om2p-hs-v2.dts │ │ │ │ ├── ar9341_openmesh_om2p-hs-v3.dts │ │ │ │ ├── ar9341_openmesh_om2p-hs.dtsi │ │ │ │ ├── ar9341_pcs_cr3000.dts │ │ │ │ ├── ar9341_pisen_wmb001n.dts │ │ │ │ ├── ar9341_tplink.dtsi │ │ │ │ ├── ar9341_tplink_tl-mr3420-v2.dts │ │ │ │ ├── ar9341_tplink_tl-wa.dtsi │ │ │ │ ├── ar9341_tplink_tl-wa850re-v1.dts │ │ │ │ ├── ar9341_tplink_tl-wa860re-v1.dts │ │ │ │ ├── ar9341_tplink_tl-wa901nd-v3.dts │ │ │ │ ├── ar9341_tplink_tl-wr841-v8.dts │ │ │ │ ├── ar9341_tplink_tl-wr842n-v2.dts │ │ │ │ ├── ar9342_iodata_etg3-r.dts │ │ │ │ ├── ar9342_mikrotik_routerboard-912uag-2hpnd.dts │ │ │ │ ├── ar9342_ubnt_aircube-ac.dts │ │ │ │ ├── ar9342_ubnt_bullet-ac.dts │ │ │ │ ├── ar9342_ubnt_bullet-m-xw.dts │ │ │ │ ├── ar9342_ubnt_lap-120.dts │ │ │ │ ├── ar9342_ubnt_litebeam-ac-gen2.dts │ │ │ │ ├── ar9342_ubnt_nanobeam-ac-gen2.dts │ │ │ │ ├── ar9342_ubnt_nanobeam-ac.dts │ │ │ │ ├── ar9342_ubnt_nanostation-ac-loco.dts │ │ │ │ ├── ar9342_ubnt_nanostation-ac.dts │ │ │ │ ├── ar9342_ubnt_nanostation-loco-m-xw.dts │ │ │ │ ├── ar9342_ubnt_nanostation-m-xw.dts │ │ │ │ ├── ar9342_ubnt_powerbeam-5ac-gen2.dts │ │ │ │ ├── ar9342_ubnt_powerbeam-m2-xw.dts │ │ │ │ ├── ar9342_ubnt_powerbeam-m5-xw.dts │ │ │ │ ├── ar9342_ubnt_wa.dtsi │ │ │ │ ├── ar9342_ubnt_wa_1port.dtsi │ │ │ │ ├── ar9342_ubnt_wa_2port.dtsi │ │ │ │ ├── ar9342_ubnt_xw.dtsi │ │ │ │ ├── ar9344.dtsi │ │ │ │ ├── ar9344_aerohive_hiveap-121.dts │ │ │ │ ├── ar9344_alfa-network_n5q.dts │ │ │ │ ├── ar9344_araknis_an-300-ap-i-n.dts │ │ │ │ ├── ar9344_atheros_db120.dts │ │ │ │ ├── ar9344_comfast_cf-e120a-v3.dts │ │ │ │ ├── ar9344_compex_wpj344-16m.dts │ │ │ │ ├── ar9344_devolo_dlan-pro-1200plus-ac.dts │ │ │ │ ├── ar9344_devolo_dlan_wifi.dtsi │ │ │ │ ├── ar9344_devolo_magic-2-wifi.dts │ │ │ │ ├── ar9344_dlink_dir-825-c1.dts │ │ │ │ ├── ar9344_dlink_dir-835-a1.dts │ │ │ │ ├── ar9344_dlink_dir-8x5.dtsi │ │ │ │ ├── ar9344_embeddedwireless_balin.dts │ │ │ │ ├── ar9344_engenius_eap600.dts │ │ │ │ ├── ar9344_engenius_ecb600.dts │ │ │ │ ├── ar9344_engenius_exx600.dtsi │ │ │ │ ├── ar9344_enterasys_ws-ap3705i.dts │ │ │ │ ├── ar9344_mercury_mw4530r-v1.dts │ │ │ │ ├── ar9344_mikrotik_routerboard-16m-nor.dtsi │ │ │ │ ├── ar9344_mikrotik_routerboard-lhg-5nd.dts │ │ │ │ ├── ar9344_mikrotik_routerboard-sxt-5n.dtsi │ │ │ │ ├── ar9344_mikrotik_routerboard-sxt-5nd-r2.dts │ │ │ │ ├── ar9344_netgear_r6100.dts │ │ │ │ ├── ar9344_netgear_wndr.dtsi │ │ │ │ ├── ar9344_netgear_wndr3700-v4.dts │ │ │ │ ├── ar9344_netgear_wndr4300.dts │ │ │ │ ├── ar9344_netgear_wndr4300sw.dts │ │ │ │ ├── ar9344_netgear_wndr4300tn.dts │ │ │ │ ├── ar9344_netgear_wndr_usb.dtsi │ │ │ │ ├── ar9344_netgear_wndr_wan.dtsi │ │ │ │ ├── ar9344_ocedo_raccoon.dts │ │ │ │ ├── ar9344_openmesh_mr600-v1.dts │ │ │ │ ├── ar9344_openmesh_mr600-v2.dts │ │ │ │ ├── ar9344_openmesh_mr600.dtsi │ │ │ │ ├── ar9344_openmesh_om5p-an.dts │ │ │ │ ├── ar9344_openmesh_om5p.dts │ │ │ │ ├── ar9344_pcs_cap324.dts │ │ │ │ ├── ar9344_pcs_cr5000.dts │ │ │ │ ├── ar9344_qihoo_c301.dts │ │ │ │ ├── ar9344_qxwlan_e750a-v4-16m.dts │ │ │ │ ├── ar9344_qxwlan_e750a-v4-8m.dts │ │ │ │ ├── ar9344_qxwlan_e750g-v8-16m.dts │ │ │ │ ├── ar9344_qxwlan_e750g-v8-8m.dts │ │ │ │ ├── ar9344_qxwlan_e750x.dtsi │ │ │ │ ├── ar9344_samsung_wam250.dts │ │ │ │ ├── ar9344_teltonika_rut955-h7v3c0.dts │ │ │ │ ├── ar9344_teltonika_rut955.dts │ │ │ │ ├── ar9344_teltonika_rut9xx.dtsi │ │ │ │ ├── ar9344_tplink_cpe.dtsi │ │ │ │ ├── ar9344_tplink_cpe210-v1.dts │ │ │ │ ├── ar9344_tplink_cpe220-v2.dts │ │ │ │ ├── ar9344_tplink_cpe510-v1.dts │ │ │ │ ├── ar9344_tplink_cpe510-v2.dts │ │ │ │ ├── ar9344_tplink_cpe510-v3.dts │ │ │ │ ├── ar9344_tplink_cpe610-v1.dts │ │ │ │ ├── ar9344_tplink_cpe610-v2.dts │ │ │ │ ├── ar9344_tplink_cpe_1port.dtsi │ │ │ │ ├── ar9344_tplink_cpe_2port.dtsi │ │ │ │ ├── ar9344_tplink_tl-wdr3500-v1.dts │ │ │ │ ├── ar9344_tplink_tl-wdr3600-v1.dts │ │ │ │ ├── ar9344_tplink_tl-wdr4300-v1-il.dts │ │ │ │ ├── ar9344_tplink_tl-wdr4300-v1.dts │ │ │ │ ├── ar9344_tplink_tl-wdr4300.dtsi │ │ │ │ ├── ar9344_tplink_tl-wdr4310-v1.dts │ │ │ │ ├── ar9344_tplink_tl-wdrxxxx.dtsi │ │ │ │ ├── ar9344_tplink_tl-wr841hp-v2.dts │ │ │ │ ├── ar9344_tplink_wbs210-v1.dts │ │ │ │ ├── ar9344_tplink_wbs210-v2.dts │ │ │ │ ├── ar9344_tplink_wbs510-v1.dts │ │ │ │ ├── ar9344_tplink_wbs510-v2.dts │ │ │ │ ├── ar9344_ubnt_unifi-ap-pro.dts │ │ │ │ ├── ar9344_wd_mynet-n600.dts │ │ │ │ ├── ar9344_wd_mynet-n750.dts │ │ │ │ ├── ar9344_wd_mynet-nxxx.dtsi │ │ │ │ ├── ar9344_wd_mynet-wifi-rangeextender.dts │ │ │ │ ├── ar9344_winchannel_wb2000.dts │ │ │ │ ├── ar9344_zbtlink_zbt-wd323.dts │ │ │ │ ├── ar934x.dtsi │ │ │ │ ├── ar934x_senao_loader.dtsi │ │ │ │ ├── ath79.dtsi │ │ │ │ ├── qca9531_8dev_lima.dts │ │ │ │ ├── qca9531_alfa-network_n2q.dts │ │ │ │ ├── qca9531_alfa-network_pi-wifi4.dts │ │ │ │ ├── qca9531_alfa-network_r36a.dts │ │ │ │ ├── qca9531_alfa-network_r36a.dtsi │ │ │ │ ├── qca9531_alfa-network_tube-2hq.dts │ │ │ │ ├── qca9531_comfast_cf-e130n-v2.dts │ │ │ │ ├── qca9531_comfast_cf-e313ac.dts │ │ │ │ ├── qca9531_comfast_cf-e314n-v2.dts │ │ │ │ ├── qca9531_comfast_cf-e5.dts │ │ │ │ ├── qca9531_comfast_cf-e560ac.dts │ │ │ │ ├── qca9531_comfast_cf-ew72.dts │ │ │ │ ├── qca9531_comfast_cf-wr752ac-v1.dts │ │ │ │ ├── qca9531_compex_wpj531-16m.dts │ │ │ │ ├── qca9531_dlink_dch-g020-a1.dts │ │ │ │ ├── qca9531_engenius_ews511ap.dts │ │ │ │ ├── qca9531_glinet_gl-ar300m-lite.dts │ │ │ │ ├── qca9531_glinet_gl-ar300m-nand.dts │ │ │ │ ├── qca9531_glinet_gl-ar300m-nor.dts │ │ │ │ ├── qca9531_glinet_gl-ar300m.dtsi │ │ │ │ ├── qca9531_glinet_gl-ar300m16.dts │ │ │ │ ├── qca9531_glinet_gl-ar750.dts │ │ │ │ ├── qca9531_glinet_gl-e750.dts │ │ │ │ ├── qca9531_glinet_gl-x300b.dts │ │ │ │ ├── qca9531_glinet_gl-x750.dts │ │ │ │ ├── qca9531_glinet_gl-xe300.dts │ │ │ │ ├── qca9531_joyit_jt-or750i.dts │ │ │ │ ├── qca9531_letv_lba-047-ch.dts │ │ │ │ ├── qca9531_qxwlan_e600g-v2-16m.dts │ │ │ │ ├── qca9531_qxwlan_e600g-v2-8m.dts │ │ │ │ ├── qca9531_qxwlan_e600g.dtsi │ │ │ │ ├── qca9531_qxwlan_e600gac-v2-16m.dts │ │ │ │ ├── qca9531_qxwlan_e600gac-v2-8m.dts │ │ │ │ ├── qca9531_telco_t1.dts │ │ │ │ ├── qca9531_tplink_archer-d50-v1.dts │ │ │ │ ├── qca9531_tplink_tl-mr3420-v3.dts │ │ │ │ ├── qca9531_tplink_tl-mr6400-v1.dts │ │ │ │ ├── qca9531_tplink_tl-wr810n-v1.dts │ │ │ │ ├── qca9531_tplink_tl-wr902ac-v1.dts │ │ │ │ ├── qca9531_wallys_dr531.dts │ │ │ │ ├── qca9531_yuncore_a770.dts │ │ │ │ ├── qca9533_comfast_cf-e110n-v2.dts │ │ │ │ ├── qca9533_dlink_dap-1330-a1.dts │ │ │ │ ├── qca9533_dlink_dap-1365-a1.dts │ │ │ │ ├── qca9533_dlink_dap-13xx.dtsi │ │ │ │ ├── qca9533_dlink_dap-2230-a1.dts │ │ │ │ ├── qca9533_dlink_dap-3320-a1.dts │ │ │ │ ├── qca9533_mikrotik_routerboard-16m.dtsi │ │ │ │ ├── qca9533_mikrotik_routerboard-lhg-2nd.dts │ │ │ │ ├── qca9533_mikrotik_routerboard-lhg-hb.dtsi │ │ │ │ ├── qca9533_mikrotik_routerboard-mapl-2nd.dts │ │ │ │ ├── qca9533_mikrotik_routerboard-wap-2nd.dts │ │ │ │ ├── qca9533_mikrotik_routerboard-wapr-2nd.dts │ │ │ │ ├── qca9533_openmesh_om2p-hs-v4.dts │ │ │ │ ├── qca9533_openmesh_om2p-v4.dts │ │ │ │ ├── qca9533_openmesh_om2p-v4.dtsi │ │ │ │ ├── qca9533_plasmacloud_pa300.dts │ │ │ │ ├── qca9533_plasmacloud_pa300.dtsi │ │ │ │ ├── qca9533_plasmacloud_pa300e.dts │ │ │ │ ├── qca9533_qca_ap143-16m.dts │ │ │ │ ├── qca9533_qca_ap143-8m.dts │ │ │ │ ├── qca9533_qca_ap143.dtsi │ │ │ │ ├── qca9533_tplink_cpe210-v2.dts │ │ │ │ ├── qca9533_tplink_cpe210-v3.dts │ │ │ │ ├── qca9533_tplink_cpe210.dtsi │ │ │ │ ├── qca9533_tplink_cpe220-v3.dts │ │ │ │ ├── qca9533_tplink_cpexxx.dtsi │ │ │ │ ├── qca9533_tplink_tl-wa801nd-v3.dts │ │ │ │ ├── qca9533_tplink_tl-wa801nd-v4.dts │ │ │ │ ├── qca9533_tplink_tl-wa801nd.dtsi │ │ │ │ ├── qca9533_tplink_tl-wa850re-v2.dts │ │ │ │ ├── qca9533_tplink_tl-wr802n-v1.dts │ │ │ │ ├── qca9533_tplink_tl-wr802n-v2.dts │ │ │ │ ├── qca9533_tplink_tl-wr802n.dtsi │ │ │ │ ├── qca9533_tplink_tl-wr810n-v2.dts │ │ │ │ ├── qca9533_tplink_tl-wr841-v10.dts │ │ │ │ ├── qca9533_tplink_tl-wr841-v11.dts │ │ │ │ ├── qca9533_tplink_tl-wr841-v11.dtsi │ │ │ │ ├── qca9533_tplink_tl-wr841-v12.dts │ │ │ │ ├── qca9533_tplink_tl-wr841-v9.dts │ │ │ │ ├── qca9533_tplink_tl-wr841.dtsi │ │ │ │ ├── qca9533_tplink_tl-wr841hp-v3.dts │ │ │ │ ├── qca9533_tplink_tl-wr842n-v3.dts │ │ │ │ ├── qca9533_ubnt_aircube-isp.dts │ │ │ │ ├── qca9533_yuncore_a930.dts │ │ │ │ ├── qca953x.dtsi │ │ │ │ ├── qca953x_dlink_dap-2xxx.dtsi │ │ │ │ ├── qca953x_tplink_tl-wr810n.dtsi │ │ │ │ ├── qca9550_airtight_c-75.dts │ │ │ │ ├── qca9556_avm_fritz-repeater.dtsi │ │ │ │ ├── qca9556_avm_fritz1750e.dts │ │ │ │ ├── qca9556_avm_fritz450e.dts │ │ │ │ ├── qca9556_avm_fritzdvbc.dts │ │ │ │ ├── qca9556_mikrotik_routerboard-wap-g-5hact2hnd.dts │ │ │ │ ├── qca9557_8dev_rambutan.dts │ │ │ │ ├── qca9557_araknis_an-500-ap-i-ac.dts │ │ │ │ ├── qca9557_buffalo_bhr-4grv2.dts │ │ │ │ ├── qca9557_dlink_dap-2660-a1.dts │ │ │ │ ├── qca9557_dongwon_dw02-412h-128m.dts │ │ │ │ ├── qca9557_dongwon_dw02-412h-64m.dts │ │ │ │ ├── qca9557_dongwon_dw02-412h.dtsi │ │ │ │ ├── qca9557_engenius_eap1200h.dts │ │ │ │ ├── qca9557_engenius_ecb1200.dts │ │ │ │ ├── qca9557_engenius_enstationac-v1.dts │ │ │ │ ├── qca9557_iodata_wn-ac-dgr.dtsi │ │ │ │ ├── qca9557_iodata_wn-ac1167dgr.dts │ │ │ │ ├── qca9557_iodata_wn-ac1600dgr.dts │ │ │ │ ├── qca9557_iodata_wn-ac1600dgr2.dts │ │ │ │ ├── qca9557_zyxel_nbg6616.dts │ │ │ │ ├── qca9558_allnet_all-wap02860ac.dts │ │ │ │ ├── qca9558_araknis_an-700-ap-i-ac.dts │ │ │ │ ├── qca9558_belkin_f9j1108-v2.dts │ │ │ │ ├── qca9558_belkin_f9k1115-v2.dts │ │ │ │ ├── qca9558_belkin_f9x-v2.dtsi │ │ │ │ ├── qca9558_comfast_cf-wr650ac-v1.dts │ │ │ │ ├── qca9558_comfast_cf-wr650ac-v2.dts │ │ │ │ ├── qca9558_comfast_cf-wr650ac.dtsi │ │ │ │ ├── qca9558_compex_wpj558-16m.dts │ │ │ │ ├── qca9558_devolo_dvl1200e.dts │ │ │ │ ├── qca9558_devolo_dvl1200i.dts │ │ │ │ ├── qca9558_devolo_dvl1750c.dts │ │ │ │ ├── qca9558_devolo_dvl1750e.dts │ │ │ │ ├── qca9558_devolo_dvl1750i.dts │ │ │ │ ├── qca9558_devolo_dvl1750x.dts │ │ │ │ ├── qca9558_devolo_dvl1xxx.dtsi │ │ │ │ ├── qca9558_dlink_dap-2680-a1.dts │ │ │ │ ├── qca9558_dlink_dap-2695-a1.dts │ │ │ │ ├── qca9558_dlink_dap-3662-a1.dts │ │ │ │ ├── qca9558_domywifi_dw33d.dts │ │ │ │ ├── qca9558_engenius_ecb1750.dts │ │ │ │ ├── qca9558_engenius_epg5000.dts │ │ │ │ ├── qca9558_jjplus_jwap230.dts │ │ │ │ ├── qca9558_librerouter_librerouter-v1.dts │ │ │ │ ├── qca9558_mikrotik_routerboard-921gs-5hpacd-15s.dts │ │ │ │ ├── qca9558_mikrotik_routerboard-922uags-5hpacd.dts │ │ │ │ ├── qca9558_mikrotik_routerboard-92x.dtsi │ │ │ │ ├── qca9558_mikrotik_routerboard-962uigs-5hact2hnt.dts │ │ │ │ ├── qca9558_mikrotik_routerboard-96x.dtsi │ │ │ │ ├── qca9558_netgear_ex6400.dts │ │ │ │ ├── qca9558_netgear_ex7300.dts │ │ │ │ ├── qca9558_netgear_ex7300.dtsi │ │ │ │ ├── qca9558_ocedo_koala.dts │ │ │ │ ├── qca9558_ocedo_ursus.dts │ │ │ │ ├── qca9558_openmesh_a40.dts │ │ │ │ ├── qca9558_openmesh_a60.dts │ │ │ │ ├── qca9558_openmesh_a60.dtsi │ │ │ │ ├── qca9558_openmesh_mr.dtsi │ │ │ │ ├── qca9558_openmesh_mr1750-v1.dts │ │ │ │ ├── qca9558_openmesh_mr1750-v2.dts │ │ │ │ ├── qca9558_openmesh_mr900-v1.dts │ │ │ │ ├── qca9558_openmesh_mr900-v2.dts │ │ │ │ ├── qca9558_openmesh_om5p-ac-v1.dts │ │ │ │ ├── qca9558_openmesh_om5p-ac-v2.dts │ │ │ │ ├── qca9558_qxwlan_e558-v2-16m.dts │ │ │ │ ├── qca9558_qxwlan_e558-v2-8m.dts │ │ │ │ ├── qca9558_qxwlan_e558.dtsi │ │ │ │ ├── qca9558_sitecom_wlr-8100.dts │ │ │ │ ├── qca9558_sophos_ap.dtsi │ │ │ │ ├── qca9558_sophos_ap100.dts │ │ │ │ ├── qca9558_sophos_ap100c.dts │ │ │ │ ├── qca9558_sophos_ap55.dts │ │ │ │ ├── qca9558_sophos_ap55c.dts │ │ │ │ ├── qca9558_tplink_archer-c.dtsi │ │ │ │ ├── qca9558_tplink_archer-c5-v1.dts │ │ │ │ ├── qca9558_tplink_archer-c7-v1.dts │ │ │ │ ├── qca9558_tplink_archer-c7-v2.dts │ │ │ │ ├── qca9558_tplink_archer-d7-v1.dts │ │ │ │ ├── qca9558_tplink_archer-d7.dtsi │ │ │ │ ├── qca9558_tplink_archer-d7b-v1.dts │ │ │ │ ├── qca9558_tplink_re350k-v1.dts │ │ │ │ ├── qca9558_tplink_re355-v1.dts │ │ │ │ ├── qca9558_tplink_re450-v1.dts │ │ │ │ ├── qca9558_tplink_rex5x.dtsi │ │ │ │ ├── qca9558_tplink_tl-wdr4900-v2.dts │ │ │ │ ├── qca9558_tplink_tl-wdr7500-v3.dts │ │ │ │ ├── qca9558_tplink_tl-wr1043nd-v2.dts │ │ │ │ ├── qca9558_tplink_tl-wr1043nd-v3.dts │ │ │ │ ├── qca9558_tplink_tl-wr1043nd.dtsi │ │ │ │ ├── qca9558_tplink_tl-wr1045nd-v2.dts │ │ │ │ ├── qca9558_tplink_tl-wr941n-v7-cn.dts │ │ │ │ ├── qca9558_trendnet_tew-823dru.dts │ │ │ │ ├── qca9558_ubnt_nanobeam-ac-xc.dts │ │ │ │ ├── qca9558_ubnt_powerbeam-5ac-500.dts │ │ │ │ ├── qca9558_ubnt_rocket-5ac-lite.dts │ │ │ │ ├── qca9558_zyxel_emg2926_q10a.dts │ │ │ │ ├── qca9558_zyxel_nbg6716.dts │ │ │ │ ├── qca955x.dtsi │ │ │ │ ├── qca955x_dlink_dap-2xxx.dtsi │ │ │ │ ├── qca955x_engenius_ecb1xxx.dtsi │ │ │ │ ├── qca955x_senao_loader.dtsi │ │ │ │ ├── qca955x_ubnt_xc.dtsi │ │ │ │ ├── qca955x_zyxel_nbg6x16.dtsi │ │ │ │ ├── qca9561_avm_fritz4020.dts │ │ │ │ ├── qca9561_nec_wf1200cr.dts │ │ │ │ ├── qca9561_tplink_archer-c25-v1.dts │ │ │ │ ├── qca9561_tplink_archer-c58-v1.dts │ │ │ │ ├── qca9561_tplink_archer-c59-v1.dts │ │ │ │ ├── qca9561_tplink_archer-c59-v2.dts │ │ │ │ ├── qca9561_tplink_archer-c5x.dtsi │ │ │ │ ├── qca9561_tplink_archer-c60-v1.dts │ │ │ │ ├── qca9561_tplink_archer-c60-v2.dts │ │ │ │ ├── qca9561_tplink_archer-c60-v3.dts │ │ │ │ ├── qca9561_tplink_archer-c6x.dtsi │ │ │ │ ├── qca9561_tplink_eap225-wall-v2.dts │ │ │ │ ├── qca9561_xiaomi_mi-router-4q.dts │ │ │ │ ├── qca9563_asus_rp-ac66.dts │ │ │ │ ├── qca9563_comfast_cf-e375ac.dts │ │ │ │ ├── qca9563_compex_wpj563.dts │ │ │ │ ├── qca9563_dlink_dir-842-c.dtsi │ │ │ │ ├── qca9563_dlink_dir-842-c1.dts │ │ │ │ ├── qca9563_dlink_dir-842-c2.dts │ │ │ │ ├── qca9563_dlink_dir-842-c3.dts │ │ │ │ ├── qca9563_dlink_dir-859-a1.dts │ │ │ │ ├── qca9563_elecom_wrc-1750ghbk2-i.dts │ │ │ │ ├── qca9563_elecom_wrc-300ghbk2-i.dts │ │ │ │ ├── qca9563_elecom_wrc-ghbk2-i.dtsi │ │ │ │ ├── qca9563_glinet_gl-ar750s-nor-nand.dts │ │ │ │ ├── qca9563_glinet_gl-ar750s-nor.dts │ │ │ │ ├── qca9563_glinet_gl-ar750s.dtsi │ │ │ │ ├── qca9563_nec_wg1200cr.dts │ │ │ │ ├── qca9563_nec_wg800hp.dts │ │ │ │ ├── qca9563_netgear_wndr.dtsi │ │ │ │ ├── qca9563_netgear_wndr4300-v2.dts │ │ │ │ ├── qca9563_netgear_wndr4500-v3.dts │ │ │ │ ├── qca9563_phicomm_k2t.dts │ │ │ │ ├── qca9563_qxwlan_e1700ac-v2-16m.dts │ │ │ │ ├── qca9563_qxwlan_e1700ac-v2-8m.dts │ │ │ │ ├── qca9563_qxwlan_e1700ac.dtsi │ │ │ │ ├── qca9563_rosinson_wr818.dts │ │ │ │ ├── qca9563_tplink_archer-a7-v5.dts │ │ │ │ ├── qca9563_tplink_archer-c2-v3.dts │ │ │ │ ├── qca9563_tplink_archer-c6-v2-us.dts │ │ │ │ ├── qca9563_tplink_archer-c6-v2.dts │ │ │ │ ├── qca9563_tplink_archer-c7-v4.dts │ │ │ │ ├── qca9563_tplink_archer-c7-v5.dts │ │ │ │ ├── qca9563_tplink_archer-x6-v2.dtsi │ │ │ │ ├── qca9563_tplink_archer-x7-v5.dtsi │ │ │ │ ├── qca9563_tplink_cpe710-v1.dts │ │ │ │ ├── qca9563_tplink_deco-m4r-v1.dts │ │ │ │ ├── qca9563_tplink_eap225-outdoor-v1.dts │ │ │ │ ├── qca9563_tplink_eap225-v1.dts │ │ │ │ ├── qca9563_tplink_eap225-v3.dts │ │ │ │ ├── qca9563_tplink_eap245-v1.dts │ │ │ │ ├── qca9563_tplink_eap245-v3.dts │ │ │ │ ├── qca9563_tplink_eap2x5-1port.dtsi │ │ │ │ ├── qca9563_tplink_re450-v2.dts │ │ │ │ ├── qca9563_tplink_re450-v3.dts │ │ │ │ ├── qca9563_tplink_re450.dtsi │ │ │ │ ├── qca9563_tplink_re455-v1.dts │ │ │ │ ├── qca9563_tplink_tl-wa1201-v2.dts │ │ │ │ ├── qca9563_tplink_tl-wpa8630-v1.dts │ │ │ │ ├── qca9563_tplink_tl-wpa8630.dtsi │ │ │ │ ├── qca9563_tplink_tl-wpa8630p-v2-int.dts │ │ │ │ ├── qca9563_tplink_tl-wpa8630p-v2.0-eu.dts │ │ │ │ ├── qca9563_tplink_tl-wpa8630p-v2.1-eu.dts │ │ │ │ ├── qca9563_tplink_tl-wr1043n-v5.dts │ │ │ │ ├── qca9563_tplink_tl-wr1043n.dtsi │ │ │ │ ├── qca9563_tplink_tl-wr1043nd-v4.dts │ │ │ │ ├── qca9563_ubnt_unifiac-lite.dts │ │ │ │ ├── qca9563_ubnt_unifiac-lite.dtsi │ │ │ │ ├── qca9563_ubnt_unifiac-lr.dts │ │ │ │ ├── qca9563_ubnt_unifiac-mesh-pro.dts │ │ │ │ ├── qca9563_ubnt_unifiac-mesh.dts │ │ │ │ ├── qca9563_ubnt_unifiac-pro.dts │ │ │ │ ├── qca9563_ubnt_unifiac-pro.dtsi │ │ │ │ ├── qca9563_ubnt_unifiac.dtsi │ │ │ │ ├── qca9563_xiaomi_aiot-ac2350.dts │ │ │ │ ├── qca9563_yuncore_a782.dts │ │ │ │ ├── qca9563_yuncore_xd3200.dts │ │ │ │ ├── qca9563_yuncore_xd4200.dts │ │ │ │ ├── qca9563_yuncore_xd4200.dtsi │ │ │ │ ├── qca9563_zte_mf286.dts │ │ │ │ ├── qca9563_zte_mf286.dtsi │ │ │ │ ├── qca9563_zte_mf286a.dts │ │ │ │ ├── qca9563_zte_mf286ar.dtsi │ │ │ │ ├── qca9563_zte_mf286r.dts │ │ │ │ ├── qca956x.dtsi │ │ │ │ ├── qcn5502_netgear_ex7300-v2.dts │ │ │ │ ├── qcn5502_tplink_archer-a9-v6.dts │ │ │ │ ├── tp9343_tplink_tl-wa901nd-v4.dts │ │ │ │ ├── tp9343_tplink_tl-wa901nd-v5.dts │ │ │ │ ├── tp9343_tplink_tl-wa901nd.dtsi │ │ │ │ ├── tp9343_tplink_tl-wr940n-v3.dts │ │ │ │ ├── tp9343_tplink_tl-wr940n-v3.dtsi │ │ │ │ ├── tp9343_tplink_tl-wr940n-v4.dts │ │ │ │ ├── tp9343_tplink_tl-wr940n-v6.dts │ │ │ │ ├── tp9343_tplink_tl-wr941hp-v1.dts │ │ │ │ ├── tp9343_tplink_tl-wr941nd-v6.dts │ │ │ │ ├── tp9343_tplink_tl-wr94x.dtsi │ │ │ │ └── tp9343_tplink_tl-wx.dtsi │ │ │ ├── files/ │ │ │ │ ├── arch/ │ │ │ │ │ └── mips/ │ │ │ │ │ └── include/ │ │ │ │ │ └── asm/ │ │ │ │ │ └── fw/ │ │ │ │ │ └── myloader/ │ │ │ │ │ └── myloader.h │ │ │ │ ├── drivers/ │ │ │ │ │ ├── gpio/ │ │ │ │ │ │ ├── gpio-latch.c │ │ │ │ │ │ ├── gpio-rb4xx.c │ │ │ │ │ │ └── gpio-rb91x-key.c │ │ │ │ │ ├── mfd/ │ │ │ │ │ │ └── rb4xx-cpld.c │ │ │ │ │ ├── mtd/ │ │ │ │ │ │ ├── nand/ │ │ │ │ │ │ │ └── raw/ │ │ │ │ │ │ │ ├── ar934x_nand.c │ │ │ │ │ │ │ ├── nand_rb4xx.c │ │ │ │ │ │ │ └── rb91x_nand.c │ │ │ │ │ │ └── parsers/ │ │ │ │ │ │ └── parser_cybertan.c │ │ │ │ │ └── net/ │ │ │ │ │ └── ethernet/ │ │ │ │ │ └── atheros/ │ │ │ │ │ └── ag71xx/ │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ag71xx.h │ │ │ │ │ ├── ag71xx_debugfs.c │ │ │ │ │ ├── ag71xx_ethtool.c │ │ │ │ │ ├── ag71xx_gmac.c │ │ │ │ │ ├── ag71xx_main.c │ │ │ │ │ ├── ag71xx_mdio.c │ │ │ │ │ └── ag71xx_phy.c │ │ │ │ └── include/ │ │ │ │ └── mfd/ │ │ │ │ └── rb4xx-cpld.h │ │ │ ├── generic/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ │ └── 03_gpio_switches │ │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ │ ├── firmware/ │ │ │ │ │ │ │ │ ├── 10-ath9k-eeprom │ │ │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ │ │ │ └── ieee80211/ │ │ │ │ │ │ │ └── 10_fix_wifi_mac │ │ │ │ │ │ ├── init.d/ │ │ │ │ │ │ │ └── bootcount │ │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ │ ├── 04_led_migration │ │ │ │ │ │ ├── 05_fix-compat-version │ │ │ │ │ │ └── 09_fix-checksum │ │ │ │ │ └── lib/ │ │ │ │ │ ├── functions/ │ │ │ │ │ │ └── k2t.sh │ │ │ │ │ ├── preinit/ │ │ │ │ │ │ └── 10_fix_eth_mac.sh │ │ │ │ │ └── upgrade/ │ │ │ │ │ ├── dualboot_datachk.sh │ │ │ │ │ ├── failsafe_datachk.sh │ │ │ │ │ ├── openmesh.sh │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-default │ │ │ │ └── target.mk │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── common-buffalo.mk │ │ │ │ ├── common-mikrotik.mk │ │ │ │ ├── common-netgear.mk │ │ │ │ ├── common-senao.mk │ │ │ │ ├── common-tp-link.mk │ │ │ │ ├── common-yuncore.mk │ │ │ │ ├── generic-tp-link.mk │ │ │ │ ├── generic-ubnt.mk │ │ │ │ ├── generic.mk │ │ │ │ ├── lzma-loader/ │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src/ │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── LzmaTypes.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ar71xx_regs.h │ │ │ │ │ ├── board.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── cacheops.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── cp0regdef.h │ │ │ │ │ ├── head.S │ │ │ │ │ ├── loader.c │ │ │ │ │ ├── loader.lds │ │ │ │ │ ├── loader2.lds │ │ │ │ │ ├── lzma-data.lds │ │ │ │ │ ├── printf.c │ │ │ │ │ └── printf.h │ │ │ │ ├── mikrotik.mk │ │ │ │ ├── nand.mk │ │ │ │ ├── tiny-netgear.mk │ │ │ │ ├── tiny-tp-link.mk │ │ │ │ └── tiny.mk │ │ │ ├── mikrotik/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ │ └── 02_network │ │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ │ └── firmware/ │ │ │ │ │ │ │ ├── 10-ath9k-eeprom │ │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ │ └── 04_led_migration │ │ │ │ │ └── lib/ │ │ │ │ │ └── upgrade/ │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-default │ │ │ │ └── target.mk │ │ │ ├── modules.mk │ │ │ ├── nand/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ │ └── 03_gpio_switches │ │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ │ ├── firmware/ │ │ │ │ │ │ │ │ ├── 10-ath9k-eeprom │ │ │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ │ │ │ └── ieee80211/ │ │ │ │ │ │ │ └── 10-fix-wifi-mac │ │ │ │ │ │ ├── init.d/ │ │ │ │ │ │ │ └── bootcount │ │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ │ └── 04_led_migration │ │ │ │ │ └── lib/ │ │ │ │ │ ├── preinit/ │ │ │ │ │ │ └── 10_fix_eth_mac.sh │ │ │ │ │ └── upgrade/ │ │ │ │ │ ├── glinet.sh │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-default │ │ │ │ └── target.mk │ │ │ ├── patches-5.10/ │ │ │ │ ├── 0003-leds-add-reset-controller-based-driver.patch │ │ │ │ ├── 0004-phy-add-ath79-usb-phys.patch │ │ │ │ ├── 0005-usb-add-more-OF-quirk-properties.patch │ │ │ │ ├── 0007-irqchip-irq-ath79-intc-add-irq-cascade-driver-for-QC.patch │ │ │ │ ├── 0008-irqchip-irq-ath79-cpu-drop-OF-init-helper.patch │ │ │ │ ├── 0017-dt-bindings-PCI-qcom-ar7100-adds-binding-doc.patch │ │ │ │ ├── 0018-MIPS-pci-ar71xx-convert-to-OF.patch │ │ │ │ ├── 0019-dt-bindings-PCI-qcom-ar7240-adds-binding-doc.patch │ │ │ │ ├── 0020-MIPS-pci-ar724x-convert-to-OF.patch │ │ │ │ ├── 0032-MIPS-ath79-sanitize-symbols.patch │ │ │ │ ├── 0033-spi-ath79-drop-pdata-support.patch │ │ │ │ ├── 0034-MIPS-ath79-ath9k-exports.patch │ │ │ │ ├── 0036-MIPS-ath79-remove-irq-code-from-pci.patch │ │ │ │ ├── 0037-missing-registers.patch │ │ │ │ ├── 0038-MIPS-ath79-add-missing-QCA955x-GMAC-registers.patch │ │ │ │ ├── 0039-MIPS-ath79-export-UART1-reference-clock.patch │ │ │ │ ├── 004-register_gpio_driver_earlier.patch │ │ │ │ ├── 0040-ath79-sgmii-config.patch │ │ │ │ ├── 0052-mtd-spi-nor-use-4-bit-locking-for-MX25L12805D.patch │ │ │ │ ├── 0062-MIPS-pci-ar724x-add-QCA9550-reset-sequence.patch │ │ │ │ ├── 401-mtd-nor-support-mtd-name-from-device-tree.patch │ │ │ │ ├── 402-v5.17-spi-ar934x-fix-transfer-and-word-delays.patch │ │ │ │ ├── 403-v5.17-spi-ar934x-fix-transfer-size.patch │ │ │ │ ├── 404-mtd-cybertan-trx-parser.patch │ │ │ │ ├── 408-mtd-redboot_partition_scan.patch │ │ │ │ ├── 410-spi-ath79-Implement-the-spi_mem-interface.patch │ │ │ │ ├── 412-spi-ath79-set-number-of-chipselect-lines.patch │ │ │ │ ├── 420-net-use-downstream-ag71xx.patch │ │ │ │ ├── 425-at803x-allow-sgmii-aneg-override.patch │ │ │ │ ├── 430-drivers-link-spi-before-mtd.patch │ │ │ │ ├── 440-mtd-ar934x-nand-driver.patch │ │ │ │ ├── 470-MIPS-ath79-swizzle-pci-address-for-ar71xx.patch │ │ │ │ ├── 600-of_net-add-mac-address-ascii-support.patch │ │ │ │ ├── 900-mdio_bitbang_ignore_ta_value.patch │ │ │ │ ├── 901-phy-mdio-bitbang-prevent-rescheduling-during-command.patch │ │ │ │ ├── 910-unaligned_access_hacks.patch │ │ │ │ ├── 920-mikrotik-rb4xx.patch │ │ │ │ ├── 930-ar8216-make-reg-access-atomic.patch │ │ │ │ ├── 939-mikrotik-rb91x.patch │ │ │ │ └── 940-ath79-add-support-for-booting-QCN550x.patch │ │ │ ├── patches-5.15/ │ │ │ │ ├── 0003-leds-add-reset-controller-based-driver.patch │ │ │ │ ├── 0004-phy-add-ath79-usb-phys.patch │ │ │ │ ├── 0005-usb-add-more-OF-quirk-properties.patch │ │ │ │ ├── 0007-irqchip-irq-ath79-intc-add-irq-cascade-driver-for-QC.patch │ │ │ │ ├── 0008-irqchip-irq-ath79-cpu-drop-OF-init-helper.patch │ │ │ │ ├── 0017-dt-bindings-PCI-qcom-ar7100-adds-binding-doc.patch │ │ │ │ ├── 0018-MIPS-pci-ar71xx-convert-to-OF.patch │ │ │ │ ├── 0019-dt-bindings-PCI-qcom-ar7240-adds-binding-doc.patch │ │ │ │ ├── 0020-MIPS-pci-ar724x-convert-to-OF.patch │ │ │ │ ├── 0032-MIPS-ath79-sanitize-symbols.patch │ │ │ │ ├── 0034-MIPS-ath79-ath9k-exports.patch │ │ │ │ ├── 0036-MIPS-ath79-remove-irq-code-from-pci.patch │ │ │ │ ├── 0037-missing-registers.patch │ │ │ │ ├── 0038-MIPS-ath79-add-missing-QCA955x-GMAC-registers.patch │ │ │ │ ├── 0039-MIPS-ath79-export-UART1-reference-clock.patch │ │ │ │ ├── 004-register_gpio_driver_earlier.patch │ │ │ │ ├── 0040-ath79-sgmii-config.patch │ │ │ │ ├── 0062-MIPS-pci-ar724x-add-QCA9550-reset-sequence.patch │ │ │ │ ├── 401-mtd-nor-support-mtd-name-from-device-tree.patch │ │ │ │ ├── 402-v5.17-spi-ar934x-fix-transfer-and-word-delays.patch │ │ │ │ ├── 403-v5.17-spi-ar934x-fix-transfer-size.patch │ │ │ │ ├── 404-mtd-cybertan-trx-parser.patch │ │ │ │ ├── 408-mtd-redboot_partition_scan.patch │ │ │ │ ├── 410-spi-ath79-Implement-the-spi_mem-interface.patch │ │ │ │ ├── 420-net-use-downstream-ag71xx.patch │ │ │ │ ├── 430-drivers-link-spi-before-mtd.patch │ │ │ │ ├── 440-mtd-ar934x-nand-driver.patch │ │ │ │ ├── 470-MIPS-ath79-swizzle-pci-address-for-ar71xx.patch │ │ │ │ ├── 600-of_net-add-mac-address-ascii-support.patch │ │ │ │ ├── 900-mdio_bitbang_ignore_ta_value.patch │ │ │ │ ├── 901-phy-mdio-bitbang-prevent-rescheduling-during-command.patch │ │ │ │ ├── 910-unaligned_access_hacks.patch │ │ │ │ ├── 920-mikrotik-rb4xx.patch │ │ │ │ ├── 930-ar8216-make-reg-access-atomic.patch │ │ │ │ ├── 939-mikrotik-rb91x.patch │ │ │ │ └── 940-ath79-add-support-for-booting-QCN550x.patch │ │ │ └── tiny/ │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ └── 05_compat-version │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ └── firmware/ │ │ │ │ │ │ ├── 10-ath9k-eeprom │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ └── 04_led_migration │ │ │ │ └── lib/ │ │ │ │ └── upgrade/ │ │ │ │ ├── failsafe_datachk.sh │ │ │ │ └── platform.sh │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── bcm27xx/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ └── 02_network │ │ │ │ │ ├── diag.sh │ │ │ │ │ └── inittab │ │ │ │ └── lib/ │ │ │ │ ├── preinit/ │ │ │ │ │ ├── 05_set_preinit_iface_brcm2708 │ │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade/ │ │ │ │ ├── keep.d/ │ │ │ │ │ └── platform │ │ │ │ └── platform.sh │ │ │ ├── bcm2708/ │ │ │ │ ├── config-5.10 │ │ │ │ └── target.mk │ │ │ ├── bcm2709/ │ │ │ │ ├── config-5.10 │ │ │ │ └── target.mk │ │ │ ├── bcm2710/ │ │ │ │ ├── config-5.10 │ │ │ │ └── target.mk │ │ │ ├── bcm2711/ │ │ │ │ ├── config-5.10 │ │ │ │ └── target.mk │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── cmdline.txt │ │ │ │ ├── config.txt │ │ │ │ ├── distroconfig.txt │ │ │ │ └── gen_rpi_sdcard_img.sh │ │ │ ├── modules/ │ │ │ │ ├── hwmon.mk │ │ │ │ ├── i2c.mk │ │ │ │ ├── other.mk │ │ │ │ ├── sound.mk │ │ │ │ ├── spi.mk │ │ │ │ └── video.mk │ │ │ ├── modules.mk │ │ │ └── patches-5.10/ │ │ │ ├── 950-0001-arm-partially-revert-702b94bff3c50542a6e4ab9a4f4cef0.patch │ │ │ ├── 950-0002-Revert-rtc-pcf8523-properly-handle-oscillator-stop-b.patch │ │ │ ├── 950-0003-Revert-staging-bcm2835-audio-Drop-DT-dependency.patch │ │ │ ├── 950-0004-Revert-spi-spidev-Fix-CS-polarity-if-GPIO-descriptor.patch │ │ │ ├── 950-0005-Revert-mailbox-avoid-timer-start-from-callback.patch │ │ │ ├── 950-0006-smsx95xx-fix-crimes-against-truesize.patch │ │ │ ├── 950-0007-smsc95xx-Experimental-Enable-turbo_mode-and-packetsi.patch │ │ │ ├── 950-0008-Allow-mac-address-to-be-set-in-smsc95xx.patch │ │ │ ├── 950-0009-Protect-__release_resource-against-resources-without.patch │ │ │ ├── 950-0010-irq-bcm2836-Avoid-Invalid-trigger-warning.patch │ │ │ ├── 950-0011-irqchip-bcm2835-Add-FIQ-support.patch │ │ │ ├── 950-0012-irqchip-irq-bcm2835-Add-2836-FIQ-support.patch │ │ │ ├── 950-0013-spi-spidev-Completely-disable-the-spidev-warning.patch │ │ │ ├── 950-0014-dmaengine-bcm2835-Load-driver-early-and-support-lega.patch │ │ │ ├── 950-0015-firmware-Updated-mailbox-header.patch │ │ │ ├── 950-0016-rtc-Add-SPI-alias-for-pcf2123-driver.patch │ │ │ ├── 950-0017-watchdog-bcm2835-Support-setting-reboot-partition.patch │ │ │ ├── 950-0018-reboot-Use-power-off-rather-than-busy-spinning-when-.patch │ │ │ ├── 950-0019-bcm-Make-RASPBERRYPI_POWER-depend-on-PM.patch │ │ │ ├── 950-0020-Register-the-clocks-early-during-the-boot-process-so.patch │ │ │ ├── 950-0021-bcm2835-rng-Avoid-initialising-if-already-enabled.patch │ │ │ ├── 950-0022-clk-bcm2835-Mark-used-PLLs-and-dividers-CRITICAL.patch │ │ │ ├── 950-0023-clk-bcm2835-Add-claim-clocks-property.patch │ │ │ ├── 950-0024-clk-bcm2835-Read-max-core-clock-from-firmware.patch │ │ │ ├── 950-0025-sound-Demote-deferral-errors-to-INFO-level.patch │ │ │ ├── 950-0026-Update-vfpmodule.c.patch │ │ │ ├── 950-0027-i2c-bcm2835-Add-debug-support.patch │ │ │ ├── 950-0028-mm-Remove-the-PFN-busy-warning.patch │ │ │ ├── 950-0029-irqchip-irq-bcm2836-Remove-regmap-and-syscon-use.patch │ │ │ ├── 950-0030-lan78xx-Enable-LEDs-and-auto-negotiation.patch │ │ │ ├── 950-0031-amba_pl011-Don-t-use-DT-aliases-for-numbering.patch │ │ │ ├── 950-0032-amba_pl011-Round-input-clock-up.patch │ │ │ ├── 950-0033-amba_pl011-Insert-mb-for-correct-FIFO-handling.patch │ │ │ ├── 950-0034-amba_pl011-Add-cts-event-workaround-DT-property.patch │ │ │ ├── 950-0035-tty-amba-pl011-Make-TX-optimisation-conditional.patch │ │ │ ├── 950-0036-tty-amba-pl011-Add-un-throttle-support.patch │ │ │ ├── 950-0037-tty-amba-pl011-Avoid-rare-write-when-full-error.patch │ │ │ ├── 950-0038-pinctrl-bcm2835-Set-base-to-0-give-expected-gpio-num.patch │ │ │ ├── 950-0039-Main-bcm2708-bcm2709-linux-port.patch │ │ │ ├── 950-0040-Add-dwc_otg-driver.patch │ │ │ ├── 950-0041-bcm2708-framebuffer-driver.patch │ │ │ ├── 950-0042-Pulled-in-the-multi-frame-buffer-support-from-the-Pi.patch │ │ │ ├── 950-0043-fbdev-add-FBIOCOPYAREA-ioctl.patch │ │ │ ├── 950-0044-Speed-up-console-framebuffer-imageblit-function.patch │ │ │ ├── 950-0045-dmaengine-Add-support-for-BCM2708.patch │ │ │ ├── 950-0046-MMC-added-alternative-MMC-driver.patch │ │ │ ├── 950-0047-Adding-bcm2835-sdhost-driver-and-an-overlay-to-enabl.patch │ │ │ ├── 950-0048-vc_mem-Add-vc_mem-driver-for-querying-firmware-memor.patch │ │ │ ├── 950-0049-Add-dev-gpiomem-device-for-rootless-user-GPIO-access.patch │ │ │ ├── 950-0050-Add-SMI-driver.patch │ │ │ ├── 950-0051-Add-Chris-Boot-s-i2c-driver.patch │ │ │ ├── 950-0052-char-broadcom-Add-vcio-module.patch │ │ │ ├── 950-0053-firmware-bcm2835-Support-ARCH_BCM270x.patch │ │ │ ├── 950-0054-BCM2708-Add-core-Device-Tree-support.patch │ │ │ ├── 950-0055-BCM270x_DT-Add-pwr_led-and-the-required-input-trigge.patch │ │ │ ├── 950-0056-Added-Device-IDs-for-August-DVB-T-205.patch │ │ │ ├── 950-0057-Improve-__copy_to_user-and-__copy_from_user-performa.patch │ │ │ ├── 950-0058-gpio-poweroff-Allow-it-to-work-on-Raspberry-Pi.patch │ │ │ ├── 950-0059-mfd-Add-Raspberry-Pi-Sense-HAT-core-driver.patch │ │ │ ├── 950-0060-Add-support-for-all-the-downstream-rpi-sound-card-dr.patch │ │ │ ├── 950-0061-Fixes-a-problem-when-module-probes-before-i2c-module.patch │ │ │ ├── 950-0062-rpi_display-add-backlight-driver-and-overlay.patch │ │ │ ├── 950-0063-bcm2835-virtgpio-Virtual-GPIO-driver.patch │ │ │ ├── 950-0064-OF-DT-Overlay-configfs-interface.patch │ │ │ ├── 950-0065-hci_h5-Don-t-send-conf_req-when-ACTIVE.patch │ │ │ ├── 950-0066-ARM64-Round-Robin-dispatch-IRQs-between-CPUs.patch │ │ │ ├── 950-0067-ARM64-Force-hardware-emulation-of-deprecated-instruc.patch │ │ │ ├── 950-0068-cache-export-clean-and-invalidate.patch │ │ │ ├── 950-0069-AXI-performance-monitor-driver-2222.patch │ │ │ ├── 950-0070-ARM-bcm2835-Set-Serial-number-and-Revision.patch │ │ │ ├── 950-0071-dwc-otg-FIQ-Fix-bad-mode-in-data-abort-handler.patch │ │ │ ├── 950-0072-ARM-Activate-FIQs-to-avoid-__irq_startup-warnings.patch │ │ │ ├── 950-0073-raspberrypi-firmware-Export-the-general-transaction-.patch │ │ │ ├── 950-0074-i2c-gpio-Also-set-bus-numbers-from-reg-property.patch │ │ │ ├── 950-0075-added-capture_clear-option-to-pps-gpio-via-dtoverlay.patch │ │ │ ├── 950-0076-lan78xx-Read-initial-EEE-status-from-DT.patch │ │ │ ├── 950-0077-hid-Reduce-default-mouse-polling-interval-to-60Hz.patch │ │ │ ├── 950-0078-Add-ability-to-export-gpio-used-by-gpio-poweroff.patch │ │ │ ├── 950-0079-firmware-raspberrypi-Notify-firmware-of-a-reboot.patch │ │ │ ├── 950-0080-irqchip-irq-bcm2835-Calc.-FIQ_START-at-boot-time.patch │ │ │ ├── 950-0081-of-configfs-Use-of_overlay_fdt_apply-API-call.patch │ │ │ ├── 950-0082-net-lan78xx-Disable-TCP-Segmentation-Offload-TSO.patch │ │ │ ├── 950-0083-lan78xx-Move-enabling-of-EEE-into-PHY-init-code.patch │ │ │ ├── 950-0084-Add-rpi-poe-fan-driver.patch │ │ │ ├── 950-0085-cxd2880-CXD2880_SPI_DRV-should-select-DVB_CXD2880-wi.patch │ │ │ ├── 950-0086-hwmon-raspberrypi-Prevent-voltage-low-warnings-from-.patch │ │ │ ├── 950-0087-firmware-raspberrypi-Add-backward-compatible-get_thr.patch │ │ │ ├── 950-0088-sc16is7xx-Don-t-spin-if-no-data-received.patch │ │ │ ├── 950-0089-drivers-thermal-step_wise-add-support-for-hysteresis.patch │ │ │ ├── 950-0090-drivers-thermal-step_wise-avoid-throttling-at-hyster.patch │ │ │ ├── 950-0091-Update-issue-templates-2736.patch │ │ │ ├── 950-0092-net-lan78xx-Support-auto-downshift-to-100Mb-s.patch │ │ │ ├── 950-0093-firmware-raspberrypi-Report-the-fw-variant-during-pr.patch │ │ │ ├── 950-0094-lan78xx-Debounce-link-events-to-minimize-poll-storm.patch │ │ │ ├── 950-0095-lan78xx-EEE-support-is-now-a-PHY-property.patch │ │ │ ├── 950-0096-bcm2835-dma-Add-support-for-per-channel-flags.patch │ │ │ ├── 950-0097-rtc-rv3028-Add-backup-switchover-mode-support.patch │ │ │ ├── 950-0098-lan78xx-use-default-alignment-for-rx-buffers.patch │ │ │ ├── 950-0099-media-ov5647-Add-set_fmt-and-get_fmt-calls.patch │ │ │ ├── 950-0100-media-ov5647-Add-support-for-PWDN-GPIO.patch │ │ │ ├── 950-0101-media-ov5647-Add-support-for-non-continuous-clock-mo.patch │ │ │ ├── 950-0102-media-tc358743-Increase-FIFO-level-to-374.patch │ │ │ ├── 950-0103-media-tc358743-fix-connected-active-CSI-2-lane-repor.patch │ │ │ ├── 950-0104-media-tc358743-Add-support-for-972Mbit-s-link-freq.patch │ │ │ ├── 950-0105-media-tc358743-Check-I2C-succeeded-during-probe.patch │ │ │ ├── 950-0106-media-adv7180-Default-to-the-first-valid-input.patch │ │ │ ├── 950-0107-media-adv7180-Add-YPrPb-support-for-ADV7282M.patch │ │ │ ├── 950-0108-media-videodev2-Add-helper-defines-for-printing-FOUR.patch │ │ │ ├── 950-0109-dt-bindings-Document-BCM283x-CSI2-CCP2-receiver.patch │ │ │ ├── 950-0110-MAINTAINERS-Add-entry-for-BCM2835-Unicam-driver.patch │ │ │ ├── 950-0111-media-tc358743-Return-an-appropriate-colorspace-from.patch │ │ │ ├── 950-0112-staging-mmal-vchiq-Avoid-use-of-bool-in-structures.patch │ │ │ ├── 950-0113-staging-mmal-vchiq-Add-support-for-event-callbacks.patch │ │ │ ├── 950-0114-staging-vc04_services-Support-sending-data-to-MMAL-p.patch │ │ │ ├── 950-0115-media-videobuf2-Allow-exporting-of-a-struct-dmabuf.patch │ │ │ ├── 950-0116-staging-mmal-vchiq-Fix-client_component-for-64-bit-k.patch │ │ │ ├── 950-0117-clk-clk-bcm2835-Use-zd-when-printing-size_t.patch │ │ │ ├── 950-0118-media-ov5647-Use-gpiod_set_value_cansleep.patch │ │ │ ├── 950-0119-staging-mmal_vchiq-Add-in-the-Bayer-encoding-formats.patch │ │ │ ├── 950-0120-staging-mmal-vchiq-Update-mmal_parameters.h-with-rec.patch │ │ │ ├── 950-0121-staging-mmal-vchiq-Free-the-event-context-for-contro.patch │ │ │ ├── 950-0122-staging-mmal-vchiq-Fix-memory-leak-in-error-path.patch │ │ │ ├── 950-0123-w1-w1-gpio-Make-GPIO-an-output-for-strong-pullup.patch │ │ │ ├── 950-0124-arm-bcm2835-Fix-FIQ-early-ioremap.patch │ │ │ ├── 950-0125-arm-bcm2835-DMA-can-only-address-1GB.patch │ │ │ ├── 950-0126-hwrng-iproc-rng200-Add-BCM2838-support.patch │ │ │ ├── 950-0127-mmc-sdhci-iproc-Fix-vmmc-regulators-on-iProc.patch │ │ │ ├── 950-0128-vchiq-Add-36-bit-address-support.patch │ │ │ ├── 950-0129-bcm2835-pcm.c-Support-multichannel-audio.patch │ │ │ ├── 950-0130-bcmgenet-constrain-max-DMA-burst-length.patch │ │ │ ├── 950-0131-bcmgenet-Better-coalescing-parameter-defaults.patch │ │ │ ├── 950-0132-net-genet-enable-link-energy-detect-powerdown-for-ex.patch │ │ │ ├── 950-0133-spi-bcm2835-enable-shared-interrupt-support.patch │ │ │ ├── 950-0134-clk-bcm2835-Don-t-wait-for-pllh-lock.patch │ │ │ ├── 950-0135-soc-bcm-bcm2835-pm-Add-support-for-2711.patch │ │ │ ├── 950-0136-clk-bcm2835-Add-support-for-setting-leaf-clock-rates.patch │ │ │ ├── 950-0137-clk-bcm2835-Allow-reparenting-leaf-clocks-while-they.patch │ │ │ ├── 950-0138-usb-add-plumbing-for-updating-interrupt-endpoint-int.patch │ │ │ ├── 950-0139-xhci-implement-xhci_fixup_endpoint-for-interval-adju.patch │ │ │ ├── 950-0140-usbhid-call-usb_fixup_endpoint-after-mangling-interv.patch │ │ │ ├── 950-0141-arm-bcm2835-Add-bcm2838-compatible-string.patch │ │ │ ├── 950-0142-drm-v3d-Add-support-for-2711.patch │ │ │ ├── 950-0143-drm-v3d-Skip-MMU-flush-if-the-device-is-currently-of.patch │ │ │ ├── 950-0144-drm-v3d-Hook-up-the-runtime-PM-ops.patch │ │ │ ├── 950-0146-i2c-bcm2835-Set-clock-stretch-timeout-to-35ms.patch │ │ │ ├── 950-0147-clk-bcm2835-Avoid-null-pointer-exception.patch │ │ │ ├── 950-0148-drm-v3d-HACK-gut-runtime-pm-for-now.patch │ │ │ ├── 950-0149-drm-v3d-Clock-V3D-down-when-not-in-use.patch │ │ │ ├── 950-0150-drivers-char-add-chardev-for-mmap-ing-the-RPiVid-con.patch │ │ │ ├── 950-0151-hid-usb-Add-device-quirks-for-Freeway-Airmouse-T3-an.patch │ │ │ ├── 950-0152-Add-HDMI1-facility-to-the-driver.patch │ │ │ ├── 950-0153-net-bcmgenet-Workaround-2-for-Pi4-Ethernet-fail.patch │ │ │ ├── 950-0154-xhci-Use-more-event-ring-segment-table-entries.patch │ │ │ ├── 950-0155-configs-arm64-bcm2711-Enable-V3D.patch │ │ │ ├── 950-0156-arch-arm-Add-model-string-to-cpuinfo.patch │ │ │ ├── 950-0157-arch-arm64-Add-Revision-Serial-Model-to-cpuinfo.patch │ │ │ ├── 950-0158-media-dt-bindings-Add-binding-for-the-Sony-IMX219-se.patch │ │ │ ├── 950-0159-v4l2-Add-a-Greyworld-AWB-mode.patch │ │ │ ├── 950-0160-staging-bcm2835-camera-Add-greyworld-AWB-mode.patch │ │ │ ├── 950-0161-drm-v3d-Delete-pm_runtime-support.patch │ │ │ ├── 950-0162-kbuild-Allow-.dtbo-overlays-to-be-built-piecemeal.patch │ │ │ ├── 950-0163-ARM-bcm-Switch-board-clk-and-pinctrl-to-bcm2711-comp.patch │ │ │ ├── 950-0164-Rename-HDMI-ALSA-device-names-check-for-enable-state.patch │ │ │ ├── 950-0165-dt-bindings-Add-binding-for-the-Infineon-IRS1125-sen.patch │ │ │ ├── 950-0166-media-i2c-Add-a-driver-for-the-Infineon-IRS1125-dept.patch │ │ │ ├── 950-0167-drm-v3d-Don-t-clear-MMU-control-bits-on-exception.patch │ │ │ ├── 950-0168-drm-v3d-Suppress-all-but-the-first-MMU-error.patch │ │ │ ├── 950-0169-drm-v3d-Plug-dma_fence-leak.patch │ │ │ ├── 950-0170-staging-vchiq_arm-Register-vcsm-cma-as-a-platform-dr.patch │ │ │ ├── 950-0171-staging-vchiq_arm-Register-bcm2835-codec-as-a-platfo.patch │ │ │ ├── 950-0172-net-bcmgenet-The-second-IRQ-is-optional.patch │ │ │ ├── 950-0173-net-phy-2711-Allow-ethernet-LED-mode-to-be-set-via-d.patch │ │ │ ├── 950-0174-net-phy-2711-Change-the-default-ethernet-LED-actions.patch │ │ │ ├── 950-0175-v3d_drv-Handle-missing-clock-more-gracefully.patch │ │ │ ├── 950-0176-v3d_gem-Kick-the-clock-so-firmware-knows-we-are-usin.patch │ │ │ ├── 950-0177-clk-raspberrypi-Allow-cpufreq-driver-to-also-adjust-.patch │ │ │ ├── 950-0178-clk-bcm2835-Disable-v3d-clock.patch │ │ │ ├── 950-0179-drm-v3d-Set-dma_mask-as-well-as-coherent_dma_mask.patch │ │ │ ├── 950-0180-staging-vchiq_arm-Set-up-dma-ranges-on-child-devices.patch │ │ │ ├── 950-0181-staging-vchiq-Use-the-old-dma-controller-for-OF-conf.patch │ │ │ ├── 950-0182-ARM-bcm-Backport-BCM2711-support-from-upstream.patch │ │ │ ├── 950-0183-Initialise-rpi-firmware-before-clk-bcm2835.patch │ │ │ ├── 950-0184-staging-vchiq_arm-Give-vchiq-children-DT-nodes.patch │ │ │ ├── 950-0185-pinctrl-bcm2835-Remove-gpiochip-on-error.patch │ │ │ ├── 950-0187-pinctrl-bcm2835-Accept-fewer-than-expected-IRQs.patch │ │ │ ├── 950-0188-drivers-char-vcio-Use-common-compat-header.patch │ │ │ ├── 950-0189-video-fbdev-bcm2708_fb-Use-common-compat-header.patch │ │ │ ├── 950-0190-of-overlay-Correct-symbol-path-fixups.patch │ │ │ ├── 950-0191-dt-bindings-pci-Add-DT-docs-for-Brcmstb-PCIe-device.patch │ │ │ ├── 950-0192-Kbuild-Allow-.dtbo-overlays-to-be-built-adjust.patch │ │ │ ├── 950-0193-bcmgenet-Disable-skip_umac_reset-by-default.patch │ │ │ ├── 950-0194-drm-fourcc-Add-packed-10bit-YUV-4-2-0-format.patch │ │ │ ├── 950-0195-media-uapi-hevc-Add-scaling-matrix-control.patch │ │ │ ├── 950-0196-media-uapi-hevc-Add-segment-address-field.patch │ │ │ ├── 950-0197-media-uapi-Add-hevc-ctrls-for-WPP-decoding.patch │ │ │ ├── 950-0198-media-videodev2.h-Add-a-format-for-column-YUV4-2-0-m.patch │ │ │ ├── 950-0199-media-dt-bindings-media-Add-binding-for-the-Raspberr.patch │ │ │ ├── 950-0200-staging-media-Add-Raspberry-Pi-V4L2-H265-decoder.patch │ │ │ ├── 950-0201-mmc-sdhci-Silence-MMC-warnings.patch │ │ │ ├── 950-0202-dt-bindings-clock-Add-a-binding-for-the-RPi-Firmware.patch │ │ │ ├── 950-0203-dt-bindings-display-vc4-hdmi-Add-BCM2711-HDMI-contro.patch │ │ │ ├── 950-0204-drm-Checking-of-the-pitch-is-only-valid-for-linear-f.patch │ │ │ ├── 950-0205-overlays-Fix-dtc-warnings-in-i2c-gpio.patch │ │ │ ├── 950-0206-driver-char-rpivid-Remove-legacy-name-support.patch │ │ │ ├── 950-0207-spi-Force-CS_HIGH-if-GPIO-descriptors-are-used.patch │ │ │ ├── 950-0208-driver-char-rpivid-Don-t-map-more-than-wanted.patch │ │ │ ├── 950-0209-media-bcm2835-unicam-Driver-for-CCP2-CSI2-camera-int.patch │ │ │ ├── 950-0210-media-uapi-v4l2-core-Add-sensor-ancillary-data-V4L2-.patch │ │ │ ├── 950-0211-media-uapi-Add-MEDIA_BUS_FMT_SENSOR_DATA-media-bus-f.patch │ │ │ ├── 950-0212-media-bcm2835-unicam-Add-support-for-mulitple-device.patch │ │ │ ├── 950-0213-media-bcm2835-unicam-Add-embedded-data-node.patch │ │ │ ├── 950-0214-media-bcm2835-unicam-Use-dummy-buffer-if-none-have-b.patch │ │ │ ├── 950-0215-media-bcm2835-unicam-Disable-event-related-ioctls-on.patch │ │ │ ├── 950-0216-media-bcm2835-unicam-Add-support-for-the-FRAME_SYNC-.patch │ │ │ ├── 950-0217-media-imx219-Advertise-embedded-data-node-on-media-p.patch │ │ │ ├── 950-0218-media-bcm2835-unicam-Re-fetch-mbus-code-from-subdev-.patch │ │ │ ├── 950-0219-media-uapi-v4l2-core-Add-ISP-statistics-output-V4L2-.patch │ │ │ ├── 950-0220-media-uapi-v4l-ctrls-Add-CID-base-for-the-bcm2835-is.patch │ │ │ ├── 950-0221-staging-vchiq-Load-bcm2835_isp-driver-from-vchiq.patch │ │ │ ├── 950-0222-bcm2835-dma-Add-proper-40-bit-DMA-support.patch │ │ │ ├── 950-0223-overlays-Make-the-i2c-gpio-overlay-safe-again.patch │ │ │ ├── 950-0224-media-i2c-imx219-Declare-that-the-driver-can-create-.patch │ │ │ ├── 950-0225-media-ov5647-Fix-return-codes-from-ov5647_write-ov56.patch │ │ │ ├── 950-0226-media-ov5647-Add-basic-support-for-multiple-sensor-m.patch │ │ │ ├── 950-0227-media-ov5647-Add-V4L2-controls-for-analogue-gain-exp.patch │ │ │ ├── 950-0228-media-ov5647-Add-extra-10-bit-sensor-modes.patch │ │ │ ├── 950-0229-media-ov5647-change-defaults-to-better-match-raw-cam.patch │ │ │ ├── 950-0230-media-i2c-ov5647-Add-support-for-g_selection-to-refl.patch │ │ │ ├── 950-0231-media-i2c-ov5467-Fixup-error-path-to-release-mutex.patch │ │ │ ├── 950-0232-media-i2c-ov5647-Support-V4L2_CID_PIXEL_RATE.patch │ │ │ ├── 950-0233-media-i2c-ov5647-Set-V4L2_SUBDEV_FL_HAS_EVENTS-flag.patch │ │ │ ├── 950-0234-media-i2c-ov5647-Add-support-for-V4L2_CID_VBLANK.patch │ │ │ ├── 950-0235-media-i2c-ov5647-Neither-analogue-gain-nor-exposure-.patch │ │ │ ├── 950-0236-media-i2c-ov5647-Use-member-names-in-mode-tables.patch │ │ │ ├── 950-0237-media-i2c-ov5647-Advertise-the-correct-exposure-rang.patch │ │ │ ├── 950-0238-media-bcm2835-unicam-Add-support-for-VIDIOC_-S-G-_SE.patch │ │ │ ├── 950-0239-media-bcm2835-unicam-Do-not-stop-streaming-in-unicam.patch │ │ │ ├── 950-0240-media-bcm2835-unicam-Fix-reference-counting-in-unica.patch │ │ │ ├── 950-0241-media-i2c-tc358743-Fix-fallthrough-warning.patch │ │ │ ├── 950-0242-media-bcm2835-unicam-Fix-uninitialized-warning.patch │ │ │ ├── 950-0243-video-bcm2708_fb-Disable-FB-if-no-displays-found.patch │ │ │ ├── 950-0244-dt-bindings-media-i2c-Add-IMX477-CMOS-sensor-binding.patch │ │ │ ├── 950-0245-media-bcm2835-unicam-Always-service-interrupts.patch │ │ │ ├── 950-0246-sc16is7xx-Fix-for-hardware-flow-control.patch │ │ │ ├── 950-0247-staging-vc04_services-mmal-vchiq-Update-parameters-l.patch │ │ │ ├── 950-0248-staging-vc04_services-bcm2835-camera-Request-headers.patch │ │ │ ├── 950-0250-media-bcm2835-unicam-Retain-packing-information-on-G.patch │ │ │ ├── 950-0251-zswap-Defer-zswap-initialisation.patch │ │ │ ├── 950-0252-SQUASH-pinctrl-bcm2835-Set-base-for-bcm2711-GPIO-to-.patch │ │ │ ├── 950-0253-staging-vchiq_arm-Clean-up-40-bit-DMA-support.patch │ │ │ ├── 950-0254-media-bcm2835-unicam-change-minimum-number-of-vb2_qu.patch │ │ │ ├── 950-0255-snd_bcm2835-disable-HDMI-audio-when-vc4-is-used-3640.patch │ │ │ ├── 950-0256-gpiolib-Don-t-prevent-IRQ-usage-of-output-GPIOs.patch │ │ │ ├── 950-0257-PCI-brcmstb-Add-DT-property-to-control-L1SS.patch │ │ │ ├── 950-0258-media-irs1125-Using-i2c_transfer-for-ic2-reads.patch │ │ │ ├── 950-0259-media-irs1125-Refactoring-and-debug-messages.patch │ │ │ ├── 950-0260-media-irs1125-Atomic-access-to-imager-reconfiguratio.patch │ │ │ ├── 950-0261-media-irs1125-Keep-HW-in-sync-after-imager-reset.patch │ │ │ ├── 950-0262-staging-bcm2835-audio-Add-missing-MODULE_ALIAS.patch │ │ │ ├── 950-0263-drivers-media-Remove-the-downstream-version-of-bcm28.patch │ │ │ ├── 950-0264-media-bcm2835-unicam-Driver-for-CCP2-CSI2-camera-int.patch │ │ │ ├── 950-0265-media-bcm2835-unicam-Add-support-for-get_mbus_config.patch │ │ │ ├── 950-0266-media-bcm2835-unicam-Avoid-gcc-warning-over-0-on-end.patch │ │ │ ├── 950-0267-media-i2c-imx290-set-the-format-before-VIDIOC_SUBDEV.patch │ │ │ ├── 950-0268-media-i2c-imx290-Add-support-for-74.25MHz-clock.patch │ │ │ ├── 950-0269-media-i2c-imx290-Correct-range-for-V4L2_CID_GAIN-to-.patch │ │ │ ├── 950-0270-media-i2c-imx290-Convert-HMAX-setting-into-V4L2_CID_.patch │ │ │ ├── 950-0271-media-i2c-imx290-Add-support-for-V4L2_CID_VBLANK.patch │ │ │ ├── 950-0272-media-i2c-imx290-Add-exposure-control-to-the-driver.patch │ │ │ ├── 950-0273-media-i2c-imx290-Add-H-and-V-flip-controls.patch │ │ │ ├── 950-0274-media-dt-bindings-media-i2c-Add-mono-version-to-IMX2.patch │ │ │ ├── 950-0275-media-i2c-imx290-Add-support-for-the-mono-sensor-var.patch │ │ │ ├── 950-0276-media-i2c-imx290-Switch-set_hmax-to-use-imx290_write.patch │ │ │ ├── 950-0277-serial-8250-bcm2835aux-defer-if-clock-is-zero.patch │ │ │ ├── 950-0278-media-Add-a-pixel-format-for-MIPI-packed-12bit-luma-.patch │ │ │ ├── 950-0279-media-Add-a-pixel-format-for-MIPI-packed-14bit-luma-.patch │ │ │ ├── 950-0280-media-bcm2835-unicam-Add-support-for-12bit-mono-pack.patch │ │ │ ├── 950-0281-media-bcm2835-unicam-Add-support-for-14bit-mono-sour.patch │ │ │ ├── 950-0282-media-bcm2835-unicam-Add-support-for-unpacked-14bit-.patch │ │ │ ├── 950-0283-bcm2835-dma-Add-NO_WAIT_RESP-flag.patch │ │ │ ├── 950-0284-media-i2c-add-ov9281-driver.patch │ │ │ ├── 950-0285-media-i2c-ov9281-fix-mclk-issue-when-probe-multiple-.patch │ │ │ ├── 950-0286-media-i2c-ov9281-add-enum_frame_interval-function-fo.patch │ │ │ ├── 950-0287-media-i2c-ov9281-Fixup-for-recent-kernel-releases-an.patch │ │ │ ├── 950-0288-media-i2c-ov9281-Read-chip-ID-via-2-reads.patch │ │ │ ├── 950-0289-media-i2c-imx290-Explicitly-set-v-h-blank-on-mode-ch.patch │ │ │ ├── 950-0290-media-i2c-imx290-Add-support-for-g_selection-to-repo.patch │ │ │ ├── 950-0291-media-i2c-imx290-Set-the-colorspace-fields-in-the-fo.patch │ │ │ ├── 950-0292-media-bcm2835-unicam-Reinstate-V4L2_CAP_READWRITE-in.patch │ │ │ ├── 950-0293-media-bcm2835-unicam-Ensure-type-is-VIDEO_CAPTURE-in.patch │ │ │ ├── 950-0294-media-bcm2835-unicam-Set-VPU-min-clock-freq-to-250Mh.patch │ │ │ ├── 950-0295-dt-bindings-bcm2835-unicam-Update-documentation-with.patch │ │ │ ├── 950-0296-media-i2c-ov5647-Parse-and-register-properties.patch │ │ │ ├── 950-0297-leds-Add-the-actpwr-trigger.patch │ │ │ ├── 950-0298-staging-vchiq_arm-children-inherit-DMA-config.patch │ │ │ ├── 950-0299-bcm2835-dma-Advertise-the-full-DMA-range.patch │ │ │ ├── 950-0300-ARM-proc-v7-Force-misalignment-of-early-stmia.patch │ │ │ ├── 950-0301-media-bcm2835-unicam-Select-MEDIA_CONTROLLER-and-VID.patch │ │ │ ├── 950-0302-staging-media-rpivid-Select-MEDIA_CONTROLLER-and-MED.patch │ │ │ ├── 950-0303-media-bcm2835-unicam-Drop-WARN-on-uing-direct-cache-.patch │ │ │ ├── 950-0304-media-i2c-tc358743-Only-allow-supported-pixel-fmts-i.patch │ │ │ ├── 950-0305-media-i2c-ov9281-Add-support-for-8-bit-readout.patch │ │ │ ├── 950-0306-bcm2835-mmc-uninitialized_var-is-no-more.patch │ │ │ ├── 950-0307-dwc_otg-whitelist_table-is-now-productlist_table.patch │ │ │ ├── 950-0308-vchiq_2835_arm-Implement-a-DMA-pool-for-small-bulk-t.patch │ │ │ ├── 950-0309-include-firmware-Add-enum-for-RPI_FIRMWARE_FRAMEBUFF.patch │ │ │ ├── 950-0310-vc4_hdmi-Remove-cec_available-flag-as-always-support.patch │ │ │ ├── 950-0311-drm-vc4-Adopt-the-dma-configuration-from-the-HVS-or-.patch │ │ │ ├── 950-0313-vc4_hdmi-Set-HDMI_MAI_FMT.patch │ │ │ ├── 950-0314-drm-vc4-add-iec958-controls-to-vc4_hdmi.patch │ │ │ ├── 950-0315-drm-vc4-move-setup-from-hw_params-to-prepare.patch │ │ │ ├── 950-0316-drm-vc4-enable-HBR-MAI-format-on-HBR-streams.patch │ │ │ ├── 950-0317-vc4_hdmi-Remove-firmware-logic-for-MAI-threshold-set.patch │ │ │ ├── 950-0318-vc_hdmi-Set-VC4_HDMI_MAI_CONFIG_FORMAT_REVERSE.patch │ │ │ ├── 950-0319-drm-vc4-Add-support-for-DRM_FORMAT_P030-to-vc4-plane.patch │ │ │ ├── 950-0320-drm-vc4-Add-support-for-YUV-color-encodings-and-rang.patch │ │ │ ├── 950-0321-drm-vc4-Add-firmware-kms-mode.patch │ │ │ ├── 950-0322-drm-vc4-Add-FKMS-as-an-acceptable-node-for-dma-range.patch │ │ │ ├── 950-0323-media-i2c-Add-driver-for-Sony-IMX477-sensor.patch │ │ │ ├── 950-0324-media-i2c-imx477-Add-support-for-adaptive-frame-cont.patch │ │ │ ├── 950-0325-media-i2c-imx477-Return-correct-result-on-sensor-id-.patch │ │ │ ├── 950-0326-media-i2c-imx477-Parse-and-register-properties.patch │ │ │ ├── 950-0327-media-bcm2835-unicam-Always-service-interrupts.patch │ │ │ ├── 950-0328-media-bcm2835-unicam-Fix-uninitialized-warning.patch │ │ │ ├── 950-0329-media-bcm2835-unicam-Fixup-review-comments-from-Hans.patch │ │ │ ├── 950-0330-media-bcm2835-unicam-Retain-packing-information-on-G.patch │ │ │ ├── 950-0331-media-bcm2835-unicam-change-minimum-number-of-vb2_qu.patch │ │ │ ├── 950-0332-staging-fbtft-Add-support-for-display-variants.patch │ │ │ ├── 950-0333-rpivid_h265-Fix-width-height-typo.patch │ │ │ ├── 950-0334-net-bcmgenet-Reset-RBUF-on-first-open.patch │ │ │ ├── 950-0335-char-Add-broadcom-char-drivers-back-to-build-files.patch │ │ │ ├── 950-0336-dwc_otg-initialise-sched_frame-for-periodic-QHs-that.patch │ │ │ ├── 950-0337-staging-bcm2835-camera-Replace-deprecated-V4L2_PIX_F.patch │ │ │ ├── 950-0338-staging-vc04_services-Add-new-vc-sm-cma-driver.patch │ │ │ ├── 950-0339-staging-vchiq-mmal-Add-support-for-14bit-Bayer.patch │ │ │ ├── 950-0340-staging-mmal-vchiq-Add-monochrome-image-formats.patch │ │ │ ├── 950-0341-staging-mmal-vchiq-Use-vc-sm-cma-to-support-zero-cop.patch │ │ │ ├── 950-0342-staging-vc04_services-Add-a-V4L2-M2M-codec-driver.patch │ │ │ ├── 950-0343-bcm2835-dma-only-reserve-channel-0-if-legacy-dma-dri.patch │ │ │ ├── 950-0344-uapi-bcm2835-isp-Add-bcm2835-isp-uapi-header-file.patch │ │ │ ├── 950-0345-staging-vc04_services-ISP-Add-a-more-complex-ISP-pro.patch │ │ │ ├── 950-0346-drm-vc4-A-present-but-empty-dmas-disables-audio.patch │ │ │ ├── 950-0347-drm-vc4-Add-debugfs-node-that-dumps-the-current-disp.patch │ │ │ ├── 950-0348-gpio-Add-gpio-fsm-driver.patch │ │ │ ├── 950-0349-drm-vc4-Add-all-the-HDMI-registers-into-the-debugfs-.patch │ │ │ ├── 950-0350-ARM-dts-bcm271x-Use-a53-pmu-drop-RPI364.patch │ │ │ ├── 950-0351-overlays-Add-option-to-disable-composite-to-vc4-kms-.patch │ │ │ ├── 950-0352-overlays-imx219-Correct-link-frequency-to-match-the-.patch │ │ │ ├── 950-0353-dts-Add-CM4-to-arm64-dt-files.patch │ │ │ ├── 950-0354-drm-vc4-Add-the-2711-HVS-as-a-suitable-DMA-node.patch │ │ │ ├── 950-0355-xhci-quirks-add-link-TRB-quirk-for-VL805.patch │ │ │ ├── 950-0356-dts-Tidy-the-Raspberry-Pi-Makefile-entries.patch │ │ │ ├── 950-0357-staging-bcm2835-audio-Add-disable-headphones-flag.patch │ │ │ ├── 950-0358-ARM-dts-Disable-headphone-audio-on-Zeroes-CM4.patch │ │ │ ├── 950-0359-overlays-Enable-headphone-audio-in-audremap.patch │ │ │ ├── 950-0360-rpisense-fb-Set-pseudo_pallete-to-prevent-crash-on-f.patch │ │ │ ├── 950-0361-ARM-dts-Expand-PCIe-space-on-BCM2711.patch │ │ │ ├── 950-0362-dwc_otg-Minimise-header-and-fix-build-warnings.patch │ │ │ ├── 950-0363-gpio-fsm-Fix-a-build-warning.patch │ │ │ ├── 950-0364-rpivid_h625-Fix-build-warnings.patch │ │ │ ├── 950-0365-bcm2708_fb-Fix-a-build-warning.patch │ │ │ ├── 950-0366-PiFi-40-Devicetree-files.patch │ │ │ ├── 950-0367-PiFi-40-driver-Makefile-and-Kconfig.patch │ │ │ ├── 950-0368-bcm2835-pcm-Fix-up-multichannel-pcm-audio.patch │ │ │ ├── 950-0369-watchdog-bcm2835-Ignore-params-after-the-partition-n.patch │ │ │ ├── 950-0370-firmware-raspberrypi-Add-support-for-tryonce-reboot-.patch │ │ │ ├── 950-0371-phy-broadcom-split-out-the-BCM54213PE-from-the-BCM54.patch │ │ │ ├── 950-0372-phy-broadcom-Add-bcm54213pe-configuration.patch │ │ │ ├── 950-0373-overlays-Add-MAX31856-support-to-maxtherm-overlay.patch │ │ │ ├── 950-0374-ARM-dts-Add-bcm2711-rpi-400.dts.patch │ │ │ ├── 950-0375-overlays-Deprecate-and-delete-the-sdtweak-overlay.patch │ │ │ ├── 950-0376-ARM-dts-bcm27xx-Remove-enable_headphones-setting.patch │ │ │ ├── 950-0377-vc4_hdmi-Report-that-3d-stereo-is-allowed.patch │ │ │ ├── 950-0378-PCI-brcmstb-Restore-initial-fundamental-reset.patch │ │ │ ├── 950-0379-vc4-Clear-unused-infoframe-packet-RAM-registers.patch │ │ │ ├── 950-0380-Input-edt-ft5x06-Poll-the-device-if-no-interrupt-is-.patch │ │ │ ├── 950-0381-dtoverlays-Add-an-overlay-for-the-EDT-FT5406-touchsc.patch │ │ │ ├── 950-0382-drm-panel-raspberrypi-touchscreen-Use-independent-I2.patch │ │ │ ├── 950-0383-drm-panel-raspberrypi-ts-Insert-delay-before-polling.patch │ │ │ ├── 950-0384-Add-devicetree-support-for-RaspberryPi-7-panel-over-.patch │ │ │ ├── 950-0385-mcp251xfd-add-overlay.patch │ │ │ ├── 950-0386-media-ov9281-Add-1280x720-and-640x480-modes.patch │ │ │ ├── 950-0387-dt-bindings-Add-compatible-for-BCM2711-DSI1.patch │ │ │ ├── 950-0388-dt-Use-compatible-string-for-BCM2711-DSI1.patch │ │ │ ├── 950-0389-drm-vc4-Correct-DSI-register-definition.patch │ │ │ ├── 950-0390-Allo-boss2-driver.patch │ │ │ ├── 950-0391-Add-allo-boss2-overlay.patch │ │ │ ├── 950-0392-Overlay-Update-Allo-Piano-Plus-dac-driver-for-5.4.y-.patch │ │ │ ├── 950-0393-media-bcm2835-unicam-Correctly-handle-error-propagat.patch │ │ │ ├── 950-0394-media-bcm2835-unicam-Return-early-from-stop_streamin.patch │ │ │ ├── 950-0395-media-bcm2835-unicam-Clear-clock-state-when-stopping.patch │ │ │ ├── 950-0396-PCI-brcmstb-Advertise-MSI-X-support.patch │ │ │ ├── 950-0397-ARM-dts-CM4-audio-pins-are-not-connected.patch │ │ │ ├── 950-0398-overlays-Add-PCF85063-and-PCF85063A-to-i2c-rtc.patch │ │ │ ├── 950-0399-overlays-Fix-cut-and-paste-error-in-README.patch │ │ │ ├── 950-0400-staging-bcm2835-codec-Ensure-OUTPUT-timestamps-are-a.patch │ │ │ ├── 950-0401-net-lan78xx-Ack-pending-PHY-ints-when-resetting.patch │ │ │ ├── 950-0402-overlays-mpu6050-Add-addr-parameter.patch │ │ │ ├── 950-0403-drm-vc4-Make-normalize_zpos-conditional-on-using-fkm.patch │ │ │ ├── 950-0404-overlays-Add-missing-addresses-to-ads1015-ads1115.patch │ │ │ ├── 950-0405-media-i2c-imx477-Selection-compliance-fixes.patch │ │ │ ├── 950-0406-staging-vc04_services-codec-Add-support-for-CID-MPEG.patch │ │ │ ├── 950-0407-staging-vc04_services-codec-Clear-last-buf-dequeued-.patch │ │ │ ├── 950-0408-drm-atomic-Pass-the-full-state-to-CRTC-atomic-enable.patch │ │ │ ├── 950-0409-drm-atomic-Pass-the-full-state-to-CRTC-atomic_check.patch │ │ │ ├── 950-0410-drm-atomic-Pass-the-full-state-to-CRTC-atomic-begin-.patch │ │ │ ├── 950-0411-drm-vc4-hvs-Align-the-HVS-atomic-hooks-to-the-new-AP.patch │ │ │ ├── 950-0412-drm-vc4-Pass-the-atomic-state-to-encoder-hooks.patch │ │ │ ├── 950-0413-drm-vc4-hdmi-Don-t-access-the-connector-state-in-res.patch │ │ │ ├── 950-0414-drm-vc4-hdmi-Create-a-custom-connector-state.patch │ │ │ ├── 950-0415-drm-vc4-hdmi-Store-pixel-frequency-in-the-connector-.patch │ │ │ ├── 950-0416-drm-vc4-hdmi-Use-the-connector-state-pixel-rate-for-.patch │ │ │ ├── 950-0417-drm-vc4-hdmi-Enable-10-12-bpc-output.patch │ │ │ ├── 950-0418-drm-vc4-Fixup-fkms-for-API-change.patch │ │ │ ├── 950-0419-overlays-Rebuild-upstream-with-latest-ovmerge.patch │ │ │ ├── 950-0420-Add-overlay-for-Seeed-Studio-CAN-BUS-FD-HAT-4034.patch │ │ │ ├── 950-0421-vc-sm-cma-fixed-kbuild-problem.patch │ │ │ ├── 950-0422-staging-vc04-services-codec-Fix-logical-precedence-i.patch │ │ │ ├── 950-0423-staging-vc04_services-Add-additional-unpacked-raw-fo.patch │ │ │ ├── 950-0424-staging-bcm2835-codec-Add-the-unpacked-16bpp-raw-for.patch │ │ │ ├── 950-0425-staging-bcm2835-codec-Log-the-number-of-excess-suppo.patch │ │ │ ├── 950-0426-staging-bcm2835-isp-Add-the-unpacked-16bpp-raw-forma.patch │ │ │ ├── 950-0427-staging-bcm2835-isp-Log-the-number-of-excess-support.patch │ │ │ ├── 950-0428-bcm2835-dma-Add-bcm2835-dma-Add-DMA_WIDE_SOURCE-and-.patch │ │ │ ├── 950-0429-bcm2835-dma-Move-WAIT_RESP-from-extra-to-info.patch │ │ │ ├── 950-0430-bcm2835-dma-Avoid-losing-CS-flags-after-interrupt.patch │ │ │ ├── 950-0431-dt-Enable-DMA_WIDE_SOURCE-and-DMA_WIDE_DEST-for-hdmi.patch │ │ │ ├── 950-0432-bcm2711-rpi.dtsi-Bump-hdmi-audio-dma-panic-priority-.patch │ │ │ ├── 950-0433-media-i2c-ov5647-Selection-compliance-fixes.patch │ │ │ ├── 950-0434-overlays-give-Seeed-Studio-CAN-BUS-FD-HAT-a-v2-postf.patch │ │ │ ├── 950-0435-overlays-Add-overlay-for-Seeed-Studio-CAN-BUS-FD-HAT.patch │ │ │ ├── 950-0436-overlays-add-wm8960-soundcard-overlay.patch │ │ │ ├── 950-0437-overlays-add-spi-override-to-merus-amp-overlay.patch │ │ │ ├── 950-0438-dt-Add-a-camera-regulator-node-to-all-downstream-Pi-.patch │ │ │ ├── 950-0439-dtoverlays-Update-sensor-overlays-to-use-cam1_reg-wh.patch │ │ │ ├── 950-0440-overlays-seeed-can-fd-hat-clarify-how-to-identify-HA.patch │ │ │ ├── 950-0441-SQUASH-Revert-overlays-Make-the-i2c-gpio-overlay-saf.patch │ │ │ ├── 950-0442-SQUASH-Revert-overlays-Fix-dtc-warnings-in-i2c-gpio.patch │ │ │ ├── 950-0443-uapi-bcm2835-isp-Add-colour-denoise-configuration.patch │ │ │ ├── 950-0444-staging-vc04_services-ISP-Add-colour-denoise-control.patch │ │ │ ├── 950-0445-dt-bindings-nvmem-Add-bindings-for-rmem-driver.patch │ │ │ ├── 950-0446-nvmem-Add-driver-to-expose-reserved-memory-as-nvmem.patch │ │ │ ├── 950-0447-ARM-dts-bcm2711-Add-reserved-memory-template-to-hold.patch │ │ │ ├── 950-0448-spi-bcm2835-Workaround-fix-for-zero-length-transfers.patch │ │ │ ├── 950-0449-kbuild-Silence-unavoidable-dtc-overlay-warnings.patch │ │ │ ├── 950-0450-Adds-the-DT-overlays-to-support-Hifiberry-AMP100.patch │ │ │ ├── 950-0451-Enhances-the-Hifiberry-DAC-driver-for-Hifiberry-AMP1.patch │ │ │ ├── 950-0452-ARM-dts-Declare-Pi400-and-CM4-have-no-audio-pins.patch │ │ │ ├── 950-0453-media-i2c-imx290-Replace-V4L2_CID_GAIN-with-V4L2_CID.patch │ │ │ ├── 950-0454-media-i2c-imx290-Fix-number-of-controls-in-v4l2_ctrl.patch │ │ │ ├── 950-0455-ARM-bcm-Select-BRCMSTB_L2_IRQ-for-bcm2835.patch │ │ │ ├── 950-0456-drm-vc4-hdmi-Update-the-CEC-clock-divider-on-HSM-rat.patch │ │ │ ├── 950-0457-drm-vc4-hdmi-Introduce-a-CEC-clock.patch │ │ │ ├── 950-0458-drm-vc4-hdmi-Split-the-interrupt-handlers.patch │ │ │ ├── 950-0459-drm-vc4-hdmi-Support-BCM2711-CEC-interrupt-setup.patch │ │ │ ├── 950-0460-drm-vc4-hdmi-Don-t-register-the-CEC-adapter-if-there.patch │ │ │ ├── 950-0461-dt-binding-display-bcm2711-hdmi-Add-CEC-and-hotplug-.patch │ │ │ ├── 950-0462-ARM-dts-bcm2711-Add-the-CEC-interrupt-controller.patch │ │ │ ├── 950-0463-bcm2711-Disable-bsc_intr-and-aon_intr-by-default-and.patch │ │ │ ├── 950-0464-bcm2711-Remove-old-GIC-interrupt.patch │ │ │ ├── 950-0465-staging-bcm2835-camera-Fix-the-cherry-pick-of-AWB-Gr.patch │ │ │ ├── 950-0466-Overlays-for-PiFi-Mini-amp.patch │ │ │ ├── 950-0467-Added-PiFi-Mini-to-rpi-simple-soundcard.c.patch │ │ │ ├── 950-0468-bcm2835-isp-Allow-formats-with-different-colour-spac.patch │ │ │ ├── 950-0469-Hifiberry-DAC-ADC-Pro-fix-for-the-PLL-when-changing-.patch │ │ │ ├── 950-0470-Fixed-picture-line-bug-in-all-ov9281-modes.patch │ │ │ ├── 950-0471-Added-hflip-and-vflip-controls-to-ov9281.patch │ │ │ ├── 950-0472-gpio-fsm-Rename-num-soft-gpios-to-avoid-warning.patch │ │ │ ├── 950-0473-overlays-Rename-gpio-fsm-property-num-soft-gpios.patch │ │ │ ├── 950-0474-drm-fix-HDR-static-metadata-type-field-numbering.patch │ │ │ ├── 950-0475-drm-vc4-Add-HDR-metadata-property-to-the-VC5-HDMI-co.patch │ │ │ ├── 950-0476-drm-vc4-Add-connector-check-to-trigger-mode_change-w.patch │ │ │ ├── 950-0477-staging-rpivid-Fix-crash-when-CMA-alloc-fails.patch │ │ │ ├── 950-0478-dt-Add-option-for-dpi-without-DE-and-PCLK-for-VGA666.patch │ │ │ ├── 950-0479-dtoverlays-Add-an-overlay-for-the-VGA666-when-used-w.patch │ │ │ ├── 950-0480-drm-vc4-Change-the-default-DPI-format-to-being-18bpp.patch │ │ │ ├── 950-0481-gpio-fsm-Show-state-info-in-sys-class-gpio-fsm.patch │ │ │ ├── 950-0482-gpio-fsm-Fix-shutdown-timeout-handling.patch │ │ │ ├── 950-0483-overlays-fsm-demo-Ensure-all-LEDs-are-turned-off.patch │ │ │ ├── 950-0484-media-i2c-imx477-Remove-auto-frame-length-adjusting.patch │ │ │ ├── 950-0485-media-i2c-imx477-Add-very-long-exposure-control-to-t.patch │ │ │ ├── 950-0486-media-i2c-imx290-Fix-up-exposure-calcuations-and-ran.patch │ │ │ ├── 950-0487-media-i2c-imx290-Handle-exposure-correctly-when-vbla.patch │ │ │ ├── 950-0488-DAC-overlays-4154.patch │ │ │ ├── 950-0489-media-i2c-imx477-Fix-crop-height-for-2028x1080-mode.patch │ │ │ ├── 950-0490-media-i2c-imx477-Replace-existing-1012x760-mode.patch │ │ │ ├── 950-0491-media-i2c-imx477-Remove-internal-v4l2_mbus_framefmt-.patch │ │ │ ├── 950-0492-media-i2c-imx477-Remove-unused-function-parameter.patch │ │ │ ├── 950-0493-overlays-i2c-rtc-Add-the-Dallas-DS1340.patch │ │ │ ├── 950-0494-overlays-Update-the-upstream-overlay.patch │ │ │ ├── 950-0495-Revert-Bluetooth-Always-request-for-user-confirmatio.patch │ │ │ ├── 950-0496-Revert-Bluetooth-Always-request-for-user-confirmatio.patch │ │ │ ├── 950-0497-media-bcm2835-unicam-Fix-bug-in-buffer-swapping-logi.patch │ │ │ ├── 950-0498-Assign-crypto-aliases-to-different-AES-implementatio.patch │ │ │ ├── 950-0499-overlays-Improve-the-i2c-rtc-i2c_csi_dsi-option.patch │ │ │ ├── 950-0500-media-v4l2_m2m-In-buffered-mode-run-jobs-if-either-p.patch │ │ │ ├── 950-0501-staging-bcm2835-codec-Correct-logging-of-size_t-to-z.patch │ │ │ ├── 950-0502-staging-bcm2835-codec-Add-support-for-pixel-aspect-r.patch │ │ │ ├── 950-0503-staging-bcm2835-codec-Implement-additional-g_selecti.patch │ │ │ ├── 950-0504-staging-bcm2835-codec-Add-VC-1-support.patch │ │ │ ├── 950-0505-vc4-drm-Avoid-full-hdmi-audio-fifo-writes.patch │ │ │ ├── 950-0506-vc4-drm-Increase-hdmi-audio-axi-priority-to-avoid-lo.patch │ │ │ ├── 950-0507-overlays-gpio-led-new-overlay.patch │ │ │ ├── 950-0508-overlays-Add-pcie-32bit-dma-overlay.patch │ │ │ ├── 950-0509-ARM-dts-bcm2711-Add-aliases-for-additional-SPIs.patch │ │ │ ├── 950-0510-Make-rpi-poe-fan-less-noisy-in-cool-environments.patch │ │ │ ├── 950-0511-vc4-drm-Fix-source-offsets-with-DRM_FORMAT_P030.patch │ │ │ ├── 950-0512-vc4-drm-vc4_plane-Remove-subpixel-positioning-check.patch │ │ │ ├── 950-0513-clk-raspberrypi-Also-support-HEVC-clock.patch │ │ │ ├── 950-0514-dt-Switch-hevc-clock-from-fixed-to-firmware-driver.patch │ │ │ ├── 950-0515-rpivid-Request-maximum-hevc-clock.patch │ │ │ ├── 950-0516-staging-bcm2835-camera-Add-support-for-DMABUFs.patch │ │ │ ├── 950-0517-staging-fbtft-Add-minipitft13-variant.patch │ │ │ ├── 950-0518-overlays-Add-minipitft13-overlay.patch │ │ │ ├── 950-0519-overlays-ghost-amp-Minor-tweaks.patch │ │ │ ├── 950-0520-overlays-Add-README-entry-for-minipitft13.patch │ │ │ ├── 950-0521-ARM-dts-update-bcm2711-rpi-cm4.dts-and-400.patch │ │ │ ├── 950-0522-vc4-drm-SQUASH-Fix-source-offsets-with-DRM_FORMAT_P0.patch │ │ │ ├── 950-0523-dwc-otg-fix-clang-Wignored-attributes-warning.patch │ │ │ ├── 950-0524-dwc-otg-fix-clang-Wsometimes-uninitialized-warning.patch │ │ │ ├── 950-0525-dwc-otg-fix-clang-Wpointer-bool-conversion-warning.patch │ │ │ ├── 950-0526-Update-Allo-Piano-Dac-Driver.patch │ │ │ ├── 950-0527-drm-connector-Create-a-helper-to-attach-the-hdr_outp.patch │ │ │ ├── 950-0528-drm-connector-Add-helper-to-compare-HDR-metadata.patch │ │ │ ├── 950-0529-drm-vc4-Use-the-new-helpers.patch │ │ │ ├── 950-0530-drm-connector-Add-a-helper-to-attach-the-colorspace-.patch │ │ │ ├── 950-0531-drm-vc4-hdmi-Signal-the-proper-colorimetry-info-in-t.patch │ │ │ ├── 950-0532-staging-vcsm-cma-Fix-memory-leak-from-not-detaching-.patch │ │ │ ├── 950-0533-vc4-kms-vc4_plane-Support-2020-colourspace-for-yuv-p.patch │ │ │ ├── 950-0534-sound-usb-add-device-quirks-for-A4Tech-FHD-1080p-web.patch │ │ │ ├── 950-0535-sound-usb-call-usb_autopm_get_interface-for-devices-.patch │ │ │ ├── 950-0536-overlays-ghost-amp-Add-DAC-mute-control.patch │ │ │ ├── 950-0537-clk-Introduce-a-clock-request-API.patch │ │ │ ├── 950-0538-drm-vc4-hdmi-Convert-to-the-new-clock-request-API.patch │ │ │ ├── 950-0539-drm-vc4-hdmi-Convert-to-the-new-clock-request-API.patch │ │ │ ├── 950-0540-bcm2835-unicam-Switch-to-new-clock-api.patch │ │ │ ├── 950-0541-rpivid-Switch-to-new-clock-api.patch │ │ │ ├── 950-0558-rpivid-Only-clk_request_done-once.patch │ │ │ ├── 950-0559-dwc_otg-fix-an-undeclared-variable.patch │ │ │ ├── 950-0560-drm-vc4-drv-Remove-the-DSI-pointer-in-vc4_drv.patch │ │ │ ├── 950-0561-drm-vc4-dsi-Use-snprintf-for-the-PHY-clocks-instead-.patch │ │ │ ├── 950-0562-drm-vc4-dsi-Introduce-a-variant-structure.patch │ │ │ ├── 950-0563-drm-vc4-dsi-Add-support-for-DSI0.patch │ │ │ ├── 950-0564-drm-vc4-dsi-Add-configuration-for-BCM2711-DSI1.patch │ │ │ ├── 950-0565-drm-vc4-Correct-pixel-order-for-DSI0.patch │ │ │ ├── 950-0566-drm-vc4-Register-dsi0-as-the-correct-vc4-encoder-typ.patch │ │ │ ├── 950-0567-drm-vc4-Fix-dsi0-interrupt-support.patch │ │ │ ├── 950-0568-drm-vc4-Add-correct-stop-condition-to-vc4_dsi_encode.patch │ │ │ ├── 950-0569-drm-atomic-Don-t-fixup-modes-that-haven-t-been-reset.patch │ │ │ ├── 950-0570-drm-panel-jdi-lt070me05000-Use-gpiod_set_value_cansl.patch │ │ │ ├── 950-0571-dtoverlays-Add-overlays-for-JDI-LT070ME05000-1200x19.patch │ │ │ ├── 950-0572-clk-requests-Ignore-if-the-pointer-is-null.patch │ │ │ ├── 950-0573-drm-vc4-hvs-Make-the-HVS-bind-first.patch │ │ │ ├── 950-0574-drm-vc4-hdmi-Properly-compute-the-BVB-clock-rate.patch │ │ │ ├── 950-0575-drm-vc4-hdmi-Enable-the-scrambler.patch │ │ │ ├── 950-0576-drm-vc4-hdmi-Raise-the-maximum-clock-rate.patch │ │ │ ├── 950-0577-vc4-drm-hdmi-Handle-case-when-bvb-clock-is-null.patch │ │ │ ├── 950-0578-overlays-spi-rtc-Add-ds3232-and-ds3234.patch │ │ │ ├── 950-0579-drm-vc4-Fix-VEC-address-for-BCM2711-in-the-devicetre.patch │ │ │ ├── 950-0580-drm-vc4-Separate-VEC-compatible-variants.patch │ │ │ ├── 950-0581-clk-requests-Dereference-the-request-pointer-after-t.patch │ │ │ ├── 950-0582-staging-bcm2835-codec-Fix-support-for-levels-4.1-and.patch │ │ │ ├── 950-0583-staging-bcm2835-codec-Set-the-colourspace-appropriat.patch │ │ │ ├── 950-0584-staging-bcm2835-codec-Pass-corrupt-frame-flag.patch │ │ │ ├── 950-0585-staging-bcm2835-camera-Add-support-for-H264-levels-4.patch │ │ │ ├── 950-0586-staging-bcm2835-codec-Do-not-update-crop-from-S_FMT-.patch │ │ │ ├── 950-0587-staging-bcm2835-isp-Fix-compiler-warning.patch │ │ │ ├── 950-0588-overlays-Allow-multiple-gpio-shutdown-instances.patch │ │ │ ├── 950-0589-overlays-README-improve-the-gpio-poweroff-guide.patch │ │ │ ├── 950-0590-SQUASH-overlays-Fix-typo-in-README.patch │ │ │ ├── 950-0591-gpio-poweroff-Remember-the-old-poweroff-handler.patch │ │ │ ├── 950-0593-overlays-Add-ugreen-dabboard-overlay.patch │ │ │ ├── 950-0594-ARM-dts-bcm2711-rpi-400-Limit-MDIO-clock-speed.patch │ │ │ ├── 950-0595-spi-bcm2835-Increase-the-CS-limit-to-24.patch │ │ │ ├── 950-0596-clk-Always-clamp-the-rounded-rate.patch │ │ │ ├── 950-0597-drm-vc4-crtc-Pass-the-drm_atomic_state-to-config_pv.patch │ │ │ ├── 950-0598-drm-vc4-crtc-Fix-vc4_get_crtc_encoder-logic.patch │ │ │ ├── 950-0599-drm-vc4-crtc-Lookup-the-encoder-from-the-register-at.patch │ │ │ ├── 950-0600-drm-vc4-hdmi-Simplify-the-connector-state-retrieval.patch │ │ │ ├── 950-0601-drm-vc4-hdmi-Rely-on-interrupts-to-handle-hotplug.patch │ │ │ ├── 950-0602-drm-vc4-hdmi-Add-a-workqueue-to-set-scrambling.patch │ │ │ ├── 950-0603-vc4-drm-hdmi-Fix-missing-declaration.patch │ │ │ ├── 950-0604-overlays-merus-amp-remove-spi-override.patch │ │ │ ├── 950-0605-media-i2c-ov5647-Correct-pixel-array-offset.patch │ │ │ ├── 950-0606-media-i2c-ov5647-Correct-minimum-VBLANK-value.patch │ │ │ ├── 950-0607-media-i2c-ov5647-Fix-v4l2-compliance-failure-subscri.patch │ │ │ ├── 950-0608-dtoverlays-Add-pinctrl-names-to-i2c0-overlay.patch │ │ │ ├── 950-0609-dtoverlays-Update-__symbols__-i2c0-from-i2c0-overlay.patch │ │ │ ├── 950-0610-media-rpivid-Remove-the-need-to-have-num_entry_point.patch │ │ │ ├── 950-0611-media-rpivid-Convert-to-MPLANE.patch │ │ │ ├── 950-0612-media-rpivid-Add-an-enable-count-to-irq-claim-Qs.patch │ │ │ ├── 950-0613-RFC-media-Add-media_request_-pin-unpin-API.patch │ │ │ ├── 950-0614-media-rpivid-Add-a-Pass0-to-accumulate-slices-and-re.patch │ │ │ ├── 950-0615-media-rpivid-Map-cmd-buffer-directly.patch │ │ │ ├── 950-0616-media-rpivid-Improve-values-returned-when-setting-ou.patch │ │ │ ├── 950-0617-media-rpivid-Improve-stream_on-off-conformance-clock.patch │ │ │ ├── 950-0618-media-rpivid-Improve-SPS-PPS-error-handling-validati.patch │ │ │ ├── 950-0619-overlays-add-sensirion-sgp30-to-i2c-sensor-overlay.patch │ │ │ ├── 950-0620-overlays-Remove-deleted-merus-amp-parameter.patch │ │ │ ├── 950-0621-overlays-add-bh1750-and-ccs811-to-i2c-sensor-4334.patch │ │ │ ├── 950-0622-Add-Raspberry-Pi-PoE-HAT-support.patch │ │ │ ├── 950-0623-overlays-Add-rpi-poe-plus-overlay.patch │ │ │ ├── 950-0624-drm-vc4-FKMS-Change-of-Broadcast-RGB-mode-needs-a-mo.patch │ │ │ ├── 950-0625-overlays-Add-ssd1331-spi-support-for-OLED-screen.patch │ │ │ ├── 950-0626-Fixes-an-onboard-clock-detection-problem-of-the-PRO-.patch │ │ │ ├── 950-0627-bcm2835-Allow-compressed-frames-to-set-sizeimage-438.patch │ │ │ ├── 950-0628-media-i2c-imx477-Fix-for-long-exposure-limit-calcula.patch │ │ │ ├── 950-0629-overlays-ghost-amp-Change-early-disable-sequence.patch │ │ │ ├── 950-0630-drm-vc4-Make-vc4_crtc_get_encoder-public.patch │ │ │ ├── 950-0631-ASoC-codec-hdmi-codec-Support-IEC958-encoded-PCM-for.patch │ │ │ ├── 950-0632-ASoC-hdmi-codec-Rework-to-support-more-controls.patch │ │ │ ├── 950-0633-snd-iec958-split-status-creation-and-fill.patch │ │ │ ├── 950-0634-ASoC-hdmi-codec-Add-iec958-controls.patch │ │ │ ├── 950-0635-ASoC-hdmi-codec-Add-a-prepare-hook.patch │ │ │ ├── 950-0636-drm-vc4-Register-HDMI-codec.patch │ │ │ ├── 950-0637-drm-vc4-hdmi-Remove-redundant-variables.patch │ │ │ ├── 950-0638-ARM-dts-bcm2711-Tune-DMA-parameters-for-HDMI-audio.patch │ │ │ ├── 950-0639-cgroup-Disable-cgroup-memory-by-default.patch │ │ │ ├── 950-0640-media-i2c-imx290-Support-60fps-in-2-lane-operation.patch │ │ │ ├── 950-0641-media-i2c-imx290-Fix-the-pixel-rate-at-148.5Mpix-s.patch │ │ │ ├── 950-0642-media-i2c-imx290-Fix-clock-setup-register-assignment.patch │ │ │ ├── 950-0643-drm-vc4-crtc-Add-encoder-to-vc4_crtc_config_pv-proto.patch │ │ │ ├── 950-0644-drm-vc4-crtc-Rework-the-encoder-retrieval-code-again.patch │ │ │ ├── 950-0645-drm-vc4-crtc-Add-some-logging.patch │ │ │ ├── 950-0646-drm-vc4-Leverage-the-load-tracker-on-the-BCM2711.patch │ │ │ ├── 950-0647-drm-vc4-Fix-timings-for-interlaced-modes.patch │ │ │ ├── 950-0648-drm-vc4-Don-t-create-hvs_load_tracker-on-fkms.patch │ │ │ ├── 950-0649-media-rpivid-Fix-H265-aux-ent-reuse-of-the-same-slot.patch │ │ │ ├── 950-0650-Support-RPi-DPI-interface-in-mode6-for-18-bit-color.patch │ │ │ ├── 950-0651-overlays-Add-dpi18cpadhi-vc4-kms-dpi-at056tn53v1.patch │ │ │ ├── 950-0652-drm-vc4-Fix-pixel-wrap-issue-with-DVP-teardown.patch │ │ │ ├── 950-0653-media-i2c-ov9281-Remove-override-of-subdev-name.patch │ │ │ ├── 950-0654-drm-vc4-hdmi-Use-a-fixed-rate-for-the-HSM-clock-on-B.patch │ │ │ ├── 950-0655-drm-vc4-hdmi-Enable-the-scrambler-on-reconnection.patch │ │ │ ├── 950-0656-staging-vc04_services-isp-Set-the-YUV420-YVU420-form.patch │ │ │ ├── 950-0657-Documentation-devicetree-Add-documentation-for-imx37.patch │ │ │ ├── 950-0658-overlays-Add-overlay-for-imx378-sensor.patch │ │ │ ├── 950-0659-media-i2c-imx477-Extend-driver-to-support-imx378-sen.patch │ │ │ ├── 950-0660-overlays-Make-i2c-rtc-and-i2c-rtc-gpio-share-RTCs.patch │ │ │ ├── 950-0661-dt-bindings-clk-raspberrypi-Remove-unused-property.patch │ │ │ ├── 950-0662-dt-bindings-display-vc4-Add-phandle-to-the-firmware.patch │ │ │ ├── 950-0663-firmware-raspberrypi-Add-RPI_FIRMWARE_NOTIFY_DISPLAY.patch │ │ │ ├── 950-0664-drm-vc4-Remove-conflicting-framebuffers-before-calli.patch │ │ │ ├── 950-0665-drm-vc4-Notify-the-firmware-when-DRM-is-in-charge.patch │ │ │ ├── 950-0666-ARM-dts-rpi-Add-the-firmware-node-to-vc4.patch │ │ │ ├── 950-0667-drm-vc4-hdmi-Put-the-device-on-error-in-pre_crtc_con.patch │ │ │ ├── 950-0668-drm-vc4-hdmi-Split-the-CEC-disable-enable-functions-.patch │ │ │ ├── 950-0670-drm-vc4-hdmi-Add-missing-clk_disable_unprepare-on-er.patch │ │ │ ├── 950-0671-drm-vc4-hdmi-Warn-if-we-access-the-controller-while-.patch │ │ │ ├── 950-0673-vc4-drv-Only-notify-firmware-of-display-done-with-km.patch │ │ │ ├── 950-0674-dwc_otg-Update-NetBSD-usb.h-header-licence.patch │ │ │ ├── 950-0675-drm-vc4-hdmi-Drop-devm-interrupt-handler-for-CEC-int.patch │ │ │ ├── 950-0676-drm-vc4-hdmi-Drop-devm-interrupt-handler-for-hotplug.patch │ │ │ ├── 950-0677-drm-vc4-hdmi-Only-call-into-DRM-framework-if-registe.patch │ │ │ ├── 950-0678-bcm2711_thermal-Don-t-clamp-temperature-at-zero.patch │ │ │ ├── 950-0679-media-bcm2835-unicam-Forward-input-status-from-subde.patch │ │ │ ├── 950-0680-overlays-Add-overlay-for-Chipdip-I2S-master-DAC.patch │ │ │ ├── 950-0681-drm-Introduce-an-atomic_commit_setup-function.patch │ │ │ ├── 950-0682-drm-Document-use-after-free-gotcha-with-private-obje.patch │ │ │ ├── 950-0683-drm-vc4-Simplify-a-bit-the-global-atomic_check.patch │ │ │ ├── 950-0684-drm-vc4-hdmi-Don-t-poll-for-the-infoframes-status-on.patch │ │ │ ├── 950-0685-drm-vc4-hvs-Align-the-HVS-atomic-hooks-to-the-new-AP.patch │ │ │ ├── 950-0686-drm-Use-the-state-pointer-directly-in-atomic_check.patch │ │ │ ├── 950-0687-drm-vc4-Remove-unnecessary-drm_plane_cleanup-wrapper.patch │ │ │ ├── 950-0688-drm-vc4-plane-Remove-redundant-assignment.patch │ │ │ ├── 950-0689-drm-automatic-legacy-gamma-support.patch │ │ │ ├── 950-0690-drm-Pass-the-full-state-to-connectors-atomic-functio.patch │ │ │ ├── 950-0691-drm-vc4-replace-idr_init-by-idr_init_base.patch │ │ │ ├── 950-0692-drm-vc4-vc4_hdmi_regs-Mark-some-data-sets-as-__maybe.patch │ │ │ ├── 950-0693-drm-vc4-remove-unneeded-variable-ret.patch │ │ │ ├── 950-0694-overlays-Add-overlay-for-cap1106-capacitive-touch-se.patch │ │ │ ├── 950-0695-drm-vc4-Fix-margin-calculations-for-the-right-bottom.patch │ │ │ ├── 950-0696-ydrm-vc4-fkms-Fix-margin-calculations-for-the-right-.patch │ │ │ ├── 950-0697-ARM-dts-bcm2711-fold-in-the-correct-interrupt.patch │ │ │ ├── 950-0698-overlays-Add-overlay-for-Si446x-Transceiver-SPI.patch │ │ │ ├── 950-0699-drm-vc4-Fix-timings-for-VEC-modes.patch │ │ │ ├── 950-0700-drm-vc4-Refactor-VEC-TV-mode-setting.patch │ │ │ ├── 950-0701-drm-vc4-Fix-definition-of-PAL-M-mode.patch │ │ │ ├── 950-0702-drm-vc4-Add-support-for-more-analog-TV-standards.patch │ │ │ ├── 950-0703-drm-vc4-Allow-setting-the-TV-norm-via-module-paramet.patch │ │ │ ├── 950-0704-drm-vc4-Refactor-mode-checking-logic.patch │ │ │ ├── 950-0705-drm-vc4-Fix-typo-when-getting-firmware-node.patch │ │ │ ├── 950-0706-ARM-dts-bcm2711-Tidy-the-HDMI-I2C-aliases.patch │ │ │ ├── 950-0707-media-i2c-imx477-Fix-framerates-for-1332x990-mode.patch │ │ │ ├── 950-0708-drm-uapi-Add-USB-connector-type.patch │ │ │ ├── 950-0709-drm-Add-GUD-USB-Display-driver.patch │ │ │ ├── 950-0710-drm-gud-fix-sizeof-use.patch │ │ │ ├── 950-0711-drm-gud-Remove-unneeded-semicolon.patch │ │ │ ├── 950-0712-drm-gud-cleanup-coding-style-a-bit.patch │ │ │ ├── 950-0713-drm-gud-Free-buffers-on-device-removal.patch │ │ │ ├── 950-0714-drm-gud-Use-scatter-gather-USB-bulk-transfer.patch │ │ │ ├── 950-0715-drm-gud-Add-Raspberry-Pi-Pico-ID.patch │ │ │ ├── 950-0716-drm-gud-Add-async_flush-module-parameter.patch │ │ │ ├── 950-0717-drm-vc4-hdmi-Make-sure-the-controller-is-powered-up-.patch │ │ │ ├── 950-0718-overlays-Set-CMA-to-512MB-on-Pi-4-for-vc4.patch │ │ │ ├── 950-0719-ARM-dts-Correct-CM4-PHY-MDIO-address.patch │ │ │ ├── 950-0720-drm-vc4-Increase-the-core-clock-based-on-HVS-load.patch │ │ │ ├── 950-0721-drm-vc4-Increase-the-core-clock-to-a-minimum-of-500M.patch │ │ │ ├── 950-0722-overlays-Update-and-rename-chipdip-i2s-master-dac.patch │ │ │ ├── 950-0723-ASoC-bcm-Add-chipdip-dac-driver.patch │ │ │ ├── 950-0724-char-vc_mem-Delete-dead-code.patch │ │ │ ├── 950-0725-overlays-Add-Ablic-S35390A-to-i2c-rtc-and-gpio.patch │ │ │ ├── 950-0726-dtoverlays-Add-orientation-and-rotation-parameter-to.patch │ │ │ ├── 950-0727-media-i2c-imx290-Add-fwnode-properties-controls.patch │ │ │ ├── 950-0728-media-i2c-ov9281-Add-fwnode-properties-controls.patch │ │ │ ├── 950-0729-media-i2c-ov7251-Add-fwnode-properties-controls.patch │ │ │ ├── 950-0730-overlays-Reduce-Pi-4-vc4-CMA-size-to-320MB.patch │ │ │ ├── 950-0731-Revert-overlays-Update-display-GPIO-declarations-for.patch │ │ │ ├── 950-0732-overlays-Add-midi-uart-2345-overlay.dts.patch │ │ │ ├── 950-0733-usb-xhci-workaround-for-bogus-SET_DEQ_PENDING-endpoi.patch │ │ │ ├── 950-0734-overlays-Add-TI-BQ32000-RTC-support.patch │ │ │ ├── 950-0736-ARM-dts-Adapt-to-upstream-changes.patch │ │ │ ├── 950-0737-overlays-rpi-poe-plus-Improve-the-cooling-levels.patch │ │ │ ├── 950-0738-Makefiles-dt-Always-set-on-ARCH_BCM2835.patch │ │ │ └── 960-hwrng-iproc-set-quality-to-1000.patch │ │ ├── bcm47xx/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ └── 01_network │ │ │ │ │ ├── diag.sh │ │ │ │ │ ├── init.d/ │ │ │ │ │ │ └── wmacfixup │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ ├── 03_network_migration │ │ │ │ │ └── 09_fix_crc │ │ │ │ └── lib/ │ │ │ │ ├── preinit/ │ │ │ │ │ └── 01_sysinfo │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── generic/ │ │ │ │ ├── profiles/ │ │ │ │ │ ├── 100-Broadcom-b43.mk │ │ │ │ │ ├── 101-Broadcom-wl.mk │ │ │ │ │ ├── 104-Broadcom-ath5k.mk │ │ │ │ │ ├── 105-Broadcom-none.mk │ │ │ │ │ ├── 200-Broadcom-b44-b43.mk │ │ │ │ │ ├── 201-Broadcom-b44-wl.mk │ │ │ │ │ ├── 204-Broadcom-b44-ath5k.mk │ │ │ │ │ ├── 205-Broadcom-b44-none.mk │ │ │ │ │ ├── 210-Broadcom-tg3-b43.mk │ │ │ │ │ ├── 211-Broadcom-tg3-wl.mk │ │ │ │ │ ├── 215-Broadcom-tg3-none.mk │ │ │ │ │ ├── 220-Broadcom-bgmac-b43.mk │ │ │ │ │ ├── 221-Broadcom-bgmac-wl.mk │ │ │ │ │ ├── 225-Broadcom-bgmac-none.mk │ │ │ │ │ ├── 226-Broadcom-bgmac-brcsmac.mk │ │ │ │ │ └── PS-1208MFG.mk │ │ │ │ └── target.mk │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── generic.mk │ │ │ │ ├── legacy.mk │ │ │ │ ├── lzma-loader/ │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src/ │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── decompress.c │ │ │ │ │ ├── decompress.lds.in │ │ │ │ │ ├── head.S │ │ │ │ │ └── loader.lds.in │ │ │ │ └── mips74k.mk │ │ │ ├── legacy/ │ │ │ │ ├── config-default │ │ │ │ ├── profiles/ │ │ │ │ │ ├── 100-Broadcom-b43.mk │ │ │ │ │ └── 101-Broadcom-wl.mk │ │ │ │ └── target.mk │ │ │ ├── mips74k/ │ │ │ │ ├── config-default │ │ │ │ ├── profiles/ │ │ │ │ │ ├── 100-Broadcom-b43.mk │ │ │ │ │ ├── 101-Broadcom-brcsmac.mk │ │ │ │ │ ├── 102-Broadcom-wl.mk │ │ │ │ │ └── 103-Broadcom-none.mk │ │ │ │ └── target.mk │ │ │ ├── modules.mk │ │ │ └── patches-5.10/ │ │ │ ├── 159-cpu_fixes.patch │ │ │ ├── 160-kmap_coherent.patch │ │ │ ├── 209-b44-register-adm-switch.patch │ │ │ ├── 210-b44_phy_fix.patch │ │ │ ├── 280-activate_ssb_support_in_usb.patch │ │ │ ├── 300-fork_cacheflush.patch │ │ │ ├── 310-no_highpage.patch │ │ │ ├── 320-MIPS-BCM47XX-Devices-database-update-for-4.x.patch │ │ │ ├── 400-mtd-bcm47xxpart-get-nvram.patch │ │ │ ├── 610-pci_ide_fix.patch │ │ │ ├── 700-net-bgmac-connect-to-PHY-even-if-it-is-BGMAC_PHY_NOR.patch │ │ │ ├── 791-tg3-no-pci-sleep.patch │ │ │ ├── 800-bcma-add-table-of-serial-flashes-with-smaller-blocks.patch │ │ │ ├── 820-wgt634u-nvram-fix.patch │ │ │ ├── 830-huawei_e970_support.patch │ │ │ ├── 831-old_gpio_wdt.patch │ │ │ ├── 900-ssb-reject-PCI-writes-setting-CardBus-bridge-resourc.patch │ │ │ ├── 940-bcm47xx-yenta.patch │ │ │ ├── 976-ssb_increase_pci_delay.patch │ │ │ └── 999-wl_exports.patch │ │ ├── bcm4908/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ └── board.d/ │ │ │ │ │ └── 02_network │ │ │ │ └── lib/ │ │ │ │ ├── functions/ │ │ │ │ │ └── bcm4908.sh │ │ │ │ ├── preinit/ │ │ │ │ │ └── 75_rootfs_prepare │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── files-5.10/ │ │ │ │ └── drivers/ │ │ │ │ └── net/ │ │ │ │ └── ethernet/ │ │ │ │ └── broadcom/ │ │ │ │ └── unimac.h │ │ │ ├── generic/ │ │ │ │ └── target.mk │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── asus_gt-ac5300/ │ │ │ │ │ └── rom/ │ │ │ │ │ └── etc/ │ │ │ │ │ ├── image_ident │ │ │ │ │ └── image_version │ │ │ │ ├── bootfs-generic.its │ │ │ │ ├── netgear_r8000p/ │ │ │ │ │ └── etc/ │ │ │ │ │ ├── image_ident │ │ │ │ │ └── image_version │ │ │ │ ├── pkgtb-bcm4908.its │ │ │ │ ├── pkgtb-bcm4912.its │ │ │ │ └── tplink_archer-c2300-v1/ │ │ │ │ ├── etc/ │ │ │ │ │ └── image_version │ │ │ │ └── nvram.nvm │ │ │ └── patches-5.10/ │ │ │ ├── 030-v5.11-0001-dt-bindings-arm-bcm-document-BCM4908-bindings.patch │ │ │ ├── 030-v5.11-0002-arm64-dts-broadcom-add-BCM4908-and-Asus-GT-AC5300-ea.patch │ │ │ ├── 030-v5.11-0003-v5.11-arm64-add-config-for-Broadcom-BCM4908-SoCs.patch │ │ │ ├── 031-v5.12-0001-dt-bindings-arm-bcm-document-Netgear-R8000P-binding.patch │ │ │ ├── 031-v5.12-0002-arm64-dts-broadcom-bcm4908-add-BCM4906-Netgear-R8000.patch │ │ │ ├── 031-v5.12-0003-arm64-dts-broadcom-bcm4908-use-proper-NAND-binding.patch │ │ │ ├── 031-v5.12-0004-arm64-dts-broadcom-bcm4908-describe-PCIe-reset-contr.patch │ │ │ ├── 031-v5.12-0005-arm64-dts-broadcom-bcm4908-describe-internal-switch.patch │ │ │ ├── 031-v5.12-0006-arm64-dts-broadcom-bcm4908-describe-PMB-block.patch │ │ │ ├── 032-v5.13-0001-arm64-dts-broadcom-bcm4908-describe-USB-PHY.patch │ │ │ ├── 032-v5.13-0002-arm64-dts-broadcom-bcm4908-describe-Ethernet-control.patch │ │ │ ├── 032-v5.13-0003-arm64-dts-broadcom-bcm4908-describe-Netgear-R8000P-s.patch │ │ │ ├── 032-v5.13-0004-arm64-dts-broadcom-bcm4908-add-remaining-Netgear-R80.patch │ │ │ ├── 032-v5.13-0005-arm64-dts-broadcom-bcm4908-describe-firmware-partiti.patch │ │ │ ├── 032-v5.13-0006-arm64-dts-broadcom-bcm4908-fix-switch-parent-node-na.patch │ │ │ ├── 032-v5.13-0007-dt-bindings-arm-bcm-document-TP-Link-Archer-C2300-bi.patch │ │ │ ├── 032-v5.13-0008-arm64-dts-broadcom-bcm4908-add-TP-Link-Archer-C2300-.patch │ │ │ ├── 032-v5.13-0009-arm64-dts-broadcom-bcm4908-set-Asus-GT-AC5300-port-7.patch │ │ │ ├── 032-v5.13-0010-arm64-dts-broadcom-bcm4908-add-Ethernet-TX-irq.patch │ │ │ ├── 032-v5.13-0011-arm64-dts-broadcom-bcm4908-add-Ethernet-MAC-addr.patch │ │ │ ├── 033-v5.14-0001-ARM-dts-BCM5301X-Fix-NAND-nodes-names.patch │ │ │ ├── 034-v5.16-0001-arm64-dts-broadcom-bcm4908-Fix-NAND-node-name.patch │ │ │ ├── 034-v5.16-0002-arm64-dts-broadcom-bcm4908-Move-reboot-syscon-out-of.patch │ │ │ ├── 034-v5.16-0003-arm64-dts-broadcom-bcm4908-Fix-UART-clock-name.patch │ │ │ ├── 035-v5.17-0001-dt-bindings-arm-bcm-document-Netgear-RAXE500-binding.patch │ │ │ ├── 035-v5.17-0002-arm64-dts-broadcom-bcm4908-add-DT-for-Netgear-RAXE50.patch │ │ │ ├── 036-v5.18-0001-arm64-dts-broadcom-bcm4908-use-proper-TWD-binding.patch │ │ │ ├── 036-v5.18-0002-arm64-dts-broadcom-bcm4908-add-pinctrl-binding.patch │ │ │ ├── 036-v5.18-0003-arm64-dts-broadcom-bcm4908-add-watchdog-block.patch │ │ │ ├── 036-v5.18-0004-arm64-dts-broadcom-bcm4908-add-I2C-block.patch │ │ │ ├── 071-v5.12-0001-net-dsa-bcm_sf2-support-BCM4908-s-integrated-switch.patch │ │ │ ├── 071-v5.12-0002-net-dsa-bcm_sf2-use-2-Gbps-IMP-port-link-on-BCM4908.patch │ │ │ ├── 072-v5.12-0001-dt-bindings-net-document-BCM4908-Ethernet-controller.patch │ │ │ ├── 072-v5.12-0002-net-broadcom-bcm4908enet-add-BCM4908-controller-driv.patch │ │ │ ├── 073-v5.12-0001-dt-bindings-net-rename-BCM4908-Ethernet-binding.patch │ │ │ ├── 073-v5.12-0002-dt-bindings-net-bcm4908-enet-include-ethernet-contro.patch │ │ │ ├── 073-v5.12-0003-net-broadcom-rename-BCM4908-driver-update-DT-binding.patch │ │ │ ├── 073-v5.12-0004-net-broadcom-bcm4908_enet-drop-unneeded-memset.patch │ │ │ ├── 073-v5.12-0005-net-broadcom-bcm4908_enet-drop-inline-from-C-functio.patch │ │ │ ├── 073-v5.12-0006-net-broadcom-bcm4908_enet-fix-minor-typos.patch │ │ │ ├── 073-v5.12-0007-net-broadcom-bcm4908_enet-fix-received-skb-length.patch │ │ │ ├── 073-v5.12-0008-net-broadcom-bcm4908_enet-fix-endianness-in-xmit-cod.patch │ │ │ ├── 073-v5.12-0009-net-broadcom-bcm4908_enet-set-MTU-on-open-on-request.patch │ │ │ ├── 073-v5.12-0010-net-broadcom-bcm4908_enet-fix-RX-path-possible-mem-l.patch │ │ │ ├── 073-v5.12-0011-net-broadcom-bcm4908_enet-fix-NAPI-poll-returned-val.patch │ │ │ ├── 073-v5.12-0012-net-broadcom-bcm4908_enet-enable-RX-after-processing.patch │ │ │ ├── 073-v5.12-0013-net-broadcom-BCM4908_ENET-should-not-default-to-y-un.patch │ │ │ ├── 074-v5.13-0001-net-broadcom-bcm4908_enet-read-MAC-from-OF.patch │ │ │ ├── 074-v5.13-0002-dt-bindings-net-bcm4908-enet-add-optional-TX-interru.patch │ │ │ ├── 074-v5.13-0003-net-broadcom-bcm4908_enet-support-TX-interrupt.patch │ │ │ ├── 075-v5.13-0001-net-dsa-bcm_sf2-store-PHY-interface-mode-in-port-str.patch │ │ │ ├── 075-v5.13-0002-net-dsa-bcm_sf2-setup-BCM4908-internal-crossbar.patch │ │ │ ├── 075-v5.13-0003-net-dsa-bcm_sf2-Fill-in-BCM4908-CFP-entries.patch │ │ │ ├── 075-v5.13-0004-net-dsa-bcm_sf2-add-function-finding-RGMII-register.patch │ │ │ ├── 075-v5.13-0005-net-dsa-bcm_sf2-fix-BCM4908-RGMII-reg-s.patch │ │ │ ├── 075-v5.13-0006-net-dsa-bcm_sf2-Fix-bcm_sf2_reg_rgmii_cntrl-call-for.patch │ │ │ ├── 076-v5.17-net-dsa-bcm_sf2-refactor-LED-regs-access.patch │ │ │ ├── 080-v5.11-tty-serial-bcm63xx-lower-driver-dependencies.patch │ │ │ ├── 081-v5.12-reset-simple-add-BCM4908-MISC-PCIe-reset-controller-.patch │ │ │ ├── 082-v5.12-0001-dt-bindings-power-document-Broadcom-s-PMB-binding.patch │ │ │ ├── 082-v5.12-0002-soc-bcm-add-PM-driver-for-Broadcom-s-PMB.patch │ │ │ ├── 082-v5.12-0003-soc-bcm-brcmstb-add-stubs-for-getting-platform-IDs.patch │ │ │ ├── 085-v5.18-0001-dt-bindings-pinctrl-Add-binding-for-BCM4908-pinctrl.patch │ │ │ ├── 085-v5.18-0002-pinctrl-bcm-add-driver-for-BCM4908-pinmux.patch │ │ │ ├── 086-v5.12-0001-phy-phy-brcm-usb-improve-getting-OF-matching-data.patch │ │ │ ├── 086-v5.12-0002-phy-phy-brcm-usb-specify-init-function-format-at-str.patch │ │ │ ├── 086-v5.12-0003-dt-bindings-phy-brcm-brcmstb-usb-phy-convert-to-the-.patch │ │ │ ├── 086-v5.12-0004-dt-bindings-phy-brcm-brcmstb-usb-phy-add-BCM4908-bin.patch │ │ │ ├── 086-v5.12-0005-phy-phy-brcm-usb-support-PHY-on-the-BCM4908.patch │ │ │ ├── 086-v5.13-0001-phy-phy-brcm-usb-select-SOC_BRCMSTB-on-brcmstb-only.patch │ │ │ ├── 086-v5.13-0002-dt-bindings-phy-brcm-brcmstb-usb-phy-add-power-domai.patch │ │ │ ├── 087-v5.18-0001-i2c-brcmstb-allow-compiling-on-BCM4908.patch │ │ │ ├── 088-v5.18-phy-phy-brcm-usb-fixup-BCM4908-support.patch │ │ │ ├── 170-net-broadcom-bcm4908_enet-reset-DMA-rings-sw-indexes.patch │ │ │ ├── 181-watchdog-allow-building-BCM7038_WDT-for-BCM4908.patch │ │ │ ├── 182-watchdog-bcm7038_wdt-Support-BCM6345-compatible-stri.patch │ │ │ ├── 300-arm64-dts-broadcom-bcm4908-limit-amount-of-GPIOs.patch │ │ │ ├── 400-mtd-rawnand-brcmnand-disable-WP-on-BCM4908.patch │ │ │ ├── 700-net-dsa-bcm_sf2-enable-GPHY-for-switch-probing.patch │ │ │ └── 701-net-dsa-bcm_sf2-keep-GPHY-enabled-on-the-BCM4908.patch │ │ ├── bcm53xx/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ ├── diag.sh │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ ├── 03_dsa_migrate │ │ │ │ │ └── 09_fix_crc │ │ │ │ └── lib/ │ │ │ │ ├── preinit/ │ │ │ │ │ └── 07_set_preinit_iface_bcm53xx │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ ├── files/ │ │ │ │ └── arch/ │ │ │ │ └── arm/ │ │ │ │ └── boot/ │ │ │ │ └── compressed/ │ │ │ │ └── cache-v7-min.S │ │ │ ├── generic/ │ │ │ │ └── target.mk │ │ │ ├── image/ │ │ │ │ └── Makefile │ │ │ ├── modules.mk │ │ │ ├── patches-5.10/ │ │ │ │ ├── 030-v5.11-0001-ARM-dts-BCM5301X-Linksys-EA9500-add-port-5-and-port-.patch │ │ │ │ ├── 030-v5.11-0002-ARM-dts-BCM5301X-Harmonize-EHCI-OHCI-DT-nodes-name.patch │ │ │ │ ├── 030-v5.11-0003-ARM-dts-BCM5310X-Harmonize-xHCI-DT-nodes-name.patch │ │ │ │ ├── 030-v5.11-0004-ARM-dts-BCM5301X-Linksys-EA9500-add-fixed-partitions.patch │ │ │ │ ├── 030-v5.11-0005-ARM-dts-BCM5301X-Use-corretc-pinctrl-compatible-for-.patch │ │ │ │ ├── 030-v5.11-0006-ARM-dts-BCM5301X-Linksys-EA9500-make-use-of-pinctrl.patch │ │ │ │ ├── 030-v5.11-0007-ARM-dts-BCM5301X-Move-CRU-devices-to-the-CRU-node.patch │ │ │ │ ├── 030-v5.11-0008-ARM-dts-BCM5301X-Disable-USB-3-PHY-on-devices-withou.patch │ │ │ │ ├── 030-v5.11-0009-ARM-dts-BCM5301X-Enable-USB-3-PHY-on-Luxul-XWR-3150.patch │ │ │ │ ├── 030-v5.11-0010-ARM-dts-BCM5301X-Update-Ethernet-switch-node-name.patch │ │ │ │ ├── 030-v5.11-0011-ARM-dts-BCM5301X-Add-a-default-compatible-for-switch.patch │ │ │ │ ├── 030-v5.11-0012-ARM-dts-BCM5301X-Provide-defaults-ports-container-no.patch │ │ │ │ ├── 030-v5.11-0013-ARM-dts-NSP-Update-ethernet-switch-node-name.patch │ │ │ │ ├── 030-v5.11-0014-ARM-dts-NSP-Fix-Ethernet-switch-SGMII-register-name.patch │ │ │ │ ├── 030-v5.11-0015-ARM-dts-NSP-Add-a-SRAB-compatible-string-for-each-bo.patch │ │ │ │ ├── 030-v5.11-0016-ARM-dts-NSP-Provide-defaults-ports-container-node.patch │ │ │ │ ├── 031-v5.13-0002-ARM-dts-BCM5301X-Describe-NVMEM-NVRAM-on-Linksys-Lux.patch │ │ │ │ ├── 031-v5.13-0003-ARM-dts-BCM5301X-Fix-Linksys-EA9500-partitions.patch │ │ │ │ ├── 031-v5.13-0004-ARM-dts-BCM5301X-Set-Linksys-EA9500-power-LED.patch │ │ │ │ ├── 032-v5.14-0001-ARM-dts-BCM5301X-Fix-NAND-nodes-names.patch │ │ │ │ ├── 032-v5.14-0002-ARM-dts-BCM5301X-Fix-pinmux-subnodes-names.patch │ │ │ │ ├── 033-v5.15-0001-ARM-dts-NSP-add-device-names-to-compatible.patch │ │ │ │ ├── 033-v5.15-0002-ARM-dts-NSP-enable-DMA-on-bcm988312hr.patch │ │ │ │ ├── 033-v5.15-0003-ARM-dts-NSP-disable-qspi-node-by-default.patch │ │ │ │ ├── 033-v5.15-0004-ARM-dts-NSP-add-MDIO-bus-controller-node.patch │ │ │ │ ├── 033-v5.15-0005-ARM-dts-NSP-Move-USB3-PHY-to-internal-MDIO-bus.patch │ │ │ │ ├── 033-v5.15-0006-ARM-dts-NSP-Add-common-bindings-for-MX64-MX65.patch │ │ │ │ ├── 033-v5.15-0007-ARM-dts-NSP-Add-Ax-stepping-modifications.patch │ │ │ │ ├── 033-v5.15-0008-ARM-dts-NSP-Add-DT-files-for-Meraki-MX64-series.patch │ │ │ │ ├── 033-v5.15-0009-ARM-dts-NSP-Add-DT-files-for-Meraki-MX65-series.patch │ │ │ │ ├── 033-v5.15-0010-ARM-dts-BCM5301X-Fix-nodes-names.patch │ │ │ │ ├── 033-v5.15-0011-ARM-dts-BCM5301X-Fix-MDIO-mux-binding.patch │ │ │ │ ├── 033-v5.16-0013-ARM-dts-NSP-Add-bcm958623hr-board-name-to-dts.patch │ │ │ │ ├── 033-v5.16-0015-ARM-dts-NSP-Fix-MDIO-mux-node-names.patch │ │ │ │ ├── 033-v5.16-0016-ARM-dts-NSP-Fix-MX64-MX65-eeprom-node-name.patch │ │ │ │ ├── 033-v5.16-0017-ARM-dts-NSP-Fix-MX65-MDIO-mux-warnings.patch │ │ │ │ ├── 033-v5.16-0018-ARM-dts-BCM5301X-Specify-switch-ports-for-more-devic.patch │ │ │ │ ├── 033-v5.16-0019-ARM-dts-BCM53573-Describe-on-SoC-BCM53125-rev-4-swit.patch │ │ │ │ ├── 033-v5.16-0020-ARM-dts-BCM53573-Add-Tenda-AC9-switch-ports.patch │ │ │ │ ├── 033-v5.16-0021-ARM-BCM53016-Specify-switch-ports-for-Meraki-MR32.patch │ │ │ │ ├── 033-v5.16-0022-ARM-BCM53016-MR32-get-mac-address-from-nvmem.patch │ │ │ │ ├── 033-v5.16-0023-ARM-dts-BCM5301X-Add-DT-for-Asus-RT-AC88U.patch │ │ │ │ ├── 034-v5.17-0001-ARM-dts-NSP-MX65-add-qca8k-falling-edge-PLL-properti.patch │ │ │ │ ├── 034-v5.17-0002-ARM-dts-BCM5301X-remove-unnecessary-address-size-cel.patch │ │ │ │ ├── 034-v5.17-0003-ARM-dts-BCM5301X-define-RTL8365MB-switch-on-Asus-RT-.patch │ │ │ │ ├── 034-v5.17-0004-ARM-BCM53016-MR32-convert-to-Broadcom-iProc-I2C-Driv.patch │ │ │ │ ├── 034-v5.17-0005-ARM-dts-BCM5301X-update-CRU-block-description.patch │ │ │ │ ├── 034-v5.17-0006-ARM-dts-BCM5301X-use-non-deprecated-USB-2.0-PHY-bind.patch │ │ │ │ ├── 034-v5.17-0007-ARM-dts-NSP-Fixed-iProc-PCIe-MSI-sub-node.patch │ │ │ │ ├── 034-v5.17-0008-ARM-dts-NSP-Rename-SATA-unit-name.patch │ │ │ │ ├── 034-v5.17-0009-ARM-dts-BCM5301X-correct-RX-delay-and-enable-flow-co.patch │ │ │ │ ├── 034-v5.17-0010-Revert-ARM-dts-BCM5301X-define-RTL8365MB-switch-on-A.patch │ │ │ │ ├── 035-v5.18-0001-ARM-dts-BCM5301X-define-RTL8365MB-switch-on-Asus-RT-.patch │ │ │ │ ├── 035-v5.18-0002-ARM-dts-NSP-MX6X-get-mac-address-from-eeprom.patch │ │ │ │ ├── 035-v5.18-0003-ARM-dts-NSP-MX6X-correct-LED-function-types.patch │ │ │ │ ├── 035-v5.18-0004-ARM-dts-BCM5301X-Add-Ethernet-MAC-address-to-Luxul-X.patch │ │ │ │ ├── 070-v5.17-phy-bcm-ns-usb2-support-updated-DT-binding-with-PHY-.patch │ │ │ │ ├── 080-v5.13-0001-dt-bindings-nvmem-add-Broadcom-s-NVRAM.patch │ │ │ │ ├── 080-v5.13-0002-nvmem-brcm_nvram-new-driver-exposing-Broadcom-s-NVRA.patch │ │ │ │ ├── 140-mtd-parsers-trx-parse-firmware-MTD-partitions-only.patch │ │ │ │ ├── 180-usb-xhci-add-support-for-performing-fake-doorbell.patch │ │ │ │ ├── 300-ARM-BCM5301X-Disable-MMU-and-Dcache-during-decompres.patch │ │ │ │ ├── 304-ARM-dts-BCM5301X-Specify-switch-ports-for-remaining-.patch │ │ │ │ ├── 310-ARM-BCM5301X-Add-DT-for-Netgear-R7900.patch │ │ │ │ ├── 320-ARM-dts-BCM5301X-Switch-back-to-old-clock-nodes-name.patch │ │ │ │ ├── 321-ARM-dts-BCM5301X-Describe-partition-formats.patch │ │ │ │ ├── 500-UBI-Detect-EOF-mark-and-erase-all-remaining-blocks.patch │ │ │ │ ├── 800-0001-firmware-bcm47xx_nvram-support-init-from-IO-memory.patch │ │ │ │ ├── 800-0002-nvmem-brcm_nvram-provide-NVMEM-content-to-the-NVRAM-.patch │ │ │ │ └── 905-BCM53573-minor-hacks.patch │ │ │ ├── patches-5.15/ │ │ │ │ ├── 030-v5.15-0001-ARM-dts-NSP-add-device-names-to-compatible.patch │ │ │ │ ├── 030-v5.15-0002-ARM-dts-NSP-enable-DMA-on-bcm988312hr.patch │ │ │ │ ├── 030-v5.15-0003-ARM-dts-NSP-disable-qspi-node-by-default.patch │ │ │ │ ├── 030-v5.15-0004-ARM-dts-NSP-add-MDIO-bus-controller-node.patch │ │ │ │ ├── 030-v5.15-0005-ARM-dts-NSP-Move-USB3-PHY-to-internal-MDIO-bus.patch │ │ │ │ ├── 030-v5.15-0006-ARM-dts-NSP-Add-common-bindings-for-MX64-MX65.patch │ │ │ │ ├── 030-v5.15-0007-ARM-dts-NSP-Add-Ax-stepping-modifications.patch │ │ │ │ ├── 030-v5.15-0008-ARM-dts-NSP-Add-DT-files-for-Meraki-MX64-series.patch │ │ │ │ ├── 030-v5.15-0009-ARM-dts-NSP-Add-DT-files-for-Meraki-MX65-series.patch │ │ │ │ ├── 030-v5.16-0013-ARM-dts-NSP-Add-bcm958623hr-board-name-to-dts.patch │ │ │ │ ├── 030-v5.16-0015-ARM-dts-NSP-Fix-MDIO-mux-node-names.patch │ │ │ │ ├── 030-v5.16-0016-ARM-dts-NSP-Fix-MX64-MX65-eeprom-node-name.patch │ │ │ │ ├── 030-v5.16-0017-ARM-dts-NSP-Fix-MX65-MDIO-mux-warnings.patch │ │ │ │ ├── 030-v5.16-0018-ARM-dts-BCM5301X-Specify-switch-ports-for-more-devic.patch │ │ │ │ ├── 030-v5.16-0019-ARM-dts-BCM53573-Describe-on-SoC-BCM53125-rev-4-swit.patch │ │ │ │ ├── 030-v5.16-0020-ARM-dts-BCM53573-Add-Tenda-AC9-switch-ports.patch │ │ │ │ ├── 030-v5.16-0021-ARM-BCM53016-Specify-switch-ports-for-Meraki-MR32.patch │ │ │ │ ├── 030-v5.16-0022-ARM-BCM53016-MR32-get-mac-address-from-nvmem.patch │ │ │ │ ├── 030-v5.16-0023-ARM-dts-BCM5301X-Add-DT-for-Asus-RT-AC88U.patch │ │ │ │ ├── 031-v5.17-0001-ARM-dts-NSP-MX65-add-qca8k-falling-edge-PLL-properti.patch │ │ │ │ ├── 031-v5.17-0002-ARM-dts-BCM5301X-remove-unnecessary-address-size-cel.patch │ │ │ │ ├── 031-v5.17-0003-ARM-dts-BCM5301X-define-RTL8365MB-switch-on-Asus-RT-.patch │ │ │ │ ├── 031-v5.17-0004-ARM-BCM53016-MR32-convert-to-Broadcom-iProc-I2C-Driv.patch │ │ │ │ ├── 031-v5.17-0005-ARM-dts-BCM5301X-update-CRU-block-description.patch │ │ │ │ ├── 031-v5.17-0006-ARM-dts-BCM5301X-use-non-deprecated-USB-2.0-PHY-bind.patch │ │ │ │ ├── 031-v5.17-0007-ARM-dts-NSP-Fixed-iProc-PCIe-MSI-sub-node.patch │ │ │ │ ├── 031-v5.17-0008-ARM-dts-NSP-Rename-SATA-unit-name.patch │ │ │ │ ├── 031-v5.17-0009-ARM-dts-BCM5301X-correct-RX-delay-and-enable-flow-co.patch │ │ │ │ ├── 031-v5.17-0010-Revert-ARM-dts-BCM5301X-define-RTL8365MB-switch-on-A.patch │ │ │ │ ├── 032-v5.18-0001-ARM-dts-BCM5301X-define-RTL8365MB-switch-on-Asus-RT-.patch │ │ │ │ ├── 032-v5.18-0002-ARM-dts-NSP-MX6X-get-mac-address-from-eeprom.patch │ │ │ │ ├── 032-v5.18-0003-ARM-dts-NSP-MX6X-correct-LED-function-types.patch │ │ │ │ ├── 032-v5.18-0004-ARM-dts-BCM5301X-Add-Ethernet-MAC-address-to-Luxul-X.patch │ │ │ │ ├── 070-v5.17-phy-bcm-ns-usb2-support-updated-DT-binding-with-PHY-.patch │ │ │ │ ├── 140-mtd-parsers-trx-parse-firmware-MTD-partitions-only.patch │ │ │ │ ├── 180-usb-xhci-add-support-for-performing-fake-doorbell.patch │ │ │ │ ├── 300-ARM-BCM5301X-Disable-MMU-and-Dcache-during-decompres.patch │ │ │ │ ├── 304-ARM-dts-BCM5301X-Specify-switch-ports-for-remaining-.patch │ │ │ │ ├── 310-ARM-BCM5301X-Add-DT-for-Netgear-R7900.patch │ │ │ │ ├── 320-ARM-dts-BCM5301X-Switch-back-to-old-clock-nodes-name.patch │ │ │ │ ├── 321-ARM-dts-BCM5301X-Describe-partition-formats.patch │ │ │ │ ├── 331-Meraki-MR32-Status-LEDs.patch │ │ │ │ ├── 500-UBI-Detect-EOF-mark-and-erase-all-remaining-blocks.patch │ │ │ │ ├── 800-0001-firmware-bcm47xx_nvram-support-init-from-IO-memory.patch │ │ │ │ ├── 800-0002-nvmem-brcm_nvram-provide-NVMEM-content-to-the-NVRAM-.patch │ │ │ │ └── 905-BCM53573-minor-hacks.patch │ │ │ └── profiles/ │ │ │ └── 100-Generic.mk │ │ ├── bcm63xx/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ └── firmware/ │ │ │ │ │ │ └── 10-rt2x00-eeprom │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ ├── 04_led_migration │ │ │ │ │ └── 09_fix_crc │ │ │ │ └── lib/ │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── dts/ │ │ │ │ ├── bcm3368-netgear-cvg834g.dts │ │ │ │ ├── bcm3368.dtsi │ │ │ │ ├── bcm63167-sercomm-h500-s-lowi.dts │ │ │ │ ├── bcm63167-sercomm-h500-s-vfes.dts │ │ │ │ ├── bcm63167-sercomm-h500-s.dtsi │ │ │ │ ├── bcm63168-comtrend-vr-3032u.dts │ │ │ │ ├── bcm63168-sky-sr102.dts │ │ │ │ ├── bcm63169-comtrend-vg-8050.dts │ │ │ │ ├── bcm6318-brcm-bcm96318ref-p300.dts │ │ │ │ ├── bcm6318-brcm-bcm96318ref.dts │ │ │ │ ├── bcm6318-comtrend-ar-5315u.dts │ │ │ │ ├── bcm6318-d-link-dsl-275xb-d1.dts │ │ │ │ ├── bcm6318-sagem-fast-2704n.dts │ │ │ │ ├── bcm6318.dtsi │ │ │ │ ├── bcm63268-brcm-bcm963268bu-p300.dts │ │ │ │ ├── bcm63268-inteno-vg50.dts │ │ │ │ ├── bcm63268.dtsi │ │ │ │ ├── bcm63269-brcm-bcm963269bhr.dts │ │ │ │ ├── bcm6328-adb-a4001n.dts │ │ │ │ ├── bcm6328-adb-a4001n1.dts │ │ │ │ ├── bcm6328-adb-pdg-a4001n-a-000-1a1-ax.dts │ │ │ │ ├── bcm6328-adb-pdg-a4101n-a-000-1a1-ae.dts │ │ │ │ ├── bcm6328-brcm-bcm963281tan.dts │ │ │ │ ├── bcm6328-brcm-bcm96328avng.dts │ │ │ │ ├── bcm6328-comtrend-ar-5381u.dts │ │ │ │ ├── bcm6328-comtrend-ar-5387un.dts │ │ │ │ ├── bcm6328-d-link-dsl-274xb-f1.dts │ │ │ │ ├── bcm6328-d-link-dsl-2750u-c1.dts │ │ │ │ ├── bcm6328-innacomm-w3400v6.dts │ │ │ │ ├── bcm6328-nucom-r5010un-v2.dts │ │ │ │ ├── bcm6328-sagem-fast-2704-v2.dts │ │ │ │ ├── bcm6328-sercomm-ad1018-nor.dts │ │ │ │ ├── bcm6328-sercomm-ad1018.dts │ │ │ │ ├── bcm6328-technicolor-tg582n-telecom-italia.dts │ │ │ │ ├── bcm6328-technicolor-tg582n.dts │ │ │ │ ├── bcm6328.dtsi │ │ │ │ ├── bcm6338-brcm-bcm96338gw.dts │ │ │ │ ├── bcm6338-brcm-bcm96338w.dts │ │ │ │ ├── bcm6338-d-link-dsl-2640u.dts │ │ │ │ ├── bcm6338-dynalink-rta1320.dts │ │ │ │ ├── bcm6338.dtsi │ │ │ │ ├── bcm6345-brcm-bcm96345gw2.dts │ │ │ │ ├── bcm6345-dynalink-rta770bw.dts │ │ │ │ ├── bcm6345-dynalink-rta770w.dts │ │ │ │ ├── bcm6345.dtsi │ │ │ │ ├── bcm6348-asmax-ar-1004g.dts │ │ │ │ ├── bcm6348-belkin-f5d7633.dts │ │ │ │ ├── bcm6348-brcm-bcm96348gw-10.dts │ │ │ │ ├── bcm6348-brcm-bcm96348gw-11.dts │ │ │ │ ├── bcm6348-brcm-bcm96348gw.dts │ │ │ │ ├── bcm6348-brcm-bcm96348r.dts │ │ │ │ ├── bcm6348-bt-voyager-2110.dts │ │ │ │ ├── bcm6348-bt-voyager-2500v-bb.dts │ │ │ │ ├── bcm6348-comtrend-ct-5365.dts │ │ │ │ ├── bcm6348-comtrend-ct-536plus.dts │ │ │ │ ├── bcm6348-d-link-dsl-2640b-b.dts │ │ │ │ ├── bcm6348-davolink-dv-201amr.dts │ │ │ │ ├── bcm6348-dynalink-rta1025w.dts │ │ │ │ ├── bcm6348-inventel-livebox-1.dts │ │ │ │ ├── bcm6348-netgear-dg834g-v4.dts │ │ │ │ ├── bcm6348-netgear-dg834gt-pn.dts │ │ │ │ ├── bcm6348-sagem-fast-2404.dts │ │ │ │ ├── bcm6348-sagem-fast-2604.dts │ │ │ │ ├── bcm6348-t-com-speedport-w-500v.dts │ │ │ │ ├── bcm6348-tecom-gw6000.dts │ │ │ │ ├── bcm6348-tecom-gw6200.dts │ │ │ │ ├── bcm6348-telsey-cpva502plus.dts │ │ │ │ ├── bcm6348-telsey-magic.dts │ │ │ │ ├── bcm6348-tp-link-td-w8900gb.dts │ │ │ │ ├── bcm6348-usrobotics-usr9108.dts │ │ │ │ ├── bcm6348.dtsi │ │ │ │ ├── bcm6358-alcatel-rg100a.dts │ │ │ │ ├── bcm6358-brcm-bcm96358vw.dts │ │ │ │ ├── bcm6358-brcm-bcm96358vw2.dts │ │ │ │ ├── bcm6358-bt-home-hub-2-a.dts │ │ │ │ ├── bcm6358-comtrend-ct-6373.dts │ │ │ │ ├── bcm6358-d-link-dsl-2650u.dts │ │ │ │ ├── bcm6358-d-link-dsl-274xb-c2.dts │ │ │ │ ├── bcm6358-d-link-dva-g3810bn-tl.dts │ │ │ │ ├── bcm6358-huawei-echolife-hg553.dts │ │ │ │ ├── bcm6358-huawei-echolife-hg556a-a.dts │ │ │ │ ├── bcm6358-huawei-echolife-hg556a-b.dts │ │ │ │ ├── bcm6358-huawei-echolife-hg556a-c.dts │ │ │ │ ├── bcm6358-huawei-echolife-hg556a.dtsi │ │ │ │ ├── bcm6358-pirelli-a226.dtsi │ │ │ │ ├── bcm6358-pirelli-a226g.dts │ │ │ │ ├── bcm6358-pirelli-a226m-fwb.dts │ │ │ │ ├── bcm6358-pirelli-a226m.dts │ │ │ │ ├── bcm6358-pirelli-agpf-s0.dts │ │ │ │ ├── bcm6358-sfr-neufbox-4-foxconn-r1.dts │ │ │ │ ├── bcm6358-sfr-neufbox-4-sercomm-r0.dts │ │ │ │ ├── bcm6358-sfr-neufbox-4.dtsi │ │ │ │ ├── bcm6358-t-com-speedport-w-303v.dts │ │ │ │ ├── bcm6358-telsey-cpva642.dts │ │ │ │ ├── bcm6358.dtsi │ │ │ │ ├── bcm6359-huawei-echolife-hg520v.dts │ │ │ │ ├── bcm6361-sfr-neufbox-6-sercomm-r0.dts │ │ │ │ ├── bcm6362-huawei-hg253s-v2.dts │ │ │ │ ├── bcm6362-netgear-dgnd3700-v2.dts │ │ │ │ ├── bcm6362-sagem-fast-2504n.dts │ │ │ │ ├── bcm6362.dtsi │ │ │ │ ├── bcm6368-actiontec-r1000h.dts │ │ │ │ ├── bcm6368-adb-av4202n.dts │ │ │ │ ├── bcm6368-brcm-bcm96368mvngr.dts │ │ │ │ ├── bcm6368-brcm-bcm96368mvwg.dts │ │ │ │ ├── bcm6368-comtrend-vr-3025u.dts │ │ │ │ ├── bcm6368-comtrend-vr-3025un.dts │ │ │ │ ├── bcm6368-comtrend-vr-3026e.dts │ │ │ │ ├── bcm6368-huawei-echolife-hg622.dts │ │ │ │ ├── bcm6368-huawei-echolife-hg655b.dts │ │ │ │ ├── bcm6368-netgear-dgnd3700-v1.dts │ │ │ │ ├── bcm6368-observa-vh4032n.dts │ │ │ │ ├── bcm6368-zyxel-p870hw-51a-v2.dts │ │ │ │ ├── bcm6368.dtsi │ │ │ │ ├── bcm6369-comtrend-wap-5813n.dts │ │ │ │ └── bcm6369-netgear-evg2000.dts │ │ │ ├── generic/ │ │ │ │ └── target.mk │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── README.images-bcm63xx │ │ │ │ ├── bcm63xx.mk │ │ │ │ ├── bcm63xx_nand.mk │ │ │ │ └── lzma-loader/ │ │ │ │ ├── Makefile │ │ │ │ └── src/ │ │ │ │ ├── LzmaDecode.c │ │ │ │ ├── LzmaDecode.h │ │ │ │ ├── LzmaTypes.h │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── cache.c │ │ │ │ ├── cache.h │ │ │ │ ├── cacheops.h │ │ │ │ ├── config.h │ │ │ │ ├── cp0regdef.h │ │ │ │ ├── head.S │ │ │ │ ├── loader.c │ │ │ │ ├── loader.lds │ │ │ │ ├── loader2.lds │ │ │ │ ├── lzma-data.lds │ │ │ │ ├── printf.c │ │ │ │ └── printf.h │ │ │ ├── modules.mk │ │ │ ├── patches-5.10/ │ │ │ │ ├── 020-v5.12-bcm63xx_enet-batch-process-rx-path.patch │ │ │ │ ├── 021-v5.12-bcm63xx_enet-add-BQL-support.patch │ │ │ │ ├── 022-v5.12-bcm63xx_enet-add-xmit_more-support.patch │ │ │ │ ├── 023-v5.12-bcm63xx_enet-alloc-rx-skb-with-NET_IP_ALIGN.patch │ │ │ │ ├── 024-v5.12-bcm63xx_enet-consolidate-rx-SKB-ring-cleanup-code.patch │ │ │ │ ├── 025-v5.12-bcm63xx_enet-convert-to-build_skb.patch │ │ │ │ ├── 026-v5.12-bcm63xx_enet-improve-rx-loop.patch │ │ │ │ ├── 027-v5.12-bcm63xx_enet-fix-kernel-panic.patch │ │ │ │ ├── 100-MIPS-BCM63XX-add-USB-host-clock-enable-delay.patch │ │ │ │ ├── 100-macronix_nand_block_protection_support.patch │ │ │ │ ├── 101-MIPS-BCM63XX-add-USB-device-clock-enable-delay-to-cl.patch │ │ │ │ ├── 102-MIPS-BCM63XX-move-code-touching-the-USB-private-regi.patch │ │ │ │ ├── 103-MIPS-BCM63XX-add-OHCI-EHCI-configuration-bits-to-com.patch │ │ │ │ ├── 104-MIPS-BCM63XX-introduce-BCM63XX_OHCI-configuration-sy.patch │ │ │ │ ├── 105-MIPS-BCM63XX-add-support-for-the-on-chip-OHCI-contro.patch │ │ │ │ ├── 106-MIPS-BCM63XX-register-OHCI-controller-if-board-enabl.patch │ │ │ │ ├── 107-MIPS-BCM63XX-introduce-BCM63XX_EHCI-configuration-sy.patch │ │ │ │ ├── 108-MIPS-BCM63XX-add-support-for-the-on-chip-EHCI-contro.patch │ │ │ │ ├── 109-MIPS-BCM63XX-register-EHCI-controller-if-board-enabl.patch │ │ │ │ ├── 110-MIPS-BCM63XX-EHCI-controller-does-not-support-overcu.patch │ │ │ │ ├── 130-pinctrl-add-bcm63xx-base-code.patch │ │ │ │ ├── 131-Documentation-add-BCM6328-pincontroller-binding-docu.patch │ │ │ │ ├── 132-pinctrl-add-a-pincontrol-driver-for-BCM6328.patch │ │ │ │ ├── 133-Documentation-add-BCM6348-pincontroller-binding-docu.patch │ │ │ │ ├── 134-pinctrl-add-a-pincontrol-driver-for-BCM6348.patch │ │ │ │ ├── 135-Documentation-add-BCM6358-pincontroller-binding-docu.patch │ │ │ │ ├── 136-pinctrl-add-a-pincontrol-driver-for-BCM6358.patch │ │ │ │ ├── 137-Documentation-add-BCM6362-pincontroller-binding-docu.patch │ │ │ │ ├── 138-pinctrl-add-a-pincontrol-driver-for-BCM6362.patch │ │ │ │ ├── 139-Documentation-add-BCM6368-pincontroller-binding-docu.patch │ │ │ │ ├── 140-pinctrl-add-a-pincontrol-driver-for-BCM6368.patch │ │ │ │ ├── 141-Documentation-add-BCM63268-pincontroller-binding-doc.patch │ │ │ │ ├── 142-pinctrl-add-a-pincontrol-driver-for-BCM63268.patch │ │ │ │ ├── 143-gpio-fix-device-tree-gpio-hogs-on-dual-role-gpio-pin.patch │ │ │ │ ├── 144-add-removed-syscon_regmap_lookup_by_pdevname.patch │ │ │ │ ├── 145-pinctrl-BCM6362-fix-gpio-mode.patch │ │ │ │ ├── 206-USB-EHCI-allow-limiting-ports-for-ehci-platform.patch │ │ │ │ ├── 207-MIPS-BCM63XX-move-device-registration-code-into-its-.patch │ │ │ │ ├── 208-MIPS-BCM63XX-pass-a-mac-addresss-allocator-to-board-.patch │ │ │ │ ├── 320-irqchip-add-support-for-bcm6345-style-periphery-irq-.patch │ │ │ │ ├── 321-irqchip-add-support-for-bcm6345-style-external-inter.patch │ │ │ │ ├── 322-MIPS-BCM63XX-switch-to-IRQ_DOMAIN.patch │ │ │ │ ├── 323-MIPS-BCM63XX-wire-up-BCM6358-s-external-interrupts-4.patch │ │ │ │ ├── 324-irqchip-bcm6345-periph-fix-block-uninitialized.patch │ │ │ │ ├── 325-irqchip-bcm6345-external-fix-base-uninitialized.patch │ │ │ │ ├── 326-irqchip-bcm6345-report-eff-affinity.patch │ │ │ │ ├── 327-irqchip-bcm6345-periph-clear-on-init.patch │ │ │ │ ├── 330-MIPS-BCM63XX-add-a-new-cpu-variant-helper.patch │ │ │ │ ├── 331-MIPS-BCM63XX-define-variant-id-field.patch │ │ │ │ ├── 332-MIPS-BCM63XX-detect-BCM6328-variants.patch │ │ │ │ ├── 333-MIPS-BCM63XX-detect-BCM6362-variants.patch │ │ │ │ ├── 334-MIPS-BCM63XX-detect-BCM6368-variants.patch │ │ │ │ ├── 335-MIPS-BCM63XX-fix-PCIe-memory-window-size.patch │ │ │ │ ├── 336-MIPS-BCM63XX-dynamically-set-the-pcie-memory-windows.patch │ │ │ │ ├── 337-MIPS-BCM63XX-widen-cpuid-field.patch │ │ │ │ ├── 338-MIPS-BCM63XX-increase-number-of-IRQs.patch │ │ │ │ ├── 339-MIPS-BCM63XX-add-support-for-BCM63268.patch │ │ │ │ ├── 340-MIPS-BCM63XX-add-pcie-support-for-BCM63268.patch │ │ │ │ ├── 341-MIPS-BCM63XX-add-support-for-BCM6318.patch │ │ │ │ ├── 342-MIPS-BCM63XX-split-PCIe-reset-signals.patch │ │ │ │ ├── 343-MIPS-BCM63XX-add-PCIe-support-for-BCM6318.patch │ │ │ │ ├── 344-MIPS-BCM63XX-detect-flash-type-early-and-store-the-r.patch │ │ │ │ ├── 345-MIPS-BCM63XX-fixup-mapped-SPI-flash-access-on-boot.patch │ │ │ │ ├── 346-MIPS-BCM63XX-USB-ENETSW-6318-clocks.patch │ │ │ │ ├── 347-MIPS-BCM6318-USB-support.patch │ │ │ │ ├── 348-MIPS-BCM63XX-fix-BCM63268-USB-clock.patch │ │ │ │ ├── 349-MIPS-BCM63XX-add-BCM63268-USB-support.patch │ │ │ │ ├── 350-MIPS-BCM63XX-support-settings-num-usbh-ports.patch │ │ │ │ ├── 351-set-board-usbh-ports.patch │ │ │ │ ├── 354-MIPS-BCM63XX-allow-building-support-for-more-than-on.patch │ │ │ │ ├── 355-MIPS-BCM63XX-allow-board-implementations-to-force-fl.patch │ │ │ │ ├── 356-MIPS-BCM63XX-move-fallback-sprom-support-into-its-ow.patch │ │ │ │ ├── 357-MIPS-BCM63XX-use-platform-data-for-the-sprom.patch │ │ │ │ ├── 358-MIPS-BCM63XX-make-fallback-sprom-optional.patch │ │ │ │ ├── 359-MIPS-BCM63XX-allow-different-types-of-sprom.patch │ │ │ │ ├── 360-MIPS-BCM63XX-add-support-for-raw-sproms.patch │ │ │ │ ├── 361-MIPS-BCM63XX-add-raw-fallback-sproms-for-most-common.patch │ │ │ │ ├── 362-MIPS-BCM63XX-also-register-a-fallback-sprom-for-bcma.patch │ │ │ │ ├── 363-MIPS-BCM63XX-add-BCMA-based-sprom-templates.patch │ │ │ │ ├── 364-MIPS-BCM63XX-allow-board-files-to-provide-sprom-fixu.patch │ │ │ │ ├── 365-MIPS-BCM63XX-allow-setting-a-pci-bus-device-for-fall.patch │ │ │ │ ├── 366-MIPS-BCM63XX-fallback-sprom-override-devid.patch │ │ │ │ ├── 367-MIPS-BCM63XX-add-support-for-loading-DTB.patch │ │ │ │ ├── 368-MIPS-BCM63XX-add-support-for-matching-the-board_info.patch │ │ │ │ ├── 371_add_of_node_available_by_alias.patch │ │ │ │ ├── 372_dont_register_pflash_when_available_in_dtb.patch │ │ │ │ ├── 373-MIPS-BCM63XX-register-interrupt-controllers-through-.patch │ │ │ │ ├── 374-gpio-add-a-simple-GPIO-driver-for-bcm63xx.patch │ │ │ │ ├── 375-MIPS-BCM63XX-switch-to-new-gpio-driver.patch │ │ │ │ ├── 377-MIPS-BCM63XX-register-lookup-for-ephy-reset-gpio.patch │ │ │ │ ├── 378-MIPS-BCM63XX-do-not-register-gpio-controller-if-pres.patch │ │ │ │ ├── 379-MIPS-BCM63XX-provide-a-gpio-lookup-for-the-pcmcia-re.patch │ │ │ │ ├── 380-pcmcia-bcm63xx_pmcia-use-the-new-named-gpio.patch │ │ │ │ ├── 381-Documentation-add-BCM6318-pincontroller-binding-docu.patch │ │ │ │ ├── 382-pinctrl-add-a-pincontrol-driver-for-BCM6318.patch │ │ │ │ ├── 383-bcm63xx_select_pinctrl.patch │ │ │ │ ├── 389-MIPS-BCM63XX-add-clkdev-lookups-for-device-tree.patch │ │ │ │ ├── 390-MIPS-BCM63XX-do-not-register-SPI-controllers.patch │ │ │ │ ├── 391-MIPS-BCM63XX-do-not-register-uart.patch │ │ │ │ ├── 392-MIPS-BCM63XX-remove-leds-and-buttons.patch │ │ │ │ ├── 400-bcm963xx_flashmap.patch │ │ │ │ ├── 401-bcm963xx_real_rootfs_length.patch │ │ │ │ ├── 402_bcm63xx_enet_vlan_incoming_fixed.patch │ │ │ │ ├── 403-6358-enet1-external-mii-clk.patch │ │ │ │ ├── 404-NET-bcm63xx_enet-move-phy_-dis-connect-into-probe-re.patch │ │ │ │ ├── 408-bcm63xx_enet-enable-rgmii-clock-on-external-ports.patch │ │ │ │ ├── 411-MIPS-BCM63XX-Register-SPI-flash-if-present.patch │ │ │ │ ├── 413-BCM63XX-allow-providing-fixup-data-in-board-data.patch │ │ │ │ ├── 415-MIPS-BCM63XX-export-the-attached-flash-type.patch │ │ │ │ ├── 416-BCM63XX-add-a-fixup-for-ath9k-devices.patch │ │ │ │ ├── 420-BCM63XX-add-endian-check-for-ath9k.patch │ │ │ │ ├── 421-BCM63XX-add-led-pin-for-ath9k.patch │ │ │ │ ├── 422-BCM63XX-add-a-fixup-for-rt2x00-devices.patch │ │ │ │ ├── 423-bcm63xx_enet_add_b53_support.patch │ │ │ │ ├── 424-bcm63xx_enet_no_request_mem_region.patch │ │ │ │ ├── 427-boards_probe_switch.patch │ │ │ │ ├── 428-bcm63xx_enet-rgmii-ctrl-fix.patch │ │ │ │ ├── 430-MIPS-BCM63XX-add-nand-clocks.patch │ │ │ │ ├── 431-MIPS-BCM63XX-add-nand-rset.patch │ │ │ │ ├── 432-MIPS-BCM63XX-detect-nand-nvram.patch │ │ │ │ ├── 433-MIPS-BCM63XX-enable-nand-support.patch │ │ │ │ ├── 500-MIPS-BCM63XX-populate-the-compatible-to-board_info-l.patch │ │ │ │ ├── 501-board_bcm6328-extend-96328avng-reference-board.patch │ │ │ │ ├── 511-board_bcm6318.patch │ │ │ │ ├── 512-board_bcm6328.patch │ │ │ │ ├── 513-board-bcm6338.patch │ │ │ │ ├── 514-board_bcm6345.patch │ │ │ │ ├── 515-board-bcm6348.patch │ │ │ │ ├── 516-board-bcm6358.patch │ │ │ │ ├── 517-board_bcm6362.patch │ │ │ │ ├── 518-board_bcm6368.patch │ │ │ │ ├── 519-board_bcm63268.patch │ │ │ │ ├── 531-board_bcm6348-bt-voyager-2500v-bb.patch │ │ │ │ ├── 532-MIPS-BCM63XX-add-inventel-Livebox-support.patch │ │ │ │ ├── 800-wl_exports.patch │ │ │ │ ├── 801-ssb_export_fallback_sprom.patch │ │ │ │ ├── 802-rtl8367r_fix_RGMII_support.patch │ │ │ │ └── 803-jffs2-work-around-unaligned-accesses-failing-on-bcm6.patch │ │ │ ├── profiles/ │ │ │ │ └── default.mk │ │ │ └── smp/ │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── bmips/ │ │ │ ├── Makefile │ │ │ ├── config-5.10 │ │ │ ├── dts/ │ │ │ │ ├── bcm63168-comtrend-vr-3032u.dts │ │ │ │ ├── bcm6318-comtrend-ar-5315u.dts │ │ │ │ ├── bcm6318.dtsi │ │ │ │ ├── bcm63268.dtsi │ │ │ │ ├── bcm6328-comtrend-ar-5387un.dts │ │ │ │ ├── bcm6328.dtsi │ │ │ │ ├── bcm6358-huawei-hg556a-b.dts │ │ │ │ ├── bcm6358.dtsi │ │ │ │ ├── bcm6362-netgear-dgnd3700-v2.dts │ │ │ │ ├── bcm6362.dtsi │ │ │ │ ├── bcm6368-comtrend-vr-3025u.dts │ │ │ │ └── bcm6368.dtsi │ │ │ ├── files/ │ │ │ │ ├── arch/ │ │ │ │ │ └── mips/ │ │ │ │ │ ├── bmips/ │ │ │ │ │ │ ├── ath9k-fixup.c │ │ │ │ │ │ └── b43-sprom.c │ │ │ │ │ └── pci/ │ │ │ │ │ └── fixup-bmips.c │ │ │ │ ├── drivers/ │ │ │ │ │ ├── net/ │ │ │ │ │ │ └── ethernet/ │ │ │ │ │ │ └── broadcom/ │ │ │ │ │ │ └── bcm6368-enetsw.c │ │ │ │ │ └── pci/ │ │ │ │ │ └── controller/ │ │ │ │ │ ├── pci-bcm6348.c │ │ │ │ │ ├── pcie-bcm6318.c │ │ │ │ │ └── pcie-bcm6328.c │ │ │ │ └── include/ │ │ │ │ └── dt-bindings/ │ │ │ │ └── interrupt-controller/ │ │ │ │ ├── bcm6318-interrupt-controller.h │ │ │ │ ├── bcm63268-interrupt-controller.h │ │ │ │ ├── bcm6328-interrupt-controller.h │ │ │ │ ├── bcm6358-interrupt-controller.h │ │ │ │ ├── bcm6362-interrupt-controller.h │ │ │ │ └── bcm6368-interrupt-controller.h │ │ │ ├── generic/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ │ └── 02_network │ │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ │ └── 09_fix_crc │ │ │ │ │ └── lib/ │ │ │ │ │ └── upgrade/ │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-default │ │ │ │ └── target.mk │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── bcm63xx_generic.mk │ │ │ │ ├── bcm63xx_nand.mk │ │ │ │ └── lzma-loader/ │ │ │ │ ├── Makefile │ │ │ │ └── src/ │ │ │ │ ├── LzmaDecode.c │ │ │ │ ├── LzmaDecode.h │ │ │ │ ├── LzmaTypes.h │ │ │ │ ├── Makefile │ │ │ │ ├── board.c │ │ │ │ ├── cache.c │ │ │ │ ├── cache.h │ │ │ │ ├── cacheops.h │ │ │ │ ├── config.h │ │ │ │ ├── cp0regdef.h │ │ │ │ ├── head.S │ │ │ │ ├── loader.c │ │ │ │ ├── loader.lds │ │ │ │ ├── loader2.lds │ │ │ │ ├── lzma-data.lds │ │ │ │ ├── printf.c │ │ │ │ └── printf.h │ │ │ ├── nand/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ └── board.d/ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── lib/ │ │ │ │ │ └── upgrade/ │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-default │ │ │ │ └── target.mk │ │ │ ├── patches-5.10/ │ │ │ │ ├── 001-v5.11-mips-bmips-select-ARCH_HAS_RESET_CONTROLLER.patch │ │ │ │ ├── 002-v5.11-dt-bindings-reset-add-BCM6345-reset-controller-bindi.patch │ │ │ │ ├── 003-v5.11-reset-add-BCM6345-reset-controller-driver.patch │ │ │ │ ├── 004-v5.11-mips-bmips-dts-add-BCM6328-reset-controller-support.patch │ │ │ │ ├── 005-v5.11-mips-bmips-dts-add-BCM6358-reset-controller-support.patch │ │ │ │ ├── 006-v5.11-mips-bmips-dts-add-BCM6362-reset-controller-support.patch │ │ │ │ ├── 007-v5.11-mips-bmips-dts-add-BCM6368-reset-controller-support.patch │ │ │ │ ├── 008-v5.11-mips-bmips-dts-add-BCM63268-reset-controller-support.patch │ │ │ │ ├── 009-v5.11-mips-bmips-add-BCM6318-reset-controller-definitions.patch │ │ │ │ ├── 020-v5.12-mips-bmips-init-clocks-earlier.patch │ │ │ │ ├── 021-v5.12-spi-bcm63xx-spi-fix-pm_runtime.patch │ │ │ │ ├── 022-v5.12-spi-bcm63xx-hsspi-fix-pm_runtime.patch │ │ │ │ ├── 040-v5.13-mips-smp-bmips-fix-CPU-mappings.patch │ │ │ │ ├── 042-v5.13-dt-bindings-rng-bcm2835-add-clock-constraints.patch │ │ │ │ ├── 043-v5.13-dt-bindings-rng-bcm2835-document-reset-support.patch │ │ │ │ ├── 044-v5.13-hwrng-bcm2835-add-reset-support.patch │ │ │ │ ├── 046-v5.13-dt-bindings-net-Add-bcm6368-mdio-mux-bindings.patch │ │ │ │ ├── 047-v5.13-net-mdio-Add-BCM6368-MDIO-mux-bus-controller.patch │ │ │ │ ├── 053-v5.13-gpio-regmap-set-gpio_chip-of_node.patch │ │ │ │ ├── 054-v5.13-dt-bindings-improve-BCM6345-GPIO-binding-documentati.patch │ │ │ │ ├── 055-v5.13-pinctrl-bcm-add-bcm63xx-base-code.patch │ │ │ │ ├── 056-v5.13-dt-bindings-add-BCM6328-pincontroller-binding-docume.patch │ │ │ │ ├── 057-v5.13-dt-bindings-add-BCM6328-GPIO-sysctl-binding-document.patch │ │ │ │ ├── 058-v5.13-pinctrl-add-a-pincontrol-driver-for-BCM6328.patch │ │ │ │ ├── 059-v5.13-dt-bindings-add-BCM6358-pincontroller-binding-docume.patch │ │ │ │ ├── 060-v5.13-dt-bindings-add-BCM6358-GPIO-sysctl-binding-document.patch │ │ │ │ ├── 061-v5.13-pinctrl-add-a-pincontrol-driver-for-BCM6358.patch │ │ │ │ ├── 062-v5.13-dt-bindings-add-BCM6362-pincontroller-binding-docume.patch │ │ │ │ ├── 063-v5.13-dt-bindings-add-BCM6362-GPIO-sysctl-binding-document.patch │ │ │ │ ├── 064-v5.13-pinctrl-add-a-pincontrol-driver-for-BCM6362.patch │ │ │ │ ├── 065-v5.13-dt-bindings-add-BCM6368-pincontroller-binding-docume.patch │ │ │ │ ├── 066-v5.13-dt-bindings-add-BCM6368-GPIO-sysctl-binding-document.patch │ │ │ │ ├── 067-v5.13-pinctrl-add-a-pincontrol-driver-for-BCM6368.patch │ │ │ │ ├── 068-v5.13-dt-bindings-add-BCM63268-pincontroller-binding-docum.patch │ │ │ │ ├── 069-v5.13-dt-bindings-add-BCM63268-GPIO-sysctl-binding-documen.patch │ │ │ │ ├── 070-v5.13-pinctrl-add-a-pincontrol-driver-for-BCM63268.patch │ │ │ │ ├── 071-v5.13-dt-bindings-add-BCM6318-pincontroller-binding-docume.patch │ │ │ │ ├── 072-v5.13-dt-bindings-add-BCM6318-GPIO-sysctl-binding-document.patch │ │ │ │ ├── 073-v5.13-pinctrl-add-a-pincontrol-driver-for-BCM6318.patch │ │ │ │ ├── 074-v5.13-pinctrl-bcm-bcm6362-fix-warning.patch │ │ │ │ ├── 075-v5.13-pinctrl-bcm63xx-Fix-dependencies.patch │ │ │ │ ├── 080-v5.14-watchdog-bcm7038_wdt-add-big-endian-support.patch │ │ │ │ ├── 100-irqchip-add-support-for-bcm6345-style-external-inter.patch │ │ │ │ ├── 110-mips-bmips-add-BCM63268-timer-clock-definitions.patch │ │ │ │ ├── 111-mips-bmips-add-BCM63268-timer-reset-definitions.patch │ │ │ │ ├── 112-dt-bindings-clock-Add-BCM63268-timer-binding.patch │ │ │ │ ├── 113-clk-bcm-Add-BCM63268-timer-clock-and-reset-driver.patch │ │ │ │ ├── 200-mips-bmips-automatically-detect-CPU-frequency.patch │ │ │ │ ├── 201-mips-bmips-automatically-detect-RAM-size.patch │ │ │ │ ├── 202-mips-bmips-disable-ARCH_HAS_SYNC_DMA_FOR_CPU_ALL.patch │ │ │ │ ├── 500-net-broadcom-add-BCM6368-enetsw-controller-driver.patch │ │ │ │ ├── 510-net-dsa-b53-add-support-for-BCM63xx-RGMIIs.patch │ │ │ │ ├── 600-mips-bmips-add-pci-support.patch │ │ │ │ ├── 601-pci-controllers-add-bcm6328-pcie-support.patch │ │ │ │ ├── 602-pci-controllers-add-bcm6318-pcie-support.patch │ │ │ │ ├── 603-pci-controllers-add-bcm6348-pci-support.patch │ │ │ │ ├── 610-mips-bmips-add-pci-fixups.patch │ │ │ │ └── 800-jffs2-work-around-unaligned-accesses-failing-on-bcm6.patch │ │ │ └── profiles/ │ │ │ └── default.mk │ │ ├── gemini/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ ├── 03_hdparm │ │ │ │ │ │ └── 03_splash │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ └── 09_fix-checksum │ │ │ │ └── lib/ │ │ │ │ ├── preinit/ │ │ │ │ │ └── 05_set_ether_mac_gemini │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ ├── image/ │ │ │ │ ├── ImageInfo-itian_sq201 │ │ │ │ ├── ImageInfo-raidsonic_ib-4220-b │ │ │ │ ├── ImageInfo-storlink_sl93512r │ │ │ │ ├── Makefile │ │ │ │ ├── copy-kernel/ │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Makefile │ │ │ │ │ └── copy-kernel.S │ │ │ │ └── dns313_gen_hdd_img.sh │ │ │ ├── patches-5.10/ │ │ │ │ ├── 0001-usb-host-fotg2-add-Gemini-specific-handling.patch │ │ │ │ └── 0002-ARM-dts-Augment-DIR-685-partition-table-for-OpenWrt.patch │ │ │ └── patches-5.15/ │ │ │ ├── 0001-usb-host-fotg2-add-Gemini-specific-handling.patch │ │ │ └── 0002-ARM-dts-Augment-DIR-685-partition-table-for-OpenWrt.patch │ │ ├── generic/ │ │ │ ├── PATCHES │ │ │ ├── backport-5.10/ │ │ │ │ ├── 010-Kbuild-don-t-hardcode-path-to-awk-in-scripts-ld-vers.patch │ │ │ │ ├── 011-kbuild-export-SUBARCH.patch │ │ │ │ ├── 026-power-reset-linkstation-poweroff-add-missing-put_dev.patch │ │ │ │ ├── 050-v5.16-00-MIPS-uasm-Enable-muhu-opcode-for-MIPS-R6.patch │ │ │ │ ├── 050-v5.16-01-mips-uasm-Add-workaround-for-Loongson-2F-nop-CPU-err.patch │ │ │ │ ├── 050-v5.16-02-mips-bpf-Add-eBPF-JIT-for-32-bit-MIPS.patch │ │ │ │ ├── 050-v5.16-03-mips-bpf-Add-new-eBPF-JIT-for-64-bit-MIPS.patch │ │ │ │ ├── 050-v5.16-04-mips-bpf-Add-JIT-workarounds-for-CPU-errata.patch │ │ │ │ ├── 050-v5.16-05-mips-bpf-Enable-eBPF-JITs.patch │ │ │ │ ├── 050-v5.16-06-mips-bpf-Remove-old-BPF-JIT-implementations.patch │ │ │ │ ├── 071-crypto-arm-chacha-neon-optimize-for-non-block-size-m.patch │ │ │ │ ├── 072-crypto-arm-chacha-neon-add-missing-counter-increment.patch │ │ │ │ ├── 080-wireguard-peer-put-frequently-used-members-above-cac.patch │ │ │ │ ├── 081-net-next-regmap-allow-to-define-reg_update_bits-for-no-bus.patch │ │ │ │ ├── 103-v5.13-MIPS-select-CPU_MIPS64-for-remaining-MIPS64-CPUs.patch │ │ │ │ ├── 311-v5.11-MIPS-zboot-put-appended-dtb-into-a-section.patch │ │ │ │ ├── 343-netfilter-nft_flow_offload-handle-netdevice-events-f.patch │ │ │ │ ├── 401-v5.11-dt-bindings-mtd-convert-fixed-partitions-to-the-json.patch │ │ │ │ ├── 402-v5.12-0001-dt-bindings-mtd-move-partition-binding-to-its-own-fi.patch │ │ │ │ ├── 402-v5.12-0002-dt-bindings-mtd-add-binding-for-BCM4908-partitions.patch │ │ │ │ ├── 403-v5.13-mtd-parsers-ofpart-support-BCM4908-fixed-partitions.patch │ │ │ │ ├── 404-v5.13-mtd-parsers-ofpart-limit-parsing-of-deprecated-DT-sy.patch │ │ │ │ ├── 405-v5.13-mtd-parsers-ofpart-make-symbol-bcm4908_partitions_qu.patch │ │ │ │ ├── 406-v5.13-0001-mtd-core-add-nvmem-cells-compatible-to-parse-mtd-as-.patch │ │ │ │ ├── 406-v5.13-0002-dt-bindings-nvmem-drop-nodename-restriction.patch │ │ │ │ ├── 406-v5.13-0003-dt-bindings-mtd-Document-use-of-nvmem-cells-compatib.patch │ │ │ │ ├── 407-v5.13-0001-dt-bindings-mtd-add-binding-for-Linksys-Northstar-pa.patch │ │ │ │ ├── 407-v5.13-0002-mtd-parsers-ofpart-support-Linksys-Northstar-partiti.patch │ │ │ │ ├── 408-v5.13-mtd-cfi_cmdset_0002-Disable-buffered-writes-for-AMD.patch │ │ │ │ ├── 409-v5.14-0001-dt-bindings-mtd-brcm-trx-Add-brcm-trx-magic.patch │ │ │ │ ├── 409-v5.14-0002-mtd-parsers-trx-Allow-to-specify-brcm-trx-magic-in-D.patch │ │ │ │ ├── 409-v5.14-0003-mtd-parsers-trx-Allow-to-use-TRX-parser-on-Mediatek-.patch │ │ │ │ ├── 410-mtd-next-mtd-parsers-trx-allow-to-use-on-MediaTek-MIPS-SoCs.patch │ │ │ │ ├── 419-v5.14-mtd-spinand-gigadevice-Support-GD5F1GQ5UExxG.patch │ │ │ │ ├── 420-v5.19-01-mtd-spinand-gigadevice-fix-Quad-IO-for-GD5F1GQ5UExxG.patch │ │ │ │ ├── 420-v5.19-02-mtd-spinand-gigadevice-add-support-for-GD5FxGQ4xExxG.patch │ │ │ │ ├── 420-v5.19-03-mtd-spinand-gigadevice-add-support-for-GD5F1GQ5RExxG.patch │ │ │ │ ├── 420-v5.19-04-mtd-spinand-gigadevice-add-support-for-GD5F-2-4-GQ5x.patch │ │ │ │ ├── 420-v5.19-05-mtd-spinand-gigadevice-add-support-for-GD5FxGM7xExxG.patch │ │ │ │ ├── 500-v5.13-ubifs-default-to-zstd-compression.patch │ │ │ │ ├── 600-v5.12-net-extract-napi-poll-functionality-to-__napi_poll.patch │ │ │ │ ├── 601-v5.12-net-implement-threaded-able-napi-poll-loop-support.patch │ │ │ │ ├── 602-v5.12-net-add-sysfs-attribute-to-control-napi-threaded-mod.patch │ │ │ │ ├── 603-v5.12-net-fix-race-between-napi-kthread-mode-and-busy-poll.patch │ │ │ │ ├── 604-v5.12-net-fix-hangup-on-napi_disable-for-threaded-napi.patch │ │ │ │ ├── 610-v5.13-00-netfilter-flowtable-add-hash-offset-field-to-tuple.patch │ │ │ │ ├── 610-v5.13-01-netfilter-flowtable-separate-replace-destroy-and-sta.patch │ │ │ │ ├── 610-v5.13-03-netfilter-conntrack-Remove-unused-variable-declarati.patch │ │ │ │ ├── 610-v5.13-04-netfilter-flowtable-consolidate-skb_try_make_writabl.patch │ │ │ │ ├── 610-v5.13-05-netfilter-flowtable-move-skb_try_make_writable-befor.patch │ │ │ │ ├── 610-v5.13-06-netfilter-flowtable-move-FLOW_OFFLOAD_DIR_MAX-away-f.patch │ │ │ │ ├── 610-v5.13-07-netfilter-flowtable-fast-NAT-functions-never-fail.patch │ │ │ │ ├── 610-v5.13-08-netfilter-flowtable-call-dst_check-to-fall-back-to-c.patch │ │ │ │ ├── 610-v5.13-09-netfilter-flowtable-refresh-timeout-after-dst-and-wr.patch │ │ │ │ ├── 610-v5.13-10-netfilter-nftables-update-table-flags-from-the-commi.patch │ │ │ │ ├── 610-v5.13-11-net-resolve-forwarding-path-from-virtual-netdevice-a.patch │ │ │ │ ├── 610-v5.13-12-net-8021q-resolve-forwarding-path-for-vlan-devices.patch │ │ │ │ ├── 610-v5.13-13-net-bridge-resolve-forwarding-path-for-bridge-device.patch │ │ │ │ ├── 610-v5.13-14-net-bridge-resolve-forwarding-path-for-VLAN-tag-acti.patch │ │ │ │ ├── 610-v5.13-15-net-ppp-resolve-forwarding-path-for-bridge-pppoe-dev.patch │ │ │ │ ├── 610-v5.13-16-net-dsa-resolve-forwarding-path-for-dsa-slave-ports.patch │ │ │ │ ├── 610-v5.13-17-netfilter-flowtable-add-xmit-path-types.patch │ │ │ │ ├── 610-v5.13-18-netfilter-flowtable-use-dev_fill_forward_path-to-obt.patch │ │ │ │ ├── 610-v5.13-19-netfilter-flowtable-use-dev_fill_forward_path-to-obt.patch │ │ │ │ ├── 610-v5.13-20-netfilter-flowtable-add-vlan-support.patch │ │ │ │ ├── 610-v5.13-21-netfilter-flowtable-add-bridge-vlan-filtering-suppor.patch │ │ │ │ ├── 610-v5.13-22-netfilter-flowtable-add-pppoe-support.patch │ │ │ │ ├── 610-v5.13-23-netfilter-flowtable-add-dsa-support.patch │ │ │ │ ├── 610-v5.13-24-selftests-netfilter-flowtable-bridge-and-vlan-suppor.patch │ │ │ │ ├── 610-v5.13-25-netfilter-flowtable-add-offload-support-for-xmit-pat.patch │ │ │ │ ├── 610-v5.13-26-netfilter-nft_flow_offload-use-direct-xmit-if-hardwa.patch │ │ │ │ ├── 610-v5.13-27-netfilter-flowtable-bridge-vlan-hardware-offload-and.patch │ │ │ │ ├── 610-v5.13-28-net-flow_offload-add-FLOW_ACTION_PPPOE_PUSH.patch │ │ │ │ ├── 610-v5.13-29-netfilter-flowtable-support-for-FLOW_ACTION_PPPOE_PU.patch │ │ │ │ ├── 610-v5.13-30-dsa-slave-add-support-for-TC_SETUP_FT.patch │ │ │ │ ├── 610-v5.13-31-net-ethernet-mtk_eth_soc-fix-parsing-packets-in-GDM.patch │ │ │ │ ├── 610-v5.13-32-net-ethernet-mtk_eth_soc-add-support-for-initializin.patch │ │ │ │ ├── 610-v5.13-33-net-ethernet-mtk_eth_soc-add-flow-offloading-support.patch │ │ │ │ ├── 610-v5.13-34-docs-nf_flowtable-update-documentation-with-enhancem.patch │ │ │ │ ├── 610-v5.13-35-net-ethernet-mediatek-ppe-fix-busy-wait-loop.patch │ │ │ │ ├── 610-v5.13-36-net-ethernet-mediatek-fix-a-typo-bug-in-flow-offload.patch │ │ │ │ ├── 610-v5.13-38-net-ethernet-mtk_eth_soc-unmap-RX-data-before-callin.patch │ │ │ │ ├── 610-v5.13-39-net-ethernet-mtk_eth_soc-fix-build_skb-cleanup.patch │ │ │ │ ├── 610-v5.13-40-net-ethernet-mtk_eth_soc-use-napi_consume_skb.patch │ │ │ │ ├── 610-v5.13-41-net-ethernet-mtk_eth_soc-reduce-MDIO-bus-access-late.patch │ │ │ │ ├── 610-v5.13-42-net-ethernet-mtk_eth_soc-remove-unnecessary-TX-queue.patch │ │ │ │ ├── 610-v5.13-43-net-ethernet-mtk_eth_soc-use-larger-burst-size-for-Q.patch │ │ │ │ ├── 610-v5.13-44-net-ethernet-mtk_eth_soc-increase-DMA-ring-sizes.patch │ │ │ │ ├── 610-v5.13-45-net-ethernet-mtk_eth_soc-implement-dynamic-interrupt.patch │ │ │ │ ├── 610-v5.13-46-net-ethernet-mtk_eth_soc-cache-HW-pointer-of-last-fr.patch │ │ │ │ ├── 610-v5.13-47-net-ethernet-mtk_eth_soc-only-read-the-full-RX-descr.patch │ │ │ │ ├── 610-v5.13-48-net-ethernet-mtk_eth_soc-reduce-unnecessary-interrup.patch │ │ │ │ ├── 610-v5.13-49-net-ethernet-mtk_eth_soc-rework-NAPI-callbacks.patch │ │ │ │ ├── 610-v5.13-50-net-ethernet-mtk_eth_soc-set-PPE-flow-hash-as-skb-ha.patch │ │ │ │ ├── 610-v5.13-51-net-ethernet-mtk_eth_soc-use-iopoll.h-macro-for-DMA-.patch │ │ │ │ ├── 610-v5.13-52-net-ethernet-mtk_eth_soc-missing-mutex.patch │ │ │ │ ├── 610-v5.13-53-net-ethernet-mtk_eth_soc-handle-VLAN-pop-action.patch │ │ │ │ ├── 610-v5.13-54-netfilter-flowtable-dst_check-from-garbage-collector.patch │ │ │ │ ├── 610-v5.13-55-netfilter-conntrack-Introduce-tcp-offload-timeout-co.patch │ │ │ │ ├── 610-v5.13-56-netfilter-conntrack-Introduce-udp-offload-timeout-co.patch │ │ │ │ ├── 610-v5.13-57-netfilter-flowtable-Set-offload-timeouts-according-t.patch │ │ │ │ ├── 610-v5.15-58-netfilter-flowtable-avoid-possible-false-sharing.patch │ │ │ │ ├── 611-v5.12-net-ethernet-mediatek-support-setting-MTU.patch │ │ │ │ ├── 612-v5.15-netfilter-conntrack-sanitize-table-size-default-sett.patch │ │ │ │ ├── 705-net-phy-at803x-select-correct-page-on-config-init.patch │ │ │ │ ├── 706-net-phy-at803x-fix-probe-error-if-copper-page-is-sel.patch │ │ │ │ ├── 710-v5.12-net-phy-Add-100-base-x-mode.patch │ │ │ │ ├── 711-v5.12-sfp-add-support-for-100-base-x-SFPs.patch │ │ │ │ ├── 712-v5.13-net-phy-marvell-refactor-HWMON-OOP-style.patch │ │ │ │ ├── 713-v5.15-net-phy-marvell-add-SFP-support-for-88E1510.patch │ │ │ │ ├── 719-v5.12-net-dsa-automatically-bring-up-DSA-master-when-openi.patch │ │ │ │ ├── 720-v5.12-net-bridge-notify-switchdev-of-disappearance-of-old-.patch │ │ │ │ ├── 721-v5.12-net-dsa-be-louder-when-a-non-legacy-FDB-operation-fa.patch │ │ │ │ ├── 722-v5.12-net-dsa-don-t-use-switchdev_notifier_fdb_info-in-dsa.patch │ │ │ │ ├── 723-v5.12-net-dsa-move-switchdev-event-implementation-under-th.patch │ │ │ │ ├── 724-v5.12-net-dsa-exit-early-in-dsa_slave_switchdev_event-if-w.patch │ │ │ │ ├── 725-v5.12-net-dsa-listen-for-SWITCHDEV_-FDB-DEL-_ADD_TO_DEVICE.patch │ │ │ │ ├── 730-net-dsa-mt7530-setup-core-clock-even-in-TRGMII-mode.patch │ │ │ │ ├── 731-v5.12-net-dsa-mt7530-MT7530-optional-GPIO-support.patch │ │ │ │ ├── 731-v5.13-net-dsa-mt7530-Add-support-for-EEE-features.patch │ │ │ │ ├── 732-net-next-1-of-net-pass-the-dst-buffer-to-of_get_mac_address.patch │ │ │ │ ├── 732-net-next-2-of-net-fix-of_get_mac_addr_nvmem-for-non-platform-devices.patch │ │ │ │ ├── 733-v5.15-0001-net-bgmac-bcma-handle-deferred-probe-error-due-to-ma.patch │ │ │ │ ├── 733-v5.15-0002-net-bgmac-platform-handle-mac-address-deferral.patch │ │ │ │ ├── 734-v5.16-0001-net-bgmac-improve-handling-PHY.patch │ │ │ │ ├── 734-v5.16-0002-net-bgmac-support-MDIO-described-in-DT.patch │ │ │ │ ├── 735-v5.14-01-net-dsa-qca8k-change-simple-print-to-dev-variant.patch │ │ │ │ ├── 735-v5.14-02-net-dsa-qca8k-use-iopoll-macro-for-qca8k_busy_wait.patch │ │ │ │ ├── 735-v5.14-03-net-dsa-qca8k-improve-qca8k-read-write-rmw-bus-acces.patch │ │ │ │ ├── 735-v5.14-04-net-dsa-qca8k-handle-qca8k_set_page-errors.patch │ │ │ │ ├── 735-v5.14-05-net-dsa-qca8k-handle-error-with-qca8k_read-operation.patch │ │ │ │ ├── 735-v5.14-06-net-dsa-qca8k-handle-error-with-qca8k_write-operatio.patch │ │ │ │ ├── 735-v5.14-07-net-dsa-qca8k-handle-error-with-qca8k_rmw-operation.patch │ │ │ │ ├── 735-v5.14-08-net-dsa-qca8k-handle-error-from-qca8k_busy_wait.patch │ │ │ │ ├── 735-v5.14-09-net-dsa-qca8k-add-support-for-qca8327-switch.patch │ │ │ │ ├── 735-v5.14-10-devicetree-net-dsa-qca8k-Document-new-compatible-qca.patch │ │ │ │ ├── 735-v5.14-11-net-dsa-qca8k-add-priority-tweak-to-qca8337-switch.patch │ │ │ │ ├── 735-v5.14-12-net-dsa-qca8k-limit-port5-delay-to-qca8337.patch │ │ │ │ ├── 735-v5.14-13-net-dsa-qca8k-add-GLOBAL_FC-settings-needed-for-qca8.patch │ │ │ │ ├── 735-v5.14-14-net-dsa-qca8k-add-support-for-switch-rev.patch │ │ │ │ ├── 735-v5.14-15-net-dsa-qca8k-add-ethernet-ports-fallback-to-setup_m.patch │ │ │ │ ├── 735-v5.14-16-net-dsa-qca8k-make-rgmii-delay-configurable.patch │ │ │ │ ├── 735-v5.14-17-net-dsa-qca8k-clear-MASTER_EN-after-phy-read-write.patch │ │ │ │ ├── 735-v5.14-18-net-dsa-qca8k-dsa-qca8k-protect-MASTER-busy_wait-wit.patch │ │ │ │ ├── 735-v5.14-19-net-dsa-qca8k-enlarge-mdio-delay-and-timeout.patch │ │ │ │ ├── 735-v5.14-20-net-dsa-qca8k-add-support-for-internal-phy-and-inter.patch │ │ │ │ ├── 735-v5.14-21-devicetree-bindings-dsa-qca8k-Document-internal-mdio.patch │ │ │ │ ├── 735-v5.14-22-net-dsa-qca8k-improve-internal-mdio-read-write-bus-a.patch │ │ │ │ ├── 735-v5.14-23-net-dsa-qca8k-pass-switch_revision-info-to-phy-dev_f.patch │ │ │ │ ├── 735-v5.14-25-net-phy-add-support-for-qca8k-switch-internal-PHY-in.patch │ │ │ │ ├── 736-v5.14-net-dsa-qca8k-fix-missing-unlock-on-error-in-qca8k-vlan.patch │ │ │ │ ├── 737-v5.14-01-net-dsa-qca8k-check-return-value-of-read-functions-c.patch │ │ │ │ ├── 737-v5.14-02-net-dsa-qca8k-add-missing-check-return-value-in-qca8.patch │ │ │ │ ├── 738-v5.14-01-net-dsa-qca8k-fix-an-endian-bug-in-qca8k-get-ethtool.patch │ │ │ │ ├── 738-v5.14-02-net-dsa-qca8k-check-the-correct-variable-in-qca8k-se.patch │ │ │ │ ├── 739-v5.15-net-dsa-qca8k-fix-kernel-panic-with-legacy-mdio-mapping.patch │ │ │ │ ├── 740-v5.13-0001-net-dsa-b53-Add-debug-prints-in-b53_vlan_enable.patch │ │ │ │ ├── 740-v5.13-0002-net-dsa-b53-spi-allow-device-tree-probing.patch │ │ │ │ ├── 740-v5.13-0003-net-dsa-b53-relax-is63xx-condition.patch │ │ │ │ ├── 740-v5.13-0004-net-dsa-tag_brcm-add-support-for-legacy-tags.patch │ │ │ │ ├── 740-v5.13-0005-net-dsa-b53-support-legacy-tags.patch │ │ │ │ ├── 740-v5.13-0006-net-dsa-b53-mmap-Add-device-tree-support.patch │ │ │ │ ├── 740-v5.13-0007-net-dsa-b53-spi-add-missing-MODULE_DEVICE_TABLE.patch │ │ │ │ ├── 741-v5.14-0001-net-dsa-b53-Do-not-force-CPU-to-be-always-tagged.patch │ │ │ │ ├── 741-v5.14-0002-net-dsa-b53-remove-redundant-null-check-on-dev.patch │ │ │ │ ├── 741-v5.14-0003-net-dsa-b53-Create-default-VLAN-entry-explicitly.patch │ │ │ │ ├── 742-v5.16-net-phy-at803x-add-support-for-qca-8327-internal-phy.patch │ │ │ │ ├── 743-v5.16-0001-net-dsa-b53-Include-all-ports-in-enabled_ports.patch │ │ │ │ ├── 743-v5.16-0002-net-dsa-b53-Drop-BCM5301x-workaround-for-a-wrong-CPU.patch │ │ │ │ ├── 743-v5.16-0003-net-dsa-b53-Improve-flow-control-setup-on-BCM5301x.patch │ │ │ │ ├── 743-v5.16-0004-net-dsa-b53-Drop-unused-cpu_port-field.patch │ │ │ │ ├── 744-v5.15-net-dsa-don-t-set-skb-offload_fwd_mark-when-not-offl.patch │ │ │ │ ├── 745-v5.16-01-net-phy-at803x-add-support-for-qca-8327-A-variant.patch │ │ │ │ ├── 745-v5.16-02-net-phy-at803x-add-resume-suspend-function-to-qca83x.patch │ │ │ │ ├── 745-v5.16-03-net-phy-at803x-fix-spacing-and-improve-name-for-83xx.patch │ │ │ │ ├── 746-v5.16-01-net-phy-at803x-fix-resume-for-QCA8327-phy.patch │ │ │ │ ├── 746-v5.16-02-net-phy-at803x-add-DAC-amplitude-fix-for-8327-phy.patch │ │ │ │ ├── 746-v5.16-03-net-phy-at803x-enable-prefer-master-for-83xx-interna.patch │ │ │ │ ├── 746-v5.16-04-net-phy-at803x-better-describe-debug-regs.patch │ │ │ │ ├── 747-v5.16-01-dsa-qca8k-add-mac-power-sel-support.patch │ │ │ │ ├── 747-v5.16-02-dt-bindings-net-dsa-qca8k-Add-SGMII-clock-phase-prop.patch │ │ │ │ ├── 747-v5.16-03-net-dsa-qca8k-add-support-for-sgmii-falling-edge.patch │ │ │ │ ├── 747-v5.16-04-dt-bindings-net-dsa-qca8k-Document-support-for-CPU-p.patch │ │ │ │ ├── 747-v5.16-05-net-dsa-qca8k-add-support-for-cpu-port-6.patch │ │ │ │ ├── 747-v5.16-06-net-dsa-qca8k-rework-rgmii-delay-logic-and-scan-for-.patch │ │ │ │ ├── 747-v5.16-07-dt-bindings-net-dsa-qca8k-Document-qca-sgmii-enable-.patch │ │ │ │ ├── 747-v5.16-08-net-dsa-qca8k-add-explicit-SGMII-PLL-enable.patch │ │ │ │ ├── 747-v5.16-09-dt-bindings-net-dsa-qca8k-Document-qca-led-open-drai.patch │ │ │ │ ├── 747-v5.16-10-net-dsa-qca8k-add-support-for-pws-config-reg.patch │ │ │ │ ├── 747-v5.16-11-dt-bindings-net-dsa-qca8k-document-support-for-qca83.patch │ │ │ │ ├── 747-v5.16-12-net-dsa-qca8k-add-support-for-QCA8328.patch │ │ │ │ ├── 747-v5.16-13-net-dsa-qca8k-set-internal-delay-also-for-sgmii.patch │ │ │ │ ├── 747-v5.16-14-net-dsa-qca8k-move-port-config-to-dedicated-struct.patch │ │ │ │ ├── 747-v5.16-15-dt-bindings-net-ipq8064-mdio-fix-warning-with-new-qc.patch │ │ │ │ ├── 747-v5.16-16-dt-bindings-net-dsa-qca8k-convert-to-YAML-schema.patch │ │ │ │ ├── 748-v5.16-net-dsa-qca8k-fix-delay-applied-to-wrong-cpu-in-parse-p.patch │ │ │ │ ├── 749-v5.16-net-dsa-qca8k-tidy-for-loop-in-setup-and-add-cpu-port-c.patch │ │ │ │ ├── 750-v5.16-net-dsa-qca8k-make-sure-pad0-mac06-exchange-is-disabled.patch │ │ │ │ ├── 751-v5.16-net-dsa-qca8k-fix-internal-delay-applied-to-the-wrong-PAD.patch │ │ │ │ ├── 752-v5.16-net-dsa-qca8k-fix-MTU-calculation.patch │ │ │ │ ├── 753-net-next-net-dsa-qca8k-remove-redundant-check-in-parse_port_config.patch │ │ │ │ ├── 754-net-next-net-dsa-qca8k-convert-to-GENMASK_FIELD_PREP_FIELD_GET.patch │ │ │ │ ├── 755-net-next-net-dsa-qca8k-remove-extra-mutex_init-in-qca8k_setup.patch │ │ │ │ ├── 756-net-next-net-dsa-qca8k-move-regmap-init-in-probe-and-set-it.patch │ │ │ │ ├── 757-net-next-net-dsa-qca8k-initial-conversion-to-regmap-heper.patch │ │ │ │ ├── 758-net-next-net-dsa-qca8k-add-additional-MIB-counter-and-.patch │ │ │ │ ├── 759-net-next-net-dsa-qca8k-add-support-for-port-fast-aging.patch │ │ │ │ ├── 760-net-next-net-dsa-qca8k-add-set_ageing_time-support.patch │ │ │ │ ├── 761-net-next-net-dsa-qca8k-add-support-for-mdb_add-del.patch │ │ │ │ ├── 762-v5.11-net-dsa-mt7530-support-setting-MTU.patch │ │ │ │ ├── 763-v5.11-net-dsa-mt7530-enable-MTU-normalization.patch │ │ │ │ ├── 764-v5.11-net-dsa-mt7530-support-setting-ageing-time.patch │ │ │ │ ├── 770-v5.15-net-dsa-mt7530-support-MDB-operations.patch │ │ │ │ ├── 771-v5.14-net-phy-add-MediaTek-Gigabit-Ethernet-PHY-driver.patch │ │ │ │ ├── 772-v5.14-net-dsa-mt7530-add-interrupt-support.patch │ │ │ │ ├── 773-v5.18-1-net-dsa-Move-VLAN-filtering-syncing-out-of-dsa_switc.patch │ │ │ │ ├── 773-v5.18-2-net-dsa-Avoid-cross-chip-syncing-of-VLAN-filtering.patch │ │ │ │ ├── 774-v5.15-1-igc-remove-_I_PHY_ID-checking.patch │ │ │ │ ├── 774-v5.15-2-igc-remove-phy-type-checking.patch │ │ │ │ ├── 774-v5.15-net-dsa-mv88e6xxx-keep-the-pvid-at-0-when-VLAN-unawa.patch │ │ │ │ ├── 780-v5.11-net-usb-r8152-Provide-missing-documentation-for-some.patch │ │ │ │ ├── 781-v5.11-net-usb-r8152-Fix-a-couple-of-spelling-errors-in-fw_.patch │ │ │ │ ├── 782-v5.11-net-usb-r8153_ecm-support-ECM-mode-for-RTL8153.patch │ │ │ │ ├── 783-v5.12-net-usb-r8152-use-new-tasklet-API.patch │ │ │ │ ├── 784-v5.12-r8152-replace-several-functions-about-phy-patch-requ.patch │ │ │ │ ├── 785-v5.12-r8152-adjust-the-flow-of-power-cut-for-RTL8153B.patch │ │ │ │ ├── 786-v5.12-r8152-enable-U1-U2-for-USB_SPEED_SUPER.patch │ │ │ │ ├── 787-v5.12-r8152-check-if-the-pointer-of-the-function-exists.patch │ │ │ │ ├── 788-v5.12-r8152-replace-netif_err-with-dev_err.patch │ │ │ │ ├── 789-v5.12-r8152-spilt-rtl_set_eee_plus-and-r8153b_green_en.patch │ │ │ │ ├── 790-v5.13-r8152-set-inter-fram-gap-time-depending-on-speed.patch │ │ │ │ ├── 791-v5.13-r8152-adjust-rtl8152_check_firmware-function.patch │ │ │ │ ├── 792-v5.13-r8152-add-help-function-to-change-mtu.patch │ │ │ │ ├── 793-v5.13-r8152-support-new-chips.patch │ │ │ │ ├── 794-v5.13-r8152-support-PHY-firmware-for-RTL8156-series.patch │ │ │ │ ├── 795-v5.13-r8152-search-the-configuration-of-vendor-mode.patch │ │ │ │ ├── 800-v5.13-0001-firmware-bcm47xx_nvram-rename-finding-function-and-i.patch │ │ │ │ ├── 800-v5.13-0002-firmware-bcm47xx_nvram-add-helper-checking-for-NVRAM.patch │ │ │ │ ├── 800-v5.13-0003-firmware-bcm47xx_nvram-extract-code-copying-NVRAM.patch │ │ │ │ ├── 800-v5.13-0004-firmware-bcm47xx_nvram-look-for-NVRAM-with-for-inste.patch │ │ │ │ ├── 800-v5.13-0005-firmware-bcm47xx_nvram-inline-code-checking-NVRAM-si.patch │ │ │ │ ├── 810-v5.13-usb-ehci-add-spurious-flag-to-disable-overcurrent-ch.patch │ │ │ │ ├── 811-v5.13-usb-host-ehci-platform-add-spurious_oc-DT-support.patch │ │ │ │ ├── 820-v5.13-make-pci_host_common_probe-declare-its-reliance-on-msi-domains.patch │ │ │ │ ├── 821-v5.13-let-pci-host-bridges-declar-their-reliance-on-msi-domains.patch │ │ │ │ ├── 822-v5.13-advertise-lack-of-built-in-msi-handling.patch │ │ │ │ ├── 830-v5.14-leds-lp55xx-Initialize-enable-GPIO-direction-to-outp.patch │ │ │ │ ├── 850-v5.17-0001-PCI-pci-bridge-emul-Add-description-for-class_revisi.patch │ │ │ │ ├── 850-v5.17-0002-PCI-pci-bridge-emul-Add-definitions-for-missing-capa.patch │ │ │ │ ├── 850-v5.17-0003-PCI-aardvark-Add-support-for-DEVCAP2-DEVCTL2-LNKCAP2.patch │ │ │ │ ├── 850-v5.17-0004-PCI-aardvark-Clear-all-MSIs-at-setup.patch │ │ │ │ ├── 850-v5.17-0005-PCI-aardvark-Comment-actions-in-driver-remove-method.patch │ │ │ │ ├── 850-v5.17-0006-PCI-aardvark-Disable-bus-mastering-when-unbinding-dr.patch │ │ │ │ ├── 850-v5.17-0007-PCI-aardvark-Mask-all-interrupts-when-unbinding-driv.patch │ │ │ │ ├── 850-v5.17-0008-PCI-aardvark-Fix-memory-leak-in-driver-unbind.patch │ │ │ │ ├── 850-v5.17-0009-PCI-aardvark-Assert-PERST-when-unbinding-driver.patch │ │ │ │ ├── 850-v5.17-0010-PCI-aardvark-Disable-link-training-when-unbinding-dr.patch │ │ │ │ ├── 850-v5.17-0011-PCI-aardvark-Disable-common-PHY-when-unbinding-drive.patch │ │ │ │ ├── 851-v5.15-0001-phy-marvell-phy-mvebu-a3700-comphy-Rename-HS-SGMMI-t.patch │ │ │ │ ├── 851-v5.15-0002-phy-marvell-phy-mvebu-a3700-comphy-Remove-unsupporte.patch │ │ │ │ ├── 860-v5.17-MIPS-ath79-drop-_machine_restart-again.patch │ │ │ │ ├── 870-hwmon-next-hwmon-lm70-Add-ti-tmp125-support.patch │ │ │ │ ├── 880-v5.19-cdc_ether-export-usbnet_cdc_zte_rx_fixup.patch │ │ │ │ ├── 881-v5.19-rndis_host-enable-the-bogus-MAC-fixup-for-ZTE-device.patch │ │ │ │ ├── 882-v5.19-rndis_host-limit-scope-of-bogus-MAC-address-detectio.patch │ │ │ │ └── 890-v5.19-net-sfp-Add-tx-fault-workaround-for-Huawei-MA5671A-SFP-ON.patch │ │ │ ├── backport-5.15/ │ │ │ │ ├── 011-kbuild-export-SUBARCH.patch │ │ │ │ ├── 050-v5.16-00-MIPS-uasm-Enable-muhu-opcode-for-MIPS-R6.patch │ │ │ │ ├── 050-v5.16-01-mips-uasm-Add-workaround-for-Loongson-2F-nop-CPU-err.patch │ │ │ │ ├── 050-v5.16-02-mips-bpf-Add-eBPF-JIT-for-32-bit-MIPS.patch │ │ │ │ ├── 050-v5.16-03-mips-bpf-Add-new-eBPF-JIT-for-64-bit-MIPS.patch │ │ │ │ ├── 050-v5.16-04-mips-bpf-Add-JIT-workarounds-for-CPU-errata.patch │ │ │ │ ├── 050-v5.16-05-mips-bpf-Enable-eBPF-JITs.patch │ │ │ │ ├── 050-v5.16-06-mips-bpf-Remove-old-BPF-JIT-implementations.patch │ │ │ │ ├── 081-net-next-regmap-allow-to-define-reg_update_bits-for-no-bus.patch │ │ │ │ ├── 300-v5.18-pinctrl-qcom-Return--EINVAL-for-setting-affinity-if-no-IRQ-parent.patch │ │ │ │ ├── 343-netfilter-nft_flow_offload-handle-netdevice-events-f.patch │ │ │ │ ├── 400-mtdblock-warn-if-opened-on-NAND.patch │ │ │ │ ├── 410-mtd-next-mtd-parsers-trx-allow-to-use-on-MediaTek-MIPS-SoCs.patch │ │ │ │ ├── 420-v5.19-01-mtd-spinand-gigadevice-fix-Quad-IO-for-GD5F1GQ5UExxG.patch │ │ │ │ ├── 420-v5.19-02-mtd-spinand-gigadevice-add-support-for-GD5FxGQ4xExxG.patch │ │ │ │ ├── 420-v5.19-03-mtd-spinand-gigadevice-add-support-for-GD5F1GQ5RExxG.patch │ │ │ │ ├── 420-v5.19-04-mtd-spinand-gigadevice-add-support-for-GD5F-2-4-GQ5x.patch │ │ │ │ ├── 420-v5.19-05-mtd-spinand-gigadevice-add-support-for-GD5FxGM7xExxG.patch │ │ │ │ ├── 700-net-next-net-dsa-introduce-tagger-owned-storage-for-private.patch │ │ │ │ ├── 701-net-dsa-make-tagging-protocols-connect-to-individual-switches.patch │ │ │ │ ├── 734-v5.16-0001-net-bgmac-improve-handling-PHY.patch │ │ │ │ ├── 734-v5.16-0002-net-bgmac-support-MDIO-described-in-DT.patch │ │ │ │ ├── 742-v5.16-net-phy-at803x-add-support-for-qca-8327-internal-phy.patch │ │ │ │ ├── 743-v5.16-0001-net-dsa-b53-Include-all-ports-in-enabled_ports.patch │ │ │ │ ├── 743-v5.16-0002-net-dsa-b53-Drop-BCM5301x-workaround-for-a-wrong-CPU.patch │ │ │ │ ├── 743-v5.16-0003-net-dsa-b53-Improve-flow-control-setup-on-BCM5301x.patch │ │ │ │ ├── 743-v5.16-0004-net-dsa-b53-Drop-unused-cpu_port-field.patch │ │ │ │ ├── 745-v5.16-01-net-phy-at803x-add-support-for-qca-8327-A-variant.patch │ │ │ │ ├── 745-v5.16-02-net-phy-at803x-add-resume-suspend-function-to-qca83x.patch │ │ │ │ ├── 745-v5.16-03-net-phy-at803x-fix-spacing-and-improve-name-for-83xx.patch │ │ │ │ ├── 746-v5.16-01-net-phy-at803x-fix-resume-for-QCA8327-phy.patch │ │ │ │ ├── 746-v5.16-02-net-phy-at803x-add-DAC-amplitude-fix-for-8327-phy.patch │ │ │ │ ├── 746-v5.16-03-net-phy-at803x-enable-prefer-master-for-83xx-interna.patch │ │ │ │ ├── 746-v5.16-04-net-phy-at803x-better-describe-debug-regs.patch │ │ │ │ ├── 747-v5.16-01-dsa-qca8k-add-mac-power-sel-support.patch │ │ │ │ ├── 747-v5.16-02-dt-bindings-net-dsa-qca8k-Add-SGMII-clock-phase-prop.patch │ │ │ │ ├── 747-v5.16-03-net-dsa-qca8k-add-support-for-sgmii-falling-edge.patch │ │ │ │ ├── 747-v5.16-04-dt-bindings-net-dsa-qca8k-Document-support-for-CPU-p.patch │ │ │ │ ├── 747-v5.16-05-net-dsa-qca8k-add-support-for-cpu-port-6.patch │ │ │ │ ├── 747-v5.16-06-net-dsa-qca8k-rework-rgmii-delay-logic-and-scan-for-.patch │ │ │ │ ├── 747-v5.16-07-dt-bindings-net-dsa-qca8k-Document-qca-sgmii-enable-.patch │ │ │ │ ├── 747-v5.16-08-net-dsa-qca8k-add-explicit-SGMII-PLL-enable.patch │ │ │ │ ├── 747-v5.16-09-dt-bindings-net-dsa-qca8k-Document-qca-led-open-drai.patch │ │ │ │ ├── 747-v5.16-10-net-dsa-qca8k-add-support-for-pws-config-reg.patch │ │ │ │ ├── 747-v5.16-11-dt-bindings-net-dsa-qca8k-document-support-for-qca83.patch │ │ │ │ ├── 747-v5.16-12-net-dsa-qca8k-add-support-for-QCA8328.patch │ │ │ │ ├── 747-v5.16-13-net-dsa-qca8k-set-internal-delay-also-for-sgmii.patch │ │ │ │ ├── 747-v5.16-14-net-dsa-qca8k-move-port-config-to-dedicated-struct.patch │ │ │ │ ├── 747-v5.16-15-dt-bindings-net-ipq8064-mdio-fix-warning-with-new-qc.patch │ │ │ │ ├── 747-v5.16-16-dt-bindings-net-dsa-qca8k-convert-to-YAML-schema.patch │ │ │ │ ├── 748-v5.16-net-dsa-qca8k-fix-delay-applied-to-wrong-cpu-in-parse-p.patch │ │ │ │ ├── 749-v5.16-net-dsa-qca8k-tidy-for-loop-in-setup-and-add-cpu-port-c.patch │ │ │ │ ├── 750-v5.16-net-dsa-qca8k-make-sure-pad0-mac06-exchange-is-disabled.patch │ │ │ │ ├── 751-v5.16-net-dsa-qca8k-fix-internal-delay-applied-to-the-wrong-PAD.patch │ │ │ │ ├── 752-v5.16-net-dsa-qca8k-fix-MTU-calculation.patch │ │ │ │ ├── 753-net-next-net-dsa-qca8k-remove-redundant-check-in-parse_port_config.patch │ │ │ │ ├── 754-net-next-net-dsa-qca8k-convert-to-GENMASK_FIELD_PREP_FIELD_GET.patch │ │ │ │ ├── 755-net-next-net-dsa-qca8k-remove-extra-mutex_init-in-qca8k_setup.patch │ │ │ │ ├── 756-net-next-net-dsa-qca8k-move-regmap-init-in-probe-and-set-it.patch │ │ │ │ ├── 757-net-next-net-dsa-qca8k-initial-conversion-to-regmap-heper.patch │ │ │ │ ├── 758-net-next-net-dsa-qca8k-add-additional-MIB-counter-and-.patch │ │ │ │ ├── 759-net-next-net-dsa-qca8k-add-support-for-port-fast-aging.patch │ │ │ │ ├── 760-net-next-net-dsa-qca8k-add-set_ageing_time-support.patch │ │ │ │ ├── 761-net-next-net-dsa-qca8k-add-support-for-mdb_add-del.patch │ │ │ │ ├── 762-net-next-net-dsa-qca8k-add-support-for-mirror-mode.patch │ │ │ │ ├── 763-net-next-net-dsa-qca8k-add-LAG-support.patch │ │ │ │ ├── 764-net-next-net-dsa-qca8k-fix-warning-in-LAG-feature.patch │ │ │ │ ├── 765-1-net-next-net-dsa-reorder-PHY-initialization-with-MTU-setup-in.patch │ │ │ │ ├── 765-2-net-next-net-dsa-merge-rtnl_lock-sections-in-dsa_slave_create.patch │ │ │ │ ├── 765-3-net-next-net-dsa-stop-updating-master-MTU-from-master.c.patch │ │ │ │ ├── 765-4-net-next-net-dsa-hold-rtnl_mutex-when-calling-dsa_master_-set.patch │ │ │ │ ├── 765-5-net-next-net-dsa-first-set-up-shared-ports-then-non-shared-po.patch │ │ │ │ ├── 765-6-net-next-net-dsa-setup-master-before-ports.patch │ │ │ │ ├── 766-01-net-dsa-provide-switch-operations-for-tracking-the-m.patch │ │ │ │ ├── 766-02-net-dsa-replay-master-state-events-in-dsa_tree_-setu.patch │ │ │ │ ├── 766-03-net-dsa-tag_qca-convert-to-FIELD-macro.patch │ │ │ │ ├── 766-04-net-dsa-tag_qca-move-define-to-include-linux-dsa.patch │ │ │ │ ├── 766-05-net-dsa-tag_qca-enable-promisc_on_master-flag.patch │ │ │ │ ├── 766-06-net-dsa-tag_qca-add-define-for-handling-mgmt-Etherne.patch │ │ │ │ ├── 766-07-net-dsa-tag_qca-add-define-for-handling-MIB-packet.patch │ │ │ │ ├── 766-08-net-dsa-tag_qca-add-support-for-handling-mgmt-and-MI.patch │ │ │ │ ├── 766-09-net-dsa-qca8k-add-tracking-state-of-master-port.patch │ │ │ │ ├── 766-10-net-dsa-qca8k-add-support-for-mgmt-read-write-in-Eth.patch │ │ │ │ ├── 766-11-net-dsa-qca8k-add-support-for-mib-autocast-in-Ethern.patch │ │ │ │ ├── 766-12-net-dsa-qca8k-add-support-for-phy-read-write-with-mg.patch │ │ │ │ ├── 766-13-net-dsa-qca8k-move-page-cache-to-driver-priv.patch │ │ │ │ ├── 766-14-net-dsa-qca8k-cache-lo-and-hi-for-mdio-write.patch │ │ │ │ ├── 766-15-net-dsa-qca8k-add-support-for-larger-read-write-size.patch │ │ │ │ ├── 766-16-net-dsa-qca8k-introduce-qca8k_bulk_read-write-functi.patch │ │ │ │ ├── 773-v5.18-1-net-dsa-Move-VLAN-filtering-syncing-out-of-dsa_switc.patch │ │ │ │ ├── 773-v5.18-2-net-dsa-Avoid-cross-chip-syncing-of-VLAN-filtering.patch │ │ │ │ ├── 774-v5.16-01-net-dsa-rtl8366rb-Support-bridge-offloading.patch │ │ │ │ ├── 774-v5.16-02-net-dsa-rtl8366-Drop-custom-VLAN-set-up.patch │ │ │ │ ├── 774-v5.16-03-net-dsa-rtl8366rb-Rewrite-weird-VLAN-filering-enable.patch │ │ │ │ ├── 774-v5.16-06-net-dsa-rtl8366-Drop-and-depromote-pointless-prints.patch │ │ │ │ ├── 774-v5.16-07-net-dsa-rtl8366rb-Use-core-filtering-tracking.patch │ │ │ │ ├── 774-v5.16-08-net-dsa-rtl8366rb-Support-disabling-learning.patch │ │ │ │ ├── 774-v5.16-09-net-dsa-rtl8366rb-Support-fast-aging.patch │ │ │ │ ├── 774-v5.16-10-net-dsa-rtl8366rb-Support-setting-STP-state.patch │ │ │ │ ├── 850-v5.17-0001-PCI-pci-bridge-emul-Add-description-for-class_revisi.patch │ │ │ │ ├── 850-v5.17-0002-PCI-pci-bridge-emul-Add-definitions-for-missing-capa.patch │ │ │ │ ├── 850-v5.17-0003-PCI-aardvark-Add-support-for-DEVCAP2-DEVCTL2-LNKCAP2.patch │ │ │ │ ├── 850-v5.17-0004-PCI-aardvark-Clear-all-MSIs-at-setup.patch │ │ │ │ ├── 850-v5.17-0005-PCI-aardvark-Comment-actions-in-driver-remove-method.patch │ │ │ │ ├── 850-v5.17-0006-PCI-aardvark-Disable-bus-mastering-when-unbinding-dr.patch │ │ │ │ ├── 850-v5.17-0007-PCI-aardvark-Mask-all-interrupts-when-unbinding-driv.patch │ │ │ │ ├── 850-v5.17-0008-PCI-aardvark-Fix-memory-leak-in-driver-unbind.patch │ │ │ │ ├── 850-v5.17-0009-PCI-aardvark-Assert-PERST-when-unbinding-driver.patch │ │ │ │ ├── 850-v5.17-0010-PCI-aardvark-Disable-link-training-when-unbinding-dr.patch │ │ │ │ ├── 850-v5.17-0011-PCI-aardvark-Disable-common-PHY-when-unbinding-drive.patch │ │ │ │ ├── 860-v5.17-MIPS-ath79-drop-_machine_restart-again.patch │ │ │ │ ├── 870-hwmon-next-hwmon-lm70-Add-ti-tmp125-support.patch │ │ │ │ ├── 880-v5.19-cdc_ether-export-usbnet_cdc_zte_rx_fixup.patch │ │ │ │ ├── 881-v5.19-rndis_host-enable-the-bogus-MAC-fixup-for-ZTE-device.patch │ │ │ │ ├── 882-v5.19-rndis_host-limit-scope-of-bogus-MAC-address-detectio.patch │ │ │ │ └── 890-v5.19-net-sfp-Add-tx-fault-workaround-for-Huawei-MA5671A-SFP-ON.patch │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ ├── config-filter │ │ │ ├── files/ │ │ │ │ ├── Documentation/ │ │ │ │ │ ├── devicetree/ │ │ │ │ │ │ └── bindings/ │ │ │ │ │ │ └── mtd/ │ │ │ │ │ │ └── partitions/ │ │ │ │ │ │ └── openwrt,uimage.yaml │ │ │ │ │ └── networking/ │ │ │ │ │ └── adm6996.txt │ │ │ │ ├── arch/ │ │ │ │ │ └── mips/ │ │ │ │ │ └── fw/ │ │ │ │ │ └── myloader/ │ │ │ │ │ ├── Makefile │ │ │ │ │ └── myloader.c │ │ │ │ ├── block/ │ │ │ │ │ └── partitions/ │ │ │ │ │ └── fit.c │ │ │ │ ├── drivers/ │ │ │ │ │ ├── mtd/ │ │ │ │ │ │ ├── mtdsplit/ │ │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── mtdsplit.c │ │ │ │ │ │ │ ├── mtdsplit.h │ │ │ │ │ │ │ ├── mtdsplit_bcm63xx.c │ │ │ │ │ │ │ ├── mtdsplit_bcm_wfi.c │ │ │ │ │ │ │ ├── mtdsplit_brnimage.c │ │ │ │ │ │ │ ├── mtdsplit_cfe_bootfs.c │ │ │ │ │ │ │ ├── mtdsplit_elf.c │ │ │ │ │ │ │ ├── mtdsplit_eva.c │ │ │ │ │ │ │ ├── mtdsplit_fit.c │ │ │ │ │ │ │ ├── mtdsplit_jimage.c │ │ │ │ │ │ │ ├── mtdsplit_lzma.c │ │ │ │ │ │ │ ├── mtdsplit_minor.c │ │ │ │ │ │ │ ├── mtdsplit_seama.c │ │ │ │ │ │ │ ├── mtdsplit_squashfs.c │ │ │ │ │ │ │ ├── mtdsplit_tplink.c │ │ │ │ │ │ │ ├── mtdsplit_trx.c │ │ │ │ │ │ │ ├── mtdsplit_uimage.c │ │ │ │ │ │ │ └── mtdsplit_wrgg.c │ │ │ │ │ │ ├── nand/ │ │ │ │ │ │ │ ├── mtk_bmt.c │ │ │ │ │ │ │ ├── mtk_bmt.h │ │ │ │ │ │ │ ├── mtk_bmt_bbt.c │ │ │ │ │ │ │ ├── mtk_bmt_nmbm.c │ │ │ │ │ │ │ └── mtk_bmt_v2.c │ │ │ │ │ │ └── parsers/ │ │ │ │ │ │ └── routerbootpart.c │ │ │ │ │ ├── net/ │ │ │ │ │ │ └── phy/ │ │ │ │ │ │ ├── adm6996.c │ │ │ │ │ │ ├── adm6996.h │ │ │ │ │ │ ├── ar8216.c │ │ │ │ │ │ ├── ar8216.h │ │ │ │ │ │ ├── ar8327.c │ │ │ │ │ │ ├── ar8327.h │ │ │ │ │ │ ├── b53/ │ │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── b53_common.c │ │ │ │ │ │ │ ├── b53_mdio.c │ │ │ │ │ │ │ ├── b53_mmap.c │ │ │ │ │ │ │ ├── b53_phy_fixup.c │ │ │ │ │ │ │ ├── b53_priv.h │ │ │ │ │ │ │ ├── b53_regs.h │ │ │ │ │ │ │ ├── b53_spi.c │ │ │ │ │ │ │ └── b53_srab.c │ │ │ │ │ │ ├── ip17xx.c │ │ │ │ │ │ ├── psb6970.c │ │ │ │ │ │ ├── rtl8306.c │ │ │ │ │ │ ├── rtl8366_smi.c │ │ │ │ │ │ ├── rtl8366_smi.h │ │ │ │ │ │ ├── rtl8366rb.c │ │ │ │ │ │ ├── rtl8366s.c │ │ │ │ │ │ ├── rtl8367.c │ │ │ │ │ │ ├── rtl8367b.c │ │ │ │ │ │ ├── swconfig.c │ │ │ │ │ │ └── swconfig_leds.c │ │ │ │ │ └── platform/ │ │ │ │ │ └── mikrotik/ │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── rb_hardconfig.c │ │ │ │ │ ├── rb_softconfig.c │ │ │ │ │ ├── routerboot.c │ │ │ │ │ └── routerboot.h │ │ │ │ └── include/ │ │ │ │ ├── dt-bindings/ │ │ │ │ │ └── mtd/ │ │ │ │ │ └── partitions/ │ │ │ │ │ └── uimage.h │ │ │ │ ├── linux/ │ │ │ │ │ ├── ar8216_platform.h │ │ │ │ │ ├── ath5k_platform.h │ │ │ │ │ ├── ath9k_platform.h │ │ │ │ │ ├── mtd/ │ │ │ │ │ │ └── mtk_bmt.h │ │ │ │ │ ├── myloader.h │ │ │ │ │ ├── platform_data/ │ │ │ │ │ │ └── adm6996-gpio.h │ │ │ │ │ ├── routerboot.h │ │ │ │ │ ├── rt2x00_platform.h │ │ │ │ │ ├── rtl8366.h │ │ │ │ │ ├── rtl8367.h │ │ │ │ │ └── switch.h │ │ │ │ └── uapi/ │ │ │ │ └── linux/ │ │ │ │ └── switch.h │ │ │ ├── hack-5.10/ │ │ │ │ ├── 204-module_strip.patch │ │ │ │ ├── 205-kconfig-exit.patch │ │ │ │ ├── 210-darwin_scripts_include.patch │ │ │ │ ├── 211-darwin-uuid-typedef-clash.patch │ │ │ │ ├── 212-tools_portability.patch │ │ │ │ ├── 214-spidev_h_portability.patch │ │ │ │ ├── 220-arm-gc_sections.patch │ │ │ │ ├── 221-module_exports.patch │ │ │ │ ├── 230-openwrt_lzma_options.patch │ │ │ │ ├── 249-udp-tunnel-selection.patch │ │ │ │ ├── 250-netfilter_depends.patch │ │ │ │ ├── 251-kconfig.patch │ │ │ │ ├── 252-SATA_PMP.patch │ │ │ │ ├── 253-ksmbd-config.patch │ │ │ │ ├── 259-regmap_dynamic.patch │ │ │ │ ├── 260-crypto_test_dependencies.patch │ │ │ │ ├── 261-lib-arc4-unhide.patch │ │ │ │ ├── 280-rfkill-stubs.patch │ │ │ │ ├── 300-MIPS-r4k_cache-use-more-efficient-cache-blast.patch │ │ │ │ ├── 301-mips_image_cmdline_hack.patch │ │ │ │ ├── 321-powerpc_crtsavres_prereq.patch │ │ │ │ ├── 401-mtd-super-don-t-reply-on-mtdblock-device-minor.patch │ │ │ │ ├── 402-mtd-blktrans-call-add-disks-after-mtd-device.patch │ │ │ │ ├── 410-block-fit-partition-parser.patch │ │ │ │ ├── 420-mtd-set-rootfs-to-be-root-dev.patch │ │ │ │ ├── 421-drivers-mtd-parsers-add-nvmem-support-to-cmdlinepart.patch │ │ │ │ ├── 430-mtk-bmt-support.patch │ │ │ │ ├── 531-debloat_lzma.patch │ │ │ │ ├── 600-bridge_offload.patch │ │ │ │ ├── 645-netfilter-connmark-introduce-set-dscpmark.patch │ │ │ │ ├── 650-netfilter-add-xt_FLOWOFFLOAD-target.patch │ │ │ │ ├── 651-wireless_mesh_header.patch │ │ │ │ ├── 660-fq_codel_defaults.patch │ │ │ │ ├── 661-kernel-ct-size-the-hashtable-more-adequately.patch │ │ │ │ ├── 700-swconfig_switch_drivers.patch │ │ │ │ ├── 711-net-dsa-mv88e6xxx-disable-ATU-violation.patch │ │ │ │ ├── 720-net-phy-add-aqr-phys.patch │ │ │ │ ├── 721-net-add-packet-mangeling.patch │ │ │ │ ├── 722-net-phy-aquantia-enable-AQR112-and-AQR412.patch │ │ │ │ ├── 723-net-phy-aquantia-fix-system-side-protocol-mi.patch │ │ │ │ ├── 724-net-phy-aquantia-Add-AQR113-driver-support.patch │ │ │ │ ├── 725-net-phy-aquantia-add-PHY_IDs-for-AQR112-variants.patch │ │ │ │ ├── 760-net-usb-r8152-add-LED-configuration-from-OF.patch │ │ │ │ ├── 761-dt-bindings-net-add-RTL8152-binding-documentation.patch │ │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ │ ├── 780-usb-net-MeigLink_modem_support.patch │ │ │ │ ├── 800-GPIO-add-named-gpio-exports.patch │ │ │ │ ├── 901-debloat_sock_diag.patch │ │ │ │ ├── 902-debloat_proc.patch │ │ │ │ ├── 904-debloat_dma_buf.patch │ │ │ │ ├── 910-kobject_uevent.patch │ │ │ │ ├── 911-kobject_add_broadcast_uevent.patch │ │ │ │ └── 920-device_tree_cmdline.patch │ │ │ ├── hack-5.15/ │ │ │ │ ├── 204-module_strip.patch │ │ │ │ ├── 205-kconfig-exit.patch │ │ │ │ ├── 210-darwin_scripts_include.patch │ │ │ │ ├── 211-darwin-uuid-typedef-clash.patch │ │ │ │ ├── 212-tools_portability.patch │ │ │ │ ├── 214-spidev_h_portability.patch │ │ │ │ ├── 220-arm-gc_sections.patch │ │ │ │ ├── 221-module_exports.patch │ │ │ │ ├── 230-openwrt_lzma_options.patch │ │ │ │ ├── 249-udp-tunnel-selection.patch │ │ │ │ ├── 250-netfilter_depends.patch │ │ │ │ ├── 251-kconfig.patch │ │ │ │ ├── 252-SATA_PMP.patch │ │ │ │ ├── 253-ksmbd-config.patch │ │ │ │ ├── 259-regmap_dynamic.patch │ │ │ │ ├── 260-crypto_test_dependencies.patch │ │ │ │ ├── 261-lib-arc4-unhide.patch │ │ │ │ ├── 280-rfkill-stubs.patch │ │ │ │ ├── 300-MIPS-r4k_cache-use-more-efficient-cache-blast.patch │ │ │ │ ├── 301-mips_image_cmdline_hack.patch │ │ │ │ ├── 321-powerpc_crtsavres_prereq.patch │ │ │ │ ├── 402-mtd-blktrans-call-add-disks-after-mtd-device.patch │ │ │ │ ├── 410-block-fit-partition-parser.patch │ │ │ │ ├── 420-mtd-set-rootfs-to-be-root-dev.patch │ │ │ │ ├── 421-drivers-mtd-parsers-add-nvmem-support-to-cmdlinepart.patch │ │ │ │ ├── 430-mtk-bmt-support.patch │ │ │ │ ├── 531-debloat_lzma.patch │ │ │ │ ├── 600-bridge_offload.patch │ │ │ │ ├── 645-netfilter-connmark-introduce-set-dscpmark.patch │ │ │ │ ├── 650-netfilter-add-xt_FLOWOFFLOAD-target.patch │ │ │ │ ├── 651-wireless_mesh_header.patch │ │ │ │ ├── 660-fq_codel_defaults.patch │ │ │ │ ├── 661-kernel-ct-size-the-hashtable-more-adequately.patch │ │ │ │ ├── 700-swconfig_switch_drivers.patch │ │ │ │ ├── 710-net-dsa-mv88e6xxx-default-VID-1.patch │ │ │ │ ├── 711-net-dsa-mv88e6xxx-disable-ATU-violation.patch │ │ │ │ ├── 720-net-phy-add-aqr-phys.patch │ │ │ │ ├── 721-net-add-packet-mangeling.patch │ │ │ │ ├── 722-net-phy-aquantia-enable-AQR112-and-AQR412.patch │ │ │ │ ├── 723-net-phy-aquantia-fix-system-side-protocol-mi.patch │ │ │ │ ├── 724-net-phy-aquantia-Add-AQR113-driver-support.patch │ │ │ │ ├── 725-net-phy-aquantia-add-PHY_IDs-for-AQR112-variants.patch │ │ │ │ ├── 760-net-usb-r8152-add-LED-configuration-from-OF.patch │ │ │ │ ├── 761-dt-bindings-net-add-RTL8152-binding-documentation.patch │ │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ │ ├── 780-usb-net-MeigLink_modem_support.patch │ │ │ │ ├── 800-GPIO-add-named-gpio-exports.patch │ │ │ │ ├── 901-debloat_sock_diag.patch │ │ │ │ ├── 902-debloat_proc.patch │ │ │ │ ├── 904-debloat_dma_buf.patch │ │ │ │ ├── 910-kobject_uevent.patch │ │ │ │ ├── 911-kobject_add_broadcast_uevent.patch │ │ │ │ └── 920-device_tree_cmdline.patch │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── initramfs-base-files.txt │ │ │ │ ├── lzma-loader/ │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src/ │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── decompress.c │ │ │ │ │ ├── lzma-copy.lds.in │ │ │ │ │ ├── lzma.lds.in │ │ │ │ │ ├── print.c │ │ │ │ │ ├── print.h │ │ │ │ │ ├── printf.c │ │ │ │ │ ├── printf.h │ │ │ │ │ ├── start.S │ │ │ │ │ ├── uart16550.c │ │ │ │ │ └── uart16550.h │ │ │ │ └── relocate/ │ │ │ │ ├── Makefile │ │ │ │ ├── cacheops.h │ │ │ │ ├── cp0regdef.h │ │ │ │ ├── head.S │ │ │ │ └── loader.lds │ │ │ ├── other-files/ │ │ │ │ └── init │ │ │ ├── pending-5.10/ │ │ │ │ ├── 050-dtc-checks-Drop-interrupt-provider-address-cells-check.patch │ │ │ │ ├── 100-compiler.h-only-include-asm-rwonce.h-for-kernel-code.patch │ │ │ │ ├── 101-Use-stddefs.h-instead-of-compiler.h.patch │ │ │ │ ├── 102-MIPS-only-process-negative-stack-offsets-on-stack-tr.patch │ │ │ │ ├── 120-Fix-alloc_node_mem_map-with-ARCH_PFN_OFFSET-calcu.patch │ │ │ │ ├── 130-add-linux-spidev-compatible-si3210.patch │ │ │ │ ├── 140-jffs2-use-.rename2-and-add-RENAME_WHITEOUT-support.patch │ │ │ │ ├── 141-jffs2-add-RENAME_EXCHANGE-support.patch │ │ │ │ ├── 142-jffs2-add-splice-ops.patch │ │ │ │ ├── 150-bridge_allow_receiption_on_disabled_port.patch │ │ │ │ ├── 190-rtc-rs5c372-support_alarms_up_to_1_week.patch │ │ │ │ ├── 191-rtc-rs5c372-let_the_alarm_to_be_used_as_wakeup_source.patch │ │ │ │ ├── 201-extra_optimization.patch │ │ │ │ ├── 203-kallsyms_uncompressed.patch │ │ │ │ ├── 205-backtrace_module_info.patch │ │ │ │ ├── 240-remove-unsane-filenames-from-deps_initramfs-list.patch │ │ │ │ ├── 261-enable_wilink_platform_without_drivers.patch │ │ │ │ ├── 270-platform-mikrotik-build-bits.patch │ │ │ │ ├── 300-mips_expose_boot_raw.patch │ │ │ │ ├── 302-mips_no_branch_likely.patch │ │ │ │ ├── 305-mips_module_reloc.patch │ │ │ │ ├── 307-mips_highmem_offset.patch │ │ │ │ ├── 308-mips32r2_tune.patch │ │ │ │ ├── 309-MIPS-Add-CPU-option-reporting-to-proc-cpuinfo.patch │ │ │ │ ├── 310-arm_module_unresolved_weak_sym.patch │ │ │ │ ├── 330-MIPS-kexec-Accept-command-line-parameters-from-users.patch │ │ │ │ ├── 332-arc-add-OWRTDTB-section.patch │ │ │ │ ├── 333-arc-enable-unaligned-access-in-kernel-mode.patch │ │ │ │ ├── 342-powerpc-Enable-kernel-XZ-compression-option-on-PPC_8.patch │ │ │ │ ├── 400-mtd-mtdsplit-support.patch │ │ │ │ ├── 402-mtd-spi-nor-write-support-for-minor-aligned-partitions.patch │ │ │ │ ├── 410-mtd-parsers-ofpart-fix-parsing-subpartitions.patch │ │ │ │ ├── 419-mtd-redboot-add-of_match_table-with-DT-binding.patch │ │ │ │ ├── 420-mtd-redboot_space.patch │ │ │ │ ├── 430-mtd-add-myloader-partition-parser.patch │ │ │ │ ├── 431-mtd-bcm47xxpart-check-for-bad-blocks-when-calculatin.patch │ │ │ │ ├── 432-mtd-bcm47xxpart-detect-T_Meter-partition.patch │ │ │ │ ├── 435-mtd-add-routerbootpart-parser-config.patch │ │ │ │ ├── 444-mtd-nand-rawnand-add-support-for-Toshiba-TC58NVG0S3H.patch │ │ │ │ ├── 460-mtd-cfi_cmdset_0002-no-erase_suspend.patch │ │ │ │ ├── 461-mtd-cfi_cmdset_0002-add-buffer-write-cmd-timeout.patch │ │ │ │ ├── 465-m25p80-mx-disable-software-protection.patch │ │ │ │ ├── 470-mtd-spi-nor-support-limiting-4K-sectors-support-base.patch │ │ │ │ ├── 476-mtd-spi-nor-add-eon-en25q128.patch │ │ │ │ ├── 479-mtd-spi-nor-add-xtx-xt25f128b.patch │ │ │ │ ├── 482-mtd-spi-nor-add-support-for-Gigadevice-GD25D05.patch │ │ │ │ ├── 483-mtd-spi-nor-add-gd25q512.patch │ │ │ │ ├── 483-mtd-spinand-add-support-for-xtx-xt26g0xa.patch │ │ │ │ ├── 484-mtd-spi-nor-add-esmt-f25l16pa.patch │ │ │ │ ├── 485-mtd-spi-nor-add-xmc-xm25qh128c.patch │ │ │ │ ├── 490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch │ │ │ │ ├── 491-ubi-auto-create-ubiblock-device-for-rootfs.patch │ │ │ │ ├── 492-try-auto-mounting-ubi0-rootfs-in-init-do_mounts.c.patch │ │ │ │ ├── 493-ubi-set-ROOT_DEV-to-ubiblock-rootfs-if-unset.patch │ │ │ │ ├── 494-mtd-ubi-add-EOF-marker-support.patch │ │ │ │ ├── 495-mtd-core-add-get_mtd_device_by_node.patch │ │ │ │ ├── 496-dt-bindings-add-bindings-for-mtd-concat-devices.patch │ │ │ │ ├── 497-mtd-mtdconcat-add-dt-driver-for-concat-devices.patch │ │ │ │ ├── 498-mtd-spi-nor-locking-support-for-MX25L6405D.patch │ │ │ │ ├── 499-mtd-spi-nor-disable-16-bit-sr-for-macronix.patch │ │ │ │ ├── 500-fs_cdrom_dependencies.patch │ │ │ │ ├── 530-jffs2_make_lzma_available.patch │ │ │ │ ├── 532-jffs2_eofdetect.patch │ │ │ │ ├── 600-netfilter_conntrack_flush.patch │ │ │ │ ├── 610-netfilter_match_bypass_default_checks.patch │ │ │ │ ├── 611-netfilter_match_bypass_default_table.patch │ │ │ │ ├── 612-netfilter_match_reduce_memory_access.patch │ │ │ │ ├── 613-netfilter_optional_tcp_window_check.patch │ │ │ │ ├── 620-net_sched-codel-do-not-defer-queue-length-update.patch │ │ │ │ ├── 630-packet_socket_type.patch │ │ │ │ ├── 655-increase_skb_pad.patch │ │ │ │ ├── 666-Add-support-for-MAP-E-FMRs-mesh-mode.patch │ │ │ │ ├── 670-ipv6-allow-rejecting-with-source-address-failed-policy.patch │ │ │ │ ├── 671-net-provide-defines-for-_POLICY_FAILED-until-all-cod.patch │ │ │ │ ├── 680-NET-skip-GRO-for-foreign-MAC-addresses.patch │ │ │ │ ├── 682-of_net-add-mac-address-increment-support.patch │ │ │ │ ├── 683-of_net-add-mac-address-to-of-tree.patch │ │ │ │ ├── 700-net-ethernet-mtk_eth_soc-avoid-creating-duplicate-of.patch │ │ │ │ ├── 701-00-net-ethernet-mtk_eth_soc-add-support-for-coherent-DM.patch │ │ │ │ ├── 701-01-arm64-dts-mediatek-mt7622-add-support-for-coherent-D.patch │ │ │ │ ├── 701-02-net-ethernet-mtk_eth_soc-add-support-for-Wireless-Et.patch │ │ │ │ ├── 701-03-net-ethernet-mtk_eth_soc-implement-flow-offloading-t.patch │ │ │ │ ├── 701-04-arm64-dts-mediatek-mt7622-introduce-nodes-for-Wirele.patch │ │ │ │ ├── 701-05-net-ethernet-mtk_eth_soc-add-ipv6-flow-offload-suppo.patch │ │ │ │ ├── 701-06-net-ethernet-mtk_eth_soc-support-TC_SETUP_BLOCK-for-.patch │ │ │ │ ├── 701-07-net-ethernet-mtk_eth_soc-allocate-struct-mtk_ppe-sep.patch │ │ │ │ ├── 701-08-net-ethernet-mtk_eth_soc-rework-hardware-flow-table-.patch │ │ │ │ ├── 701-09-net-ethernet-mtk_eth_soc-remove-bridge-flow-offload-.patch │ │ │ │ ├── 701-10-net-ethernet-mtk_eth_soc-support-creating-mac-addres.patch │ │ │ │ ├── 702-net-ethernet-mtk_eth_soc-enable-threaded-NAPI.patch │ │ │ │ ├── 703-phy-add-detach-callback-to-struct-phy_driver.patch │ │ │ │ ├── 704-00-netfilter-flowtable-fix-excessive-hw-offload-attempt.patch │ │ │ │ ├── 704-01-netfilter-nft_flow_offload-skip-dst-neigh-lookup-for.patch │ │ │ │ ├── 704-02-net-fix-dev_fill_forward_path-with-pppoe-bridge.patch │ │ │ │ ├── 704-03-netfilter-nft_flow_offload-fix-offload-with-pppoe-vl.patch │ │ │ │ ├── 705-net-dsa-tag_mtk-add-padding-for-tx-packets.patch │ │ │ │ ├── 710-bridge-add-knob-for-filtering-rx-tx-BPDU-pack.patch │ │ │ │ ├── 730-net-phy-at803x-fix-feature-detection.patch │ │ │ │ ├── 760-net-dsa-mv88e6xxx-fix-vlan-setup.patch │ │ │ │ ├── 762-net-bridge-switchdev-Refactor-br_switchdev_fdb_notif.patch │ │ │ │ ├── 763-net-bridge-switchdev-Include-local-flag-in-FDB-notif.patch │ │ │ │ ├── 764-net-bridge-switchdev-Send-FDB-notifications-for-host.patch │ │ │ │ ├── 765-net-dsa-Include-local-addresses-in-assisted-CPU-port.patch │ │ │ │ ├── 766-net-dsa-Include-bridge-addresses-in-assisted-CPU-por.patch │ │ │ │ ├── 767-net-dsa-Sync-static-FDB-entries-on-foreign-interface.patch │ │ │ │ ├── 768-net-dsa-mv88e6xxx-Request-assisted-learning-on-CPU-port.patch │ │ │ │ ├── 780-ARM-kirkwood-add-missing-linux-if_ether.h-for-ETH_AL.patch │ │ │ │ ├── 800-bcma-get-SoC-device-struct-copy-its-DMA-params-to-th.patch │ │ │ │ ├── 801-gpio-gpio-cascade-add-generic-GPIO-cascade.patch │ │ │ │ ├── 810-pci_disable_common_quirks.patch │ │ │ │ ├── 811-pci_disable_usb_common_quirks.patch │ │ │ │ ├── 820-w1-gpio-fix-problem-with-platfom-data-in-w1-gpio.patch │ │ │ │ ├── 834-ledtrig-libata.patch │ │ │ │ ├── 840-hwrng-bcm2835-set-quality-to-1000.patch │ │ │ │ ├── 842-net-qmi_wwan-add-ZTE-MF286D-modem-19d2-1485.patch │ │ │ │ ├── 850-0001-PCI-aardvark-Replace-custom-PCIE_CORE_INT_-macros-wi.patch │ │ │ │ ├── 850-0002-PCI-aardvark-Fix-reading-MSI-interrupt-number.patch │ │ │ │ ├── 850-0004-PCI-aardvark-Rewrite-IRQ-code-to-chained-IRQ-handler.patch │ │ │ │ ├── 850-0005-PCI-aardvark-Check-return-value-of-generic_handle_do.patch │ │ │ │ ├── 850-0006-PCI-aardvark-Make-MSI-irq_chip-structures-static-dri.patch │ │ │ │ ├── 850-0007-PCI-aardvark-Make-msi_domain_info-structure-a-static.patch │ │ │ │ ├── 850-0008-PCI-aardvark-Use-dev_fwnode-instead-of-of_node_to_fw.patch │ │ │ │ ├── 850-0009-PCI-aardvark-Refactor-unmasking-summary-MSI-interrup.patch │ │ │ │ ├── 850-0010-PCI-aardvark-Add-support-for-masking-MSI-interrupts.patch │ │ │ │ ├── 850-0011-PCI-aardvark-Fix-setting-MSI-address.patch │ │ │ │ ├── 850-0012-PCI-aardvark-Enable-MSI-X-support.patch │ │ │ │ ├── 850-0013-PCI-aardvark-Add-support-for-ERR-interrupt-on-emulat.patch │ │ │ │ ├── 850-0015-PCI-aardvark-Optimize-writing-PCI_EXP_RTCTL_PMEIE-an.patch │ │ │ │ ├── 850-0016-PCI-aardvark-Add-support-for-PME-interrupts.patch │ │ │ │ ├── 850-0017-PCI-aardvark-Fix-support-for-PME-requester-on-emulat.patch │ │ │ │ ├── 850-0018-PCI-aardvark-Use-separate-INTA-interrupt-for-emulate.patch │ │ │ │ ├── 850-0019-PCI-aardvark-Remove-irq_mask_ack-callback-for-INTx-i.patch │ │ │ │ ├── 850-0020-PCI-aardvark-Don-t-mask-irq-when-mapping.patch │ │ │ │ ├── 850-0021-PCI-aardvark-Drop-__maybe_unused-from-advk_pcie_disa.patch │ │ │ │ ├── 850-0022-PCI-aardvark-Update-comment-about-link-going-down-af.patch │ │ │ │ ├── 850-0023-PCI-aardvark-Make-main-irq_chip-structure-a-static-d.patch │ │ │ │ ├── 851-0001-phy-marvell-phy-mvebu-a3700-comphy-Remove-port-from-.patch │ │ │ │ ├── 851-0002-phy-marvell-phy-mvebu-a3700-comphy-Add-native-kernel.patch │ │ │ │ ├── 851-0003-arm64-dts-marvell-armada-37xx-Add-xtal-clock-to-comp.patch │ │ │ │ ├── 851-0004-Revert-ata-ahci-mvebu-Make-SATA-PHY-optional-for-Arm.patch │ │ │ │ ├── 851-0005-Revert-usb-host-xhci-mvebu-make-USB-3.0-PHY-optional.patch │ │ │ │ ├── 851-0006-Revert-PCI-aardvark-Fix-initialization-with-old-Marv.patch │ │ │ │ └── 920-mangle_bootargs.patch │ │ │ └── pending-5.15/ │ │ │ ├── 050-dtc-checks-Drop-interrupt-provider-address-cells-check.patch │ │ │ ├── 100-compiler.h-only-include-asm-rwonce.h-for-kernel-code.patch │ │ │ ├── 101-Use-stddefs.h-instead-of-compiler.h.patch │ │ │ ├── 102-MIPS-only-process-negative-stack-offsets-on-stack-tr.patch │ │ │ ├── 120-Fix-alloc_node_mem_map-with-ARCH_PFN_OFFSET-calcu.patch │ │ │ ├── 130-add-linux-spidev-compatible-si3210.patch │ │ │ ├── 140-jffs2-use-.rename2-and-add-RENAME_WHITEOUT-support.patch │ │ │ ├── 141-jffs2-add-RENAME_EXCHANGE-support.patch │ │ │ ├── 142-jffs2-add-splice-ops.patch │ │ │ ├── 150-bridge_allow_receiption_on_disabled_port.patch │ │ │ ├── 190-rtc-rs5c372-support_alarms_up_to_1_week.patch │ │ │ ├── 191-rtc-rs5c372-let_the_alarm_to_be_used_as_wakeup_source.patch │ │ │ ├── 201-extra_optimization.patch │ │ │ ├── 203-kallsyms_uncompressed.patch │ │ │ ├── 205-backtrace_module_info.patch │ │ │ ├── 240-remove-unsane-filenames-from-deps_initramfs-list.patch │ │ │ ├── 261-enable_wilink_platform_without_drivers.patch │ │ │ ├── 270-platform-mikrotik-build-bits.patch │ │ │ ├── 300-mips_expose_boot_raw.patch │ │ │ ├── 302-mips_no_branch_likely.patch │ │ │ ├── 305-mips_module_reloc.patch │ │ │ ├── 307-mips_highmem_offset.patch │ │ │ ├── 308-mips32r2_tune.patch │ │ │ ├── 309-MIPS-Add-CPU-option-reporting-to-proc-cpuinfo.patch │ │ │ ├── 310-arm_module_unresolved_weak_sym.patch │ │ │ ├── 330-MIPS-kexec-Accept-command-line-parameters-from-users.patch │ │ │ ├── 332-arc-add-OWRTDTB-section.patch │ │ │ ├── 333-arc-enable-unaligned-access-in-kernel-mode.patch │ │ │ ├── 342-powerpc-Enable-kernel-XZ-compression-option-on-PPC_8.patch │ │ │ ├── 400-mtd-mtdsplit-support.patch │ │ │ ├── 402-mtd-spi-nor-write-support-for-minor-aligned-partitions.patch │ │ │ ├── 419-mtd-redboot-add-of_match_table-with-DT-binding.patch │ │ │ ├── 420-mtd-redboot_space.patch │ │ │ ├── 430-mtd-add-myloader-partition-parser.patch │ │ │ ├── 431-mtd-bcm47xxpart-check-for-bad-blocks-when-calculatin.patch │ │ │ ├── 432-mtd-bcm47xxpart-detect-T_Meter-partition.patch │ │ │ ├── 435-mtd-add-routerbootpart-parser-config.patch │ │ │ ├── 444-mtd-nand-rawnand-add-support-for-Toshiba-TC58NVG0S3H.patch │ │ │ ├── 460-mtd-cfi_cmdset_0002-no-erase_suspend.patch │ │ │ ├── 461-mtd-cfi_cmdset_0002-add-buffer-write-cmd-timeout.patch │ │ │ ├── 465-m25p80-mx-disable-software-protection.patch │ │ │ ├── 470-mtd-spi-nor-support-limiting-4K-sectors-support-base.patch │ │ │ ├── 476-mtd-spi-nor-add-eon-en25q128.patch │ │ │ ├── 479-mtd-spi-nor-add-xtx-xt25f128b.patch │ │ │ ├── 482-mtd-spi-nor-add-support-for-Gigadevice-GD25D05.patch │ │ │ ├── 483-mtd-spi-nor-add-gd25q512.patch │ │ │ ├── 483-mtd-spinand-add-support-for-xtx-xt26g0xa.patch │ │ │ ├── 484-mtd-spi-nor-add-esmt-f25l16pa.patch │ │ │ ├── 485-mtd-spi-nor-add-xmc-xm25qh128c.patch │ │ │ ├── 486-01-mtd-spinand-add-support-for-ESMT-F50x1G41LB.patch │ │ │ ├── 490-ubi-auto-attach-mtd-device-named-ubi-or-data-on-boot.patch │ │ │ ├── 491-ubi-auto-create-ubiblock-device-for-rootfs.patch │ │ │ ├── 492-try-auto-mounting-ubi0-rootfs-in-init-do_mounts.c.patch │ │ │ ├── 493-ubi-set-ROOT_DEV-to-ubiblock-rootfs-if-unset.patch │ │ │ ├── 494-mtd-ubi-add-EOF-marker-support.patch │ │ │ ├── 495-mtd-core-add-get_mtd_device_by_node.patch │ │ │ ├── 496-dt-bindings-add-bindings-for-mtd-concat-devices.patch │ │ │ ├── 497-mtd-mtdconcat-add-dt-driver-for-concat-devices.patch │ │ │ ├── 498-mtd-spi-nor-locking-support-for-MX25L6405D.patch │ │ │ ├── 499-mtd-spi-nor-disable-16-bit-sr-for-macronix.patch │ │ │ ├── 500-fs_cdrom_dependencies.patch │ │ │ ├── 530-jffs2_make_lzma_available.patch │ │ │ ├── 532-jffs2_eofdetect.patch │ │ │ ├── 600-netfilter_conntrack_flush.patch │ │ │ ├── 610-netfilter_match_bypass_default_checks.patch │ │ │ ├── 611-netfilter_match_bypass_default_table.patch │ │ │ ├── 612-netfilter_match_reduce_memory_access.patch │ │ │ ├── 613-netfilter_optional_tcp_window_check.patch │ │ │ ├── 620-net_sched-codel-do-not-defer-queue-length-update.patch │ │ │ ├── 630-packet_socket_type.patch │ │ │ ├── 655-increase_skb_pad.patch │ │ │ ├── 666-Add-support-for-MAP-E-FMRs-mesh-mode.patch │ │ │ ├── 670-ipv6-allow-rejecting-with-source-address-failed-policy.patch │ │ │ ├── 671-net-provide-defines-for-_POLICY_FAILED-until-all-cod.patch │ │ │ ├── 680-NET-skip-GRO-for-foreign-MAC-addresses.patch │ │ │ ├── 682-of_net-add-mac-address-increment-support.patch │ │ │ ├── 683-of_net-add-mac-address-to-of-tree.patch │ │ │ ├── 701-00-net-ethernet-mtk_eth_soc-add-support-for-coherent-DM.patch │ │ │ ├── 701-01-arm64-dts-mediatek-mt7622-add-support-for-coherent-D.patch │ │ │ ├── 701-02-net-ethernet-mtk_eth_soc-add-support-for-Wireless-Et.patch │ │ │ ├── 701-03-net-ethernet-mtk_eth_soc-implement-flow-offloading-t.patch │ │ │ ├── 701-04-arm64-dts-mediatek-mt7622-introduce-nodes-for-Wirele.patch │ │ │ ├── 701-05-net-ethernet-mtk_eth_soc-add-ipv6-flow-offload-suppo.patch │ │ │ ├── 701-06-net-ethernet-mtk_eth_soc-support-TC_SETUP_BLOCK-for-.patch │ │ │ ├── 701-07-net-ethernet-mtk_eth_soc-allocate-struct-mtk_ppe-sep.patch │ │ │ ├── 701-08-net-ethernet-mtk_eth_soc-rework-hardware-flow-table-.patch │ │ │ ├── 701-09-net-ethernet-mtk_eth_soc-remove-bridge-flow-offload-.patch │ │ │ ├── 701-10-net-ethernet-mtk_eth_soc-support-creating-mac-addres.patch │ │ │ ├── 702-net-ethernet-mtk_eth_soc-enable-threaded-NAPI.patch │ │ │ ├── 703-phy-add-detach-callback-to-struct-phy_driver.patch │ │ │ ├── 704-00-netfilter-flowtable-fix-excessive-hw-offload-attempt.patch │ │ │ ├── 704-01-netfilter-nft_flow_offload-skip-dst-neigh-lookup-for.patch │ │ │ ├── 704-02-net-fix-dev_fill_forward_path-with-pppoe-bridge.patch │ │ │ ├── 704-03-netfilter-nft_flow_offload-fix-offload-with-pppoe-vl.patch │ │ │ ├── 705-net-dsa-tag_mtk-add-padding-for-tx-packets.patch │ │ │ ├── 710-bridge-add-knob-for-filtering-rx-tx-BPDU-pack.patch │ │ │ ├── 760-net-dsa-mv88e6xxx-fix-vlan-setup.patch │ │ │ ├── 768-net-dsa-mv88e6xxx-Request-assisted-learning-on-CPU-port.patch │ │ │ ├── 780-ARM-kirkwood-add-missing-linux-if_ether.h-for-ETH_AL.patch │ │ │ ├── 800-bcma-get-SoC-device-struct-copy-its-DMA-params-to-th.patch │ │ │ ├── 801-gpio-gpio-cascade-add-generic-GPIO-cascade.patch │ │ │ ├── 810-pci_disable_common_quirks.patch │ │ │ ├── 811-pci_disable_usb_common_quirks.patch │ │ │ ├── 820-w1-gpio-fix-problem-with-platfom-data-in-w1-gpio.patch │ │ │ ├── 834-ledtrig-libata.patch │ │ │ ├── 840-hwrng-bcm2835-set-quality-to-1000.patch │ │ │ ├── 842-net-qmi_wwan-add-ZTE-MF286D-modem-19d2-1485.patch │ │ │ ├── 850-0001-PCI-aardvark-Replace-custom-PCIE_CORE_INT_-macros-wi.patch │ │ │ ├── 850-0004-PCI-aardvark-Rewrite-IRQ-code-to-chained-IRQ-handler.patch │ │ │ ├── 850-0005-PCI-aardvark-Check-return-value-of-generic_handle_do.patch │ │ │ ├── 850-0006-PCI-aardvark-Make-MSI-irq_chip-structures-static-dri.patch │ │ │ ├── 850-0007-PCI-aardvark-Make-msi_domain_info-structure-a-static.patch │ │ │ ├── 850-0008-PCI-aardvark-Use-dev_fwnode-instead-of-of_node_to_fw.patch │ │ │ ├── 850-0009-PCI-aardvark-Refactor-unmasking-summary-MSI-interrup.patch │ │ │ ├── 850-0010-PCI-aardvark-Add-support-for-masking-MSI-interrupts.patch │ │ │ ├── 850-0011-PCI-aardvark-Fix-setting-MSI-address.patch │ │ │ ├── 850-0012-PCI-aardvark-Enable-MSI-X-support.patch │ │ │ ├── 850-0013-PCI-aardvark-Add-support-for-ERR-interrupt-on-emulat.patch │ │ │ ├── 850-0015-PCI-aardvark-Optimize-writing-PCI_EXP_RTCTL_PMEIE-an.patch │ │ │ ├── 850-0016-PCI-aardvark-Add-support-for-PME-interrupts.patch │ │ │ ├── 850-0017-PCI-aardvark-Fix-support-for-PME-requester-on-emulat.patch │ │ │ ├── 850-0018-PCI-aardvark-Use-separate-INTA-interrupt-for-emulate.patch │ │ │ ├── 850-0019-PCI-aardvark-Remove-irq_mask_ack-callback-for-INTx-i.patch │ │ │ ├── 850-0020-PCI-aardvark-Don-t-mask-irq-when-mapping.patch │ │ │ ├── 850-0021-PCI-aardvark-Drop-__maybe_unused-from-advk_pcie_disa.patch │ │ │ ├── 850-0022-PCI-aardvark-Update-comment-about-link-going-down-af.patch │ │ │ ├── 850-0023-PCI-aardvark-Make-main-irq_chip-structure-a-static-d.patch │ │ │ ├── 851-0001-phy-marvell-phy-mvebu-a3700-comphy-Remove-port-from-.patch │ │ │ ├── 851-0002-phy-marvell-phy-mvebu-a3700-comphy-Add-native-kernel.patch │ │ │ ├── 851-0003-arm64-dts-marvell-armada-37xx-Add-xtal-clock-to-comp.patch │ │ │ ├── 851-0004-Revert-ata-ahci-mvebu-Make-SATA-PHY-optional-for-Arm.patch │ │ │ ├── 851-0005-Revert-usb-host-xhci-mvebu-make-USB-3.0-PHY-optional.patch │ │ │ ├── 851-0006-Revert-PCI-aardvark-Fix-initialization-with-old-Marv.patch │ │ │ └── 920-mangle_bootargs.patch │ │ ├── imx/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ └── etc/ │ │ │ │ └── inittab │ │ │ ├── config-5.15 │ │ │ ├── cortexa7/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ └── board.d/ │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── lib/ │ │ │ │ │ └── upgrade/ │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-default │ │ │ │ └── target.mk │ │ │ ├── cortexa9/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ └── board.d/ │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── lib/ │ │ │ │ │ ├── imx.sh │ │ │ │ │ ├── preinit/ │ │ │ │ │ │ └── 79_move_config │ │ │ │ │ └── upgrade/ │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-default │ │ │ │ └── target.mk │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── bootscript-solidrun_cubox-i │ │ │ │ ├── bootscript-toradex_apalis │ │ │ │ ├── bootscript-ventana │ │ │ │ ├── cortexa7.mk │ │ │ │ ├── cortexa9.mk │ │ │ │ └── recovery-toradex_apalis │ │ │ ├── patches-5.15/ │ │ │ │ ├── 100-bootargs.patch │ │ │ │ ├── 300-ARM-dts-imx6q-apalis-ixora-add-status-LEDs-aliases.patch │ │ │ │ └── 301-ARM-dts-imx6q-apalis-ixora-make-switch3-reset-button.patch │ │ │ └── profiles/ │ │ │ └── 100-default.mk │ │ ├── ipq40xx/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ └── 03_gpio_switches │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ └── firmware/ │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ │ ├── init.d/ │ │ │ │ │ │ └── bootcount │ │ │ │ │ ├── inittab │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ ├── 04_led_migration │ │ │ │ │ └── 05_fix-compat-version │ │ │ │ └── lib/ │ │ │ │ ├── preinit/ │ │ │ │ │ ├── 05_set_iface_mac_ipq40xx.sh │ │ │ │ │ └── 06_set_preinit_iface_ipq40xx.sh │ │ │ │ └── upgrade/ │ │ │ │ ├── dualboot_datachk.sh │ │ │ │ ├── linksys.sh │ │ │ │ ├── netgear.sh │ │ │ │ └── platform.sh │ │ │ ├── chromium/ │ │ │ │ ├── config-default │ │ │ │ └── target.mk │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ ├── files/ │ │ │ │ ├── arch/ │ │ │ │ │ └── arm/ │ │ │ │ │ └── boot/ │ │ │ │ │ └── dts/ │ │ │ │ │ ├── qcom-ipq4018-a42.dts │ │ │ │ │ ├── qcom-ipq4018-ap120c-ac.dts │ │ │ │ │ ├── qcom-ipq4018-cap-ac.dts │ │ │ │ │ ├── qcom-ipq4018-cs-w3-wd1200g-eup.dts │ │ │ │ │ ├── qcom-ipq4018-dap-2610.dts │ │ │ │ │ ├── qcom-ipq4018-ea6350v3.dts │ │ │ │ │ ├── qcom-ipq4018-eap1300.dts │ │ │ │ │ ├── qcom-ipq4018-ecw5211.dts │ │ │ │ │ ├── qcom-ipq4018-emd1.dts │ │ │ │ │ ├── qcom-ipq4018-emr3500.dts │ │ │ │ │ ├── qcom-ipq4018-ens620ext.dts │ │ │ │ │ ├── qcom-ipq4018-ex6100v2.dts │ │ │ │ │ ├── qcom-ipq4018-ex6150v2.dts │ │ │ │ │ ├── qcom-ipq4018-ex61x0v2.dtsi │ │ │ │ │ ├── qcom-ipq4018-fritzbox-4040.dts │ │ │ │ │ ├── qcom-ipq4018-gl-ap1300.dts │ │ │ │ │ ├── qcom-ipq4018-hap-ac2.dts │ │ │ │ │ ├── qcom-ipq4018-jalapeno.dts │ │ │ │ │ ├── qcom-ipq4018-jalapeno.dtsi │ │ │ │ │ ├── qcom-ipq4018-magic-2-wifi-next.dts │ │ │ │ │ ├── qcom-ipq4018-meshpoint-one.dts │ │ │ │ │ ├── qcom-ipq4018-nbg6617.dts │ │ │ │ │ ├── qcom-ipq4018-pa1200.dts │ │ │ │ │ ├── qcom-ipq4018-rt-ac58u.dts │ │ │ │ │ ├── qcom-ipq4018-rutx.dtsi │ │ │ │ │ ├── qcom-ipq4018-rutx10.dts │ │ │ │ │ ├── qcom-ipq4018-sxtsq-5-ac.dts │ │ │ │ │ ├── qcom-ipq4018-wac510.dts │ │ │ │ │ ├── qcom-ipq4018-wre6606.dts │ │ │ │ │ ├── qcom-ipq4018-wrtq-329acn.dts │ │ │ │ │ ├── qcom-ipq4019-a62.dts │ │ │ │ │ ├── qcom-ipq4019-cm520-79f.dts │ │ │ │ │ ├── qcom-ipq4019-e2600ac-c1.dts │ │ │ │ │ ├── qcom-ipq4019-e2600ac-c2.dts │ │ │ │ │ ├── qcom-ipq4019-e2600ac.dtsi │ │ │ │ │ ├── qcom-ipq4019-ea8300.dts │ │ │ │ │ ├── qcom-ipq4019-eap2200.dts │ │ │ │ │ ├── qcom-ipq4019-fritzbox-7530.dts │ │ │ │ │ ├── qcom-ipq4019-fritzrepeater-1200.dts │ │ │ │ │ ├── qcom-ipq4019-fritzrepeater-3000.dts │ │ │ │ │ ├── qcom-ipq4019-gl-b2200.dts │ │ │ │ │ ├── qcom-ipq4019-habanero-dvk.dts │ │ │ │ │ ├── qcom-ipq4019-hap-ac3.dts │ │ │ │ │ ├── qcom-ipq4019-lhgg-60ad.dts │ │ │ │ │ ├── qcom-ipq4019-map-ac2200.dts │ │ │ │ │ ├── qcom-ipq4019-mf286d.dts │ │ │ │ │ ├── qcom-ipq4019-mr8300.dts │ │ │ │ │ ├── qcom-ipq4019-oap100.dts │ │ │ │ │ ├── qcom-ipq4019-orbi.dtsi │ │ │ │ │ ├── qcom-ipq4019-pa2200.dts │ │ │ │ │ ├── qcom-ipq4019-r619ac-128m.dts │ │ │ │ │ ├── qcom-ipq4019-r619ac-64m.dts │ │ │ │ │ ├── qcom-ipq4019-r619ac.dtsi │ │ │ │ │ ├── qcom-ipq4019-rbr50.dts │ │ │ │ │ ├── qcom-ipq4019-rbs50.dts │ │ │ │ │ ├── qcom-ipq4019-rt-ac42u.dts │ │ │ │ │ ├── qcom-ipq4019-rtl30vw.dts │ │ │ │ │ ├── qcom-ipq4019-srr60.dts │ │ │ │ │ ├── qcom-ipq4019-srs60.dts │ │ │ │ │ ├── qcom-ipq4019-u4019-32m.dts │ │ │ │ │ ├── qcom-ipq4019-u4019.dtsi │ │ │ │ │ ├── qcom-ipq4019-wifi.dts │ │ │ │ │ ├── qcom-ipq4019-wpj419.dts │ │ │ │ │ ├── qcom-ipq4019-wtr-m2133hp.dts │ │ │ │ │ ├── qcom-ipq4019-x1pro.dts │ │ │ │ │ ├── qcom-ipq4019-x1pro.dtsi │ │ │ │ │ ├── qcom-ipq4019-xx8300.dtsi │ │ │ │ │ ├── qcom-ipq4028-wpj428.dts │ │ │ │ │ ├── qcom-ipq4029-ap-303.dts │ │ │ │ │ ├── qcom-ipq4029-ap-303h.dts │ │ │ │ │ ├── qcom-ipq4029-ap-365.dts │ │ │ │ │ ├── qcom-ipq4029-aruba-glenmorangie.dtsi │ │ │ │ │ ├── qcom-ipq4029-gl-b1300.dts │ │ │ │ │ ├── qcom-ipq4029-gl-s1300.dts │ │ │ │ │ └── qcom-ipq4029-mr33.dts │ │ │ │ └── drivers/ │ │ │ │ └── net/ │ │ │ │ ├── ethernet/ │ │ │ │ │ └── qualcomm/ │ │ │ │ │ └── essedma/ │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── edma.c │ │ │ │ │ ├── edma.h │ │ │ │ │ ├── edma_axi.c │ │ │ │ │ ├── edma_ethtool.c │ │ │ │ │ └── ess_edma.h │ │ │ │ ├── mdio/ │ │ │ │ │ ├── ar40xx.c │ │ │ │ │ └── ar40xx.h │ │ │ │ └── phy/ │ │ │ │ └── qca807x.c │ │ │ ├── generic/ │ │ │ │ └── target.mk │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── chromium.mk │ │ │ │ ├── generic.mk │ │ │ │ └── mikrotik.mk │ │ │ ├── mikrotik/ │ │ │ │ ├── config-default │ │ │ │ └── target.mk │ │ │ ├── patches-5.10/ │ │ │ │ ├── 0001-v5.12-ARM-dts-qcom-ipq4019-add-USB-devicetree-nodes.patch │ │ │ │ ├── 0002-v5.12-ARM-dts-qcom-ipq4019-add-more-labels.patch │ │ │ │ ├── 0003-v5.12-ARM-dts-qcom-ipq4019-add-SDHCI-VQMMC-LDO-node.patch │ │ │ │ ├── 104-clk-fix-apss-cpu-overclocking.patch │ │ │ │ ├── 300-clk-qcom-ipq4019-add-ess-reset.patch │ │ │ │ ├── 301-arm-compressed-add-appended-DTB-section.patch │ │ │ │ ├── 302-arm-compressed-set-ipq40xx-watchdog-to-allow-boot.patch │ │ │ │ ├── 400-mmc-sdhci-sdhci-msm-use-sdhci_set_clock-instead-of-s.patch │ │ │ │ ├── 420-firmware-qcom-scm-disable-SDI.patch │ │ │ │ ├── 421-firmware-qcom-scm-cold-boot-address.patch │ │ │ │ ├── 702-dts-ipq4019-add-PHY-switch-nodes.patch │ │ │ │ ├── 703-net-IPQ4019-needs-rfs-vlan_tag-callbacks-in.patch │ │ │ │ ├── 705-net-add-qualcomm-ar40xx-phy.patch │ │ │ │ ├── 706-dt-bindings-net-add-QCA807x-PHY.patch │ │ │ │ ├── 707-net-phy-Add-Qualcom-QCA807x-driver.patch │ │ │ │ ├── 708-arm-dts-ipq4019-QCA807x-properties.patch │ │ │ │ ├── 710-net-add-qualcomm-essedma-ethernet-driver.patch │ │ │ │ ├── 711-dts-ipq4019-add-ethernet-essedma-node.patch │ │ │ │ ├── 850-soc-add-qualcomm-syscon.patch │ │ │ │ ├── 900-dts-ipq4019-ap-dk01.1.patch │ │ │ │ ├── 901-arm-boot-add-dts-files.patch │ │ │ │ └── 902-dts-ipq4019-ap-dk04.1.patch │ │ │ └── patches-5.15/ │ │ │ ├── 104-clk-fix-apss-cpu-overclocking.patch │ │ │ ├── 300-clk-qcom-ipq4019-add-ess-reset.patch │ │ │ ├── 301-arm-compressed-add-appended-DTB-section.patch │ │ │ ├── 302-arm-compressed-set-ipq40xx-watchdog-to-allow-boot.patch │ │ │ ├── 400-mmc-sdhci-sdhci-msm-use-sdhci_set_clock-instead-of-s.patch │ │ │ ├── 420-firmware-qcom-scm-disable-SDI.patch │ │ │ ├── 421-firmware-qcom-scm-cold-boot-address.patch │ │ │ ├── 702-dts-ipq4019-add-PHY-switch-nodes.patch │ │ │ ├── 703-net-IPQ4019-needs-rfs-vlan_tag-callbacks-in.patch │ │ │ ├── 705-net-add-qualcomm-ar40xx-phy.patch │ │ │ ├── 706-dt-bindings-net-add-QCA807x-PHY.patch │ │ │ ├── 707-net-phy-Add-Qualcom-QCA807x-driver.patch │ │ │ ├── 708-arm-dts-ipq4019-QCA807x-properties.patch │ │ │ ├── 710-net-add-qualcomm-essedma-ethernet-driver.patch │ │ │ ├── 711-dts-ipq4019-add-ethernet-essedma-node.patch │ │ │ ├── 850-soc-add-qualcomm-syscon.patch │ │ │ ├── 900-dts-ipq4019-ap-dk01.1.patch │ │ │ ├── 901-arm-boot-add-dts-files.patch │ │ │ └── 902-dts-ipq4019-ap-dk04.1.patch │ │ ├── ipq806x/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ ├── firmware/ │ │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ │ │ └── ieee80211/ │ │ │ │ │ │ └── 10_fix_wifi_mac │ │ │ │ │ ├── init.d/ │ │ │ │ │ │ ├── bootcount │ │ │ │ │ │ └── cpufreq │ │ │ │ │ ├── inittab │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ ├── 04_led_migration │ │ │ │ │ └── 05_fix-compat-version │ │ │ │ ├── lib/ │ │ │ │ │ ├── preinit/ │ │ │ │ │ │ ├── 04_reorder_eth │ │ │ │ │ │ └── 05_set_iface_mac_ipq806x.sh │ │ │ │ │ └── upgrade/ │ │ │ │ │ ├── asrock.sh │ │ │ │ │ ├── buffalo.sh │ │ │ │ │ ├── linksys.sh │ │ │ │ │ ├── platform.sh │ │ │ │ │ └── zyxel.sh │ │ │ │ └── sbin/ │ │ │ │ └── asrock_g10_back_to_factory │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ ├── files/ │ │ │ │ └── arch/ │ │ │ │ └── arm/ │ │ │ │ └── boot/ │ │ │ │ └── dts/ │ │ │ │ ├── qcom-ipq8062-wg2600hp3.dts │ │ │ │ ├── qcom-ipq8062.dtsi │ │ │ │ ├── qcom-ipq8064-ad7200-c2600.dtsi │ │ │ │ ├── qcom-ipq8064-ad7200.dts │ │ │ │ ├── qcom-ipq8064-ap148.dts │ │ │ │ ├── qcom-ipq8064-ap161.dts │ │ │ │ ├── qcom-ipq8064-c2600.dts │ │ │ │ ├── qcom-ipq8064-d7800.dts │ │ │ │ ├── qcom-ipq8064-db149.dts │ │ │ │ ├── qcom-ipq8064-ea7500-v1.dts │ │ │ │ ├── qcom-ipq8064-ea8500.dts │ │ │ │ ├── qcom-ipq8064-eax500.dtsi │ │ │ │ ├── qcom-ipq8064-g10.dts │ │ │ │ ├── qcom-ipq8064-r7500.dts │ │ │ │ ├── qcom-ipq8064-r7500v2.dts │ │ │ │ ├── qcom-ipq8064-unifi-ac-hd.dts │ │ │ │ ├── qcom-ipq8064-v2.0.dtsi │ │ │ │ ├── qcom-ipq8064-vr2600v.dts │ │ │ │ ├── qcom-ipq8064-wg2600hp.dts │ │ │ │ ├── qcom-ipq8064-wpq864.dts │ │ │ │ ├── qcom-ipq8064-wxr-2533dhp.dts │ │ │ │ ├── qcom-ipq8065-nbg6817.dts │ │ │ │ ├── qcom-ipq8065-nighthawk.dtsi │ │ │ │ ├── qcom-ipq8065-r7800.dts │ │ │ │ ├── qcom-ipq8065-rt4230w-rev6.dts │ │ │ │ ├── qcom-ipq8065-tr4400-v2.dts │ │ │ │ ├── qcom-ipq8065-xr500.dts │ │ │ │ ├── qcom-ipq8065.dtsi │ │ │ │ ├── qcom-ipq8068-cryptid-common.dtsi │ │ │ │ ├── qcom-ipq8068-ecw5410.dts │ │ │ │ ├── qcom-ipq8068-mr42.dts │ │ │ │ └── qcom-ipq8068-mr52.dts │ │ │ ├── generic/ │ │ │ │ └── target.mk │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ └── generic.mk │ │ │ ├── modules.mk │ │ │ ├── patches-5.10/ │ │ │ │ ├── 0001-dtbindings-qcom_adm-Fix-channel-specifiers.patch │ │ │ │ ├── 0033-ARM-qcom-automatically-select-PCI_DOMAINS-if-PCI-is-.patch │ │ │ │ ├── 0060-HACK-arch-arm-force-ZRELADDR-on-arch-qcom.patch │ │ │ │ ├── 0065-arm-override-compiler-flags.patch │ │ │ │ ├── 0067-generic-Mangle-bootloader-s-kernel-arguments.patch │ │ │ │ ├── 0069-arm-boot-add-dts-files.patch │ │ │ │ ├── 0072-add-ipq806x-with-no-clocks.patch │ │ │ │ ├── 082-ipq8064-dtsi-tweaks.patch │ │ │ │ ├── 083-ipq8064-dtsi-additions.patch │ │ │ │ ├── 084-ipq8064-v1.0-dtsi-cleanup.patch │ │ │ │ ├── 085-ipq8064-v1.0-dtsi-additions.patch │ │ │ │ ├── 086-ipq8064-fix-duplicate-node.patch │ │ │ │ ├── 093-drivers-cpufreq-qcom-cpufreq-nvmem-support-specific-.patch │ │ │ │ ├── 097-1-ipq806x-gcc-add-missing-clk-flag.patch │ │ │ │ ├── 097-2-ipq806x-lcc-add-missing-reset.patch │ │ │ │ ├── 097-3-clk-qcom-krait-add-missing-enable-disable.patch │ │ │ │ ├── 097-4-ipq806x-gcc-add-missing-clk-and-reset-for-crypto-eng.patch │ │ │ │ ├── 098-1-cpufreq-add-Krait-dedicated-scaling-driver.patch │ │ │ │ ├── 098-2-Documentation-cpufreq-add-qcom-krait-cpufreq-binding.patch │ │ │ │ ├── 098-3-add-fab-scaling-support-with-cpufreq.patch │ │ │ │ ├── 099-1-mtd-nand-raw-qcom_nandc-add-boot_layout_mode-support.patch │ │ │ │ ├── 099-2-Documentation-devicetree-mtd-qcom_nandc-document-qco.patch │ │ │ │ ├── 100-v5.11-dmaengine-qcom-add_ADM_driver.patch │ │ │ │ ├── 101-5.12-mtd-parsers-Add-Qcom-SMEM-parser.patch │ │ │ │ ├── 101-dwmac-ipq806x-qsgmii-pcs-all-ch-ctl.patch │ │ │ │ ├── 102-mtd-rootfs-conflicts-with-OpenWrt-auto-mounting.patch │ │ │ │ ├── 103-ARM-dts-qcom-reduce-pci-IO-size-to-64K.patch │ │ │ │ ├── 104-1-drivers-thermal-tsens-Add-VER_0-tsens-version.patch │ │ │ │ ├── 104-2-drivers-thermal-tsens-Don-t-hardcode-sensor-slope.patch │ │ │ │ ├── 104-3-drivers-thermal-tsens-Convert-msm8960-to-reg_field.patch │ │ │ │ ├── 104-4-drivers-thermal-tsens-Use-init_common-for-msm8960.patch │ │ │ │ ├── 104-5-drivers-thermal-tsens-Fix-bug-in-sensor-enable-for-m.patch │ │ │ │ ├── 104-6-drivers-thermal-tsens-Replace-custom-8960-apis-with-.patch │ │ │ │ ├── 104-7-drivers-thermal-tsens-Drop-unused-define-for-msm8960.patch │ │ │ │ ├── 104-8-drivers-thermal-tsens-Add-support-for-ipq8064-tsens.patch │ │ │ │ ├── 104-9-dt-bindings-thermal-tsens-Document-ipq8064-bindings.patch │ │ │ │ ├── 105-10-drivers-thermal-tsens-Fix-wrong-slope-on-msm-8960.patch │ │ │ │ ├── 107-1-thermal-qcom-tsens-init-debugfs-only-with-successful.patch │ │ │ │ ├── 107-2-thermal-qcom-tsens-simplify-debugfs-init-function.patch │ │ │ │ ├── 108-v5.14-net-stmmac-explicitly-deassert-gmac-ahb-reset.patch │ │ │ │ ├── 109-v5.15-arm-dts-qcom-add-ahb-reset-to-ipq806x-gmac.patch │ │ │ │ ├── 850-soc-add-qualcomm-syscon.patch │ │ │ │ └── 900-arm-add-cmdline-override.patch │ │ │ └── patches-5.15/ │ │ │ ├── 0001-dtbindings-qcom_adm-Fix-channel-specifiers.patch │ │ │ ├── 0033-ARM-qcom-automatically-select-PCI_DOMAINS-if-PCI-is-.patch │ │ │ ├── 0060-HACK-arch-arm-force-ZRELADDR-on-arch-qcom.patch │ │ │ ├── 0065-arm-override-compiler-flags.patch │ │ │ ├── 0067-generic-Mangle-bootloader-s-kernel-arguments.patch │ │ │ ├── 0069-arm-boot-add-dts-files.patch │ │ │ ├── 0072-add-ipq806x-with-no-clocks.patch │ │ │ ├── 082-ipq8064-dtsi-tweaks.patch │ │ │ ├── 083-ipq8064-dtsi-additions.patch │ │ │ ├── 084-ipq8064-v1.0-dtsi-cleanup.patch │ │ │ ├── 085-ipq8064-v1.0-dtsi-additions.patch │ │ │ ├── 086-ipq8064-fix-duplicate-node.patch │ │ │ ├── 093-drivers-cpufreq-qcom-cpufreq-nvmem-support-specific-.patch │ │ │ ├── 097-1-ipq806x-gcc-add-missing-clk-flag.patch │ │ │ ├── 097-2-ipq806x-lcc-add-missing-reset.patch │ │ │ ├── 097-3-clk-qcom-krait-add-missing-enable-disable.patch │ │ │ ├── 097-4-ipq806x-gcc-add-missing-clk-and-reset-for-crypto-eng.patch │ │ │ ├── 098-1-cpufreq-add-Krait-dedicated-scaling-driver.patch │ │ │ ├── 098-2-Documentation-cpufreq-add-qcom-krait-cpufreq-binding.patch │ │ │ ├── 098-3-add-fab-scaling-support-with-cpufreq.patch │ │ │ ├── 099-1-mtd-nand-raw-qcom_nandc-add-boot_layout_mode-support.patch │ │ │ ├── 099-2-Documentation-devicetree-mtd-qcom_nandc-document-qco.patch │ │ │ ├── 101-dwmac-ipq806x-qsgmii-pcs-all-ch-ctl.patch │ │ │ ├── 102-mtd-rootfs-conflicts-with-OpenWrt-auto-mounting.patch │ │ │ ├── 103-ARM-dts-qcom-reduce-pci-IO-size-to-64K.patch │ │ │ ├── 107-1-thermal-qcom-tsens-init-debugfs-only-with-successful.patch │ │ │ ├── 107-2-thermal-qcom-tsens-simplify-debugfs-init-function.patch │ │ │ ├── 850-soc-add-qualcomm-syscon.patch │ │ │ └── 851-add-gsbi1-dts.patch │ │ ├── kirkwood/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ ├── 03_gpio_switches │ │ │ │ │ │ └── 05_compat-version │ │ │ │ │ └── init.d/ │ │ │ │ │ ├── bootcount │ │ │ │ │ └── hwmon_fancontrol │ │ │ │ ├── lib/ │ │ │ │ │ ├── preinit/ │ │ │ │ │ │ └── 07_set_iface_mac │ │ │ │ │ └── upgrade/ │ │ │ │ │ ├── linksys.sh │ │ │ │ │ └── platform.sh │ │ │ │ └── sbin/ │ │ │ │ └── ctera_c200-v1_back_to_factory │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ ├── files/ │ │ │ │ └── arch/ │ │ │ │ └── arm/ │ │ │ │ └── boot/ │ │ │ │ └── dts/ │ │ │ │ ├── kirkwood-4i-edge-200.dts │ │ │ │ ├── kirkwood-c200-v1.dts │ │ │ │ ├── kirkwood-e4200-v2.dts │ │ │ │ ├── kirkwood-ea3500.dts │ │ │ │ ├── kirkwood-ea4500.dts │ │ │ │ ├── kirkwood-goflexhome.dts │ │ │ │ ├── kirkwood-nas1.dts │ │ │ │ ├── kirkwood-nsa310b.dts │ │ │ │ ├── kirkwood-nsa310s.dts │ │ │ │ └── kirkwood-on100.dts │ │ │ ├── image/ │ │ │ │ └── Makefile │ │ │ ├── patches-5.10/ │ │ │ │ ├── 100-ib62x0.patch │ │ │ │ ├── 101-iconnect.patch │ │ │ │ ├── 102-dockstar.patch │ │ │ │ ├── 103-iomega-ix2-200.patch │ │ │ │ ├── 105-linksys-viper-dts.patch │ │ │ │ ├── 106-goflexnet.patch │ │ │ │ ├── 107-01-zyxel-nsa3x0-common-nand-partitions.patch │ │ │ │ ├── 107-03-nsa325.patch │ │ │ │ ├── 109-pogoplug_v4.patch │ │ │ │ ├── 110-pogo_e02.patch │ │ │ │ ├── 111-l-50.patch │ │ │ │ ├── 112-sheevaplug.patch │ │ │ │ ├── 113-readynas_duo_v2.patch │ │ │ │ ├── 201-enable-sata-port-specific-led-triggers.patch │ │ │ │ ├── 202-linksys-find-active-root.patch │ │ │ │ ├── 203-blackarmor-nas220.patch │ │ │ │ ├── 800-power-reset-linkstation-poweroff-prepare-for-new-dev.patch │ │ │ │ └── 801-power-reset-linkstation-poweroff-add-new-device.patch │ │ │ └── patches-5.15/ │ │ │ ├── 100-ib62x0.patch │ │ │ ├── 101-iconnect.patch │ │ │ ├── 102-dockstar.patch │ │ │ ├── 103-iomega-ix2-200.patch │ │ │ ├── 105-linksys-viper-dts.patch │ │ │ ├── 106-goflexnet.patch │ │ │ ├── 107-01-zyxel-nsa3x0-common-nand-partitions.patch │ │ │ ├── 107-03-nsa325.patch │ │ │ ├── 109-pogoplug_v4.patch │ │ │ ├── 110-pogo_e02.patch │ │ │ ├── 111-l-50.patch │ │ │ ├── 112-sheevaplug.patch │ │ │ ├── 113-readynas_duo_v2.patch │ │ │ ├── 201-enable-sata-port-specific-led-triggers.patch │ │ │ ├── 202-linksys-find-active-root.patch │ │ │ └── 203-blackarmor-nas220.patch │ │ ├── lantiq/ │ │ │ ├── Makefile │ │ │ ├── ase/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ │ └── 02_network │ │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ │ └── 01_led_migration │ │ │ │ │ └── lib/ │ │ │ │ │ ├── preinit/ │ │ │ │ │ │ └── 05_set_preinit_iface_lantiq │ │ │ │ │ └── upgrade/ │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-5.10 │ │ │ │ ├── profiles/ │ │ │ │ │ └── 00-default.mk │ │ │ │ └── target.mk │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── inittab │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ └── 02_migrate_xdsl_iface │ │ │ │ └── lib/ │ │ │ │ └── functions/ │ │ │ │ └── lantiq.sh │ │ │ ├── config-5.10 │ │ │ ├── falcon/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ │ └── 02_network │ │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ │ └── 01_led_migration │ │ │ │ │ └── lib/ │ │ │ │ │ └── upgrade/ │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-5.10 │ │ │ │ ├── profiles/ │ │ │ │ │ └── 00-default.mk │ │ │ │ └── target.mk │ │ │ ├── files/ │ │ │ │ └── arch/ │ │ │ │ └── mips/ │ │ │ │ └── boot/ │ │ │ │ └── dts/ │ │ │ │ └── lantiq/ │ │ │ │ ├── amazonse.dtsi │ │ │ │ ├── amazonse_allnet_all0333cj.dts │ │ │ │ ├── amazonse_netgear_dgn1000b.dts │ │ │ │ ├── ar9.dtsi │ │ │ │ ├── ar9_avm_fritz7312.dts │ │ │ │ ├── ar9_avm_fritz7320.dts │ │ │ │ ├── ar9_bt_homehub-v3a.dts │ │ │ │ ├── ar9_buffalo_wbmr-hp-g300h.dts │ │ │ │ ├── ar9_netgear_dgn3500.dts │ │ │ │ ├── ar9_netgear_dgn3500.dtsi │ │ │ │ ├── ar9_netgear_dgn3500b.dts │ │ │ │ ├── ar9_zte_h201l.dts │ │ │ │ ├── ar9_zyxel_p-2601hn.dts │ │ │ │ ├── danube.dtsi │ │ │ │ ├── danube_arcadyan_arv4510pw.dts │ │ │ │ ├── danube_arcadyan_arv4518pwr01.dts │ │ │ │ ├── danube_arcadyan_arv4518pwr01.dtsi │ │ │ │ ├── danube_arcadyan_arv4518pwr01a.dts │ │ │ │ ├── danube_arcadyan_arv4519pw.dts │ │ │ │ ├── danube_arcadyan_arv4520pw.dts │ │ │ │ ├── danube_arcadyan_arv4525pw.dts │ │ │ │ ├── danube_arcadyan_arv452cqw.dts │ │ │ │ ├── danube_arcadyan_arv7506pw11.dts │ │ │ │ ├── danube_arcadyan_arv7510pw22.dts │ │ │ │ ├── danube_arcadyan_arv7518pw.dts │ │ │ │ ├── danube_arcadyan_arv7519pw.dts │ │ │ │ ├── danube_arcadyan_arv7525pw.dts │ │ │ │ ├── danube_arcadyan_arv752dpw.dts │ │ │ │ ├── danube_arcadyan_arv752dpw22.dts │ │ │ │ ├── danube_arcadyan_arv8539pw22.dts │ │ │ │ ├── danube_audiocodes_mp-252.dts │ │ │ │ ├── danube_bt_homehub-v2b.dts │ │ │ │ ├── danube_lantiq_easy50712.dts │ │ │ │ ├── danube_siemens_gigaset-sx76x.dts │ │ │ │ ├── falcon.dtsi │ │ │ │ ├── falcon_lantiq_easy88388.dts │ │ │ │ ├── falcon_lantiq_easy88444.dts │ │ │ │ ├── falcon_lantiq_easy98000-nand.dts │ │ │ │ ├── falcon_lantiq_easy98000-nor.dts │ │ │ │ ├── falcon_lantiq_easy98000-sflash.dts │ │ │ │ ├── falcon_lantiq_easy98000.dtsi │ │ │ │ ├── falcon_lantiq_easy98020-v18.dts │ │ │ │ ├── falcon_lantiq_easy98020.dts │ │ │ │ ├── falcon_lantiq_easy98021.dts │ │ │ │ ├── falcon_lantiq_easy98035synce.dts │ │ │ │ ├── falcon_lantiq_easy98035synce1588.dts │ │ │ │ ├── falcon_lantiq_falcon-mdu.dts │ │ │ │ ├── falcon_lantiq_falcon-sfp.dts │ │ │ │ ├── falcon_sflash-16m.dtsi │ │ │ │ ├── vr9.dtsi │ │ │ │ ├── vr9_alphanetworks_asl56026.dts │ │ │ │ ├── vr9_arcadyan_arv7519rw22.dts │ │ │ │ ├── vr9_arcadyan_vg3503j.dts │ │ │ │ ├── vr9_arcadyan_vgv7510kw22-brn.dts │ │ │ │ ├── vr9_arcadyan_vgv7510kw22-nor.dts │ │ │ │ ├── vr9_arcadyan_vgv7510kw22.dtsi │ │ │ │ ├── vr9_arcadyan_vgv7519-brn.dts │ │ │ │ ├── vr9_arcadyan_vgv7519-nor.dts │ │ │ │ ├── vr9_arcadyan_vgv7519.dtsi │ │ │ │ ├── vr9_avm_fritz3370-rev2-hynix.dts │ │ │ │ ├── vr9_avm_fritz3370-rev2-micron.dts │ │ │ │ ├── vr9_avm_fritz3370-rev2.dtsi │ │ │ │ ├── vr9_avm_fritz3390.dts │ │ │ │ ├── vr9_avm_fritz7360-v2.dts │ │ │ │ ├── vr9_avm_fritz7360sl.dts │ │ │ │ ├── vr9_avm_fritz7362sl.dts │ │ │ │ ├── vr9_avm_fritz736x.dtsi │ │ │ │ ├── vr9_avm_fritz7412.dts │ │ │ │ ├── vr9_avm_fritz7430.dts │ │ │ │ ├── vr9_bt_homehub-v5a.dts │ │ │ │ ├── vr9_buffalo_wbmr-300hpd.dts │ │ │ │ ├── vr9_lantiq_easy80920-nand.dts │ │ │ │ ├── vr9_lantiq_easy80920-nor.dts │ │ │ │ ├── vr9_lantiq_easy80920.dtsi │ │ │ │ ├── vr9_netgear_dm200.dts │ │ │ │ ├── vr9_tplink_tdw8970.dts │ │ │ │ ├── vr9_tplink_tdw8980.dts │ │ │ │ ├── vr9_tplink_tdw89x0.dtsi │ │ │ │ ├── vr9_tplink_vr200.dts │ │ │ │ ├── vr9_tplink_vr200.dtsi │ │ │ │ ├── vr9_tplink_vr200v.dts │ │ │ │ ├── vr9_zyxel_p-2812hnu-f1.dts │ │ │ │ ├── vr9_zyxel_p-2812hnu-f3.dts │ │ │ │ └── vr9_zyxel_p-2812hnu-fx.dtsi │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── amazonse.mk │ │ │ │ ├── ar9.mk │ │ │ │ ├── danube.mk │ │ │ │ ├── eva.dummy.squashfs │ │ │ │ ├── falcon.mk │ │ │ │ ├── lzma-loader/ │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src/ │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── LzmaTypes.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board-lantiq.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── cacheops.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── cp0regdef.h │ │ │ │ │ ├── head.S │ │ │ │ │ ├── lantiq.mk │ │ │ │ │ ├── loader.c │ │ │ │ │ ├── loader.lds │ │ │ │ │ ├── loader2.lds │ │ │ │ │ ├── lzma-data.lds │ │ │ │ │ ├── printf.c │ │ │ │ │ └── printf.h │ │ │ │ ├── tp-link.mk │ │ │ │ ├── ubinize-overlay.cfg │ │ │ │ ├── ubinize.cfg │ │ │ │ ├── vr9.mk │ │ │ │ └── xway_legacy.mk │ │ │ ├── modules.mk │ │ │ ├── patches-5.10/ │ │ │ │ ├── 0001-MIPS-lantiq-add-pcie-driver.patch │ │ │ │ ├── 0004-MIPS-lantiq-add-atm-hack.patch │ │ │ │ ├── 0008-MIPS-lantiq-backport-old-timer-code.patch │ │ │ │ ├── 0018-MTD-nand-lots-of-xrx200-fixes.patch │ │ │ │ ├── 0020-MTD-lantiq-handle-NO_XIP-on-cfi0001-flash.patch │ │ │ │ ├── 0023-NET-PHY-add-led-support-for-intel-xway.patch │ │ │ │ ├── 0028-NET-lantiq-various-etop-fixes.patch │ │ │ │ ├── 0031-I2C-MIPS-lantiq-add-FALC-ON-i2c-bus-master.patch │ │ │ │ ├── 0035-owrt-lantiq-wifi-and-ethernet-eeprom-handling.patch │ │ │ │ ├── 0042-arch-mips-increase-io_space_limit.patch │ │ │ │ ├── 0050-USB-DWC2-make-the-lantiq-settings-match-vendor-drive.patch │ │ │ │ ├── 0051-MIPS-lantiq-improve-USB-initialization.patch │ │ │ │ ├── 0101-find_active_root.patch │ │ │ │ ├── 0151-lantiq-ifxmips_pcie-use-of.patch │ │ │ │ ├── 0152-lantiq-VPE.patch │ │ │ │ ├── 0154-lantiq-pci-bar11mask-fix.patch │ │ │ │ ├── 0155-lantiq-VPE-nosmp.patch │ │ │ │ ├── 0160-owrt-lantiq-multiple-flash.patch │ │ │ │ ├── 0300-MTD-cfi-cmdset-0001-disable-buffered-writes.patch │ │ │ │ ├── 0301-xrx200-add-gphy-clk-src-device-tree-binding.patch │ │ │ │ ├── 0310-v5.16-MIPS-lantiq-dma-make-the-burst-length-configurable-b.patch │ │ │ │ ├── 0701-NET-lantiq-etop-of-mido.patch │ │ │ │ ├── 0702-v5.16-net-lantiq-add-support-for-jumbo-frames.patch │ │ │ │ ├── 0703-v5.16-net-lantiq_xrx200-increase-buffer-reservation.patch │ │ │ │ ├── 0704-v5.17-net-lantiq_xrx200-add-ingress-SG-DMA-support.patch │ │ │ │ ├── 0705-v5.13-net-dsa-lantiq-allow-to-use-all-GPHYs-on-xRX300-and-.patch │ │ │ │ ├── 0706-v5.18-net-lantiq-enable-jumbo-frames-on-GSWIP.patch │ │ │ │ ├── 0710-v5.16-net-lantiq-configure-the-burst-length-in-ethernet-dr.patch │ │ │ │ ├── 0711-v5.16-net-lantiq_xrx200-Hardcode-the-burst-length-value.patch │ │ │ │ ├── 0712-v5.16-net-ethernet-lantiq_etop-Fix-compilation-error.patch │ │ │ │ ├── 0713-v5.17-MIPS-lantiq-dma-increase-descritor-count.patch │ │ │ │ ├── 0714-v5.17-net-lantiq_xrx200-increase-napi-poll-weigth.patch │ │ │ │ ├── 0715-v5.17-net-lantiq_xrx200-convert-to-build_skb.patch │ │ │ │ └── 0716-v5.17-net-lantiq_xrx200-fix-use-after-free-bug.patch │ │ │ ├── xrx200/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ │ └── 05_compat-version │ │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ │ └── firmware/ │ │ │ │ │ │ │ ├── 11-ath10k-caldata │ │ │ │ │ │ │ └── 12-ath9k-eeprom │ │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ │ └── 01_led_migration │ │ │ │ │ └── lib/ │ │ │ │ │ └── upgrade/ │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-5.10 │ │ │ │ ├── profiles/ │ │ │ │ │ └── 00-default.mk │ │ │ │ └── target.mk │ │ │ ├── xway/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ │ └── 02_network │ │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ │ └── firmware/ │ │ │ │ │ │ │ └── 12-ath9k-eeprom │ │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ │ └── 01_led_migration │ │ │ │ │ └── lib/ │ │ │ │ │ ├── preinit/ │ │ │ │ │ │ └── 05_set_preinit_iface_lantiq │ │ │ │ │ └── upgrade/ │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-5.10 │ │ │ │ ├── profiles/ │ │ │ │ │ └── 00-default.mk │ │ │ │ └── target.mk │ │ │ └── xway_legacy/ │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ └── 01_led_migration │ │ │ │ └── lib/ │ │ │ │ ├── preinit/ │ │ │ │ │ └── 05_set_preinit_iface_lantiq │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── profiles/ │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── layerscape/ │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── armv7/ │ │ │ │ ├── config-5.10 │ │ │ │ └── target.mk │ │ │ ├── armv8_64b/ │ │ │ │ ├── config-5.10 │ │ │ │ └── target.mk │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ ├── 01_led │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ └── 03_gpio_switches │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ └── 05_fix-compat-version │ │ │ │ └── lib/ │ │ │ │ ├── preinit/ │ │ │ │ │ ├── 02_sysinfo_fixup │ │ │ │ │ ├── 05_layerscape_reorder_eth │ │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── files/ │ │ │ │ └── arch/ │ │ │ │ └── arm64/ │ │ │ │ └── boot/ │ │ │ │ └── dts/ │ │ │ │ └── freescale/ │ │ │ │ ├── traverse-ls1043s.dts │ │ │ │ └── traverse-ls1043v.dts │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── armv7.mk │ │ │ │ ├── armv8_64b.mk │ │ │ │ ├── gen_sdcard_head_img.sh │ │ │ │ └── mkits-multiple-config.sh │ │ │ ├── modules.mk │ │ │ └── patches-5.10/ │ │ │ ├── 300-add-DTS-for-Traverse-LS1043-Boards.patch │ │ │ ├── 301-arm-dts-ls1021a-Add-LS1021A-IOT-board-support.patch │ │ │ ├── 302-arm64-dts-ls1012a-update-with-ppfe-support.patch │ │ │ ├── 701-staging-add-fsl_ppfe-driver.patch │ │ │ └── 702-phy-Add-2.5G-SGMII-interface-mode.patch │ │ ├── malta/ │ │ │ ├── Makefile │ │ │ ├── README │ │ │ ├── base-files/ │ │ │ │ └── etc/ │ │ │ │ ├── board.d/ │ │ │ │ │ ├── 00_model │ │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ │ ├── be/ │ │ │ │ ├── config-default │ │ │ │ └── target.mk │ │ │ ├── be64/ │ │ │ │ ├── config-default │ │ │ │ └── target.mk │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ ├── image/ │ │ │ │ └── Makefile │ │ │ ├── le/ │ │ │ │ ├── config-default │ │ │ │ └── target.mk │ │ │ └── le64/ │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── mediatek/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ └── iface/ │ │ │ │ │ │ └── 99-mtk-lro │ │ │ │ │ ├── inittab │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ └── 99_fwenv-store-ethaddr.sh │ │ │ │ └── lib/ │ │ │ │ └── preinit/ │ │ │ │ ├── 05_set_preinit_iface │ │ │ │ └── 06_set_rps_sock_flow │ │ │ ├── dts/ │ │ │ │ ├── mt7622-buffalo-wsr-2533dhp2.dts │ │ │ │ ├── mt7622-elecom-wrc-2533gent.dts │ │ │ │ ├── mt7622-linksys-e8450-ubi.dts │ │ │ │ ├── mt7622-linksys-e8450.dts │ │ │ │ ├── mt7622-linksys-e8450.dtsi │ │ │ │ ├── mt7622-rfb1-ubi.dts │ │ │ │ ├── mt7622-ruijie-rg-ew3200gx-pro.dts │ │ │ │ ├── mt7622-totolink-a8000ru.dts │ │ │ │ ├── mt7622-ubnt-unifi-6-lr-ubootmod.dts │ │ │ │ ├── mt7622-ubnt-unifi-6-lr.dts │ │ │ │ ├── mt7622-ubnt-unifi-6-lr.dtsi │ │ │ │ ├── mt7622-xiaomi-redmi-router-ax6s.dts │ │ │ │ ├── mt7623a-unielec-u7623-02-emmc-512m.dts │ │ │ │ ├── mt7623a-unielec-u7623-02.dts │ │ │ │ └── mt7623a-unielec-u7623-02.dtsi │ │ │ ├── files/ │ │ │ │ └── drivers/ │ │ │ │ ├── leds/ │ │ │ │ │ └── leds-ubnt-ledbar.c │ │ │ │ └── net/ │ │ │ │ └── phy/ │ │ │ │ ├── mtk/ │ │ │ │ │ └── mt753x/ │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── mt7530.c │ │ │ │ │ ├── mt7530.h │ │ │ │ │ ├── mt7531.c │ │ │ │ │ ├── mt7531.h │ │ │ │ │ ├── mt753x.h │ │ │ │ │ ├── mt753x_common.c │ │ │ │ │ ├── mt753x_mdio.c │ │ │ │ │ ├── mt753x_nl.c │ │ │ │ │ ├── mt753x_nl.h │ │ │ │ │ ├── mt753x_regs.h │ │ │ │ │ ├── mt753x_swconfig.c │ │ │ │ │ ├── mt753x_swconfig.h │ │ │ │ │ ├── mt753x_vlan.c │ │ │ │ │ └── mt753x_vlan.h │ │ │ │ └── rtk/ │ │ │ │ ├── Makefile │ │ │ │ ├── modules.builtin │ │ │ │ ├── rtl8367c/ │ │ │ │ │ ├── acl.c │ │ │ │ │ ├── cpu.c │ │ │ │ │ ├── dot1x.c │ │ │ │ │ ├── eee.c │ │ │ │ │ ├── i2c.c │ │ │ │ │ ├── igmp.c │ │ │ │ │ ├── include/ │ │ │ │ │ │ ├── acl.h │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── dot1x.h │ │ │ │ │ │ ├── eee.h │ │ │ │ │ │ ├── i2c.h │ │ │ │ │ │ ├── igmp.h │ │ │ │ │ │ ├── interrupt.h │ │ │ │ │ │ ├── l2.h │ │ │ │ │ │ ├── leaky.h │ │ │ │ │ │ ├── led.h │ │ │ │ │ │ ├── mirror.h │ │ │ │ │ │ ├── oam.h │ │ │ │ │ │ ├── port.h │ │ │ │ │ │ ├── ptp.h │ │ │ │ │ │ ├── qos.h │ │ │ │ │ │ ├── rate.h │ │ │ │ │ │ ├── rldp.h │ │ │ │ │ │ ├── rtk_error.h │ │ │ │ │ │ ├── rtk_hal.h │ │ │ │ │ │ ├── rtk_switch.h │ │ │ │ │ │ ├── rtk_types.h │ │ │ │ │ │ ├── rtl8367c_asicdrv.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_acl.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_cputag.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_dot1x.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_eav.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_eee.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_fc.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_green.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_hsb.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_i2c.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_igmp.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_inbwctrl.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_interrupt.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_led.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_lut.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_meter.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_mib.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_mirror.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_misc.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_oam.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_phy.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_port.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_portIsolation.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_qos.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_rldp.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_rma.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_scheduling.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_storm.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_svlan.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_trunking.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_unknownMulticast.h │ │ │ │ │ │ ├── rtl8367c_asicdrv_vlan.h │ │ │ │ │ │ ├── rtl8367c_base.h │ │ │ │ │ │ ├── rtl8367c_reg.h │ │ │ │ │ │ ├── smi.h │ │ │ │ │ │ ├── stat.h │ │ │ │ │ │ ├── storm.h │ │ │ │ │ │ ├── svlan.h │ │ │ │ │ │ ├── trap.h │ │ │ │ │ │ ├── trunk.h │ │ │ │ │ │ └── vlan.h │ │ │ │ │ ├── interrupt.c │ │ │ │ │ ├── l2.c │ │ │ │ │ ├── leaky.c │ │ │ │ │ ├── led.c │ │ │ │ │ ├── mirror.c │ │ │ │ │ ├── oam.c │ │ │ │ │ ├── port.c │ │ │ │ │ ├── ptp.c │ │ │ │ │ ├── qos.c │ │ │ │ │ ├── rate.c │ │ │ │ │ ├── rldp.c │ │ │ │ │ ├── rtk_hal.c │ │ │ │ │ ├── rtk_switch.c │ │ │ │ │ ├── rtl8367c_asicdrv.c │ │ │ │ │ ├── rtl8367c_asicdrv_acl.c │ │ │ │ │ ├── rtl8367c_asicdrv_cputag.c │ │ │ │ │ ├── rtl8367c_asicdrv_dot1x.c │ │ │ │ │ ├── rtl8367c_asicdrv_eav.c │ │ │ │ │ ├── rtl8367c_asicdrv_eee.c │ │ │ │ │ ├── rtl8367c_asicdrv_fc.c │ │ │ │ │ ├── rtl8367c_asicdrv_green.c │ │ │ │ │ ├── rtl8367c_asicdrv_hsb.c │ │ │ │ │ ├── rtl8367c_asicdrv_i2c.c │ │ │ │ │ ├── rtl8367c_asicdrv_igmp.c │ │ │ │ │ ├── rtl8367c_asicdrv_inbwctrl.c │ │ │ │ │ ├── rtl8367c_asicdrv_interrupt.c │ │ │ │ │ ├── rtl8367c_asicdrv_led.c │ │ │ │ │ ├── rtl8367c_asicdrv_lut.c │ │ │ │ │ ├── rtl8367c_asicdrv_meter.c │ │ │ │ │ ├── rtl8367c_asicdrv_mib.c │ │ │ │ │ ├── rtl8367c_asicdrv_mirror.c │ │ │ │ │ ├── rtl8367c_asicdrv_misc.c │ │ │ │ │ ├── rtl8367c_asicdrv_oam.c │ │ │ │ │ ├── rtl8367c_asicdrv_phy.c │ │ │ │ │ ├── rtl8367c_asicdrv_port.c │ │ │ │ │ ├── rtl8367c_asicdrv_portIsolation.c │ │ │ │ │ ├── rtl8367c_asicdrv_qos.c │ │ │ │ │ ├── rtl8367c_asicdrv_rldp.c │ │ │ │ │ ├── rtl8367c_asicdrv_rma.c │ │ │ │ │ ├── rtl8367c_asicdrv_scheduling.c │ │ │ │ │ ├── rtl8367c_asicdrv_storm.c │ │ │ │ │ ├── rtl8367c_asicdrv_svlan.c │ │ │ │ │ ├── rtl8367c_asicdrv_trunking.c │ │ │ │ │ ├── rtl8367c_asicdrv_unknownMulticast.c │ │ │ │ │ ├── rtl8367c_asicdrv_vlan.c │ │ │ │ │ ├── smi.c │ │ │ │ │ ├── stat.c │ │ │ │ │ ├── storm.c │ │ │ │ │ ├── svlan.c │ │ │ │ │ ├── trap.c │ │ │ │ │ ├── trunk.c │ │ │ │ │ └── vlan.c │ │ │ │ ├── rtl8367s.c │ │ │ │ ├── rtl8367s_dbg.c │ │ │ │ └── rtl8367s_mdio.c │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── gen_scatterfile.sh │ │ │ │ ├── mt7622.mk │ │ │ │ ├── mt7623.mk │ │ │ │ └── mt7629.mk │ │ │ ├── modules.mk │ │ │ ├── mt7622/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ │ └── 02_network │ │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ │ └── ieee80211/ │ │ │ │ │ │ │ └── 11_fix_wifi_mac │ │ │ │ │ │ ├── init.d/ │ │ │ │ │ │ │ └── bootcount │ │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ │ └── 09_fix_crc │ │ │ │ │ └── lib/ │ │ │ │ │ └── upgrade/ │ │ │ │ │ ├── buffalo.sh │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-5.15 │ │ │ │ └── target.mk │ │ │ ├── mt7623/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ │ └── 02_network │ │ │ │ │ │ └── inittab │ │ │ │ │ └── lib/ │ │ │ │ │ ├── preinit/ │ │ │ │ │ │ ├── 07_set_iface_mac │ │ │ │ │ │ └── 79_move_config │ │ │ │ │ └── upgrade/ │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-5.15 │ │ │ │ └── target.mk │ │ │ ├── mt7629/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ └── board.d/ │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── lib/ │ │ │ │ │ └── upgrade/ │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-5.15 │ │ │ │ └── target.mk │ │ │ └── patches-5.15/ │ │ │ ├── 100-dts-update-mt7622-rfb1.patch │ │ │ ├── 101-dts-update-mt7629-rfb.patch │ │ │ ├── 102-mt7629-enable-arch-timer.patch │ │ │ ├── 103-mt7623-enable-arch-timer.patch │ │ │ ├── 104-mt7622-add-snor-irq.patch │ │ │ ├── 105-dts-mt7622-enable-pstore.patch │ │ │ ├── 110-dts-fix-bpi2-console.patch │ │ │ ├── 111-dts-fix-bpi64-console.patch │ │ │ ├── 112-dts-fix-bpi64-lan-names.patch │ │ │ ├── 113-dts-fix-bpi64-leds-and-buttons.patch │ │ │ ├── 114-dts-bpi64-disable-rtc.patch │ │ │ ├── 115-dts-bpi64-add-snand-support.patch │ │ │ ├── 120-01-v5.18-mtd-nand-ecc-Add-infrastructure-to-support-hardware-.patch │ │ │ ├── 120-02-v5.18-mtd-nand-Add-a-new-helper-to-retrieve-the-ECC-contex.patch │ │ │ ├── 120-03-v5.18-mtd-nand-ecc-Provide-a-helper-to-retrieve-a-pileline.patch │ │ │ ├── 120-04-v5.18-spi-spi-mem-Introduce-a-capability-structure.patch │ │ │ ├── 120-05-v5.18-spi-spi-mem-Check-the-controller-extra-capabilities.patch │ │ │ ├── 120-06-v5.18-spi-spi-mem-Kill-the-spi_mem_dtr_supports_op-helper.patch │ │ │ ├── 120-07-v5.18-spi-spi-mem-Add-an-ecc-parameter-to-the-spi_mem_op-s.patch │ │ │ ├── 120-08-v5.18-mtd-spinand-Delay-a-little-bit-the-dirmap-creation.patch │ │ │ ├── 120-09-v5.18-mtd-spinand-Create-direct-mapping-descriptors-for-EC.patch │ │ │ ├── 120-11-mtd-nand-make-mtk_ecc.c-a-separated-module.patch │ │ │ ├── 120-12-spi-add-driver-for-MTK-SPI-NAND-Flash-Interface.patch │ │ │ ├── 120-13-mtd-nand-mtk-ecc-also-parse-nand-ecc-engine-if-avail.patch │ │ │ ├── 120-14-arm64-dts-mediatek-add-mtk-snfi-for-mt7622.patch │ │ │ ├── 121-hack-spi-nand-1b-bbm.patch │ │ │ ├── 130-dts-mt7629-add-snand-support.patch │ │ │ ├── 131-dts-mt7622-add-snand-support.patch │ │ │ ├── 140-dts-fix-wmac-support-for-mt7622-rfb1.patch │ │ │ ├── 150-dts-mt7623-eip97-inside-secure-support.patch │ │ │ ├── 160-dts-mt7623-bpi-r2-earlycon.patch │ │ │ ├── 161-dts-mt7623-bpi-r2-mmc-device-order.patch │ │ │ ├── 162-dts-mt7623-bpi-r2-led-aliases.patch │ │ │ ├── 163-dts-mt7623-bpi-r2-ethernet-alias.patch │ │ │ ├── 173-arm-dts-mt7623-add-musb-device-nodes.patch │ │ │ ├── 180-dts-mt7622-bpi-r64-add-mt7531-irq.patch │ │ │ ├── 190-arm64-dts-mediatek-mt7622-fix-GICv2-range.patch │ │ │ ├── 191-arm64-dts-mt7622-specify-the-L2-cache-topology.patch │ │ │ ├── 192-arm64-dts-mt7622-specify-the-number-of-DMA-requests.patch │ │ │ ├── 200-phy-phy-mtk-tphy-Add-hifsys-support.patch │ │ │ ├── 330-snand-mtk-bmt-support.patch │ │ │ ├── 331-mt7622-rfb1-enable-bmt.patch │ │ │ ├── 340-mtd-spinand-Add-support-for-the-Fidelix-FM35X1GA.patch │ │ │ ├── 400-crypto-add-eip97-inside-secure-support.patch │ │ │ ├── 401-crypto-fix-eip97-cache-incoherent.patch │ │ │ ├── 410-bt-mtk-serial-fix.patch │ │ │ ├── 420-mtd-spi-nor-add-support-for-Winbond-W25Q512JV.patch │ │ │ ├── 500-gsw-rtl8367s-mt7622-support.patch │ │ │ ├── 510-net-mediatek-add-flow-offload-for-mt7623.patch │ │ │ ├── 600-arm64-dts-mediatek-Split-PCIe-node-for-MT2712-and-MT.patch │ │ │ ├── 601-PCI-mediatek-Assert-PERST-for-100ms-for-power-and-cl.patch │ │ │ ├── 602-arm64-dts-mediatek-add-mt7622-pcie-slot-node.patch │ │ │ ├── 603-ARM-dts-mediatek-Update-mt7629-PCIe-node.patch │ │ │ ├── 610-pcie-mediatek-fix-clearing-interrupt-status.patch │ │ │ ├── 702-v5.17-net-mdio-add-helpers-to-extract-clause-45-regad-and-.patch │ │ │ ├── 703-v5.17-net-ethernet-mtk_eth_soc-implement-Clause-45-MDIO-ac.patch │ │ │ ├── 704-net-ethernet-mtk_eth_soc-announce-2500baseT.patch │ │ │ ├── 710-pci-pcie-mediatek-add-support-for-coherent-DMA.patch │ │ │ ├── 721-dts-mt7622-mediatek-fix-300mhz.patch │ │ │ ├── 800-ubnt-ledbar-driver.patch │ │ │ ├── 900-dts-mt7622-bpi-r64-aliases-for-dtoverlay.patch │ │ │ └── 910-dts-mt7622-bpi-r64-wifi-eeprom.patch │ │ ├── mpc85xx/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ ├── firmware/ │ │ │ │ │ │ │ └── 10-ath9k-eeprom │ │ │ │ │ │ └── ieee80211/ │ │ │ │ │ │ ├── 05-wifi-migrate │ │ │ │ │ │ └── 10-fix-wifi-mac │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ └── 05_fix-compat-version │ │ │ │ └── lib/ │ │ │ │ ├── preinit/ │ │ │ │ │ ├── 05_set_preinit_iface_mpc85xx │ │ │ │ │ └── 10_fix_eth_mac.sh │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── files/ │ │ │ │ └── arch/ │ │ │ │ └── powerpc/ │ │ │ │ ├── boot/ │ │ │ │ │ └── dts/ │ │ │ │ │ ├── hiveap-330.dts │ │ │ │ │ ├── panda.dts │ │ │ │ │ ├── red-15w-rev1.dts │ │ │ │ │ ├── tl-wdr4900-v1.dts │ │ │ │ │ ├── ws-ap3710i.dts │ │ │ │ │ └── ws-ap3825i.dts │ │ │ │ └── platforms/ │ │ │ │ └── 85xx/ │ │ │ │ ├── hiveap-330.c │ │ │ │ ├── panda.c │ │ │ │ ├── red15w_rev1.c │ │ │ │ ├── tl_wdr4900_v1.c │ │ │ │ ├── ws-ap3710i.c │ │ │ │ └── ws-ap3825i.c │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── p1010.mk │ │ │ │ ├── p1020.mk │ │ │ │ └── p2020.mk │ │ │ ├── p1010/ │ │ │ │ ├── config-default │ │ │ │ ├── profiles/ │ │ │ │ │ └── 00-default.mk │ │ │ │ └── target.mk │ │ │ ├── p1020/ │ │ │ │ ├── config-default │ │ │ │ ├── profiles/ │ │ │ │ │ └── 00-default.mk │ │ │ │ └── target.mk │ │ │ ├── p2020/ │ │ │ │ ├── config-default │ │ │ │ ├── profiles/ │ │ │ │ │ └── 00-default.mk │ │ │ │ └── target.mk │ │ │ └── patches-5.10/ │ │ │ ├── 001-powerpc-85xx-add-gpio-keys-to-of-match-table.patch │ │ │ ├── 100-powerpc-85xx-tl-wdr4900-v1-support.patch │ │ │ ├── 101-powerpc-85xx-hiveap-330-support.patch │ │ │ ├── 102-powerpc-add-cmdline-override.patch │ │ │ ├── 103-powerpc-85xx-red-15w-rev1.patch │ │ │ ├── 104-powerpc-mpc85xx-change-P2020RDB-dts-file-for-OpenWRT.patch │ │ │ ├── 105-powerpc-85xx-panda-support.patch │ │ │ ├── 106-powerpc-85xx-ws-ap3710i-support.patch │ │ │ ├── 107-powerpc-85xx-add-ws-ap3825i-support.patch │ │ │ └── 900-powerpc-bootwrapper-disable-uImage-generation.patch │ │ ├── mvebu/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ └── lib/ │ │ │ │ └── preinit/ │ │ │ │ └── 79_move_config │ │ │ ├── config-5.10 │ │ │ ├── cortexa53/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ └── board.d/ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── lib/ │ │ │ │ │ ├── preinit/ │ │ │ │ │ │ └── 82_uDPU │ │ │ │ │ └── upgrade/ │ │ │ │ │ ├── platform.sh │ │ │ │ │ └── uDPU.sh │ │ │ │ ├── config-5.10 │ │ │ │ └── target.mk │ │ │ ├── cortexa72/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ └── board.d/ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── lib/ │ │ │ │ │ └── upgrade/ │ │ │ │ │ ├── emmc-puzzle.sh │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-5.10 │ │ │ │ └── target.mk │ │ │ ├── cortexa9/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ │ └── 05_compat-version │ │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ │ └── ieee80211/ │ │ │ │ │ │ │ └── 00-wifi-config-migrate │ │ │ │ │ │ ├── init.d/ │ │ │ │ │ │ │ └── bootcount │ │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ │ ├── 03_wireless │ │ │ │ │ │ ├── 04_mambafan │ │ │ │ │ │ ├── 05_fix-compat-version │ │ │ │ │ │ └── 35_turris-omnia_uboot-env │ │ │ │ │ ├── lib/ │ │ │ │ │ │ ├── preinit/ │ │ │ │ │ │ │ └── 81_linksys_syscfg │ │ │ │ │ │ └── upgrade/ │ │ │ │ │ │ ├── linksys.sh │ │ │ │ │ │ └── platform.sh │ │ │ │ │ └── sbin/ │ │ │ │ │ └── fan_ctrl.sh │ │ │ │ ├── config-5.10 │ │ │ │ └── target.mk │ │ │ ├── files/ │ │ │ │ └── arch/ │ │ │ │ ├── arm/ │ │ │ │ │ └── boot/ │ │ │ │ │ └── dts/ │ │ │ │ │ ├── armada-370-buffalo-ls421de.dts │ │ │ │ │ ├── armada-370-c200-v2.dts │ │ │ │ │ ├── armada-385-linksys-venom.dts │ │ │ │ │ └── armada-385-nas1dual.dts │ │ │ │ └── arm64/ │ │ │ │ └── boot/ │ │ │ │ └── dts/ │ │ │ │ └── marvell/ │ │ │ │ ├── armada-3720-espressobin-ultra.dts │ │ │ │ ├── armada-3720-gl-mv1000.dts │ │ │ │ ├── armada-7040-mochabin.dts │ │ │ │ ├── cn9131-puzzle-m901.dts │ │ │ │ └── cn9132-puzzle-m902.dts │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── clearfog.bootscript │ │ │ │ ├── cortexa53.mk │ │ │ │ ├── cortexa72.mk │ │ │ │ ├── cortexa9.mk │ │ │ │ ├── espressobin.bootscript │ │ │ │ ├── gen_mvebu_sdcard_img.sh │ │ │ │ ├── generic-arm64.bootscript │ │ │ │ ├── turris-omnia.bootscript │ │ │ │ └── udpu.bootscript │ │ │ ├── modules.mk │ │ │ └── patches-5.10/ │ │ │ ├── 001-v5.11-arm64-dts-mcbin-singleshot-add-heartbeat-LED.patch │ │ │ ├── 002-v5.11-ARM-dts-turris-omnia-enable-HW-buffer-management.patch │ │ │ ├── 003-v5.11-ARM-dts-turris-omnia-add-comphy-handle-to-eth2.patch │ │ │ ├── 004-v5.11-ARM-dts-turris-omnia-describe-switch-interrupt.patch │ │ │ ├── 005-v5.11-ARM-dts-turris-omnia-add-SFP-node.patch │ │ │ ├── 006-v5.11-ARM-dts-turris-omnia-add-LED-controller-node.patch │ │ │ ├── 007-v5.11-ARM-dts-turris-omnia-update-ethernet-phy-node-and-handle-name.patch │ │ │ ├── 008-v5.12-ARM-dts-turris-omnia-fix-hardware-buffer-management.patch │ │ │ ├── 300-mvebu-Mangle-bootloader-s-kernel-arguments.patch │ │ │ ├── 301-mvebu-armada-38x-enable-libata-leds.patch │ │ │ ├── 302-add_powertables.patch │ │ │ ├── 303-linksys_hardcode_nand_ecc_settings.patch │ │ │ ├── 304-revert_i2c_delay.patch │ │ │ ├── 305-armada-385-rd-mtd-partitions.patch │ │ │ ├── 306-ARM-mvebu-385-ap-Add-partitions.patch │ │ │ ├── 307-armada-xp-linksys-mamba-broken-idle.patch │ │ │ ├── 308-armada-xp-linksys-mamba-wan.patch │ │ │ ├── 309-linksys-status-led.patch │ │ │ ├── 310-linksys-use-eth0-as-cpu-port.patch │ │ │ ├── 311-adjust-compatible-for-linksys.patch │ │ │ ├── 312-ARM-dts-armada388-clearfog-emmc-on-clearfog-base.patch │ │ │ ├── 313-helios4-dts-status-led-alias.patch │ │ │ ├── 314-arm64-dts-uDPU-switch-PHY-operation-mode-to-2500base.patch │ │ │ ├── 315-armada-xp-linksys-mamba-resize-kernel.patch │ │ │ ├── 316-armada-370-dts-fix-crypto-engine.patch │ │ │ ├── 400-find_active_root.patch │ │ │ ├── 700-mvneta-tx-queue-workaround.patch │ │ │ ├── 701-v5.14-net-ethernet-marvell-mvnetaMQPrio.patch │ │ │ ├── 702-net-next-ethernet-marvell-mvnetaMQPrioOffload.patch │ │ │ ├── 703-net-next-ethernet-marvell-mvnetaMQPrioFlag.patch │ │ │ ├── 704-net-next-ethernet-marvell-mvnetaMQPrioQueue.patch │ │ │ ├── 705-net-next-ethernet-marvell-mvnetaMQPrioTCOffload.patch │ │ │ ├── 800-cpuidle-mvebu-indicate-failure-to-enter-deeper-sleep.patch │ │ │ ├── 801-pci-mvebu-time-out-reset-on-link-up.patch │ │ │ ├── 901-dt-bindings-Add-IEI-vendor-prefix-and-IEI-WT61P803-P.patch │ │ │ ├── 902-drivers-mfd-Add-a-driver-for-IEI-WT61P803-PUZZLE-MCU.patch │ │ │ ├── 903-drivers-hwmon-Add-the-IEI-WT61P803-PUZZLE-HWMON-driv.patch │ │ │ ├── 904-drivers-leds-Add-the-IEI-WT61P803-PUZZLE-LED-driver.patch │ │ │ ├── 905-Documentation-ABI-Add-iei-wt61p803-puzzle-driver-sys.patch │ │ │ ├── 906-Documentation-hwmon-Add-iei-wt61p803-puzzle-hwmon-dr.patch │ │ │ ├── 907-MAINTAINERS-Add-an-entry-for-the-IEI-WT61P803-PUZZLE.patch │ │ │ └── 910-drivers-leds-wt61p803-puzzle-improvements.patch │ │ ├── mxs/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ └── etc/ │ │ │ │ ├── board.d/ │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── inittab │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ ├── image/ │ │ │ │ ├── Config.in │ │ │ │ ├── Makefile │ │ │ │ ├── gen_sdcard_ext4_ext4.sh │ │ │ │ └── gen_sdcard_vfat_ext4.sh │ │ │ └── profiles/ │ │ │ ├── 01-duckbill.mk │ │ │ ├── 02-olinuxino-maxi.mk │ │ │ └── 03-olinuxino-micro.mk │ │ ├── octeon/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ └── board.d/ │ │ │ │ │ └── 01_network │ │ │ │ └── lib/ │ │ │ │ ├── preinit/ │ │ │ │ │ ├── 01_sysinfo │ │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ ├── files/ │ │ │ │ └── arch/ │ │ │ │ └── mips/ │ │ │ │ └── boot/ │ │ │ │ └── dts/ │ │ │ │ └── cavium-octeon/ │ │ │ │ ├── cn7130_ubnt_edgerouter-4.dts │ │ │ │ ├── cn7130_ubnt_edgerouter-6p.dts │ │ │ │ ├── cn7130_ubnt_edgerouter-e300.dtsi │ │ │ │ └── cn71xx.dtsi │ │ │ ├── image/ │ │ │ │ └── Makefile │ │ │ ├── patches-5.10/ │ │ │ │ ├── 100-ubnt_edgerouter2_support.patch │ │ │ │ ├── 110-er200-ethernet_probe_order.patch │ │ │ │ ├── 120-cmdline-hack.patch │ │ │ │ ├── 130-itus_shield_support.patch │ │ │ │ ├── 140-octeon_e300_support.patch │ │ │ │ ├── 700-allocate_interface_by_label.patch │ │ │ │ └── 701-honor_sgmii_node_device_tree_status.patch │ │ │ ├── patches-5.15/ │ │ │ │ ├── 100-ubnt_edgerouter2_support.patch │ │ │ │ ├── 110-er200-ethernet_probe_order.patch │ │ │ │ ├── 120-cmdline-hack.patch │ │ │ │ ├── 130-add_itus_support.patch │ │ │ │ ├── 700-allocate_interface_by_label.patch │ │ │ │ └── 701-honor_sgmii_node_device_tree_status.patch │ │ │ └── profiles/ │ │ │ └── 000-Generic.mk │ │ ├── octeontx/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ └── etc/ │ │ │ │ ├── board.d/ │ │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ │ ├── config-5.10 │ │ │ ├── image/ │ │ │ │ └── Makefile │ │ │ └── patches-5.10/ │ │ │ └── 0004-PCI-add-quirk-for-Gateworks-PLX-PEX860x-switch-with-.patch │ │ ├── omap/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ └── inittab │ │ │ │ └── lib/ │ │ │ │ ├── preinit/ │ │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── image/ │ │ │ │ ├── Config.in │ │ │ │ ├── Makefile │ │ │ │ ├── gen_omap_sdcard_img.sh │ │ │ │ └── ubinize.cfg │ │ │ └── profiles/ │ │ │ └── 00-default.mk │ │ ├── oxnas/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── init.d/ │ │ │ │ │ └── set-irq-affinity │ │ │ │ └── lib/ │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── files/ │ │ │ │ ├── arch/ │ │ │ │ │ └── arm/ │ │ │ │ │ ├── boot/ │ │ │ │ │ │ └── dts/ │ │ │ │ │ │ ├── ox820-akitio-mycloud.dts │ │ │ │ │ │ ├── ox820-cloudengines-pogoplugpro.dts │ │ │ │ │ │ ├── ox820-mitrastar-stg-212.dts │ │ │ │ │ │ └── ox820-shuttle-kd20.dts │ │ │ │ │ └── include/ │ │ │ │ │ └── debug/ │ │ │ │ │ └── uncompress-ox820.h │ │ │ │ └── drivers/ │ │ │ │ ├── ata/ │ │ │ │ │ └── sata_oxnas.c │ │ │ │ ├── pci/ │ │ │ │ │ └── controller/ │ │ │ │ │ └── pcie-oxnas.c │ │ │ │ ├── phy/ │ │ │ │ │ └── phy-oxnas-pcie.c │ │ │ │ ├── power/ │ │ │ │ │ └── reset/ │ │ │ │ │ └── oxnas-restart.c │ │ │ │ └── usb/ │ │ │ │ └── host/ │ │ │ │ └── ehci-oxnas.c │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── ox810se.mk │ │ │ │ └── ox820.mk │ │ │ ├── modules.mk │ │ │ ├── ox810se/ │ │ │ │ ├── config-default │ │ │ │ ├── profiles/ │ │ │ │ │ └── 00-default.mk │ │ │ │ └── target.mk │ │ │ ├── ox820/ │ │ │ │ ├── config-default │ │ │ │ ├── profiles/ │ │ │ │ │ └── 00-default.mk │ │ │ │ └── target.mk │ │ │ └── patches-5.10/ │ │ │ ├── 010-pogoplug-series-3.patch │ │ │ ├── 050-ox820-remove-left-overs.patch │ │ │ ├── 100-oxnas-clk-plla-pllb.patch │ │ │ ├── 150-oxnas-restart.patch │ │ │ ├── 320-oxnas-phy-pcie.patch │ │ │ ├── 340-oxnas-pcie.patch │ │ │ ├── 500-oxnas-sata.patch │ │ │ ├── 510-ox820-libata-leds.patch │ │ │ ├── 800-oxnas-ehci.patch │ │ │ ├── 996-generic-Mangle-bootloader-s-kernel-arguments.patch │ │ │ └── 999-libata-hacks.patch │ │ ├── pistachio/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ └── board.d/ │ │ │ │ │ └── 02_network │ │ │ │ └── lib/ │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── image/ │ │ │ │ └── Makefile │ │ │ ├── patches-5.10/ │ │ │ │ ├── 101-dmaengine-img-mdc-Handle-early-status-read.patch │ │ │ │ ├── 102-spi-img-spfi-Implement-dual-and-quad-mode.patch │ │ │ │ ├── 104-spi-img-spfi-use-device-0-configuration-for-all-devi.patch │ │ │ │ ├── 105-spi-img-spfi-RX-maximum-burst-size-for-DMA-is-8.patch │ │ │ │ ├── 106-spi-img-spfi-finish-every-transfer-cleanly.patch │ │ │ │ ├── 108-clk-pistachio-Fix-wrong-SDHost-card-speed.patch │ │ │ │ ├── 109-MIPS-DTS-img-marduk-switch-mmc-to-1-bit-mode.patch │ │ │ │ ├── 401-mtd-nor-support-mtd-name-from-device-tree.patch │ │ │ │ ├── 901-MIPS-DTS-img-marduk-Add-SPI-NAND-flash.patch │ │ │ │ ├── 902-MIPS-DTS-img-marduk-Add-Cascoda-CA8210-6LoWPAN.patch │ │ │ │ ├── 903-MIPS-DTS-img-marduk-Add-NXP-SC16IS752IPW.patch │ │ │ │ ├── 904-MIPS-DTS-img-marduk-Add-partition-name.patch │ │ │ │ └── 905-MIPS-DTS-img-marduk-Add-led-aliases.patch │ │ │ └── profiles/ │ │ │ └── 00-default.mk │ │ ├── qoriq/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ └── board.d/ │ │ │ │ │ └── 02_network │ │ │ │ └── lib/ │ │ │ │ ├── preinit/ │ │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── files/ │ │ │ │ └── arch/ │ │ │ │ └── powerpc/ │ │ │ │ └── boot/ │ │ │ │ └── dts/ │ │ │ │ └── fsl/ │ │ │ │ └── watchguard-firebox-m300.dts │ │ │ ├── generic/ │ │ │ │ └── target.mk │ │ │ └── image/ │ │ │ ├── Makefile │ │ │ └── generic.mk │ │ ├── ramips/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ └── etc/ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ └── usb/ │ │ │ │ │ └── 10-motion │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults/ │ │ │ │ ├── 04_led_migration │ │ │ │ └── 09_fix-checksum │ │ │ ├── dts/ │ │ │ │ ├── mt7620a.dtsi │ │ │ │ ├── mt7620a_aigale_ai-br100.dts │ │ │ │ ├── mt7620a_alfa-network_ac1200rm.dts │ │ │ │ ├── mt7620a_alfa-network_r36m-e4g.dts │ │ │ │ ├── mt7620a_alfa-network_tube-e4g.dts │ │ │ │ ├── mt7620a_asus_rp-n53.dts │ │ │ │ ├── mt7620a_asus_rt-ac51u.dts │ │ │ │ ├── mt7620a_asus_rt-ac54u.dts │ │ │ │ ├── mt7620a_asus_rt-ac5x.dtsi │ │ │ │ ├── mt7620a_bdcom_wap2100-sk.dts │ │ │ │ ├── mt7620a_buffalo_whr-1166d.dts │ │ │ │ ├── mt7620a_buffalo_whr-300hp2.dts │ │ │ │ ├── mt7620a_buffalo_whr-600d.dts │ │ │ │ ├── mt7620a_cameo_810.dtsi │ │ │ │ ├── mt7620a_dlink_dch-m225.dts │ │ │ │ ├── mt7620a_dlink_dir-510l.dts │ │ │ │ ├── mt7620a_dlink_dir-810l.dts │ │ │ │ ├── mt7620a_dlink_dwr-118-a1.dts │ │ │ │ ├── mt7620a_dlink_dwr-118-a2.dts │ │ │ │ ├── mt7620a_dlink_dwr-960.dts │ │ │ │ ├── mt7620a_dlink_dwr-961-a1.dts │ │ │ │ ├── mt7620a_dlink_dwr-96x.dtsi │ │ │ │ ├── mt7620a_domywifi.dtsi │ │ │ │ ├── mt7620a_domywifi_dm202.dts │ │ │ │ ├── mt7620a_domywifi_dm203.dts │ │ │ │ ├── mt7620a_domywifi_dw22d.dts │ │ │ │ ├── mt7620a_dovado_tiny-ac.dts │ │ │ │ ├── mt7620a_edimax_br-6478ac-v2.dts │ │ │ │ ├── mt7620a_edimax_ew-7476rpc.dts │ │ │ │ ├── mt7620a_edimax_ew-7478ac.dts │ │ │ │ ├── mt7620a_edimax_ew-7478apc.dts │ │ │ │ ├── mt7620a_edimax_ew-747x.dtsi │ │ │ │ ├── mt7620a_engenius_esr600.dts │ │ │ │ ├── mt7620a_fon_fon2601.dts │ │ │ │ ├── mt7620a_glinet_gl-mt300a.dts │ │ │ │ ├── mt7620a_glinet_gl-mt300n.dts │ │ │ │ ├── mt7620a_glinet_gl-mt750.dts │ │ │ │ ├── mt7620a_head-weblink_hdrm200.dts │ │ │ │ ├── mt7620a_hiwifi_hc5661.dts │ │ │ │ ├── mt7620a_hiwifi_hc5761.dts │ │ │ │ ├── mt7620a_hiwifi_hc5861.dts │ │ │ │ ├── mt7620a_hiwifi_hc5x61.dtsi │ │ │ │ ├── mt7620a_hnet_c108.dts │ │ │ │ ├── mt7620a_humax_e2.dts │ │ │ │ ├── mt7620a_iodata_wn-ac1167gr.dts │ │ │ │ ├── mt7620a_iodata_wn-ac733gr3.dts │ │ │ │ ├── mt7620a_iptime.dtsi │ │ │ │ ├── mt7620a_iptime_a1004ns.dts │ │ │ │ ├── mt7620a_iptime_a104ns.dts │ │ │ │ ├── mt7620a_kimax_u25awf-h1.dts │ │ │ │ ├── mt7620a_lava_lr-25g001.dts │ │ │ │ ├── mt7620a_lb-link_bl-w1200.dts │ │ │ │ ├── mt7620a_lenovo_newifi-y1.dts │ │ │ │ ├── mt7620a_lenovo_newifi-y1.dtsi │ │ │ │ ├── mt7620a_lenovo_newifi-y1s.dts │ │ │ │ ├── mt7620a_linksys_e1700.dts │ │ │ │ ├── mt7620a_microduino_microwrt.dts │ │ │ │ ├── mt7620a_netgear_ex2700.dts │ │ │ │ ├── mt7620a_netgear_ex3700.dts │ │ │ │ ├── mt7620a_netgear_ex3x00_ex61xx.dtsi │ │ │ │ ├── mt7620a_netgear_ex6120.dts │ │ │ │ ├── mt7620a_netgear_ex6130.dts │ │ │ │ ├── mt7620a_netgear_wn3000rp-v3.dts │ │ │ │ ├── mt7620a_netgear_wn3100rp-v2.dts │ │ │ │ ├── mt7620a_netgear_wn3x00rp.dtsi │ │ │ │ ├── mt7620a_netis_wf2770.dts │ │ │ │ ├── mt7620a_ohyeah_oy-0001.dts │ │ │ │ ├── mt7620a_phicomm_k2-v22.4.dts │ │ │ │ ├── mt7620a_phicomm_k2-v22.5.dts │ │ │ │ ├── mt7620a_phicomm_k2g.dts │ │ │ │ ├── mt7620a_phicomm_k2x.dtsi │ │ │ │ ├── mt7620a_phicomm_psg1208.dts │ │ │ │ ├── mt7620a_phicomm_psg1218b.dts │ │ │ │ ├── mt7620a_planex_cs-qr10.dts │ │ │ │ ├── mt7620a_planex_db-wrt01.dts │ │ │ │ ├── mt7620a_planex_mzk-750dhp.dts │ │ │ │ ├── mt7620a_planex_mzk-ex300np.dts │ │ │ │ ├── mt7620a_planex_mzk-ex750np.dts │ │ │ │ ├── mt7620a_ralink_mt7620a-evb.dts │ │ │ │ ├── mt7620a_ralink_mt7620a-mt7530-evb.dts │ │ │ │ ├── mt7620a_ralink_mt7620a-mt7610e-evb.dts │ │ │ │ ├── mt7620a_ralink_mt7620a-v22sg-evb.dts │ │ │ │ ├── mt7620a_sanlinking_d240.dts │ │ │ │ ├── mt7620a_sercomm_na930.dts │ │ │ │ ├── mt7620a_sitecom_wlr-4100-v1-002.dts │ │ │ │ ├── mt7620a_tplink_archer-c2-v1.dts │ │ │ │ ├── mt7620a_tplink_archer-c20-v1.dts │ │ │ │ ├── mt7620a_tplink_archer-c20i.dts │ │ │ │ ├── mt7620a_tplink_archer-c50-v1.dts │ │ │ │ ├── mt7620a_tplink_archer-mr200.dts │ │ │ │ ├── mt7620a_tplink_archer.dtsi │ │ │ │ ├── mt7620a_tplink_re200-v1.dts │ │ │ │ ├── mt7620a_tplink_re210-v1.dts │ │ │ │ ├── mt7620a_tplink_re2x0-v1.dtsi │ │ │ │ ├── mt7620a_trendnet_tew-810dr.dts │ │ │ │ ├── mt7620a_wavlink_wl-wn530hg4.dts │ │ │ │ ├── mt7620a_wavlink_wl-wn535k1.dts │ │ │ │ ├── mt7620a_wavlink_wl-wn579x3.dts │ │ │ │ ├── mt7620a_wevo_air-duo.dts │ │ │ │ ├── mt7620a_xiaomi_miwifi-mini.dts │ │ │ │ ├── mt7620a_youku_yk-l1.dts │ │ │ │ ├── mt7620a_youku_yk-l1.dtsi │ │ │ │ ├── mt7620a_youku_yk-l1c.dts │ │ │ │ ├── mt7620a_yukai_bocco.dts │ │ │ │ ├── mt7620a_zbtlink_zbt-ape522ii.dts │ │ │ │ ├── mt7620a_zbtlink_zbt-we1026-5g-16m.dts │ │ │ │ ├── mt7620a_zbtlink_zbt-we1026-5g.dtsi │ │ │ │ ├── mt7620a_zbtlink_zbt-we1026-h-32m.dts │ │ │ │ ├── mt7620a_zbtlink_zbt-we1026-h.dtsi │ │ │ │ ├── mt7620a_zbtlink_zbt-we1026.dtsi │ │ │ │ ├── mt7620a_zbtlink_zbt-we826-16m.dts │ │ │ │ ├── mt7620a_zbtlink_zbt-we826-32m.dts │ │ │ │ ├── mt7620a_zbtlink_zbt-we826-e.dts │ │ │ │ ├── mt7620a_zbtlink_zbt-we826.dtsi │ │ │ │ ├── mt7620a_zte_q7.dts │ │ │ │ ├── mt7620a_zyxel_keenetic-viva.dts │ │ │ │ ├── mt7620n.dtsi │ │ │ │ ├── mt7620n_asus_rt-n12p.dts │ │ │ │ ├── mt7620n_asus_rt-n14u.dts │ │ │ │ ├── mt7620n_buffalo_wmr-300.dts │ │ │ │ ├── mt7620n_comfast_cf-wr800n.dts │ │ │ │ ├── mt7620n_dlink_dwr-116-a1.dts │ │ │ │ ├── mt7620n_dlink_dwr-921-c1.dts │ │ │ │ ├── mt7620n_dlink_dwr-922-e2.dts │ │ │ │ ├── mt7620n_elecom_wrh-300cr.dts │ │ │ │ ├── mt7620n_hootoo_ht-tm05.dts │ │ │ │ ├── mt7620n_kimax_u35wf.dts │ │ │ │ ├── mt7620n_kingston_mlw221.dts │ │ │ │ ├── mt7620n_kingston_mlwg2.dts │ │ │ │ ├── mt7620n_netgear_jwnr2010-v5.dts │ │ │ │ ├── mt7620n_netgear_n300.dtsi │ │ │ │ ├── mt7620n_nexx_wt3020-4m.dts │ │ │ │ ├── mt7620n_nexx_wt3020-8m.dts │ │ │ │ ├── mt7620n_nexx_wt3020.dtsi │ │ │ │ ├── mt7620n_ravpower_rp-wd03.dts │ │ │ │ ├── mt7620n_sunvalley_filehub.dtsi │ │ │ │ ├── mt7620n_vonets_var11n-300.dts │ │ │ │ ├── mt7620n_wrtnode_wrtnode.dts │ │ │ │ ├── mt7620n_zbtlink_zbt-cpe102.dts │ │ │ │ ├── mt7620n_zbtlink_zbt-wa05.dts │ │ │ │ ├── mt7620n_zbtlink_zbt-we2026.dts │ │ │ │ ├── mt7620n_zbtlink_zbt-wr8305rt.dts │ │ │ │ ├── mt7620n_zyxel_keenetic-omni-ii.dts │ │ │ │ ├── mt7620n_zyxel_keenetic-omni.dts │ │ │ │ ├── mt7621.dtsi │ │ │ │ ├── mt7621_adslr_g7.dts │ │ │ │ ├── mt7621_afoundry_ew1200.dts │ │ │ │ ├── mt7621_alfa-network_quad-e4g.dts │ │ │ │ ├── mt7621_ampedwireless_ally-00x19k.dts │ │ │ │ ├── mt7621_ampedwireless_ally-r1900k.dts │ │ │ │ ├── mt7621_ampedwireless_ally.dtsi │ │ │ │ ├── mt7621_asiarf_ap7621-001.dts │ │ │ │ ├── mt7621_asiarf_ap7621-nv1.dts │ │ │ │ ├── mt7621_asiarf_ap7621.dtsi │ │ │ │ ├── mt7621_asus_rt-ac57u.dts │ │ │ │ ├── mt7621_asus_rt-ac65p.dts │ │ │ │ ├── mt7621_asus_rt-ac85p.dts │ │ │ │ ├── mt7621_asus_rt-acx5p.dtsi │ │ │ │ ├── mt7621_asus_rt-n56u-b1.dts │ │ │ │ ├── mt7621_beeline_smartbox-flash.dts │ │ │ │ ├── mt7621_bolt_arion.dts │ │ │ │ ├── mt7621_buffalo_wsr-1166dhp.dts │ │ │ │ ├── mt7621_buffalo_wsr-2533dhpl.dts │ │ │ │ ├── mt7621_buffalo_wsr-600dhp.dts │ │ │ │ ├── mt7621_cudy_wr1300.dts │ │ │ │ ├── mt7621_cudy_wr2100.dts │ │ │ │ ├── mt7621_cudy_x6.dts │ │ │ │ ├── mt7621_d-team_newifi-d2.dts │ │ │ │ ├── mt7621_d-team_pbr-m1.dts │ │ │ │ ├── mt7621_dlink_dir-1960-a1.dts │ │ │ │ ├── mt7621_dlink_dir-2640-a1.dts │ │ │ │ ├── mt7621_dlink_dir-2660-a1.dts │ │ │ │ ├── mt7621_dlink_dir-853-a3.dts │ │ │ │ ├── mt7621_dlink_dir-853-r1.dts │ │ │ │ ├── mt7621_dlink_dir-860l-b1.dts │ │ │ │ ├── mt7621_dlink_dir-867-a1.dts │ │ │ │ ├── mt7621_dlink_dir-878-a1.dts │ │ │ │ ├── mt7621_dlink_dir-878-r1.dts │ │ │ │ ├── mt7621_dlink_dir-882-a1.dts │ │ │ │ ├── mt7621_dlink_dir-882-r1.dts │ │ │ │ ├── mt7621_dlink_dir-8xx.dtsi │ │ │ │ ├── mt7621_dlink_dir-xx60-a1.dtsi │ │ │ │ ├── mt7621_dlink_flash-16m-a1.dtsi │ │ │ │ ├── mt7621_dlink_flash-16m-r1.dtsi │ │ │ │ ├── mt7621_dual-q_h721.dts │ │ │ │ ├── mt7621_edimax_ra21s.dts │ │ │ │ ├── mt7621_edimax_re23s.dts │ │ │ │ ├── mt7621_edimax_rg21s.dts │ │ │ │ ├── mt7621_edimax_rx21s.dtsi │ │ │ │ ├── mt7621_elecom_wrc-1167ghbk2-s.dts │ │ │ │ ├── mt7621_elecom_wrc-1167gs2-b.dts │ │ │ │ ├── mt7621_elecom_wrc-1167gst2.dts │ │ │ │ ├── mt7621_elecom_wrc-1750gs.dts │ │ │ │ ├── mt7621_elecom_wrc-1750gst2.dts │ │ │ │ ├── mt7621_elecom_wrc-1750gsv.dts │ │ │ │ ├── mt7621_elecom_wrc-1900gst.dts │ │ │ │ ├── mt7621_elecom_wrc-2533ghbk-i.dts │ │ │ │ ├── mt7621_elecom_wrc-2533gs2.dts │ │ │ │ ├── mt7621_elecom_wrc-2533gst.dts │ │ │ │ ├── mt7621_elecom_wrc-2533gst2.dts │ │ │ │ ├── mt7621_elecom_wrc-gs-1pci.dtsi │ │ │ │ ├── mt7621_elecom_wrc-gs-2pci.dtsi │ │ │ │ ├── mt7621_elecom_wrc-gs.dtsi │ │ │ │ ├── mt7621_firefly_firewrt.dts │ │ │ │ ├── mt7621_gehua_ghl-r-001.dts │ │ │ │ ├── mt7621_glinet_gl-mt1300.dts │ │ │ │ ├── mt7621_gnubee_gb-pc1.dts │ │ │ │ ├── mt7621_gnubee_gb-pc2.dts │ │ │ │ ├── mt7621_hilink_hlk-7621a-evb.dts │ │ │ │ ├── mt7621_hiwifi_hc5962.dts │ │ │ │ ├── mt7621_humax_e10.dts │ │ │ │ ├── mt7621_iodata_wn-ax1167gr.dts │ │ │ │ ├── mt7621_iodata_wn-ax1167gr2.dts │ │ │ │ ├── mt7621_iodata_wn-ax2033gr.dts │ │ │ │ ├── mt7621_iodata_wn-dx1167r.dts │ │ │ │ ├── mt7621_iodata_wn-dx1200gr.dts │ │ │ │ ├── mt7621_iodata_wn-dx2033gr.dts │ │ │ │ ├── mt7621_iodata_wn-gx300gr.dts │ │ │ │ ├── mt7621_iodata_wn-xx-xr.dtsi │ │ │ │ ├── mt7621_iodata_wnpr2600g.dts │ │ │ │ ├── mt7621_iptime_a3002mesh.dts │ │ │ │ ├── mt7621_iptime_a3004ns-dual.dts │ │ │ │ ├── mt7621_iptime_a3004t.dts │ │ │ │ ├── mt7621_iptime_a6004ns-m.dts │ │ │ │ ├── mt7621_iptime_a6004ns-m.dtsi │ │ │ │ ├── mt7621_iptime_a6ns-m.dts │ │ │ │ ├── mt7621_iptime_a8004t.dts │ │ │ │ ├── mt7621_iptime_ax2004m.dts │ │ │ │ ├── mt7621_iptime_t5004.dts │ │ │ │ ├── mt7621_jcg_jhr-ac876m.dts │ │ │ │ ├── mt7621_jcg_q20.dts │ │ │ │ ├── mt7621_jcg_y2.dts │ │ │ │ ├── mt7621_lenovo_newifi-d1.dts │ │ │ │ ├── mt7621_linksys_e5600.dts │ │ │ │ ├── mt7621_linksys_ea6350-v4.dts │ │ │ │ ├── mt7621_linksys_ea7300-v1.dts │ │ │ │ ├── mt7621_linksys_ea7300-v2.dts │ │ │ │ ├── mt7621_linksys_ea7500-v2.dts │ │ │ │ ├── mt7621_linksys_ea7xxx.dtsi │ │ │ │ ├── mt7621_linksys_ea8100-v1.dts │ │ │ │ ├── mt7621_linksys_ea8100-v2.dts │ │ │ │ ├── mt7621_linksys_re6500.dts │ │ │ │ ├── mt7621_mediatek_ap-mt7621a-v60.dts │ │ │ │ ├── mt7621_mediatek_mt7621-eval-board.dts │ │ │ │ ├── mt7621_mikrotik.dtsi │ │ │ │ ├── mt7621_mikrotik_routerboard-750gr3.dts │ │ │ │ ├── mt7621_mikrotik_routerboard-760igs.dts │ │ │ │ ├── mt7621_mikrotik_routerboard-7xx.dtsi │ │ │ │ ├── mt7621_mikrotik_routerboard-m11g.dts │ │ │ │ ├── mt7621_mikrotik_routerboard-m33g.dts │ │ │ │ ├── mt7621_mqmaker_witi.dts │ │ │ │ ├── mt7621_mtc_wr1201.dts │ │ │ │ ├── mt7621_netgear_ex6150.dts │ │ │ │ ├── mt7621_netgear_r6220.dts │ │ │ │ ├── mt7621_netgear_r6260.dts │ │ │ │ ├── mt7621_netgear_r6350.dts │ │ │ │ ├── mt7621_netgear_r6700-v2.dts │ │ │ │ ├── mt7621_netgear_r6800.dts │ │ │ │ ├── mt7621_netgear_r6850.dts │ │ │ │ ├── mt7621_netgear_r6900-v2.dts │ │ │ │ ├── mt7621_netgear_r7200.dts │ │ │ │ ├── mt7621_netgear_r7450.dts │ │ │ │ ├── mt7621_netgear_sercomm_ayx.dtsi │ │ │ │ ├── mt7621_netgear_sercomm_bzv.dtsi │ │ │ │ ├── mt7621_netgear_sercomm_chj.dtsi │ │ │ │ ├── mt7621_netgear_wac104.dts │ │ │ │ ├── mt7621_netgear_wac124.dts │ │ │ │ ├── mt7621_netgear_wndr3700-v5.dts │ │ │ │ ├── mt7621_netis_wf2881.dts │ │ │ │ ├── mt7621_oraybox_x3a.dts │ │ │ │ ├── mt7621_phicomm_k2p.dts │ │ │ │ ├── mt7621_planex_vr500.dts │ │ │ │ ├── mt7621_raisecom_msg1500-x-00.dts │ │ │ │ ├── mt7621_renkforce_ws-wn530hp3-a.dts │ │ │ │ ├── mt7621_samknows_whitebox-v8.dts │ │ │ │ ├── mt7621_sercomm_na502.dts │ │ │ │ ├── mt7621_storylink_sap-g3200u3.dts │ │ │ │ ├── mt7621_telco-electronics_x1.dts │ │ │ │ ├── mt7621_tenbay_t-mb5eu-v01.dts │ │ │ │ ├── mt7621_thunder_timecloud.dts │ │ │ │ ├── mt7621_totolink_a7000r.dts │ │ │ │ ├── mt7621_totolink_x5000r.dts │ │ │ │ ├── mt7621_tplink_archer-a6-v3.dts │ │ │ │ ├── mt7621_tplink_archer-c6-v3.dts │ │ │ │ ├── mt7621_tplink_archer-c6u-v1.dts │ │ │ │ ├── mt7621_tplink_archer-x6-v3.dtsi │ │ │ │ ├── mt7621_tplink_eap235-wall-v1.dts │ │ │ │ ├── mt7621_tplink_eap615-wall-v1.dts │ │ │ │ ├── mt7621_tplink_re350-v1.dts │ │ │ │ ├── mt7621_tplink_re500-v1.dts │ │ │ │ ├── mt7621_tplink_re650-v1.dts │ │ │ │ ├── mt7621_tplink_re650-v2.dts │ │ │ │ ├── mt7621_tplink_rexx0-v1.dtsi │ │ │ │ ├── mt7621_tplink_tl-wpa8631p-v3.dts │ │ │ │ ├── mt7621_ubnt_edgerouter-x-sfp.dts │ │ │ │ ├── mt7621_ubnt_edgerouter-x.dts │ │ │ │ ├── mt7621_ubnt_edgerouter-x.dtsi │ │ │ │ ├── mt7621_ubnt_unifi-6-lite.dts │ │ │ │ ├── mt7621_ubnt_unifi-nanohd.dts │ │ │ │ ├── mt7621_ubnt_unifi.dtsi │ │ │ │ ├── mt7621_ubnt_usw-flex.dts │ │ │ │ ├── mt7621_unielec_u7621-01-16m.dts │ │ │ │ ├── mt7621_unielec_u7621-01.dtsi │ │ │ │ ├── mt7621_unielec_u7621-06-16m.dts │ │ │ │ ├── mt7621_unielec_u7621-06-64m.dts │ │ │ │ ├── mt7621_unielec_u7621-06.dtsi │ │ │ │ ├── mt7621_wavlink_wl-wn531a6.dts │ │ │ │ ├── mt7621_wavlink_wl-wn533a8.dts │ │ │ │ ├── mt7621_wavlink_wl-wn53xax.dtsi │ │ │ │ ├── mt7621_wevo_11acnas.dts │ │ │ │ ├── mt7621_wevo_w2914ns-v2.dts │ │ │ │ ├── mt7621_wevo_w2914ns-v2.dtsi │ │ │ │ ├── mt7621_winstars_ws-wn583a6.dts │ │ │ │ ├── mt7621_xiaomi_mi-router-3-pro.dts │ │ │ │ ├── mt7621_xiaomi_mi-router-3g-v2.dts │ │ │ │ ├── mt7621_xiaomi_mi-router-3g.dts │ │ │ │ ├── mt7621_xiaomi_mi-router-4.dts │ │ │ │ ├── mt7621_xiaomi_mi-router-4a-3g-v2.dtsi │ │ │ │ ├── mt7621_xiaomi_mi-router-4a-gigabit.dts │ │ │ │ ├── mt7621_xiaomi_mi-router-ac2100.dts │ │ │ │ ├── mt7621_xiaomi_mi-router-cr6606.dts │ │ │ │ ├── mt7621_xiaomi_mi-router-cr6608.dts │ │ │ │ ├── mt7621_xiaomi_mi-router-cr6609.dts │ │ │ │ ├── mt7621_xiaomi_mi-router-cr660x.dtsi │ │ │ │ ├── mt7621_xiaomi_nand_128m.dtsi │ │ │ │ ├── mt7621_xiaomi_redmi-router-ac2100.dts │ │ │ │ ├── mt7621_xiaomi_router-ac2100.dtsi │ │ │ │ ├── mt7621_xiaoyu_xy-c5.dts │ │ │ │ ├── mt7621_xzwifi_creativebox-v1.dts │ │ │ │ ├── mt7621_youhua_wr1200js.dts │ │ │ │ ├── mt7621_youku_yk-l2.dts │ │ │ │ ├── mt7621_yuncore_ax820.dts │ │ │ │ ├── mt7621_zbtlink_zbt-we1326.dts │ │ │ │ ├── mt7621_zbtlink_zbt-we3526.dts │ │ │ │ ├── mt7621_zbtlink_zbt-wg1602-16m.dts │ │ │ │ ├── mt7621_zbtlink_zbt-wg1602.dtsi │ │ │ │ ├── mt7621_zbtlink_zbt-wg1608-16m.dts │ │ │ │ ├── mt7621_zbtlink_zbt-wg1608.dtsi │ │ │ │ ├── mt7621_zbtlink_zbt-wg2626.dts │ │ │ │ ├── mt7621_zbtlink_zbt-wg3526-16m.dts │ │ │ │ ├── mt7621_zbtlink_zbt-wg3526-32m.dts │ │ │ │ ├── mt7621_zbtlink_zbt-wg3526.dtsi │ │ │ │ ├── mt7621_zio_freezio.dts │ │ │ │ ├── mt7621_zyxel_nr7101.dts │ │ │ │ ├── mt7621_zyxel_wap6805.dts │ │ │ │ ├── mt7628an.dtsi │ │ │ │ ├── mt7628an_alfa-network_awusfree1.dts │ │ │ │ ├── mt7628an_asus_rt-ac1200-v2.dts │ │ │ │ ├── mt7628an_asus_rt-ac1200.dts │ │ │ │ ├── mt7628an_asus_rt-ac1200.dtsi │ │ │ │ ├── mt7628an_asus_rt-n10p-v3.dts │ │ │ │ ├── mt7628an_asus_rt-n11p-b1.dts │ │ │ │ ├── mt7628an_asus_rt-n12-vp-b1.dts │ │ │ │ ├── mt7628an_asus_rt-n1x.dtsi │ │ │ │ ├── mt7628an_buffalo_wcr-1166ds.dts │ │ │ │ ├── mt7628an_comfast_cf-wr758ac-v1.dts │ │ │ │ ├── mt7628an_comfast_cf-wr758ac-v2.dts │ │ │ │ ├── mt7628an_comfast_cf-wr758ac.dtsi │ │ │ │ ├── mt7628an_cudy_wr1000.dts │ │ │ │ ├── mt7628an_d-team_pbr-d1.dts │ │ │ │ ├── mt7628an_dlink_dap-1325-a1.dts │ │ │ │ ├── mt7628an_duzun_dm06.dts │ │ │ │ ├── mt7628an_elecom_wrc-1167fs.dts │ │ │ │ ├── mt7628an_glinet_gl-mt300n-v2.dts │ │ │ │ ├── mt7628an_glinet_microuter-n300.dts │ │ │ │ ├── mt7628an_glinet_vixmini.dts │ │ │ │ ├── mt7628an_glinet_vixmini_microuter.dtsi │ │ │ │ ├── mt7628an_hak5_wifi-pineapple-mk7.dts │ │ │ │ ├── mt7628an_hilink_hlk-7628n.dts │ │ │ │ ├── mt7628an_hilink_hlk-7688a.dts │ │ │ │ ├── mt7628an_hiwifi_hc5661a.dts │ │ │ │ ├── mt7628an_hiwifi_hc5761a.dts │ │ │ │ ├── mt7628an_hiwifi_hc5861b.dts │ │ │ │ ├── mt7628an_hiwifi_hc5x61a.dtsi │ │ │ │ ├── mt7628an_iptime.dtsi │ │ │ │ ├── mt7628an_iptime_a3.dts │ │ │ │ ├── mt7628an_iptime_a604m.dts │ │ │ │ ├── mt7628an_jotale_js76x8-16m.dts │ │ │ │ ├── mt7628an_jotale_js76x8-32m.dts │ │ │ │ ├── mt7628an_jotale_js76x8-8m.dts │ │ │ │ ├── mt7628an_jotale_js76x8.dtsi │ │ │ │ ├── mt7628an_mediatek_linkit-smart-7688.dts │ │ │ │ ├── mt7628an_mediatek_mt7628an-eval-board.dts │ │ │ │ ├── mt7628an_mercury_mac1200r-v2.dts │ │ │ │ ├── mt7628an_minew_g1-c.dts │ │ │ │ ├── mt7628an_motorola_mwr03.dts │ │ │ │ ├── mt7628an_netgear_r6020.dts │ │ │ │ ├── mt7628an_netgear_r6080.dts │ │ │ │ ├── mt7628an_netgear_r6120.dts │ │ │ │ ├── mt7628an_netgear_r6xxx.dtsi │ │ │ │ ├── mt7628an_onion_omega2.dts │ │ │ │ ├── mt7628an_onion_omega2.dtsi │ │ │ │ ├── mt7628an_onion_omega2p.dts │ │ │ │ ├── mt7628an_rakwireless_rak633.dts │ │ │ │ ├── mt7628an_ravpower_rp-wd009.dts │ │ │ │ ├── mt7628an_skylab_skw92a.dts │ │ │ │ ├── mt7628an_tama_w06.dts │ │ │ │ ├── mt7628an_totolink_a3.dts │ │ │ │ ├── mt7628an_totolink_lr1200.dts │ │ │ │ ├── mt7628an_tplink_8m-split-uboot.dtsi │ │ │ │ ├── mt7628an_tplink_8m.dtsi │ │ │ │ ├── mt7628an_tplink_archer-c20-v4.dts │ │ │ │ ├── mt7628an_tplink_archer-c20-v5.dts │ │ │ │ ├── mt7628an_tplink_archer-c50-v3.dts │ │ │ │ ├── mt7628an_tplink_archer-c50-v4.dts │ │ │ │ ├── mt7628an_tplink_re200-v2.dts │ │ │ │ ├── mt7628an_tplink_re200-v3.dts │ │ │ │ ├── mt7628an_tplink_re200-v4.dts │ │ │ │ ├── mt7628an_tplink_re200.dtsi │ │ │ │ ├── mt7628an_tplink_re220-v2.dts │ │ │ │ ├── mt7628an_tplink_re305-v1.dts │ │ │ │ ├── mt7628an_tplink_re305-v3.dts │ │ │ │ ├── mt7628an_tplink_re305.dtsi │ │ │ │ ├── mt7628an_tplink_tl-mr3020-v3.dts │ │ │ │ ├── mt7628an_tplink_tl-mr3420-v5.dts │ │ │ │ ├── mt7628an_tplink_tl-mr6400-v4.dts │ │ │ │ ├── mt7628an_tplink_tl-mr6400-v5.dts │ │ │ │ ├── mt7628an_tplink_tl-wa801nd-v5.dts │ │ │ │ ├── mt7628an_tplink_tl-wr802n-v4.dts │ │ │ │ ├── mt7628an_tplink_tl-wr840n-v4.dts │ │ │ │ ├── mt7628an_tplink_tl-wr840n-v5.dts │ │ │ │ ├── mt7628an_tplink_tl-wr841n-v13.dts │ │ │ │ ├── mt7628an_tplink_tl-wr841n-v14.dts │ │ │ │ ├── mt7628an_tplink_tl-wr842n-v5.dts │ │ │ │ ├── mt7628an_tplink_tl-wr850n-v2.dts │ │ │ │ ├── mt7628an_tplink_tl-wr902ac-v3.dts │ │ │ │ ├── mt7628an_unielec_u7628-01-16m.dts │ │ │ │ ├── mt7628an_unielec_u7628-01.dtsi │ │ │ │ ├── mt7628an_vocore_vocore2-lite.dts │ │ │ │ ├── mt7628an_vocore_vocore2.dts │ │ │ │ ├── mt7628an_vocore_vocore2.dtsi │ │ │ │ ├── mt7628an_wavlink_wl-wn531a3.dts │ │ │ │ ├── mt7628an_wavlink_wl-wn570ha1.dts │ │ │ │ ├── mt7628an_wavlink_wl-wn575a3.dts │ │ │ │ ├── mt7628an_wavlink_wl-wn576a2.dts │ │ │ │ ├── mt7628an_wavlink_wl-wn577a2.dts │ │ │ │ ├── mt7628an_wavlink_wl-wn578a2.dts │ │ │ │ ├── mt7628an_widora_neo-16m.dts │ │ │ │ ├── mt7628an_widora_neo-32m.dts │ │ │ │ ├── mt7628an_widora_neo.dtsi │ │ │ │ ├── mt7628an_wiznet_wizfi630s.dts │ │ │ │ ├── mt7628an_wrtnode_wrtnode2.dtsi │ │ │ │ ├── mt7628an_wrtnode_wrtnode2p.dts │ │ │ │ ├── mt7628an_wrtnode_wrtnode2r.dts │ │ │ │ ├── mt7628an_xiaomi_mi-router-4.dtsi │ │ │ │ ├── mt7628an_xiaomi_mi-router-4a-100m.dts │ │ │ │ ├── mt7628an_xiaomi_mi-router-4c.dts │ │ │ │ ├── mt7628an_xiaomi_miwifi-3c.dts │ │ │ │ ├── mt7628an_xiaomi_miwifi-nano.dts │ │ │ │ ├── mt7628an_zbtlink_zbt-we1226.dts │ │ │ │ ├── mt7628an_zyxel_keenetic-extra-ii.dts │ │ │ │ ├── rt2880.dtsi │ │ │ │ ├── rt2880_airlink101_ar670w.dts │ │ │ │ ├── rt2880_airlink101_ar725w.dts │ │ │ │ ├── rt2880_asus_rt-n15.dts │ │ │ │ ├── rt2880_belkin_f5d8235-v1.dts │ │ │ │ ├── rt2880_buffalo_wli-tx4-ag300n.dts │ │ │ │ ├── rt2880_buffalo_wzr-agl300nh.dts │ │ │ │ ├── rt2880_dlink_dap-1522-a1.dts │ │ │ │ ├── rt2880_ralink_v11st-fe.dts │ │ │ │ ├── rt3050.dtsi │ │ │ │ ├── rt3050_8devices_carambola.dts │ │ │ │ ├── rt3050_allnet_all0256n-4m.dts │ │ │ │ ├── rt3050_allnet_all0256n-8m.dts │ │ │ │ ├── rt3050_allnet_all0256n.dtsi │ │ │ │ ├── rt3050_alphanetworks_asl26555-16m.dts │ │ │ │ ├── rt3050_alphanetworks_asl26555-8m.dts │ │ │ │ ├── rt3050_alphanetworks_asl26555.dtsi │ │ │ │ ├── rt3050_arcwireless_freestation5.dts │ │ │ │ ├── rt3050_asus_rt-g32-b1.dts │ │ │ │ ├── rt3050_asus_rt-n10-plus.dts │ │ │ │ ├── rt3050_asus_wl-330n.dts │ │ │ │ ├── rt3050_asus_wl-330n3g.dts │ │ │ │ ├── rt3050_dlink_dcs-930.dts │ │ │ │ ├── rt3050_dlink_dir-300-b1.dts │ │ │ │ ├── rt3050_dlink_dir-600-b1.dts │ │ │ │ ├── rt3050_dlink_dir-615-d.dts │ │ │ │ ├── rt3050_dlink_dir-620-a1.dts │ │ │ │ ├── rt3050_edimax_3g-6200n.dts │ │ │ │ ├── rt3050_edimax_3g-6200nl.dts │ │ │ │ ├── rt3050_huawei_d105.dts │ │ │ │ ├── rt3050_jcg_jhr-n805r.dts │ │ │ │ ├── rt3050_netcore_nw718.dts │ │ │ │ ├── rt3050_sparklan_wcr-150gn.dts │ │ │ │ ├── rt3050_teltonika_rut5xx.dts │ │ │ │ ├── rt3050_tenda_w150m.dts │ │ │ │ ├── rt3050_trendnet_tew-638apb-v2.dts │ │ │ │ ├── rt3052_accton_wr6202.dts │ │ │ │ ├── rt3052_alfa-network_w502u.dts │ │ │ │ ├── rt3052_argus_atp-52b.dts │ │ │ │ ├── rt3052_asiarf_awapn2403.dts │ │ │ │ ├── rt3052_asus_rt-n13u.dts │ │ │ │ ├── rt3052_aximcom_mr-102n.dts │ │ │ │ ├── rt3052_aztech_hw550-3g.dts │ │ │ │ ├── rt3052_belkin_f5d8235-v2.dts │ │ │ │ ├── rt3052_buffalo_whr-g300n.dts │ │ │ │ ├── rt3052_dlink_dap-1350.dts │ │ │ │ ├── rt3052_engenius_esr-9753.dts │ │ │ │ ├── rt3052_fon_fonera-20n.dts │ │ │ │ ├── rt3052_hauppauge_broadway.dts │ │ │ │ ├── rt3052_huawei_hg255d.dts │ │ │ │ ├── rt3052_jcg_jhr-n825r.dts │ │ │ │ ├── rt3052_jcg_jhr-n926r.dts │ │ │ │ ├── rt3052_mofinetwork_mofi3500-3gn.dts │ │ │ │ ├── rt3052_netgear_wnce2001.dts │ │ │ │ ├── rt3052_nexaira_bc2.dts │ │ │ │ ├── rt3052_omnima_miniembwifi.dts │ │ │ │ ├── rt3052_petatel_psr-680w.dts │ │ │ │ ├── rt3052_planex_mzk-w300nh2.dts │ │ │ │ ├── rt3052_planex_mzk-wdpr.dts │ │ │ │ ├── rt3052_poray_ip2202.dts │ │ │ │ ├── rt3052_prolink_pwh2004.dts │ │ │ │ ├── rt3052_ralink_v22rw-2x2.dts │ │ │ │ ├── rt3052_sitecom_wl-351.dts │ │ │ │ ├── rt3052_skyline_sl-r7205.dts │ │ │ │ ├── rt3052_tenda_3g300m.dts │ │ │ │ ├── rt3052_tenda_w306r-v2.dts │ │ │ │ ├── rt3052_unbranded_wr512-3gn-4m.dts │ │ │ │ ├── rt3052_unbranded_wr512-3gn-8m.dts │ │ │ │ ├── rt3052_unbranded_wr512-3gn.dtsi │ │ │ │ ├── rt3052_unbranded_xdx-rn502j.dts │ │ │ │ ├── rt3052_upvel_ur-326n4g.dts │ │ │ │ ├── rt3052_upvel_ur-336un.dts │ │ │ │ ├── rt3052_zyxel_keenetic.dts │ │ │ │ ├── rt3052_zyxel_nbg-419n.dts │ │ │ │ ├── rt3352.dtsi │ │ │ │ ├── rt3352_allnet_all5002.dts │ │ │ │ ├── rt3352_dlink_dir-615-h1.dts │ │ │ │ ├── rt3352_dlink_dir-620-d1.dts │ │ │ │ ├── rt3352_zte_mf283plus.dts │ │ │ │ ├── rt3352_zyxel_nbg-419n-v2.dts │ │ │ │ ├── rt3662_asus_rt-n56u.dts │ │ │ │ ├── rt3662_dlink_dir-645.dts │ │ │ │ ├── rt3662_edimax_br-6475nd.dts │ │ │ │ ├── rt3662_engenius_esr600h.dts │ │ │ │ ├── rt3662_loewe_wmdr-143n.dts │ │ │ │ ├── rt3662_omnima_hpm.dts │ │ │ │ ├── rt3662_samsung_cy-swr1100.dts │ │ │ │ ├── rt3883.dtsi │ │ │ │ ├── rt3883_belkin_f9k1109v1.dts │ │ │ │ ├── rt3883_belkin_f9k110x.dtsi │ │ │ │ ├── rt3883_sitecom_wlr-6000.dts │ │ │ │ ├── rt3883_trendnet_tew-691gr.dts │ │ │ │ ├── rt3883_trendnet_tew-692gr.dts │ │ │ │ ├── rt5350.dtsi │ │ │ │ ├── rt5350_7links_px-4885-4m.dts │ │ │ │ ├── rt5350_7links_px-4885-8m.dts │ │ │ │ ├── rt5350_7links_px-4885.dtsi │ │ │ │ ├── rt5350_airlive_air3gii.dts │ │ │ │ ├── rt5350_allnet_all5003.dts │ │ │ │ ├── rt5350_asiarf_awm002-evb-4m.dts │ │ │ │ ├── rt5350_asiarf_awm002-evb-8m.dts │ │ │ │ ├── rt5350_asiarf_awm002-evb.dtsi │ │ │ │ ├── rt5350_belkin_f7c027.dts │ │ │ │ ├── rt5350_dlink_dcs-930l-b1.dts │ │ │ │ ├── rt5350_dlink_dir-300-b7.dts │ │ │ │ ├── rt5350_dlink_dir-320-b1.dts │ │ │ │ ├── rt5350_dlink_dir-610-a1.dts │ │ │ │ ├── rt5350_dlink_dwr-512-b.dts │ │ │ │ ├── rt5350_easyacc_wizard-8800.dts │ │ │ │ ├── rt5350_hame_mpr-a1.dts │ │ │ │ ├── rt5350_hame_mpr-a2.dts │ │ │ │ ├── rt5350_hilink_hlk-rm04.dts │ │ │ │ ├── rt5350_hootoo_ht-tm02.dts │ │ │ │ ├── rt5350_intenso_memory2move.dts │ │ │ │ ├── rt5350_nexx_wt1520-4m.dts │ │ │ │ ├── rt5350_nexx_wt1520-8m.dts │ │ │ │ ├── rt5350_nexx_wt1520.dtsi │ │ │ │ ├── rt5350_nixcore_x1-16m.dts │ │ │ │ ├── rt5350_nixcore_x1-8m.dts │ │ │ │ ├── rt5350_nixcore_x1.dtsi │ │ │ │ ├── rt5350_olimex_rt5350f-olinuxino-evb.dts │ │ │ │ ├── rt5350_olimex_rt5350f-olinuxino.dts │ │ │ │ ├── rt5350_olimex_rt5350f-olinuxino.dtsi │ │ │ │ ├── rt5350_omnima_miniembplug.dts │ │ │ │ ├── rt5350_planex_mzk-dp150n.dts │ │ │ │ ├── rt5350_poray_m3.dts │ │ │ │ ├── rt5350_poray_m4-4m.dts │ │ │ │ ├── rt5350_poray_m4-8m.dts │ │ │ │ ├── rt5350_poray_m4.dtsi │ │ │ │ ├── rt5350_poray_x5.dts │ │ │ │ ├── rt5350_poray_x8.dts │ │ │ │ ├── rt5350_tenda_3g150b.dts │ │ │ │ ├── rt5350_trendnet_tew-714tru.dts │ │ │ │ ├── rt5350_unbranded_a5-v11.dts │ │ │ │ ├── rt5350_vocore_vocore-16m.dts │ │ │ │ ├── rt5350_vocore_vocore-8m.dts │ │ │ │ ├── rt5350_vocore_vocore.dtsi │ │ │ │ ├── rt5350_wansview_ncs601w.dts │ │ │ │ ├── rt5350_wiznet_wizfi630a.dts │ │ │ │ ├── rt5350_zorlik_zl5900v2.dts │ │ │ │ ├── rt5350_zyxel_keenetic-lite-b.dts │ │ │ │ └── rt5350_zyxel_keenetic-start.dts │ │ │ ├── files/ │ │ │ │ └── drivers/ │ │ │ │ ├── mmc/ │ │ │ │ │ └── host/ │ │ │ │ │ └── mtk-mmc/ │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.h │ │ │ │ │ ├── dbg.c │ │ │ │ │ ├── dbg.h │ │ │ │ │ ├── mt6575_sd.h │ │ │ │ │ └── sd.c │ │ │ │ ├── mtd/ │ │ │ │ │ └── nand/ │ │ │ │ │ └── raw/ │ │ │ │ │ └── mt7621_nand.c │ │ │ │ ├── net/ │ │ │ │ │ └── ethernet/ │ │ │ │ │ └── ralink/ │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── esw_rt3050.c │ │ │ │ │ ├── esw_rt3050.h │ │ │ │ │ ├── ethtool.c │ │ │ │ │ ├── ethtool.h │ │ │ │ │ ├── gsw_mt7620.c │ │ │ │ │ ├── gsw_mt7620.h │ │ │ │ │ ├── mdio.c │ │ │ │ │ ├── mdio.h │ │ │ │ │ ├── mdio_mt7620.c │ │ │ │ │ ├── mdio_rt2880.c │ │ │ │ │ ├── mdio_rt2880.h │ │ │ │ │ ├── mt7530.c │ │ │ │ │ ├── mt7530.h │ │ │ │ │ ├── mtk_eth_soc.c │ │ │ │ │ ├── mtk_eth_soc.h │ │ │ │ │ ├── soc_mt7620.c │ │ │ │ │ ├── soc_rt2880.c │ │ │ │ │ ├── soc_rt3050.c │ │ │ │ │ └── soc_rt3883.c │ │ │ │ └── pinctrl/ │ │ │ │ └── pinctrl-aw9523.c │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── common-tp-link.mk │ │ │ │ ├── lzma-loader/ │ │ │ │ │ ├── Makefile │ │ │ │ │ └── src/ │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── LzmaTypes.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board-mt7621.c │ │ │ │ │ ├── board-ralink.c │ │ │ │ │ ├── cache.c │ │ │ │ │ ├── cache.h │ │ │ │ │ ├── cacheops.h │ │ │ │ │ ├── config.h │ │ │ │ │ ├── cp0regdef.h │ │ │ │ │ ├── head.S │ │ │ │ │ ├── lantiq.mk │ │ │ │ │ ├── loader.c │ │ │ │ │ ├── loader.lds │ │ │ │ │ ├── loader2.lds │ │ │ │ │ ├── lzma-data.lds │ │ │ │ │ ├── mt7621.mk │ │ │ │ │ ├── printf.c │ │ │ │ │ ├── printf.h │ │ │ │ │ └── ralink.mk │ │ │ │ ├── mt7620.mk │ │ │ │ ├── mt7621.mk │ │ │ │ ├── mt76x8.mk │ │ │ │ ├── rt288x.mk │ │ │ │ ├── rt305x.mk │ │ │ │ └── rt3883.mk │ │ │ ├── modules.mk │ │ │ ├── mt7620/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ │ └── 03_gpio_switches │ │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ │ ├── firmware/ │ │ │ │ │ │ │ │ └── 10-rt2x00-eeprom │ │ │ │ │ │ │ └── ieee80211/ │ │ │ │ │ │ │ └── 10_fix_wifi_mac │ │ │ │ │ │ ├── init.d/ │ │ │ │ │ │ │ └── bootcount │ │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ │ └── 05_fix-compat-version │ │ │ │ │ └── lib/ │ │ │ │ │ └── upgrade/ │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-5.10 │ │ │ │ └── target.mk │ │ │ ├── mt7621/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ │ ├── 03_gpio_switches │ │ │ │ │ │ │ └── 05_compat-version │ │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ │ └── ieee80211/ │ │ │ │ │ │ │ └── 10_fix_wifi_mac │ │ │ │ │ │ ├── init.d/ │ │ │ │ │ │ │ ├── bootcount │ │ │ │ │ │ │ └── set-irq-affinity │ │ │ │ │ │ └── uci-defaults/ │ │ │ │ │ │ └── 01_enable_packet_steering │ │ │ │ │ ├── lib/ │ │ │ │ │ │ └── upgrade/ │ │ │ │ │ │ ├── iodata.sh │ │ │ │ │ │ ├── platform.sh │ │ │ │ │ │ └── ubnt.sh │ │ │ │ │ └── sbin/ │ │ │ │ │ └── fixup-mac-address │ │ │ │ ├── config-5.10 │ │ │ │ ├── config-5.15 │ │ │ │ └── target.mk │ │ │ ├── mt76x8/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ │ └── 02_network │ │ │ │ │ │ ├── hotplug.d/ │ │ │ │ │ │ │ └── ieee80211/ │ │ │ │ │ │ │ └── 10_fix_wifi_mac │ │ │ │ │ │ └── init.d/ │ │ │ │ │ │ └── bootcount │ │ │ │ │ └── lib/ │ │ │ │ │ └── upgrade/ │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-5.10 │ │ │ │ └── target.mk │ │ │ ├── patches-5.10/ │ │ │ │ ├── 020-mips-ralink-manage-low-reset-lines.patch │ │ │ │ ├── 200-add-ralink-eth.patch │ │ │ │ ├── 201-MIPS-ralink-rt288x-select-MIPS_AUTO_PFN_OFFSET.patch │ │ │ │ ├── 203-staging-mt7621-pci-phy-kconfig-select-regmap-mmio.patch │ │ │ │ ├── 300-mt7620-export-chip-version-and-pkg.patch │ │ │ │ ├── 311-MIPS-use-set_mode-to-enable-disable-the-cevt-r4k-irq.patch │ │ │ │ ├── 312-MIPS-ralink-add-cpu-frequency-scaling.patch │ │ │ │ ├── 314-MIPS-add-bootargs-override-property.patch │ │ │ │ ├── 315-owrt-hack-fix-mt7688-cache-issue.patch │ │ │ │ ├── 316-arch-mips-do-not-select-illegal-access-driver-by-def.patch │ │ │ │ ├── 320-MIPS-add-support-for-buggy-MT7621S-core-detection.patch │ │ │ │ ├── 322-mt7621-fix-cpu-clk-add-clkdev.patch │ │ │ │ ├── 323-mt7621-memory-detect.patch │ │ │ │ ├── 324-mt7621-perfctr-fix.patch │ │ │ │ ├── 325-mt7621-fix-memory-detect.patch │ │ │ │ ├── 400-mtd-cfi-cmdset-0002-force-word-write.patch │ │ │ │ ├── 405-mtd-spi-nor-Add-support-for-BoHong-bh25q128as.patch │ │ │ │ ├── 410-mtd-rawnand-add-driver-support-for-MT7621-nand-flash.patch │ │ │ │ ├── 411-dt-bindings-add-documentation-for-mt7621-nand-driver.patch │ │ │ │ ├── 700-net-ethernet-mediatek-support-net-labels.patch │ │ │ │ ├── 710-at803x.patch │ │ │ │ ├── 720-Revert-net-phy-simplify-phy_link_change-arguments.patch │ │ │ │ ├── 721-NET-no-auto-carrier-off-support.patch │ │ │ │ ├── 801-DT-Add-documentation-for-gpio-ralink.patch │ │ │ │ ├── 802-GPIO-MIPS-ralink-add-gpio-driver-for-ralink-SoC.patch │ │ │ │ ├── 803-gpio-ralink-Add-support-for-GPIO-as-interrupt-contro.patch │ │ │ │ ├── 804-staging-mt7621-pinctrl-use-ngpios-not-num-gpios.patch │ │ │ │ ├── 805-pinctrl-AW9523.patch │ │ │ │ ├── 810-uvc-add-iPassion-iP2970-support.patch │ │ │ │ ├── 820-DT-Add-documentation-for-spi-rt2880.patch │ │ │ │ ├── 821-SPI-ralink-add-Ralink-SoC-spi-driver.patch │ │ │ │ ├── 825-i2c-MIPS-adds-ralink-I2C-driver.patch │ │ │ │ ├── 830-mmc-MIPS-ralink-add-sdhci-for-mt7620a-SoC.patch │ │ │ │ ├── 835-asoc-add-mt7620-support.patch │ │ │ │ ├── 840-serial-add-ugly-custom-baud-rate-hack.patch │ │ │ │ ├── 845-pwm-add-mediatek-support.patch │ │ │ │ ├── 850-awake-rt305x-dwc2-controller.patch │ │ │ │ └── 855-linkit_bootstrap.patch │ │ │ ├── patches-5.15/ │ │ │ │ ├── 100-PCI-mt7621-Add-MediaTek-MT7621-PCIe-host-controller-.patch │ │ │ │ ├── 101-PCI-mt7621-Rename-mt7621_pci_-to-mt7621_pcie_.patch │ │ │ │ ├── 102-PCI-mt7621-Declare-mt7621_pci_ops-static.patch │ │ │ │ ├── 103-PCI-mt7621-Move-MIPS-setup-to-pcibios_root_bridge_pr.patch │ │ │ │ ├── 104-PCI-mt7621-Drop-of_match_ptr-to-avoid-unused-variabl.patch │ │ │ │ ├── 105-PCI-mt7621-Remove-unused-function-pcie_rmw.patch │ │ │ │ ├── 106-PCI-Let-pcibios_root_bridge_prepare-access-bridge-wi.patch │ │ │ │ ├── 110-reset_controller_driver.patch │ │ │ │ ├── 200-add-ralink-eth.patch │ │ │ │ ├── 300-mt7620-export-chip-version-and-pkg.patch │ │ │ │ ├── 311-MIPS-use-set_mode-to-enable-disable-the-cevt-r4k-irq.patch │ │ │ │ ├── 312-MIPS-ralink-add-cpu-frequency-scaling.patch │ │ │ │ ├── 314-MIPS-add-bootargs-override-property.patch │ │ │ │ ├── 315-owrt-hack-fix-mt7688-cache-issue.patch │ │ │ │ ├── 316-arch-mips-do-not-select-illegal-access-driver-by-def.patch │ │ │ │ ├── 320-MIPS-add-support-for-buggy-MT7621S-core-detection.patch │ │ │ │ ├── 324-mt7621-perfctr-fix.patch │ │ │ │ ├── 400-mtd-cfi-cmdset-0002-force-word-write.patch │ │ │ │ ├── 405-mtd-spi-nor-Add-support-for-BoHong-bh25q128as.patch │ │ │ │ ├── 410-mtd-rawnand-add-driver-support-for-MT7621-nand-flash.patch │ │ │ │ ├── 411-dt-bindings-add-documentation-for-mt7621-nand-driver.patch │ │ │ │ ├── 700-net-ethernet-mediatek-support-net-labels.patch │ │ │ │ ├── 710-at803x.patch │ │ │ │ ├── 720-Revert-net-phy-simplify-phy_link_change-arguments.patch │ │ │ │ ├── 721-NET-no-auto-carrier-off-support.patch │ │ │ │ ├── 801-DT-Add-documentation-for-gpio-ralink.patch │ │ │ │ ├── 802-GPIO-MIPS-ralink-add-gpio-driver-for-ralink-SoC.patch │ │ │ │ ├── 803-gpio-ralink-Add-support-for-GPIO-as-interrupt-contro.patch │ │ │ │ ├── 805-pinctrl-AW9523.patch │ │ │ │ ├── 810-uvc-add-iPassion-iP2970-support.patch │ │ │ │ ├── 820-DT-Add-documentation-for-spi-rt2880.patch │ │ │ │ ├── 821-SPI-ralink-add-Ralink-SoC-spi-driver.patch │ │ │ │ ├── 825-i2c-MIPS-adds-ralink-I2C-driver.patch │ │ │ │ ├── 830-mmc-MIPS-ralink-add-sdhci-for-mt7620a-SoC.patch │ │ │ │ ├── 835-asoc-add-mt7620-support.patch │ │ │ │ ├── 840-serial-add-ugly-custom-baud-rate-hack.patch │ │ │ │ ├── 845-pwm-add-mediatek-support.patch │ │ │ │ ├── 850-awake-rt305x-dwc2-controller.patch │ │ │ │ └── 855-linkit_bootstrap.patch │ │ │ ├── rt288x/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ └── board.d/ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── lib/ │ │ │ │ │ └── upgrade/ │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-5.10 │ │ │ │ └── target.mk │ │ │ ├── rt305x/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ └── board.d/ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── lib/ │ │ │ │ │ ├── preinit/ │ │ │ │ │ │ └── 04_handle_checksumming │ │ │ │ │ └── upgrade/ │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-5.10 │ │ │ │ └── target.mk │ │ │ └── rt3883/ │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ └── board.d/ │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ └── lib/ │ │ │ │ ├── preinit/ │ │ │ │ │ └── 04_handle_checksumming │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ └── target.mk │ │ ├── realtek/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── inittab │ │ │ │ └── lib/ │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── dts-5.10/ │ │ │ │ ├── rtl8380_netgear_gigabit.dtsi │ │ │ │ ├── rtl8380_netgear_gigabit_1xx.dtsi │ │ │ │ ├── rtl8380_netgear_gigabit_3xx.dtsi │ │ │ │ ├── rtl8380_netgear_gs108t-v3.dts │ │ │ │ ├── rtl8380_netgear_gs110tpp-v1.dts │ │ │ │ ├── rtl8380_netgear_gs308t-v1.dts │ │ │ │ ├── rtl8380_netgear_gs310tp-v1.dts │ │ │ │ ├── rtl8380_panasonic_m8eg-pn28080k.dts │ │ │ │ ├── rtl8380_zyxel_gs1900-10hp.dts │ │ │ │ ├── rtl8380_zyxel_gs1900-8.dts │ │ │ │ ├── rtl8380_zyxel_gs1900-8hp-v1.dts │ │ │ │ ├── rtl8380_zyxel_gs1900-8hp-v2.dts │ │ │ │ ├── rtl8380_zyxel_gs1900.dtsi │ │ │ │ ├── rtl8382_allnet_all-sg8208m.dts │ │ │ │ ├── rtl8382_d-link_dgs-1210-10p.dts │ │ │ │ ├── rtl8382_d-link_dgs-1210-16.dts │ │ │ │ ├── rtl8382_d-link_dgs-1210-28.dts │ │ │ │ ├── rtl8382_d-link_dgs-1210.dtsi │ │ │ │ ├── rtl8382_inaba_aml2-17gp.dts │ │ │ │ ├── rtl8382_iodata_bsh-g24mb.dts │ │ │ │ ├── rtl8382_zyxel_gs1900-16.dts │ │ │ │ ├── rtl8382_zyxel_gs1900-24-v1.dts │ │ │ │ ├── rtl8382_zyxel_gs1900-24hp-v1.dts │ │ │ │ ├── rtl8382_zyxel_gs1900-24hp-v2.dts │ │ │ │ ├── rtl838x.dtsi │ │ │ │ ├── rtl8393_zyxel_gs1900-48.dts │ │ │ │ ├── rtl839x.dtsi │ │ │ │ ├── rtl83xx_panasonic_mxxeg-pn28xx0k.dtsi │ │ │ │ ├── rtl9302_zyxel_xgs1250-12.dts │ │ │ │ ├── rtl930x.dtsi │ │ │ │ └── rtl931x.dtsi │ │ │ ├── files/ │ │ │ │ └── firmware/ │ │ │ │ └── rtl838x_phy/ │ │ │ │ ├── rtl838x_8214fc.fw │ │ │ │ ├── rtl838x_8218b.fw │ │ │ │ └── rtl838x_8380.fw │ │ │ ├── files-5.10/ │ │ │ │ ├── arch/ │ │ │ │ │ └── mips/ │ │ │ │ │ ├── include/ │ │ │ │ │ │ └── asm/ │ │ │ │ │ │ └── mach-rtl838x/ │ │ │ │ │ │ ├── ioremap.h │ │ │ │ │ │ └── mach-rtl83xx.h │ │ │ │ │ ├── kernel/ │ │ │ │ │ │ └── cevt-rtl9300.c │ │ │ │ │ └── rtl838x/ │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Platform │ │ │ │ │ ├── prom.c │ │ │ │ │ └── setup.c │ │ │ │ └── drivers/ │ │ │ │ ├── gpio/ │ │ │ │ │ └── gpio-rtl8231.c │ │ │ │ ├── i2c/ │ │ │ │ │ ├── busses/ │ │ │ │ │ │ ├── i2c-rtl9300.c │ │ │ │ │ │ └── i2c-rtl9300.h │ │ │ │ │ └── muxes/ │ │ │ │ │ └── i2c-mux-rtl9300.c │ │ │ │ └── net/ │ │ │ │ ├── dsa/ │ │ │ │ │ └── rtl83xx/ │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── common.c │ │ │ │ │ ├── debugfs.c │ │ │ │ │ ├── dsa.c │ │ │ │ │ ├── qos.c │ │ │ │ │ ├── rtl838x.c │ │ │ │ │ ├── rtl838x.h │ │ │ │ │ ├── rtl839x.c │ │ │ │ │ ├── rtl83xx.h │ │ │ │ │ ├── rtl930x.c │ │ │ │ │ ├── rtl931x.c │ │ │ │ │ └── tc.c │ │ │ │ ├── ethernet/ │ │ │ │ │ ├── rtl838x_eth.c │ │ │ │ │ └── rtl838x_eth.h │ │ │ │ └── phy/ │ │ │ │ ├── rtl83xx-phy.c │ │ │ │ └── rtl83xx-phy.h │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── rtl838x.mk │ │ │ │ ├── rtl839x.mk │ │ │ │ ├── rtl930x.mk │ │ │ │ └── rtl931x.mk │ │ │ ├── patches-5.10/ │ │ │ │ ├── 001-5.13-dt-bindings-gpio-binding-for-realtek-otto-gpio.patch │ │ │ │ ├── 002-5.13-gpio-add-realtek-otto-gpio-support.patch │ │ │ │ ├── 003-5.12-spi-realtek-rtl838x-rtl839x-spi-controller.patch │ │ │ │ ├── 004-5.12-spi-realtek-rtl-add-support-for-realtek-rtl838x-rtl839x-spi-controllers.patch │ │ │ │ ├── 005-5.12-dt-bindings-interrupt-controller-add-realtek-rtl838x-rtl839x-support.patch │ │ │ │ ├── 006-5.12-irqchip-add-support-for-realtek-rtl838x-rtl839x-interrupt-controller.patch │ │ │ │ ├── 007-5.16-gpio-realtek-realtek-otto-fix-gpio-line-irq-offset.patch │ │ │ │ ├── 008-5.17-watchdog-add-realtek-otto-watchdog-timer.patch │ │ │ │ ├── 020-v5.17-net-mdio-add-helpers-to-extract-clause-45-regad-and-.patch │ │ │ │ ├── 300-mips-add-rtl838x-platform.patch │ │ │ │ ├── 301-gpio-add-rtl8231-driver.patch │ │ │ │ ├── 303-gpio-update-dependencies-for-gpio-realtek-otto.patch │ │ │ │ ├── 304-spi-update-dependency-for-spi-realtek-rtl.patch │ │ │ │ ├── 305-irqchip-update-dependency-for-irq-realtek-rtl.patch │ │ │ │ ├── 307-wdt-update-dependency-for-realtek-otto-wdt.patch │ │ │ │ ├── 308-otto-wdt-fix-missing-math-header.patch │ │ │ │ ├── 309-cevt-rtl9300-support.patch │ │ │ │ ├── 310-add-i2c-rtl9300-support.patch │ │ │ │ ├── 311-add-i2c-mux-rtl9300-support.patch │ │ │ │ ├── 312-rt9313-support.patch │ │ │ │ ├── 315-irqchip-irq-realtek-rtl-add-VPE-support.patch │ │ │ │ ├── 320-gpio-add-support-for-RTL930X-and-RTL931X.patch │ │ │ │ ├── 700-net-dsa-add-support-for-rtl838x-switch.patch │ │ │ │ ├── 701-net-dsa-add-rtl838x-support-for-tag-trailer.patch │ │ │ │ ├── 702-net-dsa-increase-dsa-max-ports-for-rtl838x.patch │ │ │ │ ├── 702-net-ethernet-add-support-for-rtl838x-ethernet.patch │ │ │ │ ├── 703-include-linux-add-phy-ops-for-rtl838x.patch │ │ │ │ ├── 704-drivers-net-phy-eee-support-for-rtl838x.patch │ │ │ │ ├── 704-include-linux-add-phy-hsgmii-mode.patch │ │ │ │ ├── 705-add-rtl-phy.patch │ │ │ │ ├── 705-include-linux-phy-increase-phy-address-number-for-rtl839x.patch │ │ │ │ ├── 708-brflood-api.patch │ │ │ │ ├── 709-lag-offloading.patch │ │ │ │ ├── 710-net-phy-sfp-re-probe-modules-on-DEV_UP-event.patch │ │ │ │ ├── 711-net-phy-add-an-MDIO-SMBus-library.patch │ │ │ │ ├── 712-net-phy-sfp-add-support-for-SMBus.patch │ │ │ │ ├── 713-v5.12-net-dsa-configure-better-brport-flags-when-ports-lea.patch │ │ │ │ └── 800-net-mdio-support-hardware-assisted-indirect-access.patch │ │ │ ├── profiles/ │ │ │ │ └── 00-default.mk │ │ │ ├── rtl838x/ │ │ │ │ ├── config-5.10 │ │ │ │ └── target.mk │ │ │ ├── rtl839x/ │ │ │ │ ├── config-5.10 │ │ │ │ └── target.mk │ │ │ ├── rtl930x/ │ │ │ │ ├── config-5.10 │ │ │ │ └── target.mk │ │ │ └── rtl931x/ │ │ │ ├── config-5.10 │ │ │ └── target.mk │ │ ├── rockchip/ │ │ │ ├── Makefile │ │ │ ├── armv8/ │ │ │ │ ├── base-files/ │ │ │ │ │ ├── etc/ │ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ │ └── 02_network │ │ │ │ │ │ └── hotplug.d/ │ │ │ │ │ │ └── net/ │ │ │ │ │ │ └── 40-net-smp-affinity │ │ │ │ │ └── lib/ │ │ │ │ │ ├── preinit/ │ │ │ │ │ │ └── 79_move_config │ │ │ │ │ └── upgrade/ │ │ │ │ │ └── platform.sh │ │ │ │ ├── config-5.10 │ │ │ │ └── target.mk │ │ │ ├── files/ │ │ │ │ ├── Documentation/ │ │ │ │ │ └── devicetree/ │ │ │ │ │ └── bindings/ │ │ │ │ │ └── phy/ │ │ │ │ │ └── phy-rockchip-inno-usb3.yaml │ │ │ │ ├── arch/ │ │ │ │ │ └── arm64/ │ │ │ │ │ └── boot/ │ │ │ │ │ └── dts/ │ │ │ │ │ └── rockchip/ │ │ │ │ │ ├── rk3328-dram-nanopi2-timing.dtsi │ │ │ │ │ └── rk3399-guangmiao-g4c.dts │ │ │ │ ├── drivers/ │ │ │ │ │ ├── char/ │ │ │ │ │ │ └── hw_random/ │ │ │ │ │ │ └── rockchip-rng.c │ │ │ │ │ ├── devfreq/ │ │ │ │ │ │ └── rk3328_dmc.c │ │ │ │ │ └── phy/ │ │ │ │ │ └── rockchip/ │ │ │ │ │ └── phy-rockchip-inno-usb3.c │ │ │ │ └── include/ │ │ │ │ └── dt-bindings/ │ │ │ │ ├── clock/ │ │ │ │ │ └── rockchip-ddr.h │ │ │ │ └── memory/ │ │ │ │ └── rk3328-dram.h │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ ├── armv8.mk │ │ │ │ ├── mmc.bootscript │ │ │ │ ├── nanopi-r2s.bootscript │ │ │ │ └── nanopi-r4s.bootscript │ │ │ └── patches-5.10/ │ │ │ ├── 004-v5.13-rockchip-rk3399-Add-support-for-FriendlyARM-NanoPi-R.patch │ │ │ ├── 005-arm64-dts-rockchip-add-EEPROM-node-for-NanoPi-R4S.patch │ │ │ ├── 100-rockchip-use-system-LED-for-OpenWrt.patch │ │ │ ├── 101-dts-rockchip-add-usb3-controller-node-for-RK3328-SoCs.patch │ │ │ ├── 102-rockchip-enable-LAN-port-on-NanoPi-R2S.patch │ │ │ ├── 103-arm64-rockchip-add-OF-node-for-USB-eth-on-NanoPi-R2S.patch │ │ │ ├── 104-rockchip-use-USB-host-by-default-on-rk3399-rock-pi-4.patch │ │ │ ├── 105-nanopi-r4s-sd-signalling.patch │ │ │ ├── 202-rockchip-rk3328-Add-support-for-OrangePi-R1-Plus.patch │ │ │ ├── 206-Add-support-for-OrangePi-R1-Plus-LTS.patch │ │ │ ├── 600-Add-yt8531c-support.patch │ │ │ ├── 801-char-add-support-for-rockchip-hardware-random-number.patch │ │ │ ├── 802-arm64-dts-rockchip-add-hardware-random-number-genera.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 │ │ │ └── 808-phy-rockchip-add-driver-for-Rockchip-USB-3.0-PHY.patch │ │ ├── sunxi/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ └── 05_compat-version │ │ │ │ │ └── inittab │ │ │ │ └── lib/ │ │ │ │ ├── firmware/ │ │ │ │ │ └── brcm/ │ │ │ │ │ ├── brcmfmac4329-sdio.txt │ │ │ │ │ ├── brcmfmac43362-sdio.txt │ │ │ │ │ └── brcmfmac43430-sdio.txt │ │ │ │ ├── preinit/ │ │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ ├── cortexa53/ │ │ │ │ ├── config-5.10 │ │ │ │ ├── config-5.15 │ │ │ │ └── target.mk │ │ │ ├── cortexa7/ │ │ │ │ ├── config-5.10 │ │ │ │ ├── config-5.15 │ │ │ │ └── target.mk │ │ │ ├── cortexa8/ │ │ │ │ ├── config-5.10 │ │ │ │ ├── config-5.15 │ │ │ │ └── target.mk │ │ │ ├── image/ │ │ │ │ ├── Config.in │ │ │ │ ├── Makefile │ │ │ │ ├── cortexa53.mk │ │ │ │ ├── cortexa7.mk │ │ │ │ ├── cortexa8.mk │ │ │ │ └── gen_sunxi_sdcard_img.sh │ │ │ ├── modules.mk │ │ │ ├── patches-5.10/ │ │ │ │ ├── 062-add-sun8i-h3-zeropi-support.patch │ │ │ │ ├── 100-sunxi-h3-add-support-for-nanopi-r1.patch │ │ │ │ ├── 101-sunxi-h5-add-support-for-nanopi-r1s-h5.patch │ │ │ │ ├── 102-sunxi-add-OF-node-for-USB-eth-on-NanoPi-R1S-H5.patch │ │ │ │ ├── 301-orangepi_pc2_usb_otg_to_host_key_power.patch │ │ │ │ ├── 400-arm64-allwinner-a64-sopine-Add-Sopine-flash-partitio.patch │ │ │ │ ├── 430-arm64-dts-allwinner-a64-olinuxino-add-status-LED-ali.patch │ │ │ │ ├── 431-arm64-dts-allwinner-nanopi-r1s-h5-add-status-LED.patch │ │ │ │ ├── 442-arm64-dts-orangepi-one-plus-enable-PWM.patch │ │ │ │ └── 450-arm64-dts-enable-wifi-on-pine64-boards.patch │ │ │ ├── patches-5.15/ │ │ │ │ ├── 102-sunxi-add-OF-node-for-USB-eth-on-NanoPi-R1S-H5.patch │ │ │ │ ├── 301-orangepi_pc2_usb_otg_to_host_key_power.patch │ │ │ │ ├── 400-arm64-allwinner-a64-sopine-Add-Sopine-flash-partitio.patch │ │ │ │ ├── 430-arm64-dts-allwinner-a64-olinuxino-add-status-LED-ali.patch │ │ │ │ ├── 431-arm64-dts-allwinner-nanopi-r1s-h5-add-status-LED.patch │ │ │ │ ├── 442-arm64-dts-orangepi-one-plus-enable-PWM.patch │ │ │ │ └── 450-arm64-dts-enable-wifi-on-pine64-boards.patch │ │ │ └── profiles/ │ │ │ └── 00-default.mk │ │ ├── tegra/ │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ └── inittab │ │ │ │ └── lib/ │ │ │ │ ├── preinit/ │ │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── image/ │ │ │ │ ├── Makefile │ │ │ │ └── generic-bootscript │ │ │ └── patches-5.10/ │ │ │ ├── 100-serial8250-on-tegra-hsuart-recover-from-spurious-interrupts-due-to-tegra2-silicon-bug.patch │ │ │ └── 101-ARM-dtc-tegra-enable-front-panel-leds-in-TrimSlice.patch │ │ ├── uml/ │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── base-files/ │ │ │ │ └── etc/ │ │ │ │ └── inittab │ │ │ ├── config-5.10 │ │ │ ├── files/ │ │ │ │ └── arch/ │ │ │ │ └── um/ │ │ │ │ └── include/ │ │ │ │ └── uapi/ │ │ │ │ └── asm/ │ │ │ │ └── Kbuild │ │ │ ├── image/ │ │ │ │ └── Makefile │ │ │ └── patches-5.10/ │ │ │ ├── 101-mconsole-exec.patch │ │ │ └── 102-pseudo-random-mac.patch │ │ ├── x86/ │ │ │ ├── 64/ │ │ │ │ ├── base-files/ │ │ │ │ │ └── lib/ │ │ │ │ │ └── preinit/ │ │ │ │ │ └── 45_mount_xenfs │ │ │ │ ├── config-5.10 │ │ │ │ ├── config-5.15 │ │ │ │ └── target.mk │ │ │ ├── Makefile │ │ │ ├── base-files/ │ │ │ │ ├── etc/ │ │ │ │ │ ├── board.d/ │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ ├── diag.sh │ │ │ │ │ └── inittab │ │ │ │ └── lib/ │ │ │ │ ├── preinit/ │ │ │ │ │ ├── 01_sysinfo │ │ │ │ │ ├── 02_load_x86_ucode │ │ │ │ │ ├── 15_essential_fs_x86 │ │ │ │ │ ├── 20_check_iso │ │ │ │ │ ├── 79_move_config │ │ │ │ │ └── 81_upgrade_bootloader │ │ │ │ └── upgrade/ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ ├── generic/ │ │ │ │ ├── base-files/ │ │ │ │ │ └── lib/ │ │ │ │ │ └── preinit/ │ │ │ │ │ └── 45_mount_xenfs │ │ │ │ ├── config-5.10 │ │ │ │ ├── config-5.15 │ │ │ │ └── target.mk │ │ │ ├── geode/ │ │ │ │ ├── config-5.10 │ │ │ │ ├── config-5.15 │ │ │ │ └── target.mk │ │ │ ├── image/ │ │ │ │ ├── 64.mk │ │ │ │ ├── Makefile │ │ │ │ ├── generic.mk │ │ │ │ ├── geode.mk │ │ │ │ ├── grub-efi.cfg │ │ │ │ ├── grub-iso.cfg │ │ │ │ ├── grub-pc.cfg │ │ │ │ └── legacy.mk │ │ │ ├── legacy/ │ │ │ │ ├── config-5.10 │ │ │ │ ├── config-5.15 │ │ │ │ └── target.mk │ │ │ ├── modules.mk │ │ │ ├── patches-5.10/ │ │ │ │ ├── 100-fix_cs5535_clockevt.patch │ │ │ │ ├── 101-v5.15-mfd-lpc_ich-Enable-GPIO-driver-for-DH89xxCC.patch │ │ │ │ ├── 102-v5.15-platform-x86-add-meraki-mx100-platform-driver.patch │ │ │ │ └── 300-pcengines_apu1_led.patch │ │ │ └── patches-5.15/ │ │ │ └── 100-fix_cs5535_clockevt.patch │ │ └── zynq/ │ │ ├── Makefile │ │ ├── base-files/ │ │ │ └── etc/ │ │ │ ├── board.d/ │ │ │ │ └── 02_network │ │ │ └── inittab │ │ ├── config-5.10 │ │ └── image/ │ │ ├── Makefile │ │ └── gen_zynq_sdcard_img.sh │ ├── llvm-bpf/ │ │ └── Makefile │ ├── sdk/ │ │ ├── Config.in │ │ ├── Makefile │ │ ├── convert-config.pl │ │ └── files/ │ │ ├── Config.in │ │ ├── Makefile │ │ ├── README.SDK │ │ └── include/ │ │ └── prepare.mk │ └── toolchain/ │ ├── Config.in │ ├── Makefile │ └── files/ │ ├── README.TOOLCHAIN │ └── wrapper.sh ├── toolchain/ │ ├── Config.in │ ├── Makefile │ ├── binutils/ │ │ ├── Config.in │ │ ├── Config.version │ │ ├── Makefile │ │ └── patches/ │ │ ├── 2.37/ │ │ │ ├── 300-001_ld_makefile_patch.patch │ │ │ ├── 400-mips_no_dynamic_linking_sym.patch │ │ │ ├── 500-Change-default-emulation-for-mips64-linux.patch │ │ │ └── 600-Close_the_file_descriptor.patch │ │ └── 2.38/ │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 400-mips_no_dynamic_linking_sym.patch │ │ └── 500-Change-default-emulation-for-mips64-linux.patch │ ├── build_version │ ├── fortify-headers/ │ │ └── Makefile │ ├── gcc/ │ │ ├── Config.in │ │ ├── Config.version │ │ ├── common.mk │ │ ├── exclude-testsuite │ │ ├── files/ │ │ │ └── alternate-arch-cc.in │ │ ├── final/ │ │ │ └── Makefile │ │ ├── initial/ │ │ │ └── Makefile │ │ ├── minimal/ │ │ │ └── Makefile │ │ └── patches/ │ │ ├── 10.3.0/ │ │ │ ├── 002-case_insensitive.patch │ │ │ ├── 010-documentation.patch │ │ │ ├── 110-Fix-MIPS-PR-84790.patch │ │ │ ├── 230-musl_libssp.patch │ │ │ ├── 300-mips_Os_cpu_rtx_cost_model.patch │ │ │ ├── 810-arm-softfloat-libgcc.patch │ │ │ ├── 820-libgcc_pic.patch │ │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ │ ├── 850-use_shared_libgcc.patch │ │ │ ├── 851-libgcc_no_compat.patch │ │ │ ├── 870-ppc_no_crtsavres.patch │ │ │ ├── 881-no_tm_section.patch │ │ │ ├── 900-bad-mips16-crt.patch │ │ │ ├── 910-mbsd_multi.patch │ │ │ ├── 920-specs_nonfatal_getenv.patch │ │ │ ├── 930-fix-mips-noexecstack.patch │ │ │ ├── 931-libffi-fix-MIPS-softfloat-build-issue.patch │ │ │ └── 960-gotools-fix-compilation-when-making-cross-compiler.patch │ │ ├── 11.2.0/ │ │ │ ├── 001-v11.3.0-ranger-Fix-up-fold_using_range-range_of_address-PR10.patch │ │ │ ├── 002-case_insensitive.patch │ │ │ ├── 010-documentation.patch │ │ │ ├── 011-v12-configure-define-TARGET_LIBC_GNUSTACK-on-musl.patch │ │ │ ├── 110-Fix-MIPS-PR-84790.patch │ │ │ ├── 230-musl_libssp.patch │ │ │ ├── 300-mips_Os_cpu_rtx_cost_model.patch │ │ │ ├── 810-arm-softfloat-libgcc.patch │ │ │ ├── 820-libgcc_pic.patch │ │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ │ ├── 850-use_shared_libgcc.patch │ │ │ ├── 851-libgcc_no_compat.patch │ │ │ ├── 870-ppc_no_crtsavres.patch │ │ │ ├── 881-no_tm_section.patch │ │ │ ├── 900-bad-mips16-crt.patch │ │ │ ├── 910-mbsd_multi.patch │ │ │ ├── 920-specs_nonfatal_getenv.patch │ │ │ ├── 931-libffi-fix-MIPS-softfloat-build-issue.patch │ │ │ ├── 960-gotools-fix-compilation-when-making-cross-compiler.patch │ │ │ └── 970-macos_arm64-building-fix.patch │ │ └── 8.4.0/ │ │ ├── 002-case_insensitive.patch │ │ ├── 010-documentation.patch │ │ ├── 110-Fix-MIPS-PR-84790.patch │ │ ├── 230-musl_libssp.patch │ │ ├── 300-mips_Os_cpu_rtx_cost_model.patch │ │ ├── 800-arm_v5te_no_ldrd_strd.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 881-no_tm_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 930-fix-mips-noexecstack.patch │ │ ├── 931-libffi-fix-MIPS-softfloat-build-issue.patch │ │ └── 960-gotools-fix-compilation-when-making-cross-compiler.patch │ ├── gdb/ │ │ ├── Makefile │ │ └── patches/ │ │ └── 120-fix-compile-flag-mismatch.patch │ ├── glibc/ │ │ ├── Makefile │ │ ├── common.mk │ │ ├── headers/ │ │ │ └── Makefile │ │ ├── include/ │ │ │ └── libintl.h │ │ └── patches/ │ │ ├── 050-Revert-Disallow-use-of-DES-encryption-functions-in-n.patch │ │ ├── 100-fix_cross_rpcgen.patch │ │ └── 200-add-dl-search-paths.patch │ ├── info.mk │ ├── kernel-headers/ │ │ └── Makefile │ ├── musl/ │ │ ├── Config.in │ │ ├── Makefile │ │ ├── common.mk │ │ ├── include/ │ │ │ └── sys/ │ │ │ └── queue.h │ │ └── patches/ │ │ ├── 110-read_timezone_from_fs.patch │ │ ├── 200-add_libssp_nonshared.patch │ │ ├── 300-relative.patch │ │ ├── 600-nftw-support-common-gnu-extension.patch │ │ ├── 900-iconv_size_hack.patch │ │ └── 901-crypt_size_hack.patch │ ├── nasm/ │ │ └── Makefile │ └── wrapper/ │ └── Makefile └── tools/ ├── Makefile ├── autoconf/ │ ├── Makefile │ └── patches/ │ ├── 000-relocatable.patch │ ├── 001-no_emacs_lib.patch │ └── 002-musl_host_fixup.patch ├── autoconf-archive/ │ └── Makefile ├── automake/ │ ├── Makefile │ ├── files/ │ │ └── aclocal │ └── patches/ │ ├── 000-relocatable.patch │ └── 100-aclocal-skip-not-existing-directories.patch ├── b43-tools/ │ ├── Makefile │ ├── files/ │ │ └── b43-fwsquash.py │ └── patches/ │ ├── 001-fw-dirname.patch │ └── 002-no_libfl.patch ├── bash/ │ └── Makefile ├── bc/ │ ├── Makefile │ └── patches/ │ └── 001-no_doc.patch ├── bison/ │ ├── Makefile │ └── scripts/ │ └── yacc ├── cbootimage/ │ └── Makefile ├── cbootimage-configs/ │ └── Makefile ├── ccache/ │ ├── Makefile │ ├── files/ │ │ ├── ccache_cc │ │ └── ccache_cxx │ └── patches/ │ └── 100-honour-copts.patch ├── cmake/ │ ├── Makefile │ └── patches/ │ ├── 100-no-testing.patch │ ├── 120-curl-fix-libressl-linking.patch │ └── 130-bootstrap_parallel_make_flag.patch ├── coreutils/ │ └── Makefile ├── cpio/ │ ├── Makefile │ └── patches/ │ ├── 001-duplicate-program-name.patch │ └── 010-clang.patch ├── dosfstools/ │ ├── Makefile │ └── patches/ │ └── source-date-epoch.patch ├── e2fsprogs/ │ ├── Makefile │ └── patches/ │ ├── 001-exit_0_on_corrected_errors.patch │ ├── 002-dont-build-e4defrag.patch │ └── 003-no-crond.patch ├── elftosb/ │ ├── Makefile │ └── patches/ │ ├── 001-libm.patch │ ├── 002-fix-header-path.patch │ └── 003-use-ldflags.patch ├── expat/ │ └── Makefile ├── fakeroot/ │ ├── Makefile │ └── patches/ │ ├── 000-relocatable.patch │ ├── 200-disable-doc.patch │ ├── 400-alpine-libc.musl-fix.patch │ └── 600-macOS.patch ├── findutils/ │ ├── Makefile │ └── patches/ │ └── 010-endpwent.patch ├── firmware-utils/ │ └── Makefile ├── flex/ │ ├── Makefile │ └── patches/ │ ├── 100-disable-tests-docs.patch │ └── 200-build-AC_USE_SYSTEM_EXTENSIONS-in-configure.ac.patch ├── flock/ │ ├── Makefile │ └── src/ │ └── flock.c ├── genext2fs/ │ ├── Makefile │ └── patches/ │ ├── 100-c99_scanf.patch │ ├── 200-autoconf.patch │ ├── 300-blocksize-creator.patch │ └── 400-byteswap_fix.patch ├── gengetopt/ │ ├── Makefile │ └── patches/ │ └── 100-no-tests-docs.patch ├── gmp/ │ └── Makefile ├── include/ │ ├── asm/ │ │ └── types.h │ ├── byteswap.h │ ├── elf.h │ ├── endian.h │ └── sys/ │ └── sysmacros.h ├── isl/ │ └── Makefile ├── kernel2minor/ │ └── Makefile ├── libressl/ │ └── Makefile ├── libtool/ │ ├── Makefile │ ├── files/ │ │ ├── libtool-v1.5.patch │ │ ├── libtool-v2.2.patch │ │ └── libtool-v2.4.patch │ └── patches/ │ ├── 000-relocatable.patch │ ├── 100-libdir-fixes.patch │ ├── 110-dont-use-target-dir-for-relinking.patch │ ├── 120-strip-unsafe-dirs-for-relinking.patch │ ├── 150-trailingslash.patch │ ├── 160-passthrough-ssp.patch │ └── 200-openwrt-branding.patch ├── llvm-bpf/ │ └── Makefile ├── lzma/ │ ├── Makefile │ └── patches/ │ ├── 001-large_files.patch │ ├── 002-lzmp.patch │ ├── 003-compile_fixes.patch │ ├── 100-static_library.patch │ └── 101-move-copyright-to-usage-info.patch ├── lzma-old/ │ ├── Makefile │ └── patches/ │ ├── 100-lzma_zlib.patch │ ├── 110-ranlib.patch │ └── 120-add-cflags.patch ├── m4/ │ └── Makefile ├── make-ext4fs/ │ └── Makefile ├── meson/ │ ├── Makefile │ └── files/ │ ├── openwrt-cross.txt.in │ └── openwrt-native.txt.in ├── missing-macros/ │ ├── Makefile │ └── src/ │ ├── README │ ├── bin/ │ │ ├── help2man │ │ └── makeinfo │ └── m4/ │ ├── as-ac-expand.m4 │ ├── as-compiler-flag.m4 │ ├── as-unaligned-access.m4 │ ├── as-version.m4 │ ├── dnet.m4 │ ├── fake-gtk-doc-check.m4 │ ├── fake-intltool.m4 │ ├── glibc2.m4 │ ├── glibc21.m4 │ ├── intdiv0.m4 │ ├── intmax.m4 │ ├── inttypes-pri.m4 │ ├── inttypes_h.m4 │ ├── lib-ld.m4 │ ├── lib-link.m4 │ ├── lib-prefix.m4 │ ├── mfx_acc.m4 │ ├── mfx_cppflags.m4 │ ├── mfx_limits.m4 │ ├── progtest.m4 │ ├── stdint_h.m4 │ ├── uintmax_t.m4 │ ├── va_copy.m4 │ └── wint_t.m4 ├── mkimage/ │ ├── Makefile │ └── patches/ │ ├── 030-allow-to-use-different-magic.patch │ ├── 050-Add-compatibility-with-non-Linux-hosts.patch │ ├── 090-macos-arm64-builing-fix.patch │ └── 095-tools-disable-TOOLS_FIT_FULL_CHECK.patch ├── mklibs/ │ ├── Makefile │ ├── include/ │ │ └── elf.h │ └── patches/ │ ├── 001-compile.patch │ ├── 002-disable_symbol_checks.patch │ ├── 003-no_copy.patch │ ├── 004-libpthread_link.patch │ ├── 005-duplicate_syms.patch │ ├── 007-gc_sections.patch │ ├── 008-uclibc_libgcc_link.patch │ ├── 010-remove_STT_GNU_IFUNC.patch │ ├── 011-remove_multiarch.patch │ └── 100-apply-2to3.patch ├── mpc/ │ └── Makefile ├── mpfr/ │ ├── Makefile │ └── patches/ │ ├── 001-only_src.patch │ └── 100-freebsd-compat.patch ├── mtd-utils/ │ ├── Makefile │ ├── include/ │ │ ├── fls.h │ │ └── linux/ │ │ └── types.h │ └── patches/ │ ├── 100-sscanf_fix.patch │ ├── 110-portability.patch │ ├── 130-lzma_jffs2.patch │ ├── 134-freebsd_loff_t.patch │ ├── 200-libubigen-add-ubigen_write_terminator-function.patch │ ├── 201-ubinize-add-terminator-support.patch │ └── 320-mkfs.jffs2-SOURCE_DATE_EPOCH.patch ├── mtools/ │ └── Makefile ├── ninja/ │ ├── Makefile │ └── patches/ │ └── 100-make_jobserver_support.patch ├── padjffs2/ │ ├── Makefile │ └── src/ │ ├── Makefile │ └── padjffs2.c ├── patch/ │ ├── Makefile │ └── patches/ │ ├── 010-CVE-2018-6951.patch │ ├── 020-CVE-2018-1000156.patch │ ├── 030-CVE-2018-6952.patch │ ├── 040-Fix-error-handling-with-git-style-patches.patch │ ├── 050-CVE-2019-13636.patch │ └── 060-CVE-2019-13638.patch ├── patch-image/ │ ├── Makefile │ └── src/ │ ├── patch-cmdline.c │ └── patch-dtb.c ├── patchelf/ │ └── Makefile ├── pkgconf/ │ ├── Makefile │ └── files/ │ └── pkg-config ├── quilt/ │ ├── Makefile │ └── patches/ │ ├── 000-relocatable.patch │ └── 001-fix_compile.patch ├── sdimage/ │ ├── Makefile │ └── patches/ │ └── 100-deactivate-ufb.patch ├── sed/ │ └── Makefile ├── sparse/ │ └── Makefile ├── squashfs/ │ ├── Makefile │ └── patches/ │ ├── 100-lzma.patch │ ├── 110-no_nonstatic_inline.patch │ ├── 120-add-fixed-timestamp-support.patch │ ├── 130-include_sysmacros.patch │ └── 140-gcc-10-fix.patch ├── squashfskit4/ │ ├── Makefile │ └── patches/ │ ├── 0001-fix-version.sh.patch │ ├── 0002-fix-build-failure-against-gcc-10.patch │ ├── 0010-portability.patch │ └── 0020-big-endian.patch ├── sstrip/ │ ├── Makefile │ └── patches/ │ └── 001-disable-elftoc-compilation.patch ├── tar/ │ ├── Makefile │ └── patches/ │ ├── 100-symlink-force-root-name.patch │ └── 110-symlink-force-permissions.patch ├── xxd/ │ └── Makefile ├── xz/ │ └── Makefile ├── zip/ │ ├── Makefile │ └── patches/ │ ├── 001-unix-configure-borrow-the-LFS-test-from-autotools.patch │ ├── 004-do-not-set-unwanted-cflags.patch │ ├── 006-stack-markings-to-avoid-executable-stack.patch │ ├── 007-fclose-in-file-not-fclose-x.patch │ ├── 008-hardening-build-fix-1.patch │ ├── 009-hardening-build-fix-2.patch │ ├── 010-remove-build-date.patch │ ├── 011-reproducible-mtime.patch │ └── 012-make-encrypted-archives-reproducible.patch ├── zlib/ │ ├── Makefile │ └── patches/ │ └── 900-overridable-pc-exec-prefix.patch └── zstd/ └── Makefile