├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── openwrt-ci.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 ├── README_EN.md ├── README_JA.md ├── config ├── Config-build.in ├── Config-devel.in ├── Config-images.in ├── Config-kernel.in ├── check-hostcxx.sh └── check-uname.sh ├── doc ├── cw-zh.jpg ├── h68k.jpg ├── r1.jpg ├── sige-en.jpg ├── sige-zh.jpg └── star.png ├── 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-5.4 ├── kernel-6.1 ├── kernel-6.12 ├── kernel-6.6 ├── kernel-build.mk ├── kernel-defaults.mk ├── kernel-version.mk ├── kernel.mk ├── logo.png ├── logo.svg ├── meson.mk ├── netfilter.mk ├── nls.mk ├── openssl-module.mk ├── optee-os.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 │ ├── loongarch64 │ ├── m68k │ ├── mips │ ├── mips64 │ ├── mips64el │ ├── mipsel │ ├── powerpc │ ├── powerpc64 │ ├── riscv64 │ ├── 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 │ │ │ │ ├── leds │ │ │ │ │ └── 00-init │ │ │ │ └── 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 │ │ │ ├── os-release │ │ │ ├── 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 │ │ │ │ └── 50-root-passwd │ │ ├── lib │ │ │ ├── functions.sh │ │ │ ├── functions │ │ │ │ ├── caldata.sh │ │ │ │ ├── ipv4.sh │ │ │ │ ├── leds.sh │ │ │ │ ├── migrations.sh │ │ │ │ ├── network.sh │ │ │ │ ├── preinit.sh │ │ │ │ ├── service.sh │ │ │ │ ├── system.sh │ │ │ │ └── uci-defaults.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 │ │ │ │ └── tar.sh │ │ ├── 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 │ └── luci │ │ ├── bin │ │ └── config_generate │ │ └── lib │ │ ├── functions │ │ └── uci-defaults.sh │ │ └── preinit │ │ └── 10_indicate_preinit ├── boot │ ├── arm-trusted-firmware-mediatek │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-mediatek-snfi-FM35Q1GA-is-x4-only.patch │ │ │ ├── 0002-mediatek-snfi-adjust-pin-drive-strength-for-Fidelix-.patch │ │ │ ├── 0003-mediatek-snfi-adjust-drive-strength-to-12mA-like-old.patch │ │ │ ├── 0004-mediatek-snfi-add-FudanMicro-manufacturer.patch │ │ │ ├── 0005-mt7987-make-SPI-controller-configurable.patch │ │ │ ├── 0006-hack-mt7987-mmc-use-4-bit-bus-width-for-eMMC.patch │ │ │ └── 0007-hack-mt7987-bl2-move-FIP-offset-to-0x100000.patch │ ├── arm-trusted-firmware-mvebu │ │ ├── Makefile │ │ ├── patches-a3700-utils │ │ │ └── 001-version.patch │ │ ├── patches-mv-ddr-marvell │ │ │ └── 001-version.patch │ │ └── patches │ │ │ └── 200-hostssl.patch │ ├── arm-trusted-firmware-rockchip │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-feat-rk3568-support-SCMI-for.patch │ ├── arm-trusted-firmware-stm32 │ │ ├── Makefile │ │ └── patches │ │ │ └── 0001-fix-stm32mp1-fdts-re-enable-RTC-clock.patch │ ├── 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-gpt.cfg │ │ │ └── grub-early.cfg │ │ └── patches │ │ │ ├── 001-add-missing-extra_deps-list.patch │ │ │ └── 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 │ ├── opensbi │ │ └── Makefile │ ├── optee-os-stm32 │ │ └── Makefile │ ├── rockchip-rkbin │ │ ├── Makefile │ │ └── src │ │ │ └── trust.ini │ ├── tfa-layerscape │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-fiptool-hostbuild-fixes.patch │ │ │ └── 003-plat-nxp-tools-fix-create_pbl-and-byte_swap-host-bui.patch │ ├── uboot-allwinner │ │ ├── Makefile │ │ ├── patches │ │ │ ├── 100-mkimage-check-environment-for-dtc-binary-location.patch │ │ │ ├── 130-fix-mkimage-host-build.patch │ │ │ ├── 211-no-kwbimage.patch │ │ │ └── 300-force-pylibfdt-build.patch │ │ └── uEnv-default.txt │ ├── uboot-amlogic │ │ └── Makefile │ ├── uboot-armsr │ │ └── Makefile │ ├── uboot-at91 │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-fix-Wformat-security.patch │ ├── uboot-envtools │ │ ├── Makefile │ │ ├── files │ │ │ ├── apm821xx │ │ │ ├── ath79 │ │ │ ├── cns3xxx │ │ │ ├── fw_printsys │ │ │ ├── fw_setsys │ │ │ ├── imx_cortexa7 │ │ │ ├── imx_cortexa9 │ │ │ ├── ipq40xx │ │ │ ├── ipq60xx │ │ │ ├── ipq806x │ │ │ ├── kirkwood │ │ │ ├── lantiq │ │ │ ├── layerscape │ │ │ ├── mediatek_filogic │ │ │ ├── mediatek_mt7622 │ │ │ ├── mediatek_mt7623 │ │ │ ├── mpc85xx │ │ │ ├── mvebu │ │ │ ├── mxs │ │ │ ├── oxnas │ │ │ ├── pistachio │ │ │ ├── qualcommax │ │ │ ├── ramips │ │ │ ├── realtek │ │ │ ├── rockchip │ │ │ └── uboot-envtools.sh │ │ └── patches │ │ │ └── 001-compile.patch │ ├── uboot-fritz4040 │ │ └── Makefile │ ├── uboot-imx │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-apalis_imx6_defconfig-enable-some-useful-commands.patch │ │ │ ├── 110-mx6cuboxi-mmc-fallback.patch │ │ │ └── 111-mx6cuboxi_defconfig-force-mmc-boot.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 │ │ │ ├── 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 │ │ │ └── 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 │ ├── uboot-mediatek │ │ ├── Makefile │ │ └── patches │ │ │ ├── 007-ARM-dts-build-DT-for-MT7987-RFB.patch │ │ │ ├── 100-01-drivers-mtd-add-support-for-MediaTek-SPI-NAND-flash-.patch │ │ │ ├── 100-02-mtd-mtk-snand-add-support-for-SPL.patch │ │ │ ├── 100-03-mtd-add-a-new-mtd-device-type-for-NMBM.patch │ │ │ ├── 100-04-mtd-add-core-facility-code-of-NMBM.patch │ │ │ ├── 100-05-mtd-nmbm-add-support-for-mtd.patch │ │ │ ├── 100-06-common-board_r-add-support-to-initialize-NMBM-after-.patch │ │ │ ├── 100-07-cmd-add-nmbm-command.patch │ │ │ ├── 100-08-cmd-mtd-add-markbad-subcommand-for-NMBM-testing.patch │ │ │ ├── 100-09-mtd-mtk-snand-add-NMBM-support-for-SPL.patch │ │ │ ├── 100-10-cmd-add-a-new-command-for-NAND-flash-debugging.patch │ │ │ ├── 100-11-env-add-support-for-NMBM-upper-MTD-layer.patch │ │ │ ├── 100-12-mtd-spi-nor-add-support-to-read-flash-unique-ID.patch │ │ │ ├── 100-13-cmd-sf-add-support-to-read-flash-unique-ID.patch │ │ │ ├── 100-14-common-spl-spl_nand-enable-CONFIG_SYS_NAND_U_BOOT_OF.patch │ │ │ ├── 100-16-board-mt7622-use-new-spi-nand-driver.patch │ │ │ ├── 100-17-board-mt7981-add-reference-board-using-new-spi-nand-.patch │ │ │ ├── 100-18-mtd-spi-nor-add-more-flash-ids.patch │ │ │ ├── 100-19-mtd-spi-nand-add-more-spi-nand-chips.patch │ │ │ ├── 100-20-mtd-spi-nand-add-support-for-FudanMicro-chips.patch │ │ │ ├── 100-22-mmc-mtk-sd-add-support-to-display-verbose-error-log.patch │ │ │ ├── 100-23-cmd-ubi-make-volume-find-create-remove-APIs-public.patch │ │ │ ├── 100-24-cmd-ubi-allow-creating-volume-with-all-free-spaces.patch │ │ │ ├── 100-25-env-ubi-add-support-to-create-environment-volume-if-.patch │ │ │ ├── 100-26-mtd-ubi-add-support-for-UBI-end-of-filesystem-marker.patch │ │ │ ├── 101-01-mtd-spinand-add-support-for-FORESEE-F35SQA002G.patch │ │ │ ├── 101-02-mtd-spinand-add-support-for-FORESEE-F35SQA001G.patch │ │ │ ├── 101-03-mtd-spinand-fix-support-for-FORESEE.patch │ │ │ ├── 103-01-mt7622-enable-pstore.patch │ │ │ ├── 103-02-mt7981-enable-pstore.patch │ │ │ ├── 103-03-mt7986-enable-pstore.patch │ │ │ ├── 103-04-mt7988-enable-pstore.patch │ │ │ ├── 104-snfi-add-support-for-GD5F1GQ5UE.patch │ │ │ ├── 105-configs-add-usefull-stuff-to-mt7988-rfb.patch │ │ │ ├── 106-configs-sync-mt7981-rfb-storage.patch │ │ │ ├── 107-configs-add-useful-options-to-mt7981-rfb.patch │ │ │ ├── 108-dts-arm64-mt7981-rfb-add-mtd-partitions.patch │ │ │ ├── 109-snfi-FM35Q1GA-is-x4-only.patch │ │ │ ├── 110-mtd-spi-nand-add-support-for-FudanMicro-FM25S01A.patch │ │ │ ├── 111-force-pylibfdt-build.patch │ │ │ ├── 120-use-xz-instead-of-lzma.patch │ │ │ ├── 129-board-mediatek-wire-up-NMBM-support.patch │ │ │ ├── 200-cmd-add-imsz-and-imszb.patch │ │ │ ├── 211-cmd-bootmenu-custom-title.patch │ │ │ ├── 220-cmd-env-readmem.patch │ │ │ ├── 230-cmd-add-pstore-check.patch │ │ │ ├── 250-fix-mmc-erase-timeout.patch │ │ │ ├── 280-image-fdt-save-name-of-FIT-configuration-in-chosen-node.patch │ │ │ ├── 300-mt7623-fix-mmc-get-env-dev.patch │ │ │ ├── 301-mt7622-generic-reset-button-ignore-env.patch │ │ │ ├── 302-mt7623-generic-reset-button-ignore-env.patch │ │ │ ├── 303-mt7986-generic-reset-button-ignore-env.patch │ │ │ ├── 304-mt7981-generic-reset-button-ignore-env.patch │ │ │ ├── 305-mt7988-generic-reset-button-ignore-env.patch │ │ │ ├── 306-mt7987-generic-reset-button-ignore-env.patch │ │ │ ├── 310-mt7988-select-rootdisk.patch │ │ │ ├── 311-mt7986-select-rootdisk.patch │ │ │ ├── 312-mt7622-select-rootdisk.patch │ │ │ ├── 313-mt7623-select-rootdisk.patch │ │ │ ├── 314-mt7981-select-rootdisk.patch │ │ │ ├── 315-mt7987-select-rootdisk.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 │ │ │ ├── 406-dts-mt7623n-bpi-r2-uart0-force-highspeed.patch │ │ │ ├── 408-arm-mediatek-add-back-mt7622-LK-image-header.patch │ │ │ ├── 410-add-linksys-e8450.patch │ │ │ ├── 412-add-ubnt-unifi-6-lr.patch │ │ │ ├── 420-add-support-for-RAVPower-RP-WD009.patch │ │ │ ├── 430-add-bpi-r3.patch │ │ │ ├── 450-add-bpi-r4.patch │ │ │ ├── 470-add-bpi-r4-lite.patch │ │ │ └── 500-adapt-mt7987-rfb.patch │ ├── uboot-mvebu │ │ ├── Makefile │ │ └── patches │ │ │ └── 210-link-libcrypto-static.patch │ ├── uboot-mxs │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-add-i2se-duckbill.patch │ │ │ └── 210-link-libcrypto-static.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 │ │ │ ├── 110-force-pylibfdt-build.patch │ │ │ ├── 111-fix-mkimage-host-build.patch │ │ │ ├── 120-fix-binman-migrate-from.patch │ │ │ ├── 200-radxa-e25-update-baudrate.patch │ │ │ ├── 201-rk3568-generic-remove-spi-support.patch │ │ │ ├── 202-rockchip-Add-initial-RK3582-support.patch │ │ │ ├── 203-rockchip-rk3588-generic-Enable-support-for.patch │ │ │ ├── 204-rockchip-rk3588s-rock-5c-Add-support-for.patch │ │ │ ├── 210-rockchip-rk3588-disable-policy-for-rk3582.patch │ │ │ ├── 300-rockchip-rk3399-Add-support-for-sv901-eaio.patch │ │ │ ├── 301-arm64-dts-rockchip-Add-GuangMiao-G4C-support.patch │ │ │ ├── 302-rockchip-rk3399-Add-support-for-rumu3f-fine3399.patch │ │ │ ├── 305-rockchip-rk3399-Add-support-for-FriendlyARM-NanoPi.patch │ │ │ ├── 306-rockchip-rk3399-Add-support-for-Rongpin-king3399.patch │ │ │ ├── 307-rockchip-rk3399-Add-support-for-Rocktech-MPC1903.patch │ │ │ ├── 308-rockchip-rk3399-Add-support-for-sharevdi-h3399pc.patch │ │ │ ├── 309-rockchip-rk3399-Add-support-for-dilusense-dlfr100.patch │ │ │ ├── 310-rockchip-rk3399-Add-support-for-xiaobao-nas-v1.patch │ │ │ ├── 311-rockchip-rk3568-Add-support-for-fastrhino-r6xs.patch │ │ │ ├── 314-rockchip-rk3568-Add-support-for-station-p2.patch │ │ │ ├── 315-rockchip-rk3568-Add-support-for-photonicat.patch │ │ │ ├── 316-rockchip-rk3566-Add-support-for-panther-x2.patch │ │ │ └── 318-rockchip-rk3568-Add-support-for-mmbox-anas3035.patch │ ├── uboot-sifiveu │ │ ├── Makefile │ │ ├── patches │ │ │ ├── 0005-riscv-dts-Add-few-PMU-events.patch │ │ │ ├── 0006-riscv-sifive-fu740-reduce-DDR-speed-from-1866MT-s-to.patch │ │ │ ├── 100-mkimage-check-environment-for-dtc-binary-location.patch │ │ │ ├── 110-no-kwbimage.patch │ │ │ ├── 130-fix-mkimage-host-build.patch │ │ │ └── 300-force-pylibfdt-build.patch │ │ └── uEnv-default.txt │ ├── uboot-stm32 │ │ └── Makefile │ ├── uboot-sunxi │ │ ├── Makefile │ │ ├── patches │ │ │ ├── 002-add-olimex-a13-som.patch │ │ │ ├── 062-A20-improve-gmac-upload.patch │ │ │ ├── 091-sun6i-sync-PLL1-multdiv-with-Boot1.patch │ │ │ ├── 093-sun6i-fix-PLL-LDO-voltselect.patch │ │ │ ├── 200-mkimage-check-environment-for-dtc-binary-location.patch │ │ │ ├── 252-sunxi-h3-add-support-for-nanopi-r1.patch │ │ │ ├── 254-sunxi-h2-add-bpi-p2-zero.patch │ │ │ ├── 260-sunxi-add-USB-support-and-PopStick-support.patch │ │ │ ├── 261-sunxi-add-popstick-defconfig.patch │ │ │ └── 300-force-pylibfdt-build.patch │ │ ├── uEnv-a64.txt │ │ ├── uEnv-default.txt │ │ ├── uEnv-f1c.txt │ │ ├── uEnv-h6.txt │ │ ├── uEnv-h616.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 │ │ └── 210-link-libcrypto-static.patch ├── devel │ ├── binutils │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-replace-attribute_const.patch │ ├── gdb │ │ ├── Makefile │ │ └── patches │ │ │ ├── 110-shared_libgcc.patch │ │ │ ├── 120-sigprocmask-invalid-call.patch │ │ │ ├── 140-sgidefs.patch │ │ │ └── 150-mips64.patch │ ├── perf │ │ └── Makefile │ ├── strace │ │ ├── Makefile │ │ └── patches │ │ │ └── 010-m4.patch │ ├── tmon │ │ └── Makefile │ ├── trace-cmd │ │ └── Makefile │ └── 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 │ ├── armbian-firmware │ │ └── Makefile │ ├── ath10k-ct-firmware │ │ └── Makefile │ ├── ath11k-firmware │ │ └── Makefile │ ├── cypress-firmware │ │ └── Makefile │ ├── cypress-nvram │ │ ├── Makefile │ │ └── files │ │ │ └── brcmfmac4339-sdio.AP6335.txt │ ├── intel-microcode │ │ └── Makefile │ ├── ipq-wifi │ │ ├── Makefile │ │ └── src │ │ │ ├── board-aliyun_ap8220.ipq8074 │ │ │ ├── board-cmcc_rax3000q.ipq5018 │ │ │ ├── board-cmcc_rax3000q.qcn6122 │ │ │ ├── board-redmi_ax5-jdcloud.ipq6018 │ │ │ └── board-xiaomi_rm1800.ipq6018 │ ├── lantiq │ │ └── dsl-vrx200-firmware-xdsl │ │ │ └── Makefile │ ├── layerscape │ │ ├── fman-ucode │ │ │ └── Makefile │ │ ├── ls-ddr-phy │ │ │ └── Makefile │ │ ├── ls-dpl │ │ │ └── Makefile │ │ ├── ls-mc │ │ │ └── Makefile │ │ ├── ls-rcw │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ ├── 0001-Remove-tclsh-checking.patch │ │ │ │ └── 0002-fix_rcw_for_ls1012a-frdm.patch │ │ └── ppfe-firmware │ │ │ └── Makefile │ ├── linux-firmware │ │ ├── Makefile │ │ ├── aeonsemi.mk │ │ ├── airoha.mk │ │ ├── amd.mk │ │ ├── brcm_firmware │ │ │ ├── ap6236 │ │ │ │ ├── brcmfmac43430-sdio.bin │ │ │ │ └── brcmfmac43430-sdio.txt │ │ │ └── ap6275s │ │ │ │ ├── BCM4362A2.hcd │ │ │ │ ├── clm_bcm43752a2_ag.blob │ │ │ │ ├── fw_bcm43752a2_ag_apsta.bin │ │ │ │ └── nvram_ap6275s.txt │ │ ├── broadcom.mk │ │ ├── cis.mk │ │ ├── edgeport.mk │ │ ├── intel.mk │ │ ├── marvell.mk │ │ ├── mediatek.mk │ │ ├── mellanox.mk │ │ ├── misc.mk │ │ ├── qca.mk │ │ ├── qca_ath10k.mk │ │ ├── qca_ath11k.mk │ │ ├── qca_ath12k.mk │ │ ├── realtek.mk │ │ ├── rsi.mk │ │ └── ti.mk │ ├── pcat-firmware │ │ ├── Makefile │ │ └── files │ │ │ ├── board.bin │ │ │ └── firmware-sdio-5.bin │ ├── prism54-firmware │ │ └── Makefile │ ├── quantenna │ │ ├── Makefile │ │ ├── files │ │ │ ├── lib │ │ │ │ ├── netifd │ │ │ │ │ ├── quantenna.sh │ │ │ │ │ └── wireless │ │ │ │ │ │ └── quantenna.sh │ │ │ │ └── wifi │ │ │ │ │ └── quantenna.sh │ │ │ ├── qtn-utils.init │ │ │ └── qtn.wireless │ │ ├── patches │ │ │ ├── 001-link-with-rpc-makefile.patch │ │ │ ├── 002-include_sys_types.patch │ │ │ ├── 003-fix_include_poll.patch │ │ │ ├── 004-include_string.patch │ │ │ └── 050-quantenna-pcie2-k5.4.patch │ │ └── src │ │ │ ├── Makefile │ │ │ ├── call_qcsapi.c │ │ │ ├── call_qcsapi.h │ │ │ ├── common │ │ │ ├── client │ │ │ │ ├── find_host_addr.h │ │ │ │ └── qftc.h │ │ │ ├── common_mem.h │ │ │ ├── current_platform.h │ │ │ ├── rpc_pci.h │ │ │ ├── rpc_pci_nlm.h │ │ │ ├── rpc_raw.h │ │ │ ├── ruby_config.h │ │ │ ├── ruby_mem.h │ │ │ ├── ruby_pm.h │ │ │ ├── topaz_config.h │ │ │ └── uboot_header.h │ │ │ ├── compat.h │ │ │ ├── drivers │ │ │ ├── pcie │ │ │ │ ├── host │ │ │ │ │ ├── cavium │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── qdpc_cvm_dma.c │ │ │ │ │ │ ├── qdpc_platform.c │ │ │ │ │ │ └── qdpc_platform.h │ │ │ │ │ ├── common │ │ │ │ │ │ ├── qdpc_init.c │ │ │ │ │ │ ├── qdpc_init.h │ │ │ │ │ │ ├── qdpc_net.c │ │ │ │ │ │ ├── qdpc_pcie.c │ │ │ │ │ │ ├── qdpc_regs.h │ │ │ │ │ │ └── qdpc_ring.c │ │ │ │ │ ├── intel │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── qdpc_platform.h │ │ │ │ │ ├── lantiq │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── qdpc_platform.h │ │ │ │ │ └── quantenna │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── qdpc_platform.h │ │ │ │ ├── include │ │ │ │ │ ├── qdpc_config.h │ │ │ │ │ ├── qdpc_debug.h │ │ │ │ │ ├── qdpc_ruby.h │ │ │ │ │ └── queue.h │ │ │ │ └── target │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── qdpc_emac.c │ │ │ │ │ ├── qdpc_emac.h │ │ │ │ │ ├── qdpc_init.c │ │ │ │ │ ├── qdpc_init.h │ │ │ │ │ ├── qdpc_net.c │ │ │ │ │ ├── qdpc_pcie.c │ │ │ │ │ ├── qdpc_regs.h │ │ │ │ │ └── qdpc_ring.c │ │ │ └── pcie2 │ │ │ │ ├── host │ │ │ │ ├── arm │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── qdpc_platform.c │ │ │ │ │ └── qdpc_platform.h │ │ │ │ ├── common │ │ │ │ │ ├── qdpc_init.c │ │ │ │ │ ├── qdpc_init.h │ │ │ │ │ ├── qdpc_pcie.c │ │ │ │ │ ├── qdpc_regs.h │ │ │ │ │ ├── topaz_vnet.c │ │ │ │ │ └── topaz_vnet.h │ │ │ │ ├── intel │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── qdpc_platform.c │ │ │ │ │ └── qdpc_platform.h │ │ │ │ ├── mipsr2 │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── qdpc_platform.c │ │ │ │ │ └── qdpc_platform.h │ │ │ │ ├── quantenna │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── qdpc_dspload.c │ │ │ │ │ ├── qdpc_dspload.h │ │ │ │ │ ├── qdpc_platform.c │ │ │ │ │ └── qdpc_platform.h │ │ │ │ └── st │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── qdpc_platform.c │ │ │ │ │ └── qdpc_platform.h │ │ │ │ └── include │ │ │ │ ├── qdpc_config.h │ │ │ │ ├── qdpc_debug.h │ │ │ │ ├── qdpc_version.h │ │ │ │ ├── ruby_pcie_bda.h │ │ │ │ └── topaz_netcom.h │ │ │ ├── net80211 │ │ │ ├── _ieee80211.h │ │ │ ├── ieee80211.h │ │ │ ├── ieee80211_crypto.h │ │ │ ├── ieee80211_dfs_reentry.h │ │ │ ├── ieee80211_ioctl.h │ │ │ └── ieee80211_qos.h │ │ │ ├── qcsapi.h │ │ │ ├── qcsapi_driver.c │ │ │ ├── qcsapi_driver.h │ │ │ ├── qcsapi_output.c │ │ │ ├── qcsapi_output.h │ │ │ ├── qcsapi_rpc │ │ │ ├── client │ │ │ │ ├── pcie │ │ │ │ │ └── qcsapi_pcie_rpc_client.c │ │ │ │ ├── qcsapi_rpc_client.h │ │ │ │ ├── socket │ │ │ │ │ └── qcsapi_socket_rpc_client.c │ │ │ │ └── socket_raw │ │ │ │ │ └── qcsapi_socketraw_rpc_client.c │ │ │ └── generated │ │ │ │ ├── qcsapi_rpc.h │ │ │ │ ├── qcsapi_rpc_clnt_adapter.c │ │ │ │ └── qcsapi_rpc_xdr.c │ │ │ ├── qcsapi_rpc_common │ │ │ ├── client │ │ │ │ ├── find_host_addr.c │ │ │ │ ├── find_host_addr.h │ │ │ │ ├── qftc.c │ │ │ │ ├── qftc.h │ │ │ │ ├── rpc_pci_clnt.c │ │ │ │ └── rpc_raw_clnt.c │ │ │ └── common │ │ │ │ ├── rpc_pci.h │ │ │ │ ├── rpc_pci_nlm.h │ │ │ │ ├── rpc_raw.c │ │ │ │ └── rpc_raw.h │ │ │ ├── qcsapi_rpc_sample │ │ │ └── c_rpc_qcsapi_sample.c │ │ │ ├── qcsapi_sem.c │ │ │ ├── qcsapi_sem.h │ │ │ ├── qcsapi_util.c │ │ │ ├── qcsapi_util.h │ │ │ ├── qtn │ │ │ ├── lhost_muc_comm.h │ │ │ ├── muc_share_def.h │ │ │ ├── muc_txrx_stats.h │ │ │ ├── qtn_cca.h │ │ │ ├── qtn_config.h │ │ │ ├── qtn_debug.h │ │ │ ├── qtn_uc_comm.h │ │ │ ├── qtn_vlan.h │ │ │ ├── qtn_wmm_ac.h │ │ │ ├── qvsp_common.h │ │ │ ├── qvsp_data.h │ │ │ ├── shared_defs.h │ │ │ ├── shared_defs_common.h │ │ │ └── wlan_ioctl.h │ │ │ ├── topaz-linux.lzma.img │ │ │ └── u-boot.bin │ └── wireless-regdb │ │ ├── Makefile │ │ └── patches │ │ ├── 500-world-regd-5GHz.patch │ │ └── 600-custom-fix-txpower-and-dfs.patch ├── kernel │ ├── ath10k-ct │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-api_update.patch │ │ │ ├── 120-ath10k-fetch-calibration-data-via-nvmem-subsystem.patch │ │ │ ├── 130-ath10k-read-qcom-coexist-support-as-a-u32.patch │ │ │ ├── 201-ath10k-add-LED-and-GPIO-controlling-support-for-various-chipsets.patch │ │ │ ├── 202-ath10k-use-tpt-trigger-by-default.patch │ │ │ ├── 203-ath10k-ct-fix-compilation-warning-for-debug-level.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 │ │ │ └── 988-ath10k-always-use-mac80211-loss-detection.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 │ │ └── patches │ │ │ └── 0010-Fix-cryptodev_verbosity-sysctl-for-Linux-6.11-rc1.patch │ ├── 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 │ ├── gpio-nxp-74hc153 │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── gpio-nxp-74hc153.c │ ├── ksmbd │ │ ├── Makefile │ │ └── patches │ │ │ ├── 01-keep_kmod_metadata.patch │ │ │ └── 03-fix-build-with-kernel-5.10.patch │ ├── lantiq │ │ ├── ltq-adsl-fw │ │ │ └── Makefile │ │ ├── ltq-adsl-mei │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── drv_mei_cpe.c │ │ │ │ └── ifxmips_mei_interface.h │ │ ├── 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 │ │ ├── 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 │ │ │ │ └── 200-Fix-app-compilation-failure-from-inclusion-of-wrong-.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-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 │ │ │ │ ├── 100-compat.patch │ │ │ │ ├── 101_no-date-time.patch │ │ │ │ └── 110-reset-g_tx_link_rate-on-showtime-exit.patch │ │ ├── ltq-vdsl │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ ├── 001-fix-compile.patch │ │ │ │ ├── 020-not-leak-cflags.patch │ │ │ │ ├── 100-compat.patch │ │ │ │ └── 110-semaphore-lock.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 │ ├── leds-ws2812b │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── leds-ws2812b.c │ ├── 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.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 │ │ │ └── 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 │ │ │ │ ├── 100-wifi-ath-add-struct_group-for-struct-ath_cycle_count.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 │ │ │ │ └── 432-carl9170_re-fix_fortified-memset_warning.patch │ │ │ ├── ath10k │ │ │ │ ├── 080-ath10k_thermal_config.patch │ │ │ │ ├── 911-ath10k-disable-caldata-prefetch-for-sdio-bus.patch │ │ │ │ ├── 921-ath10k_init_devices_synchronously.patch │ │ │ │ ├── 930-ath10k_add_tpt_led_trigger.patch │ │ │ │ ├── 974-ath10k_add-LED-and-GPIO-controlling-support-for-various-chipsets.patch │ │ │ │ ├── 975-ath10k-use-tpt-trigger-by-default.patch │ │ │ │ ├── 981-ath10k-adjust-tx-power-reduction-for-US-regulatory-d.patch │ │ │ │ ├── 984-ath10k-Try-to-get-mac-address-from-dts.patch │ │ │ │ ├── 988-ath10k-always-use-mac80211-loss-detection.patch │ │ │ │ ├── 989-ath10k-allow-vht-on-2g.patch │ │ │ │ ├── 990-ath10k-small-buffers.patch │ │ │ │ └── 991-ath10k-fix-kernel-6.12-support.patch │ │ │ ├── ath11k │ │ │ │ ├── 0013-wifi-ath11k-mhi-add-a-warning-message-for-MHI_CB_EE_.patch │ │ │ │ ├── 0014-wifi-ath11k-move-references-from-rsvd2-to-info-field.patch │ │ │ │ ├── 0015-wifi-ath11k-fix-tid-bitmap-is-0-in-peer-rx-mu-stats.patch │ │ │ │ ├── 0016-wifi-ath11k-add-chip-id-board-name-while-searching-b.patch │ │ │ │ ├── 0018-wifi-ath11k-drop-NULL-pointer-check-in-ath11k_update.patch │ │ │ │ ├── 0019-wifi-ath11k-drop-redundant-check-in-ath11k_dp_rx_mon.patch │ │ │ │ ├── 0020-wifi-ath11k-remove-unused-members-of-struct-ath11k_b.patch │ │ │ │ ├── 0021-wifi-ath11k-use-kstrtoul_from_user-where-appropriate.patch │ │ │ │ ├── 0022-wifi-ath11k-remove-unnecessary-void-conversions.patch │ │ │ │ ├── 0023-wifi-ath11k-fix-ath11k_mac_op_remain_on_channel-stac.patch │ │ │ │ ├── 0024-wifi-ath11k-mac-fix-struct-ieee80211_sband_iftype_da.patch │ │ │ │ ├── 0025-wifi-ath11k-fix-CAC-running-state-during-virtual-int.patch │ │ │ │ ├── 0026-wifi-ath11k-fix-Tx-power-value-during-active-CAC.patch │ │ │ │ ├── 0027-wifi-ath11k-call-ath11k_mac_fils_discovery-without-c.patch │ │ │ │ ├── 0028-wifi-ath11k-ath11k_debugfs_register-fix-format-trunc.patch │ │ │ │ ├── 0029-wifi-ath11k-add-parsing-of-phy-bitmap-for-reg-rules.patch │ │ │ │ ├── 0030-wifi-ath11k-Remove-unused-struct-ath11k_htc_frame.patch │ │ │ │ ├── 0031-wifi-ath11k-Introduce-and-use-ath11k_sta_to_arsta.patch │ │ │ │ ├── 0097-wifi-ath11k-move-pci.ops-registration-ahead.patch │ │ │ │ ├── 0099-wifi-ath11k-add-support-for-QCA2066.patch │ │ │ │ ├── 100-wifi-ath11k-use-unique-QRTR-instance-ID.patch │ │ │ │ ├── 101-wifi-ath11k-add-support-DT-ieee80211-freq-limit.patch │ │ │ │ ├── 201-wifi-ath11k-Support-setting-bdf-addr-and-caldb-addr-.patch │ │ │ │ ├── 900-ath11k-control-thermal-support-via-symbol.patch │ │ │ │ ├── 901-wifi-ath11k-pci-fix-compilation-in-5.16-and-older.patch │ │ │ │ ├── 902-ath11k-Disable-coldboot-calibration-for-IPQ8074.patch │ │ │ │ ├── 903-ath11k-support-setting-FW-memory-mode-via-DT.patch │ │ │ │ ├── 905-ath11k-remove-intersection-support-for-regulatory-ru.patch │ │ │ │ ├── 906-ath11k-Disable-coldboot-calibration-for-IPQ6018.patch │ │ │ │ ├── 907-wifi-ath11k-disable-coldboot-calibration-for-ipq5018.patch │ │ │ │ ├── 910-ath11k-fix-remapped-ce-accessing-issue-on-64bit-OS.patch │ │ │ │ ├── 920-wifi-ath11k-add-hw-params-for-QCN6122.patch │ │ │ │ ├── 921-wifi-ath11k-add-hal-regs-for-QCN6122.patch │ │ │ │ ├── 922-wifi-ath11k-add-hw-ring-mask-for-QCN6122.patch │ │ │ │ ├── 923-wifi-ath11k-update-hif_and-pci_ops-for-QCN6122.patch │ │ │ │ ├── 924-wifi-ath11k-add-multipd-support-for-QCN6122.patch │ │ │ │ ├── 925-wifi-ath11k-add-QCN6122-device-support.patch │ │ │ │ ├── 931-wifi-ath11k-Support-to-assign-m3-dump-memory.patch │ │ │ │ ├── 932-wifi-ath11k-poll-reo-status-ipq5018.patch │ │ │ │ └── 990-ath11k-fix-kernel-6.12-support.patch │ │ │ ├── ath12k │ │ │ │ ├── 100-ath12k-prevent-ltssm-startup-crash.patch │ │ │ │ ├── 102-wifi-ath12k-limit-WMI_SCAN_CHAN_LIST_CMDID-arg.patch │ │ │ │ └── 103-wifi-ath12k-fix-5GHz-operation-on-wideband-QCN.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 │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── 865-brcmfmac-disable-dump_survey-on-bcm2835.patch │ │ │ │ └── 870-brcmfmac-6.12-support..patch │ │ │ ├── build │ │ │ │ ├── 000-fix_kconfig.patch │ │ │ │ ├── 001-fix_build.patch │ │ │ │ ├── 002-change_allconfig.patch │ │ │ │ ├── 003-remove_bogus_modparams.patch │ │ │ │ ├── 004-fix-kconf-compiling.patch │ │ │ │ ├── 012-kernel_build_check.patch │ │ │ │ ├── 050-lib80211_option.patch │ │ │ │ ├── 060-no_local_ssb_bcma.patch │ │ │ │ ├── 070-remove-broken-wext-select.patch │ │ │ │ ├── 080-resv_start_op.patch │ │ │ │ ├── 090-bcma-otp.patch │ │ │ │ ├── 100-backports-drop-QRTR-and-MHI.patch │ │ │ │ ├── 110-backport_namepace_const.patch │ │ │ │ ├── 120-headers_version_fix.patch │ │ │ │ ├── 130-iommu_backport.patch │ │ │ │ ├── 140-fix-trace_backport.patch │ │ │ │ ├── 150-fix-eth_hw_addr_set.patch │ │ │ │ ├── 160-add-kernel-6.12-support.patch │ │ │ │ ├── 200-Revert-wifi-iwlwifi-Use-generic-thermal_zone_get_tri.patch │ │ │ │ ├── 210-revert-split-op.patch │ │ │ │ ├── 220-list-don-t-backport-list_count_nodes.patch │ │ │ │ ├── 221-brcmfmac_usb_driver_backport.patch │ │ │ │ ├── 230-backport_genl_info_userhdr.patch │ │ │ │ ├── 236-fix-genlmsg_multicast_allns-build-error.patch │ │ │ │ ├── 240-backport_genl_split_ops.patch │ │ │ │ ├── 250-backport_iwlwifi_thermal.patch │ │ │ │ ├── 300-backports-handle-genlmsg_multicast_allns-upstream-ba.patch │ │ │ │ ├── 900-fix-iwlwifi-build-with-kernel-6.12.patch │ │ │ │ ├── 901-fix-wxcore-6.12.patch │ │ │ │ ├── 902-fix-hwsim-6.12.patch │ │ │ │ ├── 992-fix-tasklet_setup-build-kernel-5.4.patch │ │ │ │ └── 993-do-not-use-rate-mask-for-scanning.patch │ │ │ ├── mt7601u │ │ │ │ └── 001-wifi-mt7601u-update-firmware-path.patch │ │ │ ├── mwl │ │ │ │ ├── 700-mwl8k-missing-pci-id-for-WNR854T.patch │ │ │ │ ├── 801-libertas-configure-sysfs-links.patch │ │ │ │ ├── 802-libertas-set-wireless-macaddr.patch │ │ │ │ ├── 900-mwifiex-increase-the-global-limit-up-to-4-SSID.patch │ │ │ │ ├── 940-mwl8k_init_devices_synchronously.patch │ │ │ │ └── 950-mwifiex-Print-stringified-name-of-command-in-error-l.patch │ │ │ ├── rt2x00 │ │ │ │ ├── 002-v6.7-wifi-rt2x00-fix-MT7620-low-RSSI-issue.patch │ │ │ │ ├── 003-v6.7-wifi-rt2x00-fix-rt2800-watchdog-function.patch │ │ │ │ ├── 004-1-v6.7-wifi-rt2x00-improve-MT7620-register-initialization.patch │ │ │ │ ├── 004-2-v6.7-wifi-rt2x00-rework-MT7620-channel-config-function.patch │ │ │ │ ├── 004-3-v6.7-wifi-rt2x00-rework-MT7620-PA-LNA-RF-calibration.patch │ │ │ │ ├── 005-1-v6.8-wifi-rt2x00-introduce-DMA-busy-check-watchdog-for-rt.patch │ │ │ │ ├── 005-2-v6.8-wifi-rt2x00-disable-RTS-threshold-for-rt2800-by-defa.patch │ │ │ │ ├── 005-3-v6.8-wifi-rt2x00-restart-beacon-queue-when-hardware-reset.patch │ │ │ │ ├── 100-rt2x00_options.patch │ │ │ │ ├── 101-wifi-rt2x00-correct-wrong-BBP-register-in-RxDCOC-cal.patch │ │ │ │ ├── 501-rt2x00-allow-to-build-rt2800soc-module-for-RT3883.patch │ │ │ │ ├── 601-rt2x00-introduce-rt2x00_platform_h.patch │ │ │ │ ├── 602-01-wifi-rt2x00-Add-support-for-loading-EEPROM-from-user.patch │ │ │ │ ├── 602-02-wifi-rt2x00-Add-option-to-pass-EEPROM-file-name-from.patch │ │ │ │ ├── 602-03-wifi-rt2x00-Add-support-for-loading-EEPROM-from-MTD.patch │ │ │ │ ├── 602-04-wifi-rt2x00-Support-EEPROM-swap-binding.patch │ │ │ │ ├── 602-05-wifi-rt2x00-support-loading-eeprom-from-NVMEM-cells.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 │ │ │ │ ├── 994-rt2x00-import-support-for-external-LNA-on-MT7620.patch │ │ │ │ ├── 995-rt2x00-mt7620-introduce-accessors-for-CHIP_VER-register.patch │ │ │ │ └── 996-rt2x00-mt7620-differentiate-based-on-SoC-CHIP_VER.patch │ │ │ ├── rtl │ │ │ │ ├── 001-v6.10-wifi-rtw88-usb-schedule-rx-work-after-everything-is-.patch │ │ │ │ ├── 100-rtw88-pci-kernel-6.12.patch │ │ │ │ └── 101-rtw89-pci-kernel-6.12.patch │ │ │ └── subsys │ │ │ │ ├── 110-mac80211_keep_keys_on_stop_ap.patch │ │ │ │ ├── 120-cfg80211_allow_perm_addr_change.patch │ │ │ │ ├── 130-disable_auto_vif.patch │ │ │ │ ├── 210-ap_scan.patch │ │ │ │ ├── 301-mac80211-sta-randomize-BA-session-dialog-token-alloc.patch │ │ │ │ ├── 302-mac80211-minstrel_ht-fix-MINSTREL_FRAC-macro.patch │ │ │ │ ├── 303-mac80211-minstrel_ht-reduce-fluctuations-in-rate-pro.patch │ │ │ │ ├── 304-mac80211-minstrel_ht-rework-rate-downgrade-code-and-.patch │ │ │ │ ├── 305-mac80211-increase-quantum-for-airtime-scheduler.patch │ │ │ │ ├── 306-wifi-mac80211-clear-vif-drv_priv-after-calling-remov.patch │ │ │ │ ├── 310-mac80211-split-mesh-fast-tx-cache-into-local-proxied.patch │ │ │ │ ├── 312-wifi-cfg80211-annotate-iftype_data-pointer-with-spar.patch │ │ │ │ ├── 313-wifi-cfg80211-export-DFS-CAC-time-and-usable-state-h.patch │ │ │ │ ├── 314-wifi-mac80211-fix-race-condition-on-enabling-fast-xm.patch │ │ │ │ ├── 320-cfg80211-allow-grace-period-for-DFS-available-after-.patch │ │ │ │ ├── 330-mac80211-add-AQL-support-for-broadcast-packets.patch │ │ │ │ ├── 331-wifi-mac80211-only-call-drv_sta_rc_update-for-upload.patch │ │ │ │ ├── 332-wifi-mac80211-check-clear-fast-rx-for-non-4addr-sta-.patch │ │ │ │ ├── 333-wifi-mac80211-extend-IEEE80211_KEY_FLAG_GENERATE_MMI.patch │ │ │ │ ├── 400-allow-ibss-mixed.patch │ │ │ │ ├── 401-mac80211-allow-vht-on-2g.patch │ │ │ │ ├── 780-avoid-crashing-missing-band.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 │ │ ├── patches-5.4 │ │ │ ├── 001-allow-vht-on-2g.patch │ │ │ ├── 002-fix-build-error.patch │ │ │ ├── 100-api_update.patch │ │ │ └── 110-ignore-key-disable.patch │ │ ├── patches-6.x │ │ │ ├── 001-allow-vht-on-2g.patch │ │ │ ├── 003-mt76-replace-strlcpy.patch │ │ │ ├── 100-api_update.patch │ │ │ ├── 200-fix-kernel-6.12-support.patch │ │ │ ├── 300-wifi-mt76-convert-remove.patch │ │ │ └── 500-add-tx-power-check-for-be14.patch │ │ └── patches │ │ │ ├── 001-allow-vht-on-2g.patch │ │ │ └── 002-fix-page-pool.patch │ ├── mt7621-qtn-rgmii │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── mt7621-qtn-rgmii.c │ ├── mtk-eip93 │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 002-crypto-use-AES-fallback-for-small-requests.patch │ │ │ └── 100-fix-build-on-kernel-5.4.patch │ ├── mwlwifi │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-Simplify-coredump-memcpy-in-mwl_fwcmd_get_fw_core_dump.patch │ │ │ ├── 002-Correctly-use-PTR_ERR-in-pcie_bf_mimo_ctrl_decode.patch │ │ │ ├── 003-Use-zu-and-zd-for-ssize_t-and-size_t.patch │ │ │ ├── 004-Fix-debugfs-compilation-warning-in-mwl_debugfs_info_read.patch │ │ │ ├── 005-Use-BUILD_BUG_ON.patch │ │ │ └── 020-mac80211_update.patch │ ├── nat46 │ │ └── Makefile │ ├── om-watchdog │ │ ├── Makefile │ │ └── files │ │ │ ├── om-watchdog │ │ │ └── om-watchdog.init │ ├── r8101 │ │ ├── Makefile │ │ └── patches │ │ │ └── 200-r8101-print-link-speed-and-duplex-mode.patch │ ├── r8125 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 200-r8125-print-link-speed-and-duplex-mode.patch │ │ │ ├── 300-r8125-add-LED-configuration-from-OF.patch │ │ │ └── 400-add-devname-configuration-from-OF.patch │ ├── r8126 │ │ ├── Makefile │ │ └── patches │ │ │ └── 200-r8126-print-link-speed-and-duplex-mode.patch │ ├── r8127 │ │ ├── Makefile │ │ └── patches │ │ │ └── 200-r8127-print-link-speed-and-duplex-mode.patch │ ├── r8168 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-r8168_n-fix-proc_dump_rx_desc_2-on-32-bits.patch │ │ │ ├── 100-linux-6.9-support.patch │ │ │ ├── 200-r8168-print-link-speed-and-duplex-mode.patch │ │ │ └── 300-r8168-add-LED-configuration-from-OF.patch │ ├── rtc-rv5c386a │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── rtc.c │ ├── rtw88-usb │ │ └── Makefile │ ├── trelay │ │ ├── Makefile │ │ ├── files │ │ │ ├── trelay.config │ │ │ ├── trelay.hotplug │ │ │ └── trelay.init │ │ └── src │ │ │ ├── Makefile │ │ │ └── trelay.c │ ├── ubnt-ledbar │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── leds-ubnt-ledbar.c │ └── yt6801 │ │ ├── Makefile │ │ └── src │ │ ├── Makefile │ │ ├── Notice.txt │ │ ├── dkms.conf │ │ ├── fuxi-dbg.h │ │ ├── fuxi-efuse.c │ │ ├── fuxi-efuse.h │ │ ├── fuxi-errno.h │ │ ├── fuxi-gmac-common.c │ │ ├── fuxi-gmac-desc.c │ │ ├── fuxi-gmac-ethtool.c │ │ ├── fuxi-gmac-hw.c │ │ ├── fuxi-gmac-ioctl.c │ │ ├── fuxi-gmac-net.c │ │ ├── fuxi-gmac-pci.c │ │ ├── fuxi-gmac-phy.c │ │ ├── fuxi-gmac-reg.h │ │ ├── fuxi-gmac.h │ │ ├── fuxi-os.h │ │ └── motorcomm ├── lean │ ├── adbyby │ │ ├── Makefile │ │ └── files │ │ │ ├── adbyby.sh │ │ │ ├── adhook.ini │ │ │ ├── amd64 │ │ │ └── adbyby │ │ │ ├── arm │ │ │ └── adbyby │ │ │ ├── armv7 │ │ │ └── adbyby │ │ │ ├── data │ │ │ ├── lazy.bin │ │ │ ├── lazy.txt │ │ │ ├── rules.txt │ │ │ ├── user.txt │ │ │ └── video.txt │ │ │ ├── doc │ │ │ └── hidecss.js │ │ │ ├── mips │ │ │ └── adbyby │ │ │ ├── mipsle │ │ │ └── adbyby │ │ │ ├── update.info │ │ │ ├── user.action │ │ │ └── x86 │ │ │ └── adbyby │ ├── aic8800 │ │ ├── Makefile │ │ ├── patches-sdio │ │ │ ├── 010-fixes-build.patch │ │ │ ├── 020-update-path.patch │ │ │ ├── 030-wireless-6.1.patch │ │ │ └── 040-disable-log.patch │ │ └── patches-usb │ │ │ ├── 010-fixes-build.patch │ │ │ ├── 030-wireless-6.1.patch │ │ │ ├── 040-disable-log.patch │ │ │ └── 900-rename-fdrv.patch │ ├── autocore │ │ ├── Makefile │ │ └── files │ │ │ ├── 60-autocore-reload-rpcd │ │ │ ├── arm │ │ │ ├── 090-cover-index_htm │ │ │ ├── index.htm │ │ │ └── sbin │ │ │ │ ├── cpuinfo │ │ │ │ ├── ethinfo │ │ │ │ ├── tempinfo │ │ │ │ └── usage │ │ │ ├── loongarch64 │ │ │ ├── autocore │ │ │ └── sbin │ │ │ │ ├── cpuinfo │ │ │ │ ├── ethinfo │ │ │ │ └── tempinfo │ │ │ ├── luci-mod-status-autocore.json │ │ │ └── x86 │ │ │ ├── autocore │ │ │ ├── index.htm │ │ │ └── sbin │ │ │ ├── cpuinfo │ │ │ ├── ethinfo │ │ │ └── getcpu │ ├── automount │ │ ├── Makefile │ │ └── files │ │ │ ├── 15-automount │ │ │ └── zzz-move-automount │ ├── autosamba │ │ ├── Makefile │ │ └── files │ │ │ └── 20-smb │ ├── cpufreq │ │ ├── Makefile │ │ └── files │ │ │ ├── cpufreq.config │ │ │ ├── cpufreq.init │ │ │ └── cpufreq.uci │ ├── ddns-scripts_aliyun │ │ ├── Makefile │ │ ├── aliyun.com.json │ │ └── update_aliyun_com.sh │ ├── ddns-scripts_dnspod │ │ ├── Makefile │ │ ├── dnspod.cn.json │ │ ├── dnspod.com.json │ │ ├── update_dnspod_cn.sh │ │ └── update_dnspod_com.sh │ ├── default-settings │ │ ├── Makefile │ │ ├── files │ │ │ └── zzz-default-settings │ │ └── po │ │ │ └── zh-cn │ │ │ └── default.po │ ├── dsmboot │ │ ├── Makefile │ │ └── files │ │ │ ├── dsm.iso │ │ │ ├── dsmboot │ │ │ ├── menu.lst │ │ │ └── pxelinux.0 │ ├── fogvdn │ │ └── Makefile │ ├── ipv6-helper │ │ ├── Makefile │ │ └── files │ │ │ └── root │ │ │ └── etc │ │ │ └── hotplug.d │ │ │ └── iface │ │ │ └── 60-6in4 │ ├── k3-firmware │ │ ├── Makefile │ │ └── files │ │ │ └── brcmfmac4366c-pcie.bin │ ├── k3screenctrl │ │ ├── Makefile │ │ ├── files │ │ │ └── k3screenctrl.init │ │ └── patches │ │ │ └── 000-fix-k3screen.patch │ ├── leigod-acc │ │ ├── Makefile │ │ └── files │ │ │ ├── leigod-helper.sh │ │ │ ├── leigod_uninstall.sh │ │ │ ├── plugin_common.sh │ │ │ ├── update_plugin │ │ │ └── version │ ├── libcryptopp │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-autotools.patch │ ├── luci-app-fogvdn │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── pearpcdn.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── pearpcdn │ │ │ │ │ └── fogvdn.lua │ │ │ └── view │ │ │ │ ├── cbi │ │ │ │ ├── city.htm │ │ │ │ ├── digitonlyvalue.htm │ │ │ │ └── network_wanlist.htm │ │ │ │ └── pcdn │ │ │ │ └── act_status.htm │ │ ├── po │ │ │ ├── zh-Hans │ │ │ │ └── fogvdn.po │ │ │ └── zh-cn │ │ │ │ └── fogvdn.po │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── fogvdn │ │ │ ├── init.d │ │ │ │ └── fogvdn │ │ │ └── uci-defaults │ │ │ │ ├── 30-run_post_update_cmd │ │ │ │ └── luci-fogvdn │ │ │ └── usr │ │ │ └── share │ │ │ ├── pcdn │ │ │ ├── check_alive.sh │ │ │ ├── check_mount_ponit │ │ │ └── check_netdev │ │ │ └── rpcd │ │ │ └── acl.d │ │ │ └── luci-app-fogvdn.json │ ├── luci-app-leigod-acc │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── acc.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── leigod │ │ │ │ │ ├── app.lua │ │ │ │ │ ├── device.lua │ │ │ │ │ ├── notice.lua │ │ │ │ │ └── service.lua │ │ │ └── view │ │ │ │ └── leigod │ │ │ │ ├── app.htm │ │ │ │ ├── notice.htm │ │ │ │ └── service.htm │ │ ├── po │ │ │ ├── zh-cn │ │ │ └── zh_Hans │ │ │ │ └── leigo-acc.po │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── accelerator │ │ │ ├── init.d │ │ │ │ └── acc │ │ │ └── uci-defaults │ │ │ │ └── 99-accelerator-config │ │ │ └── www │ │ │ ├── leigodapp.png │ │ │ └── leigodbind.png │ ├── mentohust │ │ └── Makefile │ ├── mt │ │ ├── drivers │ │ │ ├── mt7603e │ │ │ │ ├── Makefile │ │ │ │ ├── config.in │ │ │ │ └── src │ │ │ │ │ ├── mt7603_wifi │ │ │ │ │ ├── History.txt │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Kconfig.mt_wifi │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── RT2860AP.dat │ │ │ │ │ ├── RT2860APCard.dat │ │ │ │ │ ├── ap │ │ │ │ │ │ ├── ap.c │ │ │ │ │ │ ├── ap_acl_v2.c │ │ │ │ │ │ ├── ap_apcli.c │ │ │ │ │ │ ├── ap_apcli_inf.c │ │ │ │ │ │ ├── ap_assoc.c │ │ │ │ │ │ ├── ap_auth.c │ │ │ │ │ │ ├── ap_autoChSel.c │ │ │ │ │ │ ├── ap_band_steering.c │ │ │ │ │ │ ├── ap_cfg.c │ │ │ │ │ │ ├── ap_connect.c │ │ │ │ │ │ ├── ap_data.c │ │ │ │ │ │ ├── ap_dls.c │ │ │ │ │ │ ├── ap_ftkd.c │ │ │ │ │ │ ├── ap_ids.c │ │ │ │ │ │ ├── ap_mbss.c │ │ │ │ │ │ ├── ap_mbss_inf.c │ │ │ │ │ │ ├── ap_mix_mode.c │ │ │ │ │ │ ├── ap_mlme.c │ │ │ │ │ │ ├── ap_nintendo.c │ │ │ │ │ │ ├── ap_nps.c │ │ │ │ │ │ ├── ap_qload.c │ │ │ │ │ │ ├── ap_repeater.c │ │ │ │ │ │ ├── ap_sanity.c │ │ │ │ │ │ ├── ap_sync.c │ │ │ │ │ │ ├── ap_wds.c │ │ │ │ │ │ ├── ap_wds_inf.c │ │ │ │ │ │ ├── ap_wpa.c │ │ │ │ │ │ ├── apcli_assoc.c │ │ │ │ │ │ ├── apcli_auth.c │ │ │ │ │ │ ├── apcli_ctrl.c │ │ │ │ │ │ ├── apcli_link_cover.c │ │ │ │ │ │ ├── apcli_sync.c │ │ │ │ │ │ └── sniffer_mib.c │ │ │ │ │ ├── ate │ │ │ │ │ │ ├── ate_agent.c │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── ate.h │ │ │ │ │ │ │ ├── ate_agent.h │ │ │ │ │ │ │ ├── qa_agent.h │ │ │ │ │ │ │ ├── rt_ate.h │ │ │ │ │ │ │ └── rt_qa.h │ │ │ │ │ │ ├── inf │ │ │ │ │ │ │ ├── ate_pci.c │ │ │ │ │ │ │ └── ate_usb.c │ │ │ │ │ │ ├── mt_mac │ │ │ │ │ │ │ └── mt_ate.c │ │ │ │ │ │ └── qa_agent.c │ │ │ │ │ ├── chips │ │ │ │ │ │ ├── mt7603.c │ │ │ │ │ │ ├── mt7628.c │ │ │ │ │ │ ├── mt7636.c │ │ │ │ │ │ ├── rt28xx.c │ │ │ │ │ │ ├── rt65xx.c │ │ │ │ │ │ ├── rtmp_chip.c │ │ │ │ │ │ └── rtxx_dft.c │ │ │ │ │ ├── common │ │ │ │ │ │ ├── RT85592.bin │ │ │ │ │ │ ├── a4_conn.c │ │ │ │ │ │ ├── action.c │ │ │ │ │ │ ├── all_net_event.c │ │ │ │ │ │ ├── ba_action.c │ │ │ │ │ │ ├── bn_lib.c │ │ │ │ │ │ ├── client_wds.c │ │ │ │ │ │ ├── cmm_aes.c │ │ │ │ │ │ ├── cmm_cfg.c │ │ │ │ │ │ ├── cmm_cmd.c │ │ │ │ │ │ ├── cmm_cs.c │ │ │ │ │ │ ├── cmm_data.c │ │ │ │ │ │ ├── cmm_data_pci.c │ │ │ │ │ │ ├── cmm_data_sdio.c │ │ │ │ │ │ ├── cmm_dfs.c │ │ │ │ │ │ ├── cmm_info.c │ │ │ │ │ │ ├── cmm_loft_cal.c │ │ │ │ │ │ ├── cmm_mac_pci.c │ │ │ │ │ │ ├── cmm_mac_sdio.c │ │ │ │ │ │ ├── cmm_mat.c │ │ │ │ │ │ ├── cmm_mat_iparp.c │ │ │ │ │ │ ├── cmm_mat_ipv6.c │ │ │ │ │ │ ├── cmm_mat_pppoe.c │ │ │ │ │ │ ├── cmm_profile.c │ │ │ │ │ │ ├── cmm_radar.c │ │ │ │ │ │ ├── cmm_rf_cal.c │ │ │ │ │ │ ├── cmm_sanity.c │ │ │ │ │ │ ├── cmm_sync.c │ │ │ │ │ │ ├── cmm_tkip.c │ │ │ │ │ │ ├── cmm_usb_io.c │ │ │ │ │ │ ├── cmm_video.c │ │ │ │ │ │ ├── cmm_wep.c │ │ │ │ │ │ ├── cmm_wpa.c │ │ │ │ │ │ ├── crypt_aes.c │ │ │ │ │ │ ├── crypt_arc4.c │ │ │ │ │ │ ├── crypt_biginteger.c │ │ │ │ │ │ ├── crypt_bignum.c │ │ │ │ │ │ ├── crypt_dh.c │ │ │ │ │ │ ├── crypt_hmac.c │ │ │ │ │ │ ├── crypt_md5.c │ │ │ │ │ │ ├── crypt_sha2.c │ │ │ │ │ │ ├── ecc.c │ │ │ │ │ │ ├── ee_efuse.c │ │ │ │ │ │ ├── ee_flash.c │ │ │ │ │ │ ├── ee_prom.c │ │ │ │ │ │ ├── eeprom.c │ │ │ │ │ │ ├── event_notifier.c │ │ │ │ │ │ ├── event_notifier_old.c │ │ │ │ │ │ ├── frq_cal.c │ │ │ │ │ │ ├── ft.c │ │ │ │ │ │ ├── ft_iocl.c │ │ │ │ │ │ ├── ft_rc.c │ │ │ │ │ │ ├── ft_tlv.c │ │ │ │ │ │ ├── gas.c │ │ │ │ │ │ ├── hotspot.c │ │ │ │ │ │ ├── igmp_snoop.c │ │ │ │ │ │ ├── map.c │ │ │ │ │ │ ├── mbo.c │ │ │ │ │ │ ├── misc.c │ │ │ │ │ │ ├── mlme.c │ │ │ │ │ │ ├── mt_io.c │ │ │ │ │ │ ├── mt_ps.c │ │ │ │ │ │ ├── mtsdio_data.c │ │ │ │ │ │ ├── mtsdio_io.c │ │ │ │ │ │ ├── mtusb_io.c │ │ │ │ │ │ ├── mwds.c │ │ │ │ │ │ ├── netif_block.c │ │ │ │ │ │ ├── nfc.c │ │ │ │ │ │ ├── op_class.c │ │ │ │ │ │ ├── owe.c │ │ │ │ │ │ ├── pmf.c │ │ │ │ │ │ ├── ps.c │ │ │ │ │ │ ├── ral_ps.c │ │ │ │ │ │ ├── routing_tab.c │ │ │ │ │ │ ├── rrm.c │ │ │ │ │ │ ├── rrm_sanity.c │ │ │ │ │ │ ├── rrm_tlv.c │ │ │ │ │ │ ├── rt2860.bin │ │ │ │ │ │ ├── rt2860.bin.dfs │ │ │ │ │ │ ├── rt2870_sw_ch_offload.bin │ │ │ │ │ │ ├── rt_channel.c │ │ │ │ │ │ ├── rt_led.c │ │ │ │ │ │ ├── rt_os_util.c │ │ │ │ │ │ ├── rtmp_init.c │ │ │ │ │ │ ├── rtmp_init_inf.c │ │ │ │ │ │ ├── rtmp_timer.c │ │ │ │ │ │ ├── sae.c │ │ │ │ │ │ ├── scan.c │ │ │ │ │ │ ├── spectrum.c │ │ │ │ │ │ ├── sys_log.c │ │ │ │ │ │ ├── txpower.c │ │ │ │ │ │ ├── uapsd.c │ │ │ │ │ │ ├── vendor.c │ │ │ │ │ │ ├── vht.c │ │ │ │ │ │ ├── wapi.c │ │ │ │ │ │ ├── wapi_crypt.c │ │ │ │ │ │ ├── wapi_sms4.c │ │ │ │ │ │ ├── wfd.c │ │ │ │ │ │ ├── wnm.c │ │ │ │ │ │ ├── wnm_tlv.c │ │ │ │ │ │ ├── wsc.c │ │ │ │ │ │ ├── wsc_tlv.c │ │ │ │ │ │ ├── wsc_ufd.c │ │ │ │ │ │ └── wsc_v2.c │ │ │ │ │ ├── conf │ │ │ │ │ │ ├── RT2860AP.dat │ │ │ │ │ │ ├── RT2860AP.dat_ac │ │ │ │ │ │ ├── RT2860APCard.dat │ │ │ │ │ │ ├── RT2860STA.dat │ │ │ │ │ │ ├── RT2860STACard.dat │ │ │ │ │ │ ├── RT2870AP.dat │ │ │ │ │ │ ├── RT2870APCard.dat │ │ │ │ │ │ ├── RT2870STA.dat │ │ │ │ │ │ └── RT2870STACard.dat │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── History.txt │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── README_STA_pci │ │ │ │ │ │ ├── README_STA_usb │ │ │ │ │ │ ├── RT2860card.readme │ │ │ │ │ │ ├── RT_WIFI_Revision_History_2010_April.xls │ │ │ │ │ │ ├── VxWorks.README │ │ │ │ │ │ ├── ate_iwpriv_usage.txt │ │ │ │ │ │ ├── brftph_usage.txt │ │ │ │ │ │ ├── iwpriv_usage.txt │ │ │ │ │ │ ├── mbss_phy.readme │ │ │ │ │ │ ├── sta_ate_iwpriv_usage.txt │ │ │ │ │ │ └── wps_iwpriv_usage.txt │ │ │ │ │ ├── easy_setup │ │ │ │ │ │ ├── ez_hooks.c │ │ │ │ │ │ ├── mt7603_chip_ops.c │ │ │ │ │ │ ├── mt7603_chip_ops_api.c │ │ │ │ │ │ └── mt7603_driver_specific_func.c │ │ │ │ │ ├── eeprom │ │ │ │ │ │ ├── MT7601_USB_V0_D-20130416.bin │ │ │ │ │ │ ├── MT7603E1E2_EEPROM_layout_2014011.bin │ │ │ │ │ │ ├── MT7603E1E2_EEPROM_layout_2014011_ePAeLNA.bin │ │ │ │ │ │ ├── MT7603E1E2_EEPROM_layout_20140226.bin │ │ │ │ │ │ ├── MT7603E1_EEPROM_layout_20131112.bin │ │ │ │ │ │ ├── MT7603E1_EEPROM_layout_20131206.bin │ │ │ │ │ │ ├── MT7603E_EEPROM.bin │ │ │ │ │ │ ├── MT7662E1_EEPROM_layout_20130301.bin │ │ │ │ │ │ ├── MT7662E2_EEPROM_20130412.bin │ │ │ │ │ │ ├── MT7662E2_EEPROM_20130527.bin │ │ │ │ │ │ ├── MT7662E2_EEPROM_20130528.bin │ │ │ │ │ │ └── MT7662E2_EEPROM_20130903_ePA.bin │ │ │ │ │ ├── hif │ │ │ │ │ │ └── hif_pci.c │ │ │ │ │ ├── hw_ctrl │ │ │ │ │ │ ├── cmm_asic.c │ │ │ │ │ │ ├── cmm_asic_mt.c │ │ │ │ │ │ ├── cmm_chip_mt.c │ │ │ │ │ │ ├── coex.c │ │ │ │ │ │ ├── greenap.c │ │ │ │ │ │ └── mt_gpio.c │ │ │ │ │ ├── include │ │ │ │ │ │ ├── a4_conn.h │ │ │ │ │ │ ├── action.h │ │ │ │ │ │ ├── ags.h │ │ │ │ │ │ ├── all_net_event.h │ │ │ │ │ │ ├── ap.h │ │ │ │ │ │ ├── ap_acl_v2.h │ │ │ │ │ │ ├── ap_apcli.h │ │ │ │ │ │ ├── ap_autoChSel.h │ │ │ │ │ │ ├── ap_autoChSel_cmm.h │ │ │ │ │ │ ├── ap_cfg.h │ │ │ │ │ │ ├── ap_diversity.h │ │ │ │ │ │ ├── ap_ids.h │ │ │ │ │ │ ├── ap_mbss.h │ │ │ │ │ │ ├── ap_wds.h │ │ │ │ │ │ ├── band_steering.h │ │ │ │ │ │ ├── band_steering_def.h │ │ │ │ │ │ ├── bn.h │ │ │ │ │ │ ├── br_ftph.h │ │ │ │ │ │ ├── cfg80211.h │ │ │ │ │ │ ├── cfg80211_cmm.h │ │ │ │ │ │ ├── cfg80211extr.h │ │ │ │ │ │ ├── chip │ │ │ │ │ │ │ ├── chip_id.h │ │ │ │ │ │ │ ├── mt7603.h │ │ │ │ │ │ │ ├── mt7628.h │ │ │ │ │ │ │ ├── mt7636.h │ │ │ │ │ │ │ ├── mt76x0.h │ │ │ │ │ │ │ ├── rt65xx.h │ │ │ │ │ │ │ └── rt8592.h │ │ │ │ │ │ ├── chlist.h │ │ │ │ │ │ ├── client_wds.h │ │ │ │ │ │ ├── client_wds_cmm.h │ │ │ │ │ │ ├── cmm_asic_mt.h │ │ │ │ │ │ ├── crypt_aes.h │ │ │ │ │ │ ├── crypt_arc4.h │ │ │ │ │ │ ├── crypt_biginteger.h │ │ │ │ │ │ ├── crypt_bignum.h │ │ │ │ │ │ ├── crypt_dh.h │ │ │ │ │ │ ├── crypt_hmac.h │ │ │ │ │ │ ├── crypt_md5.h │ │ │ │ │ │ ├── crypt_sha2.h │ │ │ │ │ │ ├── cs.h │ │ │ │ │ │ ├── dfs.h │ │ │ │ │ │ ├── diag.h │ │ │ │ │ │ ├── dot11_base.h │ │ │ │ │ │ ├── dot11ac_vht.h │ │ │ │ │ │ ├── dot11i_wpa.h │ │ │ │ │ │ ├── dot11k_rrm.h │ │ │ │ │ │ ├── dot11n_ht.h │ │ │ │ │ │ ├── dot11r_ft.h │ │ │ │ │ │ ├── dot11u_interworking.h │ │ │ │ │ │ ├── dot11v_wnm.h │ │ │ │ │ │ ├── dot11w_pmf.h │ │ │ │ │ │ ├── drs_extr.h │ │ │ │ │ │ ├── easy_setup │ │ │ │ │ │ │ ├── ez_cmm.h │ │ │ │ │ │ │ ├── ez_hooks.h │ │ │ │ │ │ │ ├── ez_hooks_proto.h │ │ │ │ │ │ │ ├── ez_mod_hooks.h │ │ │ │ │ │ │ ├── mt7603_chip_ops.h │ │ │ │ │ │ │ ├── mt7603_chip_ops_api.h │ │ │ │ │ │ │ └── mt7603_driver_specific_func.h │ │ │ │ │ │ ├── ecc.h │ │ │ │ │ │ ├── eeprom.h │ │ │ │ │ │ ├── eeprom │ │ │ │ │ │ │ ├── mt7601_e2p.h │ │ │ │ │ │ │ ├── mt7603_e2p.h │ │ │ │ │ │ │ ├── mt76x2_e2p.h │ │ │ │ │ │ │ └── mt_e2p_def.h │ │ │ │ │ │ ├── efuse.h │ │ │ │ │ │ ├── event_notifier.h │ │ │ │ │ │ ├── event_notifier_old.h │ │ │ │ │ │ ├── firmware.h │ │ │ │ │ │ ├── fpga │ │ │ │ │ │ │ └── fpga_ctl.h │ │ │ │ │ │ ├── frame_hdr.h │ │ │ │ │ │ ├── frq_cal.h │ │ │ │ │ │ ├── ft.h │ │ │ │ │ │ ├── ft_cmm.h │ │ │ │ │ │ ├── gas.h │ │ │ │ │ │ ├── hotspot.h │ │ │ │ │ │ ├── iface │ │ │ │ │ │ │ ├── iface.h │ │ │ │ │ │ │ ├── iface_util.h │ │ │ │ │ │ │ ├── mt_hif_pci_usb.h │ │ │ │ │ │ │ ├── mt_hif_sdio.h │ │ │ │ │ │ │ ├── mt_sdio.h │ │ │ │ │ │ │ ├── rtmp_inf_pcirbs.h │ │ │ │ │ │ │ ├── rtmp_pci.h │ │ │ │ │ │ │ └── rtmp_reg_pcirbs.h │ │ │ │ │ │ ├── igmp_snoop.h │ │ │ │ │ │ ├── ipv6.h │ │ │ │ │ │ ├── link_list.h │ │ │ │ │ │ ├── mac │ │ │ │ │ │ │ ├── mac.h │ │ │ │ │ │ │ ├── mac_mt │ │ │ │ │ │ │ │ ├── client.h │ │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ │ ├── mt_mac.h │ │ │ │ │ │ │ │ ├── mt_mac_pci.h │ │ │ │ │ │ │ │ ├── mt_mac_sdio.h │ │ │ │ │ │ │ │ ├── mt_mac_usb.h │ │ │ │ │ │ │ │ ├── pse.h │ │ │ │ │ │ │ │ ├── ral_nmac_usb.h │ │ │ │ │ │ │ │ ├── top.h │ │ │ │ │ │ │ │ ├── wf_agg.h │ │ │ │ │ │ │ │ ├── wf_aon.h │ │ │ │ │ │ │ │ ├── wf_arb.h │ │ │ │ │ │ │ │ ├── wf_cfgoff.h │ │ │ │ │ │ │ │ ├── wf_dma.h │ │ │ │ │ │ │ │ ├── wf_int_wakeup_top.h │ │ │ │ │ │ │ │ ├── wf_lpon_top.h │ │ │ │ │ │ │ │ ├── wf_mib.h │ │ │ │ │ │ │ │ ├── wf_pf.h │ │ │ │ │ │ │ │ ├── wf_phy.h │ │ │ │ │ │ │ │ ├── wf_rmac.h │ │ │ │ │ │ │ │ ├── wf_sec.h │ │ │ │ │ │ │ │ ├── wf_tmac.h │ │ │ │ │ │ │ │ ├── wf_trb.h │ │ │ │ │ │ │ │ ├── wf_wtbl.h │ │ │ │ │ │ │ │ ├── wf_wtbloff.h │ │ │ │ │ │ │ │ └── wf_wtblon.h │ │ │ │ │ │ │ └── mac_ral │ │ │ │ │ │ │ │ ├── fce.h │ │ │ │ │ │ │ │ ├── mac_pci.h │ │ │ │ │ │ │ │ ├── mac_usb.h │ │ │ │ │ │ │ │ ├── nmac │ │ │ │ │ │ │ │ ├── ral_nmac.h │ │ │ │ │ │ │ │ ├── ral_nmac_pbf.h │ │ │ │ │ │ │ │ ├── ral_nmac_pci.h │ │ │ │ │ │ │ │ ├── ral_nmac_rf_ctrl.h │ │ │ │ │ │ │ │ └── ral_nmac_usb.h │ │ │ │ │ │ │ │ ├── omac │ │ │ │ │ │ │ │ ├── ral_omac.h │ │ │ │ │ │ │ │ ├── ral_omac_pbf.h │ │ │ │ │ │ │ │ ├── ral_omac_pci.h │ │ │ │ │ │ │ │ ├── ral_omac_rf_ctrl.h │ │ │ │ │ │ │ │ └── ral_omac_usb.h │ │ │ │ │ │ │ │ ├── pbf.h │ │ │ │ │ │ │ │ ├── rf_ctrl.h │ │ │ │ │ │ │ │ └── rtmp_mac.h │ │ │ │ │ │ ├── map.h │ │ │ │ │ │ ├── mat.h │ │ │ │ │ │ ├── mbo.h │ │ │ │ │ │ ├── mcu │ │ │ │ │ │ │ ├── andes_core.h │ │ │ │ │ │ │ ├── andes_mt.h │ │ │ │ │ │ │ ├── andes_rlt.h │ │ │ │ │ │ │ ├── btcoex.h │ │ │ │ │ │ │ ├── mcu.h │ │ │ │ │ │ │ ├── mt7601_firmware.h │ │ │ │ │ │ │ ├── mt7603_e2_firmware.h │ │ │ │ │ │ │ ├── mt7603_firmware.h │ │ │ │ │ │ │ ├── mt7636_firmware.h │ │ │ │ │ │ │ ├── mt7636_rom_patch.h │ │ │ │ │ │ │ └── mt7662_rom_patch.h │ │ │ │ │ │ ├── misc.h │ │ │ │ │ │ ├── misc_cmm.h │ │ │ │ │ │ ├── mix_mode.h │ │ │ │ │ │ ├── mlme.h │ │ │ │ │ │ ├── mlme_sys.h │ │ │ │ │ │ ├── mt_io.h │ │ │ │ │ │ ├── mt_ps.h │ │ │ │ │ │ ├── mt_tx_pwr.h │ │ │ │ │ │ ├── mtsdio_data.h │ │ │ │ │ │ ├── mtsdio_io.h │ │ │ │ │ │ ├── mwds.h │ │ │ │ │ │ ├── netif_block.h │ │ │ │ │ │ ├── nfc.h │ │ │ │ │ │ ├── oid.h │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ ├── bb_soc.h │ │ │ │ │ │ │ ├── pkt_meta.h │ │ │ │ │ │ │ ├── rt_drv.h │ │ │ │ │ │ │ ├── rt_linux.h │ │ │ │ │ │ │ ├── rt_linux_cmm.h │ │ │ │ │ │ │ ├── rt_linux_txrx_hook.h │ │ │ │ │ │ │ ├── rt_os.h │ │ │ │ │ │ │ └── trace_linux.h │ │ │ │ │ │ ├── owe_cmm.h │ │ │ │ │ │ ├── phy │ │ │ │ │ │ │ ├── mt76x2_rf.h │ │ │ │ │ │ │ ├── mt_bbp.h │ │ │ │ │ │ │ ├── mt_phy.h │ │ │ │ │ │ │ ├── mt_rf.h │ │ │ │ │ │ │ ├── phy.h │ │ │ │ │ │ │ ├── rlt_bbp.h │ │ │ │ │ │ │ ├── rlt_rf.h │ │ │ │ │ │ │ ├── rtmp_bbp.h │ │ │ │ │ │ │ └── wf_phy_back.h │ │ │ │ │ │ ├── pmf.h │ │ │ │ │ │ ├── pmf_cmm.h │ │ │ │ │ │ ├── radar.h │ │ │ │ │ │ ├── routing_tab.h │ │ │ │ │ │ ├── rrm.h │ │ │ │ │ │ ├── rrm_cmm.h │ │ │ │ │ │ ├── rt_cal.h │ │ │ │ │ │ ├── rt_config.h │ │ │ │ │ │ ├── rt_led.h │ │ │ │ │ │ ├── rt_os_net.h │ │ │ │ │ │ ├── rt_os_util.h │ │ │ │ │ │ ├── rt_txbf.h │ │ │ │ │ │ ├── rtmp.h │ │ │ │ │ │ ├── rtmp_chip.h │ │ │ │ │ │ ├── rtmp_cmd.h │ │ │ │ │ │ ├── rtmp_comm.h │ │ │ │ │ │ ├── rtmp_def.h │ │ │ │ │ │ ├── rtmp_dot11.h │ │ │ │ │ │ ├── rtmp_iface.h │ │ │ │ │ │ ├── rtmp_os.h │ │ │ │ │ │ ├── rtmp_osabl.h │ │ │ │ │ │ ├── rtmp_timer.h │ │ │ │ │ │ ├── rtmp_type.h │ │ │ │ │ │ ├── sae.h │ │ │ │ │ │ ├── sae_cmm.h │ │ │ │ │ │ ├── sniffer │ │ │ │ │ │ │ ├── radiotap.h │ │ │ │ │ │ │ └── sniffer.h │ │ │ │ │ │ ├── sniffer_mib.h │ │ │ │ │ │ ├── spectrum.h │ │ │ │ │ │ ├── spectrum_def.h │ │ │ │ │ │ ├── sta.h │ │ │ │ │ │ ├── sta_cfg.h │ │ │ │ │ │ ├── tx_power.h │ │ │ │ │ │ ├── uapsd.h │ │ │ │ │ │ ├── vendor.h │ │ │ │ │ │ ├── vht.h │ │ │ │ │ │ ├── video.h │ │ │ │ │ │ ├── vr_ikans.h │ │ │ │ │ │ ├── vrut_ubm.h │ │ │ │ │ │ ├── wapi.h │ │ │ │ │ │ ├── wapi_def.h │ │ │ │ │ │ ├── wapi_sms4.h │ │ │ │ │ │ ├── wfa_p2p.h │ │ │ │ │ │ ├── wfd.h │ │ │ │ │ │ ├── wfd_cmm.h │ │ │ │ │ │ ├── wnm.h │ │ │ │ │ │ ├── wnm_cmm.h │ │ │ │ │ │ ├── wpa.h │ │ │ │ │ │ ├── wpa_cmm.h │ │ │ │ │ │ ├── wsc.h │ │ │ │ │ │ └── wsc_tlv.h │ │ │ │ │ ├── license │ │ │ │ │ │ ├── MTK_LICENSE │ │ │ │ │ │ └── NOTICE │ │ │ │ │ ├── mac │ │ │ │ │ │ ├── mt_mac.c │ │ │ │ │ │ ├── ral_nmac.c │ │ │ │ │ │ ├── ral_omac.c │ │ │ │ │ │ └── rtmp_mac.c │ │ │ │ │ ├── mcu │ │ │ │ │ │ ├── andes_core.c │ │ │ │ │ │ ├── andes_mt.c │ │ │ │ │ │ ├── andes_rlt.c │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── MT7601_formal_1.7.bin │ │ │ │ │ │ │ ├── MT7603_ram_20140305_e2_drv_tv01.bin │ │ │ │ │ │ │ ├── MT7610.bin │ │ │ │ │ │ │ ├── MT7650.bin │ │ │ │ │ │ │ ├── WIFI_RAM_CODE_MT7603_e1.bin │ │ │ │ │ │ │ ├── WIFI_RAM_CODE_MT7603_e2.bin │ │ │ │ │ │ │ ├── WIFI_RAM_CODE_MT7636.bin │ │ │ │ │ │ │ ├── mt7612_patch_e1_hdr.bin │ │ │ │ │ │ │ ├── mt7612_patch_e1_hdr_0417.bin │ │ │ │ │ │ │ ├── mt7636_patch_e1_hdr.bin │ │ │ │ │ │ │ ├── mt7662_firmware_e3_20131211.bin │ │ │ │ │ │ │ ├── mt7662_patch_e3_hdr_v0.0.2_P8.bin │ │ │ │ │ │ │ └── mt7662_patch_release_history.xlsx │ │ │ │ │ │ └── mcu.c │ │ │ │ │ ├── mgmt │ │ │ │ │ │ ├── mgmt_dev.c │ │ │ │ │ │ ├── mgmt_entrytb.c │ │ │ │ │ │ ├── mgmt_ht.c │ │ │ │ │ │ ├── mgmt_hw.c │ │ │ │ │ │ └── mgmt_vht.c │ │ │ │ │ ├── naf │ │ │ │ │ │ ├── cso.c │ │ │ │ │ │ ├── net_acc.c │ │ │ │ │ │ └── tso.c │ │ │ │ │ ├── os │ │ │ │ │ │ └── linux │ │ │ │ │ │ │ ├── Kconfig.ap.soc │ │ │ │ │ │ │ ├── Kconfig.ap.usb │ │ │ │ │ │ │ ├── Kconfig.rlt_wifi │ │ │ │ │ │ │ ├── Kconfig.rlt_wifi_ap │ │ │ │ │ │ │ ├── Kconfig.rlt_wifi_sta │ │ │ │ │ │ │ ├── Kconfig.sta.soc │ │ │ │ │ │ │ ├── Kconfig.wifi │ │ │ │ │ │ │ ├── Makefile.4 │ │ │ │ │ │ │ ├── Makefile.4.netif │ │ │ │ │ │ │ ├── Makefile.4.util │ │ │ │ │ │ │ ├── Makefile.6 │ │ │ │ │ │ │ ├── Makefile.6.netif │ │ │ │ │ │ │ ├── Makefile.6.util │ │ │ │ │ │ │ ├── Makefile.ap.soc │ │ │ │ │ │ │ ├── Makefile.ap.usb │ │ │ │ │ │ │ ├── Makefile.clean │ │ │ │ │ │ │ ├── Makefile.libautoprovision.6 │ │ │ │ │ │ │ ├── Makefile.libwapi.4 │ │ │ │ │ │ │ ├── Makefile.libwapi.6 │ │ │ │ │ │ │ ├── Makefile.rlt_wifi_ap │ │ │ │ │ │ │ ├── Makefile.rlt_wifi_sta │ │ │ │ │ │ │ ├── Makefile.sta.soc │ │ │ │ │ │ │ ├── android_priv_cmd.c │ │ │ │ │ │ │ ├── ap_ioctl.c │ │ │ │ │ │ │ ├── bb_soc.c │ │ │ │ │ │ │ ├── br_ftph.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── config.mk.cfg80211 │ │ │ │ │ │ │ ├── diag.c │ │ │ │ │ │ │ ├── inf_ppa.c │ │ │ │ │ │ │ ├── load │ │ │ │ │ │ │ ├── monitor_mode.c │ │ │ │ │ │ │ ├── multi_main_dev.c │ │ │ │ │ │ │ ├── pci_main_dev.c │ │ │ │ │ │ │ ├── rt_linux.c │ │ │ │ │ │ │ ├── rt_linux_symb.c │ │ │ │ │ │ │ ├── rt_main_dev.c │ │ │ │ │ │ │ ├── rt_pci_rbus.c │ │ │ │ │ │ │ ├── rt_proc.c │ │ │ │ │ │ │ ├── rt_profile.c │ │ │ │ │ │ │ ├── rt_rbus_pci_drv.c │ │ │ │ │ │ │ ├── rt_rbus_pci_util.c │ │ │ │ │ │ │ ├── rt_sdio.c │ │ │ │ │ │ │ ├── rt_symb.c │ │ │ │ │ │ │ ├── rt_txrx_hook.c │ │ │ │ │ │ │ ├── sdio_main_dev.c │ │ │ │ │ │ │ ├── unload │ │ │ │ │ │ │ ├── vr_bdlt.c │ │ │ │ │ │ │ └── vr_ikans.c │ │ │ │ │ ├── phy │ │ │ │ │ │ ├── mt76x2_rf.c │ │ │ │ │ │ ├── mt_phy.c │ │ │ │ │ │ ├── mt_rf.c │ │ │ │ │ │ ├── phy.c │ │ │ │ │ │ ├── rf.c │ │ │ │ │ │ ├── rlt_phy.c │ │ │ │ │ │ ├── rlt_rf.c │ │ │ │ │ │ ├── rt_rf.c │ │ │ │ │ │ └── rtmp_phy.c │ │ │ │ │ ├── rate_ctrl │ │ │ │ │ │ ├── alg_ags.c │ │ │ │ │ │ ├── alg_grp.c │ │ │ │ │ │ ├── alg_legacy.c │ │ │ │ │ │ └── ra_ctrl.c │ │ │ │ │ ├── sniffer │ │ │ │ │ │ ├── sniffer_prism.c │ │ │ │ │ │ └── sniffer_radiotap.c │ │ │ │ │ ├── tools │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bin2h │ │ │ │ │ │ ├── bin2h.c │ │ │ │ │ │ ├── i.sh │ │ │ │ │ │ ├── mt7662_freq_plan.c │ │ │ │ │ │ ├── mt7662e_ap.sh │ │ │ │ │ │ ├── mt7662e_sta.sh │ │ │ │ │ │ ├── plug_in │ │ │ │ │ │ │ └── Makefile │ │ │ │ │ │ └── r.sh │ │ │ │ │ └── tx_rx │ │ │ │ │ │ ├── hdr_trans.c │ │ │ │ │ │ ├── txs.c │ │ │ │ │ │ ├── wdev.c │ │ │ │ │ │ ├── wdev_rx.c │ │ │ │ │ │ └── wdev_tx.c │ │ │ │ │ └── mt7603_wifi_ap │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Kconfig.mt_wifi_ap │ │ │ │ │ ├── Makefile │ │ │ │ │ └── Makefile.mt_wifi_ap │ │ │ ├── mt7612e │ │ │ │ ├── Makefile │ │ │ │ ├── config.in │ │ │ │ └── src │ │ │ │ │ ├── mt76x2 │ │ │ │ │ ├── History.txt │ │ │ │ │ ├── ap │ │ │ │ │ │ ├── ap.c │ │ │ │ │ │ ├── ap_apcli.c │ │ │ │ │ │ ├── ap_apcli_inf.c │ │ │ │ │ │ ├── ap_assoc.c │ │ │ │ │ │ ├── ap_auth.c │ │ │ │ │ │ ├── ap_autoChSel.c │ │ │ │ │ │ ├── ap_band_steering.c │ │ │ │ │ │ ├── ap_cfg.c │ │ │ │ │ │ ├── ap_connect.c │ │ │ │ │ │ ├── ap_data.c │ │ │ │ │ │ ├── ap_dls.c │ │ │ │ │ │ ├── ap_ftkd.c │ │ │ │ │ │ ├── ap_ids.c │ │ │ │ │ │ ├── ap_mbss.c │ │ │ │ │ │ ├── ap_mbss_inf.c │ │ │ │ │ │ ├── ap_mlme.c │ │ │ │ │ │ ├── ap_qload.c │ │ │ │ │ │ ├── ap_repeater.c │ │ │ │ │ │ ├── ap_sanity.c │ │ │ │ │ │ ├── ap_sync.c │ │ │ │ │ │ ├── ap_wds.c │ │ │ │ │ │ ├── ap_wds_inf.c │ │ │ │ │ │ ├── ap_wpa.c │ │ │ │ │ │ ├── apcli_assoc.c │ │ │ │ │ │ ├── apcli_auth.c │ │ │ │ │ │ ├── apcli_ctrl.c │ │ │ │ │ │ └── apcli_sync.c │ │ │ │ │ ├── chips │ │ │ │ │ │ ├── mt76x2.c │ │ │ │ │ │ ├── rt6352.c │ │ │ │ │ │ ├── rt65xx.c │ │ │ │ │ │ ├── rtmp_chip.c │ │ │ │ │ │ └── rtxx_dft.c │ │ │ │ │ ├── common │ │ │ │ │ │ ├── action.c │ │ │ │ │ │ ├── ba_action.c │ │ │ │ │ │ ├── client_wds.c │ │ │ │ │ │ ├── cmm_aes.c │ │ │ │ │ │ ├── cmm_asic.c │ │ │ │ │ │ ├── cmm_cfg.c │ │ │ │ │ │ ├── cmm_cmd.c │ │ │ │ │ │ ├── cmm_cs.c │ │ │ │ │ │ ├── cmm_data.c │ │ │ │ │ │ ├── cmm_data_pci.c │ │ │ │ │ │ ├── cmm_dfs.c │ │ │ │ │ │ ├── cmm_info.c │ │ │ │ │ │ ├── cmm_loft_cal.c │ │ │ │ │ │ ├── cmm_mac_pci.c │ │ │ │ │ │ ├── cmm_mat.c │ │ │ │ │ │ ├── cmm_mat_iparp.c │ │ │ │ │ │ ├── cmm_mat_ipv6.c │ │ │ │ │ │ ├── cmm_mat_pppoe.c │ │ │ │ │ │ ├── cmm_profile.c │ │ │ │ │ │ ├── cmm_radar.c │ │ │ │ │ │ ├── cmm_rf_cal.c │ │ │ │ │ │ ├── cmm_sanity.c │ │ │ │ │ │ ├── cmm_sync.c │ │ │ │ │ │ ├── cmm_tkip.c │ │ │ │ │ │ ├── cmm_txbf.c │ │ │ │ │ │ ├── cmm_txbf_cal.c │ │ │ │ │ │ ├── cmm_video.c │ │ │ │ │ │ ├── cmm_wep.c │ │ │ │ │ │ ├── cmm_wpa.c │ │ │ │ │ │ ├── cmm_wpa_adhoc.c │ │ │ │ │ │ ├── crypt_aes.c │ │ │ │ │ │ ├── crypt_arc4.c │ │ │ │ │ │ ├── crypt_biginteger.c │ │ │ │ │ │ ├── crypt_dh.c │ │ │ │ │ │ ├── crypt_hmac.c │ │ │ │ │ │ ├── crypt_md5.c │ │ │ │ │ │ ├── crypt_sha2.c │ │ │ │ │ │ ├── ee_efuse.c │ │ │ │ │ │ ├── ee_flash.c │ │ │ │ │ │ ├── ee_prom.c │ │ │ │ │ │ ├── eeprom.c │ │ │ │ │ │ ├── frq_cal.c │ │ │ │ │ │ ├── ft.c │ │ │ │ │ │ ├── ft_iocl.c │ │ │ │ │ │ ├── ft_rc.c │ │ │ │ │ │ ├── ft_tlv.c │ │ │ │ │ │ ├── gas.c │ │ │ │ │ │ ├── hotspot.c │ │ │ │ │ │ ├── igmp_snoop.c │ │ │ │ │ │ ├── misc.c │ │ │ │ │ │ ├── mlme.c │ │ │ │ │ │ ├── mwds.c │ │ │ │ │ │ ├── netif_block.c │ │ │ │ │ │ ├── nfc.c │ │ │ │ │ │ ├── pmf.c │ │ │ │ │ │ ├── ps.c │ │ │ │ │ │ ├── routing_tab.c │ │ │ │ │ │ ├── rrm.c │ │ │ │ │ │ ├── rrm_sanity.c │ │ │ │ │ │ ├── rrm_tlv.c │ │ │ │ │ │ ├── rt_channel.c │ │ │ │ │ │ ├── rt_led.c │ │ │ │ │ │ ├── rt_os_util.c │ │ │ │ │ │ ├── rtmp_init.c │ │ │ │ │ │ ├── rtmp_init_inf.c │ │ │ │ │ │ ├── rtmp_swmcu.c │ │ │ │ │ │ ├── rtmp_timer.c │ │ │ │ │ │ ├── scan.c │ │ │ │ │ │ ├── smart_mesh.c │ │ │ │ │ │ ├── spectrum.c │ │ │ │ │ │ ├── sys_log.c │ │ │ │ │ │ ├── txpower.c │ │ │ │ │ │ ├── uapsd.c │ │ │ │ │ │ ├── vht.c │ │ │ │ │ │ ├── wapi.c │ │ │ │ │ │ ├── wapi_crypt.c │ │ │ │ │ │ ├── wapi_sms4.c │ │ │ │ │ │ ├── wfd.c │ │ │ │ │ │ ├── wnm.c │ │ │ │ │ │ ├── wnm_tlv.c │ │ │ │ │ │ ├── wsc.c │ │ │ │ │ │ ├── wsc_tlv.c │ │ │ │ │ │ ├── wsc_ufd.c │ │ │ │ │ │ └── wsc_v2.c │ │ │ │ │ ├── conf │ │ │ │ │ │ ├── RT2860AP.dat │ │ │ │ │ │ ├── RT2860AP.dat_ac │ │ │ │ │ │ ├── RT2860STA.dat │ │ │ │ │ │ └── SingleSKU.dat │ │ │ │ │ ├── doc │ │ │ │ │ │ ├── README_STA_pci │ │ │ │ │ │ ├── ate_iwpriv_usage.txt │ │ │ │ │ │ ├── brftph_usage.txt │ │ │ │ │ │ ├── iwpriv_usage.txt │ │ │ │ │ │ ├── mbss_phy.readme │ │ │ │ │ │ ├── sta_ate_iwpriv_usage.txt │ │ │ │ │ │ └── wps_iwpriv_usage.txt │ │ │ │ │ ├── eeprom │ │ │ │ │ │ ├── MT7612E3_EEPROM_layout_20131022_2G5G_iPAiLNA_wTSSI_default_slope_offset.bin │ │ │ │ │ │ ├── MT7612E_EEPROM_layout_20131121_2G5G_ePAeLNA_TXTC_off.bin │ │ │ │ │ │ ├── MT7662E1_EEPROM_layout_20130301.bin │ │ │ │ │ │ ├── MT7662E2_EEPROM_20130412.bin │ │ │ │ │ │ ├── MT7662E2_EEPROM_20130527.bin │ │ │ │ │ │ └── MT7662E2_EEPROM_20130903_ePA.bin │ │ │ │ │ ├── hw_ctrl │ │ │ │ │ │ ├── coex.c │ │ │ │ │ │ └── greenap.c │ │ │ │ │ ├── include │ │ │ │ │ │ ├── action.h │ │ │ │ │ │ ├── ags.h │ │ │ │ │ │ ├── ap.h │ │ │ │ │ │ ├── ap_apcli.h │ │ │ │ │ │ ├── ap_autoChSel.h │ │ │ │ │ │ ├── ap_autoChSel_cmm.h │ │ │ │ │ │ ├── ap_cfg.h │ │ │ │ │ │ ├── ap_diversity.h │ │ │ │ │ │ ├── ap_ids.h │ │ │ │ │ │ ├── ap_mbss.h │ │ │ │ │ │ ├── ap_wds.h │ │ │ │ │ │ ├── band_steering.h │ │ │ │ │ │ ├── band_steering_def.h │ │ │ │ │ │ ├── br_ftph.h │ │ │ │ │ │ ├── cfg80211.h │ │ │ │ │ │ ├── cfg80211_cmm.h │ │ │ │ │ │ ├── cfg80211extr.h │ │ │ │ │ │ ├── chip │ │ │ │ │ │ │ ├── chip_id.h │ │ │ │ │ │ │ ├── mt76x2.h │ │ │ │ │ │ │ ├── rt6352.h │ │ │ │ │ │ │ ├── rt65xx.h │ │ │ │ │ │ │ └── rtmp_phy.h │ │ │ │ │ │ ├── chlist.h │ │ │ │ │ │ ├── client_wds.h │ │ │ │ │ │ ├── client_wds_cmm.h │ │ │ │ │ │ ├── crypt_aes.h │ │ │ │ │ │ ├── crypt_arc4.h │ │ │ │ │ │ ├── crypt_biginteger.h │ │ │ │ │ │ ├── crypt_dh.h │ │ │ │ │ │ ├── crypt_hmac.h │ │ │ │ │ │ ├── crypt_md5.h │ │ │ │ │ │ ├── crypt_sha2.h │ │ │ │ │ │ ├── cs.h │ │ │ │ │ │ ├── default_profile.h │ │ │ │ │ │ ├── dfs.h │ │ │ │ │ │ ├── dot11_base.h │ │ │ │ │ │ ├── dot11ac_vht.h │ │ │ │ │ │ ├── dot11i_wpa.h │ │ │ │ │ │ ├── dot11k_rrm.h │ │ │ │ │ │ ├── dot11n_ht.h │ │ │ │ │ │ ├── dot11r_ft.h │ │ │ │ │ │ ├── dot11u_interworking.h │ │ │ │ │ │ ├── dot11v_wnm.h │ │ │ │ │ │ ├── dot11w_pmf.h │ │ │ │ │ │ ├── dot11z_tdls.h │ │ │ │ │ │ ├── drs_extr.h │ │ │ │ │ │ ├── eeprom.h │ │ │ │ │ │ ├── eeprom │ │ │ │ │ │ │ ├── mt7601_e2p.h │ │ │ │ │ │ │ └── mt76x2_e2p.h │ │ │ │ │ │ ├── firmware.h │ │ │ │ │ │ ├── fpga │ │ │ │ │ │ │ └── fpga_ctl.h │ │ │ │ │ │ ├── frame_hdr.h │ │ │ │ │ │ ├── frq_cal.h │ │ │ │ │ │ ├── ft.h │ │ │ │ │ │ ├── ft_cmm.h │ │ │ │ │ │ ├── gas.h │ │ │ │ │ │ ├── hotspot.h │ │ │ │ │ │ ├── iface │ │ │ │ │ │ │ ├── iface_util.h │ │ │ │ │ │ │ ├── rtmp_pci.h │ │ │ │ │ │ │ ├── rtmp_rbs.h │ │ │ │ │ │ │ └── rtmp_reg_pcirbs.h │ │ │ │ │ │ ├── igmp_snoop.h │ │ │ │ │ │ ├── ipv6.h │ │ │ │ │ │ ├── link_list.h │ │ │ │ │ │ ├── mac_ral │ │ │ │ │ │ │ ├── fce.h │ │ │ │ │ │ │ ├── mac_pci.h │ │ │ │ │ │ │ ├── nmac │ │ │ │ │ │ │ │ ├── ral_nmac.h │ │ │ │ │ │ │ │ ├── ral_nmac_pbf.h │ │ │ │ │ │ │ │ ├── ral_nmac_pci.h │ │ │ │ │ │ │ │ ├── ral_nmac_rf_ctrl.h │ │ │ │ │ │ │ │ └── ral_nmac_usb.h │ │ │ │ │ │ │ ├── omac │ │ │ │ │ │ │ │ ├── ral_omac.h │ │ │ │ │ │ │ │ ├── ral_omac_pbf.h │ │ │ │ │ │ │ │ ├── ral_omac_pci.h │ │ │ │ │ │ │ │ ├── ral_omac_rf_ctrl.h │ │ │ │ │ │ │ │ └── ral_omac_usb.h │ │ │ │ │ │ │ ├── pbf.h │ │ │ │ │ │ │ ├── rf_ctrl.h │ │ │ │ │ │ │ └── rtmp_mac.h │ │ │ │ │ │ ├── mat.h │ │ │ │ │ │ ├── mcu │ │ │ │ │ │ │ ├── btcoex.h │ │ │ │ │ │ │ ├── mcu.h │ │ │ │ │ │ │ ├── mcu_and.h │ │ │ │ │ │ │ ├── mt7601_firmware.h │ │ │ │ │ │ │ ├── mt7612_firmware.h │ │ │ │ │ │ │ ├── mt7662_firmware.h │ │ │ │ │ │ │ ├── mt7662_rom_patch.h │ │ │ │ │ │ │ ├── mt7662t_firmware.h │ │ │ │ │ │ │ └── mt7662t_rom_patch.h │ │ │ │ │ │ ├── misc.h │ │ │ │ │ │ ├── misc_cmm.h │ │ │ │ │ │ ├── mlme.h │ │ │ │ │ │ ├── mlme_sys.h │ │ │ │ │ │ ├── mwds.h │ │ │ │ │ │ ├── netif_block.h │ │ │ │ │ │ ├── nfc.h │ │ │ │ │ │ ├── oid.h │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ ├── bb_soc.h │ │ │ │ │ │ │ ├── pkt_meta.h │ │ │ │ │ │ │ ├── rt_drv.h │ │ │ │ │ │ │ ├── rt_linux.h │ │ │ │ │ │ │ ├── rt_linux_cmm.h │ │ │ │ │ │ │ └── rt_os.h │ │ │ │ │ │ ├── phy │ │ │ │ │ │ │ ├── mt_rf.h │ │ │ │ │ │ │ ├── rlt_bbp.h │ │ │ │ │ │ │ └── rtmp_bbp.h │ │ │ │ │ │ ├── pmf.h │ │ │ │ │ │ ├── pmf_cmm.h │ │ │ │ │ │ ├── radar.h │ │ │ │ │ │ ├── routing_tab.h │ │ │ │ │ │ ├── rrm.h │ │ │ │ │ │ ├── rrm_cmm.h │ │ │ │ │ │ ├── rt_cal.h │ │ │ │ │ │ ├── rt_config.h │ │ │ │ │ │ ├── rt_led.h │ │ │ │ │ │ ├── rt_os_net.h │ │ │ │ │ │ ├── rt_os_util.h │ │ │ │ │ │ ├── rt_txbf.h │ │ │ │ │ │ ├── rtmp.h │ │ │ │ │ │ ├── rtmp_chip.h │ │ │ │ │ │ ├── rtmp_cmd.h │ │ │ │ │ │ ├── rtmp_comm.h │ │ │ │ │ │ ├── rtmp_def.h │ │ │ │ │ │ ├── rtmp_dot11.h │ │ │ │ │ │ ├── rtmp_iface.h │ │ │ │ │ │ ├── rtmp_os.h │ │ │ │ │ │ ├── rtmp_osabl.h │ │ │ │ │ │ ├── rtmp_timer.h │ │ │ │ │ │ ├── rtmp_type.h │ │ │ │ │ │ ├── smart_mesh │ │ │ │ │ │ │ ├── smart_mesh_def.h │ │ │ │ │ │ │ └── smart_mesh_func.h │ │ │ │ │ │ ├── sniffer │ │ │ │ │ │ │ ├── ppi.h │ │ │ │ │ │ │ ├── radiotap.h │ │ │ │ │ │ │ └── sniffer.h │ │ │ │ │ │ ├── spectrum.h │ │ │ │ │ │ ├── spectrum_def.h │ │ │ │ │ │ ├── sta.h │ │ │ │ │ │ ├── sta_cfg.h │ │ │ │ │ │ ├── tdls.h │ │ │ │ │ │ ├── tdls_cmm.h │ │ │ │ │ │ ├── tdls_uapsd.h │ │ │ │ │ │ ├── uapsd.h │ │ │ │ │ │ ├── vht.h │ │ │ │ │ │ ├── video.h │ │ │ │ │ │ ├── vr_ikans.h │ │ │ │ │ │ ├── vrut_ubm.h │ │ │ │ │ │ ├── wapi.h │ │ │ │ │ │ ├── wapi_def.h │ │ │ │ │ │ ├── wapi_sms4.h │ │ │ │ │ │ ├── wfa_p2p.h │ │ │ │ │ │ ├── wfd.h │ │ │ │ │ │ ├── wfd_cmm.h │ │ │ │ │ │ ├── wnm.h │ │ │ │ │ │ ├── wnm_cmm.h │ │ │ │ │ │ ├── wpa.h │ │ │ │ │ │ ├── wpa_cmm.h │ │ │ │ │ │ ├── wsc.h │ │ │ │ │ │ └── wsc_tlv.h │ │ │ │ │ ├── mac │ │ │ │ │ │ ├── ral_nmac.c │ │ │ │ │ │ ├── ral_omac.c │ │ │ │ │ │ └── rtmp_mac.c │ │ │ │ │ ├── mcu │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ ├── mt7662_firmware_e3_v1.8.bin │ │ │ │ │ │ │ ├── mt7662_firmware_e3_v1.9.bin │ │ │ │ │ │ │ ├── mt7662_patch_e3_hdr_v0.0.2_P48.bin │ │ │ │ │ │ │ ├── mt7662_patch_e3_hdr_v0.0.2_P69.bin │ │ │ │ │ │ │ ├── mt7662_patch_release_history.xlsx │ │ │ │ │ │ │ ├── mt7662t_firmware_e1.bin │ │ │ │ │ │ │ └── mt7662t_patch_e1_hdr.bin │ │ │ │ │ │ ├── mcu.c │ │ │ │ │ │ └── mcu_and.c │ │ │ │ │ ├── mgmt │ │ │ │ │ │ ├── mgmt_dev.c │ │ │ │ │ │ ├── mgmt_entrytb.c │ │ │ │ │ │ ├── mgmt_ht.c │ │ │ │ │ │ ├── mgmt_hw.c │ │ │ │ │ │ └── mgmt_vht.c │ │ │ │ │ ├── naf │ │ │ │ │ │ ├── cso.c │ │ │ │ │ │ ├── net_acc.c │ │ │ │ │ │ └── tso.c │ │ │ │ │ ├── os │ │ │ │ │ │ └── linux │ │ │ │ │ │ │ ├── android_priv_cmd.c │ │ │ │ │ │ │ ├── ap_ioctl.c │ │ │ │ │ │ │ ├── bb_soc.c │ │ │ │ │ │ │ ├── br_ftph.c │ │ │ │ │ │ │ ├── cfg80211 │ │ │ │ │ │ │ ├── cfg80211.c │ │ │ │ │ │ │ ├── cfg80211_ap.c │ │ │ │ │ │ │ ├── cfg80211_inf.c │ │ │ │ │ │ │ ├── cfg80211_p2p.c │ │ │ │ │ │ │ ├── cfg80211_rx.c │ │ │ │ │ │ │ ├── cfg80211_scan.c │ │ │ │ │ │ │ ├── cfg80211_tdls.c │ │ │ │ │ │ │ ├── cfg80211_tx.c │ │ │ │ │ │ │ ├── cfg80211_util.c │ │ │ │ │ │ │ └── cfg80211drv.c │ │ │ │ │ │ │ ├── inf_ppa.c │ │ │ │ │ │ │ ├── multi_main_dev.c │ │ │ │ │ │ │ ├── pci_main_dev.c │ │ │ │ │ │ │ ├── rbus_main_dev.c │ │ │ │ │ │ │ ├── rt_linux.c │ │ │ │ │ │ │ ├── rt_linux_symb.c │ │ │ │ │ │ │ ├── rt_main_dev.c │ │ │ │ │ │ │ ├── rt_pci_rbus.c │ │ │ │ │ │ │ ├── rt_proc.c │ │ │ │ │ │ │ ├── rt_profile.c │ │ │ │ │ │ │ ├── rt_rbus_pci_drv.c │ │ │ │ │ │ │ ├── rt_rbus_pci_util.c │ │ │ │ │ │ │ ├── rt_symb.c │ │ │ │ │ │ │ ├── sta_ioctl.c │ │ │ │ │ │ │ ├── vr_bdlt.c │ │ │ │ │ │ │ └── vr_ikans.c │ │ │ │ │ ├── phy │ │ │ │ │ │ ├── mt_rf.c │ │ │ │ │ │ ├── phy.c │ │ │ │ │ │ ├── rf.c │ │ │ │ │ │ ├── rlt_phy.c │ │ │ │ │ │ ├── rlt_rf.c │ │ │ │ │ │ ├── rt_rf.c │ │ │ │ │ │ └── rtmp_phy.c │ │ │ │ │ ├── rate_ctrl │ │ │ │ │ │ ├── alg_ags.c │ │ │ │ │ │ ├── alg_grp.c │ │ │ │ │ │ ├── alg_legacy.c │ │ │ │ │ │ └── ra_ctrl.c │ │ │ │ │ ├── sniffer │ │ │ │ │ │ ├── sniffer_prism.c │ │ │ │ │ │ └── sniffer_radiotap.c │ │ │ │ │ ├── sta │ │ │ │ │ │ ├── assoc.c │ │ │ │ │ │ ├── auth.c │ │ │ │ │ │ ├── auth_rsp.c │ │ │ │ │ │ ├── connect.c │ │ │ │ │ │ ├── dls.c │ │ │ │ │ │ ├── ft_action.c │ │ │ │ │ │ ├── ft_auth.c │ │ │ │ │ │ ├── rtmp_ckipmic.c │ │ │ │ │ │ ├── rtmp_data.c │ │ │ │ │ │ ├── sanity.c │ │ │ │ │ │ ├── sta.c │ │ │ │ │ │ ├── sta_cfg.c │ │ │ │ │ │ ├── sta_iwsc.c │ │ │ │ │ │ ├── sync.c │ │ │ │ │ │ ├── tdls.c │ │ │ │ │ │ ├── tdls_chswitch_mng.c │ │ │ │ │ │ ├── tdls_ctrl.c │ │ │ │ │ │ ├── tdls_link_mng.c │ │ │ │ │ │ ├── tdls_tlv.c │ │ │ │ │ │ ├── tdls_uapsd.c │ │ │ │ │ │ └── wpa.c │ │ │ │ │ ├── tools │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── bin2h.c │ │ │ │ │ │ ├── dat2h.c │ │ │ │ │ │ ├── mt7662_freq_plan.c │ │ │ │ │ │ ├── mt7662e_ap.sh │ │ │ │ │ │ └── mt7662e_sta.sh │ │ │ │ │ └── tx_rx │ │ │ │ │ │ └── wdev_tx.c │ │ │ │ │ └── mt76x2_ap │ │ │ │ │ ├── Kconfig │ │ │ │ │ └── Makefile │ │ │ ├── mt7615d │ │ │ │ ├── Makefile │ │ │ │ ├── config.in │ │ │ │ ├── files │ │ │ │ │ ├── etc │ │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ │ └── 10_mt7615_dbdc │ │ │ │ │ └── lib │ │ │ │ │ │ ├── netifd │ │ │ │ │ │ └── wireless │ │ │ │ │ │ │ └── mt_dbdc.sh │ │ │ │ │ │ └── wifi │ │ │ │ │ │ └── mt_dbdc.sh │ │ │ │ └── src │ │ │ │ │ ├── bin │ │ │ │ │ ├── mt7615 │ │ │ │ │ │ ├── MT7615E1_EEPROM.bin │ │ │ │ │ │ ├── MT7615_cr4.bin │ │ │ │ │ │ ├── MT7615_cr4_noReOrdering.bin │ │ │ │ │ │ ├── MT7615_cr4_plain.bin │ │ │ │ │ │ ├── MT7615_cr4_plain_20141024_1.bin │ │ │ │ │ │ ├── MT7615_cr4_plain_20150206_1_asic.bin │ │ │ │ │ │ ├── WIFI_RAM_CODE_MT7615.bin │ │ │ │ │ │ ├── WIFI_RAM_CODE_MT7615_E1.bin │ │ │ │ │ │ ├── WIFI_RAM_CODE_MT7615_plain.bin │ │ │ │ │ │ ├── ePAeLNA │ │ │ │ │ │ │ ├── MT7615_EEPROM1.bin │ │ │ │ │ │ │ ├── MT7615_EEPROM2.bin │ │ │ │ │ │ │ └── MT7615_EEPROM3.bin │ │ │ │ │ │ ├── ePAiLNA │ │ │ │ │ │ │ ├── MT7615_EEPROM1.bin │ │ │ │ │ │ │ ├── MT7615_EEPROM2.bin │ │ │ │ │ │ │ └── MT7615_EEPROM3.bin │ │ │ │ │ │ ├── iPAeLNA │ │ │ │ │ │ │ ├── MT7615_EEPROM1.bin │ │ │ │ │ │ │ ├── MT7615_EEPROM2.bin │ │ │ │ │ │ │ └── MT7615_EEPROM3.bin │ │ │ │ │ │ ├── iPAiLNA │ │ │ │ │ │ │ ├── MT7615_EEPROM1.bin │ │ │ │ │ │ │ ├── MT7615_EEPROM2.bin │ │ │ │ │ │ │ └── MT7615_EEPROM3.bin │ │ │ │ │ │ └── mt7615_patch_e3_hdr.bin │ │ │ │ │ └── mt7622 │ │ │ │ │ │ ├── MT7622_EEPROM.bin │ │ │ │ │ │ ├── WIFI_RAM_CODE_MT7622_E2.bin │ │ │ │ │ │ ├── ePAeLNA │ │ │ │ │ │ └── MT7622_EEPROM.bin │ │ │ │ │ │ ├── iPAeLNA │ │ │ │ │ │ └── MT7622_EEPROM.bin │ │ │ │ │ │ ├── iPAiLNA │ │ │ │ │ │ └── MT7622_EEPROM.bin │ │ │ │ │ │ └── mt7622_patch_e2_hdr.bin │ │ │ │ │ ├── mt_wifi │ │ │ │ │ ├── ate │ │ │ │ │ │ ├── LoopBack.c │ │ │ │ │ │ ├── ate_agent.c │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── LoopBack.h │ │ │ │ │ │ │ ├── ate.h │ │ │ │ │ │ │ ├── ate_agent.h │ │ │ │ │ │ │ ├── meta_agent.h │ │ │ │ │ │ │ ├── mt_testmode.h │ │ │ │ │ │ │ ├── mt_testmode_dmac.h │ │ │ │ │ │ │ ├── mt_testmode_smac.h │ │ │ │ │ │ │ ├── qa_agent.h │ │ │ │ │ │ │ ├── testmode_common.h │ │ │ │ │ │ │ └── testmode_ioctl.h │ │ │ │ │ │ ├── meta_agent.c │ │ │ │ │ │ ├── mt_mac │ │ │ │ │ │ │ ├── mt_ate.c │ │ │ │ │ │ │ ├── mt_testmode.c │ │ │ │ │ │ │ ├── mt_testmode_dmac.c │ │ │ │ │ │ │ └── mt_testmode_smac.c │ │ │ │ │ │ ├── qa_agent.c │ │ │ │ │ │ └── testmode_ioctl.c │ │ │ │ │ ├── chips │ │ │ │ │ │ ├── mt7615.c │ │ │ │ │ │ ├── mt7615_dbg.c │ │ │ │ │ │ ├── mt7622.c │ │ │ │ │ │ ├── mt7622_dbg.c │ │ │ │ │ │ └── rtmp_chip.c │ │ │ │ │ ├── embedded │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Pack_Release.sh │ │ │ │ │ │ ├── Release.sh │ │ │ │ │ │ ├── Release_Notes.txt │ │ │ │ │ │ ├── ap │ │ │ │ │ │ │ ├── ap.c │ │ │ │ │ │ │ ├── ap_apcli.c │ │ │ │ │ │ │ ├── ap_apcli_inf.c │ │ │ │ │ │ │ ├── ap_assoc.c │ │ │ │ │ │ │ ├── ap_auth.c │ │ │ │ │ │ │ ├── ap_autoChSel.c │ │ │ │ │ │ │ ├── ap_band_steering.c │ │ │ │ │ │ │ ├── ap_cfg.c │ │ │ │ │ │ │ ├── ap_data.c │ │ │ │ │ │ │ ├── ap_ftkd.c │ │ │ │ │ │ │ ├── ap_ids.c │ │ │ │ │ │ │ ├── ap_mbss.c │ │ │ │ │ │ │ ├── ap_mbss_inf.c │ │ │ │ │ │ │ ├── ap_mlme.c │ │ │ │ │ │ │ ├── ap_mumimo.c │ │ │ │ │ │ │ ├── ap_mura.c │ │ │ │ │ │ │ ├── ap_nps.c │ │ │ │ │ │ │ ├── ap_qload.c │ │ │ │ │ │ │ ├── ap_repeater.c │ │ │ │ │ │ │ ├── ap_sanity.c │ │ │ │ │ │ │ ├── ap_sec.c │ │ │ │ │ │ │ ├── ap_sync.c │ │ │ │ │ │ │ ├── ap_vow.c │ │ │ │ │ │ │ ├── ap_wds.c │ │ │ │ │ │ │ ├── ap_wds_inf.c │ │ │ │ │ │ │ ├── ap_wpa.c │ │ │ │ │ │ │ ├── apcli_assoc.c │ │ │ │ │ │ │ ├── apcli_auth.c │ │ │ │ │ │ │ ├── apcli_ctrl.c │ │ │ │ │ │ │ ├── apcli_link_cover.c │ │ │ │ │ │ │ └── apcli_sync.c │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── a4_conn.c │ │ │ │ │ │ │ ├── action.c │ │ │ │ │ │ │ ├── ba_action.c │ │ │ │ │ │ │ ├── bcn.c │ │ │ │ │ │ │ ├── bgnd_scan.c │ │ │ │ │ │ │ ├── client_wds.c │ │ │ │ │ │ │ ├── cmm_cfg.c │ │ │ │ │ │ │ ├── cmm_cmd.c │ │ │ │ │ │ │ ├── cmm_cs.c │ │ │ │ │ │ │ ├── cmm_data.c │ │ │ │ │ │ │ ├── cmm_info.c │ │ │ │ │ │ │ ├── cmm_info_element.c │ │ │ │ │ │ │ ├── cmm_mac_pci.c │ │ │ │ │ │ │ ├── cmm_mat.c │ │ │ │ │ │ │ ├── cmm_mat_iparp.c │ │ │ │ │ │ │ ├── cmm_mat_ipv6.c │ │ │ │ │ │ │ ├── cmm_mat_pppoe.c │ │ │ │ │ │ │ ├── cmm_mumimo.c │ │ │ │ │ │ │ ├── cmm_profile.c │ │ │ │ │ │ │ ├── cmm_radar.c │ │ │ │ │ │ │ ├── cmm_rdm_mt.c │ │ │ │ │ │ │ ├── cmm_rf_cal.c │ │ │ │ │ │ │ ├── cmm_rvr_dbg.c │ │ │ │ │ │ │ ├── cmm_sanity.c │ │ │ │ │ │ │ ├── cmm_sync.c │ │ │ │ │ │ │ ├── cmm_tcprack.c │ │ │ │ │ │ │ ├── cmm_txbf.c │ │ │ │ │ │ │ ├── cmm_video.c │ │ │ │ │ │ │ ├── cut_through.c │ │ │ │ │ │ │ ├── ee_efuse.c │ │ │ │ │ │ │ ├── ee_flash.c │ │ │ │ │ │ │ ├── ee_prom.c │ │ │ │ │ │ │ ├── eeprom.c │ │ │ │ │ │ │ ├── fp_fair_qm.c │ │ │ │ │ │ │ ├── fp_qm.c │ │ │ │ │ │ │ ├── fpga.c │ │ │ │ │ │ │ ├── fq_qm.c │ │ │ │ │ │ │ ├── ft.c │ │ │ │ │ │ │ ├── ft_iocl.c │ │ │ │ │ │ │ ├── ft_rc.c │ │ │ │ │ │ │ ├── ft_tlv.c │ │ │ │ │ │ │ ├── ftm.c │ │ │ │ │ │ │ ├── gas.c │ │ │ │ │ │ │ ├── hif_pci.c │ │ │ │ │ │ │ ├── hotspot.c │ │ │ │ │ │ │ ├── icap.c │ │ │ │ │ │ │ ├── igmp_snoop.c │ │ │ │ │ │ │ ├── map.c │ │ │ │ │ │ │ ├── mbo.c │ │ │ │ │ │ │ ├── misc_app.c │ │ │ │ │ │ │ ├── mlme.c │ │ │ │ │ │ │ ├── mt_io.c │ │ │ │ │ │ │ ├── mt_ps.c │ │ │ │ │ │ │ ├── multi_channel.c │ │ │ │ │ │ │ ├── multi_profile.c │ │ │ │ │ │ │ ├── netif_block.c │ │ │ │ │ │ │ ├── nfc.c │ │ │ │ │ │ │ ├── op_class.c │ │ │ │ │ │ │ ├── ps.c │ │ │ │ │ │ │ ├── qm.c │ │ │ │ │ │ │ ├── ra_ac_q_mgmt.c │ │ │ │ │ │ │ ├── ral_ps.c │ │ │ │ │ │ │ ├── routing_tab.c │ │ │ │ │ │ │ ├── rrm.c │ │ │ │ │ │ │ ├── rrm_sanity.c │ │ │ │ │ │ │ ├── rrm_tlv.c │ │ │ │ │ │ │ ├── rt_channel.c │ │ │ │ │ │ │ ├── rt_led.c │ │ │ │ │ │ │ ├── rt_os_util.c │ │ │ │ │ │ │ ├── rtmp_init.c │ │ │ │ │ │ │ ├── rtmp_init_inf.c │ │ │ │ │ │ │ ├── rtmp_timer.c │ │ │ │ │ │ │ ├── scan.c │ │ │ │ │ │ │ ├── scs.c │ │ │ │ │ │ │ ├── smartant.c │ │ │ │ │ │ │ ├── sniffer_prism.c │ │ │ │ │ │ │ ├── sniffer_radiotap.c │ │ │ │ │ │ │ ├── spectrum.c │ │ │ │ │ │ │ ├── sys_log.c │ │ │ │ │ │ │ ├── txpower.c │ │ │ │ │ │ │ ├── txs.c │ │ │ │ │ │ │ ├── uapsd.c │ │ │ │ │ │ │ ├── vendor.c │ │ │ │ │ │ │ ├── verf.c │ │ │ │ │ │ │ ├── vht.c │ │ │ │ │ │ │ ├── wdev.c │ │ │ │ │ │ │ ├── wifi_sys_info.c │ │ │ │ │ │ │ ├── wifi_sys_notify.c │ │ │ │ │ │ │ ├── wnm.c │ │ │ │ │ │ │ ├── wsc.c │ │ │ │ │ │ │ ├── wsc_tlv.c │ │ │ │ │ │ │ ├── wsc_ufd.c │ │ │ │ │ │ │ └── wsc_v2.c │ │ │ │ │ │ ├── doc │ │ │ │ │ │ │ ├── Doxyfile │ │ │ │ │ │ │ ├── FirmwareHistory.txt │ │ │ │ │ │ │ ├── History.txt │ │ │ │ │ │ │ ├── History_sta_pci.txt │ │ │ │ │ │ │ ├── History_sta_usb.txt │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── README_STA_pci │ │ │ │ │ │ │ ├── README_STA_usb │ │ │ │ │ │ │ ├── RT2860card.readme │ │ │ │ │ │ │ ├── RT_WIFI_Revision_History_2010_April.xls │ │ │ │ │ │ │ ├── VxWorks.README │ │ │ │ │ │ │ ├── ate_iwpriv_usage.txt │ │ │ │ │ │ │ ├── brftph_usage.txt │ │ │ │ │ │ │ ├── header_translation.txt │ │ │ │ │ │ │ ├── iwpriv_usage.txt │ │ │ │ │ │ │ ├── mainpage.dox │ │ │ │ │ │ │ ├── mbss_phy.readme │ │ │ │ │ │ │ ├── sta_ate_iwpriv_usage.txt │ │ │ │ │ │ │ └── wps_iwpriv_usage.txt │ │ │ │ │ │ ├── hw_ctrl │ │ │ │ │ │ │ ├── hdev │ │ │ │ │ │ │ │ ├── hdev_basic.c │ │ │ │ │ │ │ │ ├── omac_ctrl.c │ │ │ │ │ │ │ │ ├── radio_ctrl.c │ │ │ │ │ │ │ │ ├── wmm_ctrl.c │ │ │ │ │ │ │ │ └── wtbl_ctrl.c │ │ │ │ │ │ │ ├── hdev_ctrl.c │ │ │ │ │ │ │ ├── hw_ctrl.c │ │ │ │ │ │ │ ├── hw_ctrl_basic.c │ │ │ │ │ │ │ ├── hw_ctrl_cmd.c │ │ │ │ │ │ │ ├── hw_ctrl_ops_v1.c │ │ │ │ │ │ │ └── hw_ctrl_ops_v2.c │ │ │ │ │ │ ├── include │ │ │ │ │ │ │ ├── a4_conn.h │ │ │ │ │ │ │ ├── action.h │ │ │ │ │ │ │ ├── ags.h │ │ │ │ │ │ │ ├── ap.h │ │ │ │ │ │ │ ├── ap_apcli.h │ │ │ │ │ │ │ ├── ap_autoChSel.h │ │ │ │ │ │ │ ├── ap_autoChSel_cmm.h │ │ │ │ │ │ │ ├── ap_cfg.h │ │ │ │ │ │ │ ├── ap_ids.h │ │ │ │ │ │ │ ├── ap_mbss.h │ │ │ │ │ │ │ ├── ap_mumimo.h │ │ │ │ │ │ │ ├── ap_mura.h │ │ │ │ │ │ │ ├── ap_repeater.h │ │ │ │ │ │ │ ├── ap_vow.h │ │ │ │ │ │ │ ├── ap_wds.h │ │ │ │ │ │ │ ├── arris_mod_api.h │ │ │ │ │ │ │ ├── arris_wps_gpio_handler.h │ │ │ │ │ │ │ ├── band_steering.h │ │ │ │ │ │ │ ├── band_steering_def.h │ │ │ │ │ │ │ ├── bcn.h │ │ │ │ │ │ │ ├── bgnd_scan.h │ │ │ │ │ │ │ ├── bgnd_scan_cmm.h │ │ │ │ │ │ │ ├── br_ftph.h │ │ │ │ │ │ │ ├── cfg80211.h │ │ │ │ │ │ │ ├── cfg80211_cmm.h │ │ │ │ │ │ │ ├── cfg80211extr.h │ │ │ │ │ │ │ ├── chlist.h │ │ │ │ │ │ │ ├── client_wds.h │ │ │ │ │ │ │ ├── client_wds_cmm.h │ │ │ │ │ │ │ ├── cmm_cmd.h │ │ │ │ │ │ │ ├── cmm_rvr_dbg.h │ │ │ │ │ │ │ ├── cmm_tcprack.h │ │ │ │ │ │ │ ├── cs.h │ │ │ │ │ │ │ ├── cut_through.h │ │ │ │ │ │ │ ├── dot11_base.h │ │ │ │ │ │ │ ├── dot11ac_vht.h │ │ │ │ │ │ │ ├── dot11k_rrm.h │ │ │ │ │ │ │ ├── dot11n_ht.h │ │ │ │ │ │ │ ├── dot11r_ft.h │ │ │ │ │ │ │ ├── dot11u_interworking.h │ │ │ │ │ │ │ ├── dot11v_wnm.h │ │ │ │ │ │ │ ├── eeprom.h │ │ │ │ │ │ │ ├── eeprom │ │ │ │ │ │ │ │ ├── mt7615_e2p_ePAeLNA.h │ │ │ │ │ │ │ │ ├── mt7615_e2p_ePAiLNA.h │ │ │ │ │ │ │ │ ├── mt7615_e2p_iPAeLNA.h │ │ │ │ │ │ │ │ ├── mt7615_e2p_iPAiLNA.h │ │ │ │ │ │ │ │ ├── mt7622_e2p_ePAeLNA.h │ │ │ │ │ │ │ │ ├── mt7622_e2p_iPAeLNA.h │ │ │ │ │ │ │ │ ├── mt7622_e2p_iPAiLNA.h │ │ │ │ │ │ │ │ ├── mt7663_e2p.h │ │ │ │ │ │ │ │ ├── mt_dmac_e2p_def.h │ │ │ │ │ │ │ │ └── mt_e2p_def.h │ │ │ │ │ │ │ ├── efuse.h │ │ │ │ │ │ │ ├── event_common.h │ │ │ │ │ │ │ ├── firmware.h │ │ │ │ │ │ │ ├── fp_qm.h │ │ │ │ │ │ │ ├── fq_qm.h │ │ │ │ │ │ │ ├── frame_hdr.h │ │ │ │ │ │ │ ├── frq_cal.h │ │ │ │ │ │ │ ├── fsm │ │ │ │ │ │ │ │ └── fsm_sync.h │ │ │ │ │ │ │ ├── ft.h │ │ │ │ │ │ │ ├── ft_cmm.h │ │ │ │ │ │ │ ├── ftm.h │ │ │ │ │ │ │ ├── ftm_cmm.h │ │ │ │ │ │ │ ├── gas.h │ │ │ │ │ │ │ ├── hdev │ │ │ │ │ │ │ │ ├── hdev.h │ │ │ │ │ │ │ │ └── hdev_basic.h │ │ │ │ │ │ │ ├── hdev_ctrl.h │ │ │ │ │ │ │ ├── hotspot.h │ │ │ │ │ │ │ ├── hw_ctrl.h │ │ │ │ │ │ │ ├── hw_ctrl_basic.h │ │ │ │ │ │ │ ├── icap.h │ │ │ │ │ │ │ ├── iface │ │ │ │ │ │ │ │ ├── iface.h │ │ │ │ │ │ │ │ ├── iface_util.h │ │ │ │ │ │ │ │ ├── mtk_hif.h │ │ │ │ │ │ │ │ ├── rtmp_inf_pcirbs.h │ │ │ │ │ │ │ │ ├── rtmp_pci.h │ │ │ │ │ │ │ │ └── rtmp_rbs.h │ │ │ │ │ │ │ ├── igmp_snoop.h │ │ │ │ │ │ │ ├── ipv6.h │ │ │ │ │ │ │ ├── l1profile.h │ │ │ │ │ │ │ ├── map.h │ │ │ │ │ │ │ ├── mat.h │ │ │ │ │ │ │ ├── mbo.h │ │ │ │ │ │ │ ├── mcu │ │ │ │ │ │ │ │ ├── andes_core.h │ │ │ │ │ │ │ │ ├── andes_mt.h │ │ │ │ │ │ │ │ ├── btcoex.h │ │ │ │ │ │ │ │ ├── mcu.h │ │ │ │ │ │ │ │ ├── mt7615_cr4_firmware.h │ │ │ │ │ │ │ │ ├── mt7615_firmware.h │ │ │ │ │ │ │ │ ├── mt7615_firmware_e1.h │ │ │ │ │ │ │ │ ├── mt7615_rom_patch.h │ │ │ │ │ │ │ │ ├── mt7615_rom_patch_e1.h │ │ │ │ │ │ │ │ ├── mt7622_firmware.h │ │ │ │ │ │ │ │ ├── mt7622_firmware_e2.h │ │ │ │ │ │ │ │ └── mt7622_rom_patch_e2.h │ │ │ │ │ │ │ ├── meminfo_list.h │ │ │ │ │ │ │ ├── mgmt │ │ │ │ │ │ │ │ ├── be_export.h │ │ │ │ │ │ │ │ └── be_internal.h │ │ │ │ │ │ │ ├── misc_app.h │ │ │ │ │ │ │ ├── mlme.h │ │ │ │ │ │ │ ├── mlme_sys.h │ │ │ │ │ │ │ ├── mt_io.h │ │ │ │ │ │ │ ├── mt_rdm.h │ │ │ │ │ │ │ ├── netif_block.h │ │ │ │ │ │ │ ├── nfc.h │ │ │ │ │ │ │ ├── oid.h │ │ │ │ │ │ │ ├── oid_struct.h │ │ │ │ │ │ │ ├── qm.h │ │ │ │ │ │ │ ├── ra_ac_q_mgmt.h │ │ │ │ │ │ │ ├── radar.h │ │ │ │ │ │ │ ├── routing_tab.h │ │ │ │ │ │ │ ├── rrm.h │ │ │ │ │ │ │ ├── rrm_cmm.h │ │ │ │ │ │ │ ├── rt_cal.h │ │ │ │ │ │ │ ├── rt_config.h │ │ │ │ │ │ │ ├── rt_led.h │ │ │ │ │ │ │ ├── rt_os_net.h │ │ │ │ │ │ │ ├── rt_os_util.h │ │ │ │ │ │ │ ├── rt_txbf.h │ │ │ │ │ │ │ ├── rt_udma.h │ │ │ │ │ │ │ ├── rtmp.h │ │ │ │ │ │ │ ├── rtmp_chip.h │ │ │ │ │ │ │ ├── rtmp_cmd.h │ │ │ │ │ │ │ ├── rtmp_comm.h │ │ │ │ │ │ │ ├── rtmp_def.h │ │ │ │ │ │ │ ├── rtmp_dmacb.h │ │ │ │ │ │ │ ├── rtmp_dot11.h │ │ │ │ │ │ │ ├── rtmp_iface.h │ │ │ │ │ │ │ ├── rtmp_os.h │ │ │ │ │ │ │ ├── rtmp_osabl.h │ │ │ │ │ │ │ ├── rtmp_timer.h │ │ │ │ │ │ │ ├── rtmp_type.h │ │ │ │ │ │ │ ├── scs.h │ │ │ │ │ │ │ ├── security │ │ │ │ │ │ │ │ ├── bn.h │ │ │ │ │ │ │ │ ├── crypt_aes.h │ │ │ │ │ │ │ │ ├── crypt_arc4.h │ │ │ │ │ │ │ │ ├── crypt_biginteger.h │ │ │ │ │ │ │ │ ├── crypt_bignum.h │ │ │ │ │ │ │ │ ├── crypt_dh.h │ │ │ │ │ │ │ │ ├── crypt_hmac.h │ │ │ │ │ │ │ │ ├── crypt_md5.h │ │ │ │ │ │ │ │ ├── crypt_sha2.h │ │ │ │ │ │ │ │ ├── dh_key.h │ │ │ │ │ │ │ │ ├── dot11i_wpa.h │ │ │ │ │ │ │ │ ├── dot11w_pmf.h │ │ │ │ │ │ │ │ ├── ecc.h │ │ │ │ │ │ │ │ ├── owe_cmm.h │ │ │ │ │ │ │ │ ├── pmf.h │ │ │ │ │ │ │ │ ├── pmf_cmm.h │ │ │ │ │ │ │ │ ├── sae.h │ │ │ │ │ │ │ │ ├── sae_cmm.h │ │ │ │ │ │ │ │ ├── sec.h │ │ │ │ │ │ │ │ ├── sec_cmm.h │ │ │ │ │ │ │ │ ├── wpa.h │ │ │ │ │ │ │ │ └── wpa_cmm.h │ │ │ │ │ │ │ ├── smartant.h │ │ │ │ │ │ │ ├── sniffer │ │ │ │ │ │ │ │ ├── radiotap.h │ │ │ │ │ │ │ │ └── sniffer.h │ │ │ │ │ │ │ ├── spectrum.h │ │ │ │ │ │ │ ├── spectrum_def.h │ │ │ │ │ │ │ ├── sta.h │ │ │ │ │ │ │ ├── sta_cfg.h │ │ │ │ │ │ │ ├── tm.h │ │ │ │ │ │ │ ├── tr.h │ │ │ │ │ │ │ ├── tx_power.h │ │ │ │ │ │ │ ├── uapsd.h │ │ │ │ │ │ │ ├── vendor.h │ │ │ │ │ │ │ ├── vht.h │ │ │ │ │ │ │ ├── video.h │ │ │ │ │ │ │ ├── vr_ikans.h │ │ │ │ │ │ │ ├── vrut_ubm.h │ │ │ │ │ │ │ ├── wapp │ │ │ │ │ │ │ │ ├── wapp.h │ │ │ │ │ │ │ │ └── wapp_cmm_type.h │ │ │ │ │ │ │ ├── wfa_p2p.h │ │ │ │ │ │ │ ├── wifi_sys_notify.h │ │ │ │ │ │ │ ├── wlan_config │ │ │ │ │ │ │ │ ├── config_export.h │ │ │ │ │ │ │ │ └── config_internal.h │ │ │ │ │ │ │ ├── wnm.h │ │ │ │ │ │ │ ├── wnm_cmm.h │ │ │ │ │ │ │ ├── wsc.h │ │ │ │ │ │ │ └── wsc_tlv.h │ │ │ │ │ │ ├── mcu │ │ │ │ │ │ │ ├── andes_core.c │ │ │ │ │ │ │ ├── andes_mt.c │ │ │ │ │ │ │ └── mcu.c │ │ │ │ │ │ ├── mgmt │ │ │ │ │ │ │ ├── be_basic.c │ │ │ │ │ │ │ ├── be_ht.c │ │ │ │ │ │ │ ├── be_phy.c │ │ │ │ │ │ │ ├── be_vht.c │ │ │ │ │ │ │ ├── bss_ops.c │ │ │ │ │ │ │ ├── mgmt_dev.c │ │ │ │ │ │ │ ├── mgmt_entrytb.c │ │ │ │ │ │ │ ├── mgmt_ht.c │ │ │ │ │ │ │ ├── mgmt_hw.c │ │ │ │ │ │ │ └── mgmt_vht.c │ │ │ │ │ │ ├── plug_in │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ └── whnat │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── wdma.c │ │ │ │ │ │ │ │ ├── wdma.h │ │ │ │ │ │ │ │ ├── wed.c │ │ │ │ │ │ │ │ ├── wed.h │ │ │ │ │ │ │ │ ├── wed_def.h │ │ │ │ │ │ │ │ ├── woe.h │ │ │ │ │ │ │ │ ├── woe_basic.c │ │ │ │ │ │ │ │ ├── woe_basic.h │ │ │ │ │ │ │ │ ├── woe_hif.c │ │ │ │ │ │ │ │ ├── woe_hif.h │ │ │ │ │ │ │ │ ├── woe_hw.c │ │ │ │ │ │ │ │ ├── woe_hw.h │ │ │ │ │ │ │ │ ├── woe_main.c │ │ │ │ │ │ │ │ ├── woe_mt7615.c │ │ │ │ │ │ │ │ ├── woe_mt7615.h │ │ │ │ │ │ │ │ ├── woe_proc.c │ │ │ │ │ │ │ │ ├── woe_ser.c │ │ │ │ │ │ │ │ └── woe_wifi.h │ │ │ │ │ │ ├── security │ │ │ │ │ │ │ ├── bn_lib.c │ │ │ │ │ │ │ ├── cmm_aes.c │ │ │ │ │ │ │ ├── cmm_sec.c │ │ │ │ │ │ │ ├── cmm_tkip.c │ │ │ │ │ │ │ ├── cmm_wep.c │ │ │ │ │ │ │ ├── cmm_wpa.c │ │ │ │ │ │ │ ├── crypt_aes.c │ │ │ │ │ │ │ ├── crypt_arc4.c │ │ │ │ │ │ │ ├── crypt_biginteger.c │ │ │ │ │ │ │ ├── crypt_bignum.c │ │ │ │ │ │ │ ├── crypt_dh.c │ │ │ │ │ │ │ ├── crypt_hmac.c │ │ │ │ │ │ │ ├── crypt_md5.c │ │ │ │ │ │ │ ├── crypt_sha2.c │ │ │ │ │ │ │ ├── dh_key.c │ │ │ │ │ │ │ ├── ecc.c │ │ │ │ │ │ │ ├── owe.c │ │ │ │ │ │ │ ├── pmf.c │ │ │ │ │ │ │ └── sae.c │ │ │ │ │ │ ├── tools │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── auto_build_kernel_4_4.sh │ │ │ │ │ │ │ ├── bin2h │ │ │ │ │ │ │ ├── bin2h.c │ │ │ │ │ │ │ ├── build-check-jedi.sh │ │ │ │ │ │ │ ├── check_build_script.sh │ │ │ │ │ │ │ ├── i.sh │ │ │ │ │ │ │ ├── mt7662_freq_plan.c │ │ │ │ │ │ │ ├── mt7662e_ap.sh │ │ │ │ │ │ │ ├── mt7662e_sta.sh │ │ │ │ │ │ │ └── r.sh │ │ │ │ │ │ ├── unload │ │ │ │ │ │ ├── wapp │ │ │ │ │ │ │ └── wapp.c │ │ │ │ │ │ └── wlan_config │ │ │ │ │ │ │ ├── config_basic.c │ │ │ │ │ │ │ ├── config_ht.c │ │ │ │ │ │ │ ├── config_phy.c │ │ │ │ │ │ │ └── config_vht.c │ │ │ │ │ ├── hw_ctrl │ │ │ │ │ │ ├── cmm_asic.c │ │ │ │ │ │ ├── cmm_asic_mt.c │ │ │ │ │ │ ├── cmm_asic_mt_dmac.c │ │ │ │ │ │ ├── cmm_asic_mt_fw.c │ │ │ │ │ │ ├── cmm_chip.c │ │ │ │ │ │ ├── cmm_chip_mt.c │ │ │ │ │ │ ├── coex.c │ │ │ │ │ │ ├── greenap.c │ │ │ │ │ │ ├── hw_init.c │ │ │ │ │ │ └── mt_gpio.c │ │ │ │ │ ├── include │ │ │ │ │ │ ├── chip │ │ │ │ │ │ │ ├── chip_id.h │ │ │ │ │ │ │ ├── mt7615.h │ │ │ │ │ │ │ ├── mt7615_cr.h │ │ │ │ │ │ │ ├── mt7622.h │ │ │ │ │ │ │ ├── mt7622_cr.h │ │ │ │ │ │ │ ├── mt7663_cr.h │ │ │ │ │ │ │ └── p18_cr.h │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ ├── debug.h │ │ │ │ │ │ │ ├── link_list.h │ │ │ │ │ │ │ ├── module.h │ │ │ │ │ │ │ ├── mt_os_util.h │ │ │ │ │ │ │ └── wifi_sys_info.h │ │ │ │ │ │ ├── eeprom │ │ │ │ │ │ │ └── mt_tx_pwr.h │ │ │ │ │ │ ├── hif │ │ │ │ │ │ │ ├── hif.h │ │ │ │ │ │ │ └── mt_hif_pci.h │ │ │ │ │ │ ├── hw_ctrl │ │ │ │ │ │ │ ├── cmm_asic.h │ │ │ │ │ │ │ ├── cmm_asic_mt.h │ │ │ │ │ │ │ ├── cmm_asic_mt_fw.h │ │ │ │ │ │ │ ├── cmm_chip.h │ │ │ │ │ │ │ └── hw_init.h │ │ │ │ │ │ ├── mac │ │ │ │ │ │ │ ├── mac.h │ │ │ │ │ │ │ └── mac_mt │ │ │ │ │ │ │ │ ├── dmac │ │ │ │ │ │ │ │ ├── client.h │ │ │ │ │ │ │ │ ├── dma_sch.h │ │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ │ ├── hw_amsdu.h │ │ │ │ │ │ │ │ ├── mt_dmac.h │ │ │ │ │ │ │ │ ├── pse.h │ │ │ │ │ │ │ │ ├── wf_agg.h │ │ │ │ │ │ │ │ ├── wf_aon.h │ │ │ │ │ │ │ │ ├── wf_arb.h │ │ │ │ │ │ │ │ ├── wf_cfg.h │ │ │ │ │ │ │ │ ├── wf_cfgoff.h │ │ │ │ │ │ │ │ ├── wf_dma.h │ │ │ │ │ │ │ │ ├── wf_etbf.h │ │ │ │ │ │ │ │ ├── wf_int_wakeup_top.h │ │ │ │ │ │ │ │ ├── wf_lpon_top.h │ │ │ │ │ │ │ │ ├── wf_mib.h │ │ │ │ │ │ │ │ ├── wf_mu.h │ │ │ │ │ │ │ │ ├── wf_pf.h │ │ │ │ │ │ │ │ ├── wf_phy.h │ │ │ │ │ │ │ │ ├── wf_ple.h │ │ │ │ │ │ │ │ ├── wf_pp.h │ │ │ │ │ │ │ │ ├── wf_rmac.h │ │ │ │ │ │ │ │ ├── wf_sec.h │ │ │ │ │ │ │ │ ├── wf_tmac.h │ │ │ │ │ │ │ │ ├── wf_trb.h │ │ │ │ │ │ │ │ ├── wf_wtbl.h │ │ │ │ │ │ │ │ ├── wf_wtbloff.h │ │ │ │ │ │ │ │ └── wf_wtblon.h │ │ │ │ │ │ │ │ ├── mt_mac.h │ │ │ │ │ │ │ │ ├── mt_mac_ctrl.h │ │ │ │ │ │ │ │ ├── mt_mac_pci.h │ │ │ │ │ │ │ │ ├── smac │ │ │ │ │ │ │ │ ├── client.h │ │ │ │ │ │ │ │ ├── dma_sch.h │ │ │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ │ │ ├── mt_mac.h │ │ │ │ │ │ │ │ ├── mt_smac.h │ │ │ │ │ │ │ │ ├── pse.h │ │ │ │ │ │ │ │ ├── wf_agg.h │ │ │ │ │ │ │ │ ├── wf_aon.h │ │ │ │ │ │ │ │ ├── wf_arb.h │ │ │ │ │ │ │ │ ├── wf_cfgoff.h │ │ │ │ │ │ │ │ ├── wf_dma.h │ │ │ │ │ │ │ │ ├── wf_int_wakeup_top.h │ │ │ │ │ │ │ │ ├── wf_lpon_top.h │ │ │ │ │ │ │ │ ├── wf_mib.h │ │ │ │ │ │ │ │ ├── wf_pf.h │ │ │ │ │ │ │ │ ├── wf_phy.h │ │ │ │ │ │ │ │ ├── wf_rmac.h │ │ │ │ │ │ │ │ ├── wf_sec.h │ │ │ │ │ │ │ │ ├── wf_tmac.h │ │ │ │ │ │ │ │ ├── wf_trb.h │ │ │ │ │ │ │ │ ├── wf_wtbl.h │ │ │ │ │ │ │ │ ├── wf_wtbloff.h │ │ │ │ │ │ │ │ └── wf_wtblon.h │ │ │ │ │ │ │ │ └── top.h │ │ │ │ │ │ ├── mcu │ │ │ │ │ │ │ ├── fwdl.h │ │ │ │ │ │ │ ├── mt_cmd.h │ │ │ │ │ │ │ └── mt_fdb.h │ │ │ │ │ │ ├── os │ │ │ │ │ │ │ ├── bb_soc.h │ │ │ │ │ │ │ ├── diag.h │ │ │ │ │ │ │ ├── pkt_meta.h │ │ │ │ │ │ │ ├── rt_drv.h │ │ │ │ │ │ │ ├── rt_ecos_type.h │ │ │ │ │ │ │ ├── rt_linux.h │ │ │ │ │ │ │ ├── rt_linux_cmm.h │ │ │ │ │ │ │ ├── rt_linux_txrx_hook.h │ │ │ │ │ │ │ ├── rt_os.h │ │ │ │ │ │ │ ├── rt_win.h │ │ │ │ │ │ │ ├── rt_wince.h │ │ │ │ │ │ │ ├── trace.h │ │ │ │ │ │ │ └── wbsys_res.h │ │ │ │ │ │ ├── phy │ │ │ │ │ │ │ ├── mt_bbp.h │ │ │ │ │ │ │ ├── mt_phy.h │ │ │ │ │ │ │ ├── mt_rf.h │ │ │ │ │ │ │ ├── phy.h │ │ │ │ │ │ │ ├── rlm_cal_cache.h │ │ │ │ │ │ │ └── wf_phy_back.h │ │ │ │ │ │ ├── protocol │ │ │ │ │ │ │ ├── protection.h │ │ │ │ │ │ │ └── tmr.h │ │ │ │ │ │ ├── rate_ctrl │ │ │ │ │ │ │ └── ra_ctrl.h │ │ │ │ │ │ ├── txbf │ │ │ │ │ │ │ ├── mt_txbf.h │ │ │ │ │ │ │ └── mt_txbf_cal.h │ │ │ │ │ │ └── txpwr │ │ │ │ │ │ │ ├── BFBackoffTable_1.h │ │ │ │ │ │ │ ├── BFBackoffTable_10.h │ │ │ │ │ │ │ ├── BFBackoffTable_11.h │ │ │ │ │ │ │ ├── BFBackoffTable_12.h │ │ │ │ │ │ │ ├── BFBackoffTable_13.h │ │ │ │ │ │ │ ├── BFBackoffTable_14.h │ │ │ │ │ │ │ ├── BFBackoffTable_15.h │ │ │ │ │ │ │ ├── BFBackoffTable_16.h │ │ │ │ │ │ │ ├── BFBackoffTable_17.h │ │ │ │ │ │ │ ├── BFBackoffTable_18.h │ │ │ │ │ │ │ ├── BFBackoffTable_19.h │ │ │ │ │ │ │ ├── BFBackoffTable_2.h │ │ │ │ │ │ │ ├── BFBackoffTable_20.h │ │ │ │ │ │ │ ├── BFBackoffTable_3.h │ │ │ │ │ │ │ ├── BFBackoffTable_4.h │ │ │ │ │ │ │ ├── BFBackoffTable_5.h │ │ │ │ │ │ │ ├── BFBackoffTable_6.h │ │ │ │ │ │ │ ├── BFBackoffTable_7.h │ │ │ │ │ │ │ ├── BFBackoffTable_8.h │ │ │ │ │ │ │ ├── BFBackoffTable_9.h │ │ │ │ │ │ │ ├── SKUTable_1.h │ │ │ │ │ │ │ ├── SKUTable_10.h │ │ │ │ │ │ │ ├── SKUTable_11.h │ │ │ │ │ │ │ ├── SKUTable_12.h │ │ │ │ │ │ │ ├── SKUTable_13.h │ │ │ │ │ │ │ ├── SKUTable_14.h │ │ │ │ │ │ │ ├── SKUTable_15.h │ │ │ │ │ │ │ ├── SKUTable_16.h │ │ │ │ │ │ │ ├── SKUTable_17.h │ │ │ │ │ │ │ ├── SKUTable_18.h │ │ │ │ │ │ │ ├── SKUTable_19.h │ │ │ │ │ │ │ ├── SKUTable_2.h │ │ │ │ │ │ │ ├── SKUTable_20.h │ │ │ │ │ │ │ ├── SKUTable_3.h │ │ │ │ │ │ │ ├── SKUTable_4.h │ │ │ │ │ │ │ ├── SKUTable_5.h │ │ │ │ │ │ │ ├── SKUTable_6.h │ │ │ │ │ │ │ ├── SKUTable_7.h │ │ │ │ │ │ │ ├── SKUTable_8.h │ │ │ │ │ │ │ ├── SKUTable_9.h │ │ │ │ │ │ │ └── single_sku.h │ │ │ │ │ ├── license │ │ │ │ │ │ ├── MTK_LICENSE │ │ │ │ │ │ └── NOTICE │ │ │ │ │ ├── mac │ │ │ │ │ │ ├── mt_dmac.c │ │ │ │ │ │ └── mt_mac.c │ │ │ │ │ ├── mcu │ │ │ │ │ │ ├── fw_cmd.c │ │ │ │ │ │ ├── fwdl.c │ │ │ │ │ │ ├── fwdl_mt.c │ │ │ │ │ │ ├── mt_cmd.c │ │ │ │ │ │ └── mt_fdb.c │ │ │ │ │ ├── os │ │ │ │ │ │ └── linux │ │ │ │ │ │ │ ├── Kconfig.ap.soc │ │ │ │ │ │ │ ├── Kconfig.mt_wifi │ │ │ │ │ │ │ ├── Kconfig.mt_wifi_3_18 │ │ │ │ │ │ │ ├── Kconfig.mt_wifi_4_4 │ │ │ │ │ │ │ ├── Kconfig.mt_wifi_ap │ │ │ │ │ │ │ ├── Kconfig.mt_wifi_sta │ │ │ │ │ │ │ ├── Kconfig.rlt_wifi │ │ │ │ │ │ │ ├── Kconfig.rlt_wifi_ap │ │ │ │ │ │ │ ├── Kconfig.rlt_wifi_sta │ │ │ │ │ │ │ ├── Kconfig.sta.soc │ │ │ │ │ │ │ ├── Kconfig.wifi │ │ │ │ │ │ │ ├── Makefile-3.10.14.mt_wifi_ap │ │ │ │ │ │ │ ├── Makefile.4 │ │ │ │ │ │ │ ├── Makefile.4.netif │ │ │ │ │ │ │ ├── Makefile.4.util │ │ │ │ │ │ │ ├── Makefile.6 │ │ │ │ │ │ │ ├── Makefile.6.netif │ │ │ │ │ │ │ ├── Makefile.6.util │ │ │ │ │ │ │ ├── Makefile.ap.soc │ │ │ │ │ │ │ ├── Makefile.ap.usb │ │ │ │ │ │ │ ├── Makefile.clean │ │ │ │ │ │ │ ├── Makefile.libautoprovision.6 │ │ │ │ │ │ │ ├── Makefile.mt_wifi_ap │ │ │ │ │ │ │ ├── Makefile.mt_wifi_sta │ │ │ │ │ │ │ ├── Makefile.rlt_wifi_ap │ │ │ │ │ │ │ ├── Makefile.rlt_wifi_ap.7637e │ │ │ │ │ │ │ ├── Makefile.rlt_wifi_sta │ │ │ │ │ │ │ ├── Makefile.sta.soc │ │ │ │ │ │ │ ├── android_priv_cmd.c │ │ │ │ │ │ │ ├── ap_ioctl.c │ │ │ │ │ │ │ ├── bb_soc.c │ │ │ │ │ │ │ ├── br_ftph.c │ │ │ │ │ │ │ ├── cfg80211 │ │ │ │ │ │ │ ├── cfg80211.c │ │ │ │ │ │ │ ├── cfg80211_ap.c │ │ │ │ │ │ │ ├── cfg80211_apcli.c │ │ │ │ │ │ │ ├── cfg80211_inf.c │ │ │ │ │ │ │ ├── cfg80211_p2p.c │ │ │ │ │ │ │ ├── cfg80211_rx.c │ │ │ │ │ │ │ ├── cfg80211_scan.c │ │ │ │ │ │ │ ├── cfg80211_tdls.c │ │ │ │ │ │ │ ├── cfg80211_tx.c │ │ │ │ │ │ │ ├── cfg80211_util.c │ │ │ │ │ │ │ └── cfg80211drv.c │ │ │ │ │ │ │ ├── config.mk │ │ │ │ │ │ │ ├── config.mk.cfg80211 │ │ │ │ │ │ │ ├── diag.c │ │ │ │ │ │ │ ├── inf_ppa.c │ │ │ │ │ │ │ ├── mt_fwdump.c │ │ │ │ │ │ │ ├── multi_main_dev.c │ │ │ │ │ │ │ ├── pci_main_dev.c │ │ │ │ │ │ │ ├── rbus_main_dev.c │ │ │ │ │ │ │ ├── rbus_prop_dev.c │ │ │ │ │ │ │ ├── rt_linux.c │ │ │ │ │ │ │ ├── rt_linux_symb.c │ │ │ │ │ │ │ ├── rt_main_dev.c │ │ │ │ │ │ │ ├── rt_pci_rbus.c │ │ │ │ │ │ │ ├── rt_proc.c │ │ │ │ │ │ │ ├── rt_profile.c │ │ │ │ │ │ │ ├── rt_rbus_pci_drv.c │ │ │ │ │ │ │ ├── rt_rbus_pci_util.c │ │ │ │ │ │ │ ├── rt_symb.c │ │ │ │ │ │ │ ├── rt_txrx_hook.c │ │ │ │ │ │ │ ├── rt_udma.c │ │ │ │ │ │ │ ├── tm.c │ │ │ │ │ │ │ ├── trace.c │ │ │ │ │ │ │ ├── unload │ │ │ │ │ │ │ ├── vr_bdlt.c │ │ │ │ │ │ │ ├── vr_ikans.c │ │ │ │ │ │ │ └── wbsys_main_dev.c │ │ │ │ │ ├── phy │ │ │ │ │ │ ├── mt_phy.c │ │ │ │ │ │ ├── mt_rf.c │ │ │ │ │ │ ├── phy.c │ │ │ │ │ │ ├── rf.c │ │ │ │ │ │ └── rlm_cal_cache.c │ │ │ │ │ ├── protocol │ │ │ │ │ │ ├── protection.c │ │ │ │ │ │ └── tmr.c │ │ │ │ │ ├── rate_ctrl │ │ │ │ │ │ ├── ra_cfg.c │ │ │ │ │ │ ├── ra_ctrl_mt.c │ │ │ │ │ │ ├── ra_ctrl_mt_drv.c │ │ │ │ │ │ └── ra_wrapper_embedded.c │ │ │ │ │ ├── txbf │ │ │ │ │ │ ├── cmm_txbf_cal_mt.c │ │ │ │ │ │ ├── cmm_txbf_mt.c │ │ │ │ │ │ └── txbf_wrapper_embedded.c │ │ │ │ │ └── txpwr │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── dat2h.c │ │ │ │ │ │ ├── single_sku.c │ │ │ │ │ │ └── sku_tables │ │ │ │ │ │ ├── 7615_SingleSKU_1.dat │ │ │ │ │ │ ├── 7615_SingleSKU_BF_1.dat │ │ │ │ │ │ ├── 7615_SingleSKU_BF_default.dat │ │ │ │ │ │ └── 7615_SingleSKU_default.dat │ │ │ │ │ ├── mt_wifi_ap │ │ │ │ │ ├── Kconfig │ │ │ │ │ └── Makefile │ │ │ │ │ ├── mt_wifi_sta │ │ │ │ │ ├── Kconfig │ │ │ │ │ └── Makefile │ │ │ │ │ └── wlan_cfg │ │ │ │ │ └── mt7622 │ │ │ │ │ ├── RT2860.dat │ │ │ │ │ ├── Readme.txt │ │ │ │ │ ├── iNic_ap.dat │ │ │ │ │ ├── l1profile.dat │ │ │ │ │ └── mt7615_3.dat │ │ │ └── mt_wifi │ │ │ │ ├── Makefile │ │ │ │ ├── config.in │ │ │ │ └── files │ │ │ │ ├── 7603_7612-l1profile.dat │ │ │ │ ├── 7603_7615-l1profile.dat │ │ │ │ ├── 7615.l1profile.dat │ │ │ │ ├── 7615d.l1profile.dat │ │ │ │ ├── 7915d.l1profile.dat │ │ │ │ ├── 91_load_wifi.sh │ │ │ │ ├── SingleSKU.dat │ │ │ │ ├── SingleSKU_BF.dat │ │ │ │ ├── firmware.sh │ │ │ │ ├── mt7603.dat │ │ │ │ ├── mt7612.dat │ │ │ │ ├── mt7615.1.2G.dat │ │ │ │ ├── mt7615.1.5G.dat │ │ │ │ ├── mt7615.2G.dat │ │ │ │ ├── mt7615.5G.dat │ │ │ │ ├── mt7615.dat │ │ │ │ ├── mt7615.lua │ │ │ │ ├── mt7615e-sku-bf.dat │ │ │ │ ├── mt7615e-sku.dat │ │ │ │ ├── mt7615e.eeprom.bin │ │ │ │ ├── mt7622.1.dat │ │ │ │ ├── mt7915.1.2G.dat │ │ │ │ ├── mt7915.1.5G.dat │ │ │ │ └── wifi_services.lua │ │ ├── luci-app-mtwifi │ │ │ ├── Makefile │ │ │ ├── luasrc │ │ │ │ ├── controller │ │ │ │ │ └── mtkwifi.lua │ │ │ │ └── view │ │ │ │ │ └── admin_mtk │ │ │ │ │ ├── mtk_wifi_apcli.htm │ │ │ │ │ ├── mtk_wifi_dev_cfg.htm │ │ │ │ │ ├── mtk_wifi_overview.htm │ │ │ │ │ └── mtk_wifi_vif_cfg.htm │ │ │ └── root │ │ │ │ ├── lib │ │ │ │ └── upgrade │ │ │ │ │ └── keep.d │ │ │ │ │ └── mtwifi │ │ │ │ ├── sbin │ │ │ │ └── mtkwifi │ │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── lua │ │ │ │ └── mtkwifi.lua │ │ ├── mtk_apcli │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── main.c │ │ │ │ ├── mtk.h │ │ │ │ └── wext.h │ │ └── mtkiappd │ │ │ ├── Makefile │ │ │ ├── files │ │ │ ├── README │ │ │ ├── firewall.include │ │ │ ├── mtkiappd.defaults │ │ │ └── mtkiappd.sh │ │ │ └── src │ │ │ ├── Makefile │ │ │ ├── iappdefs.h │ │ │ ├── mt_iapp_util.c │ │ │ ├── rt_config.h │ │ │ ├── rt_typedef.h │ │ │ ├── rtmpiapp.c │ │ │ └── rtmpiapp.h │ ├── ntfs3-mount │ │ ├── Makefile │ │ └── files │ │ │ └── mount.ntfs │ ├── ntfs3-oot │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-compat-mount.patch │ ├── pcat-manager │ │ ├── Makefile │ │ └── files │ │ │ ├── pcat-manager.conf │ │ │ └── pcat-manager.init │ ├── polarssl │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-disable_sslv3.patch │ │ │ └── 200-reduce_config.patch │ ├── ps3netsrv │ │ ├── Makefile │ │ ├── files │ │ │ ├── ps3netsrv.config │ │ │ └── ps3netsrv.init │ │ └── patches │ │ │ ├── 001-include.common.h.patch │ │ │ ├── 002-include.compat.h.patch │ │ │ └── 003-makefile.patch │ ├── r8152 │ │ └── Makefile │ ├── srelay │ │ ├── Makefile │ │ ├── files │ │ │ ├── srelay.conf │ │ │ └── srelay.init │ │ └── patches │ │ │ └── 001-compile.patch │ ├── ucl │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-autoconf-compat.patch │ ├── upx │ │ └── Makefile │ ├── vsftpd-alt │ │ ├── Makefile │ │ ├── files │ │ │ ├── vsftpd-uci.init │ │ │ ├── vsftpd.conf │ │ │ ├── vsftpd.init │ │ │ ├── vsftpd.uci │ │ │ ├── vsftpd_prepare │ │ │ └── vsftpd_wrapper │ │ └── patches │ │ │ ├── 001-destdir.patch │ │ │ ├── 002-find_libs.patch │ │ │ ├── 003-chroot.patch │ │ │ ├── 004-disable-capabilities.patch │ │ │ ├── 005-disable-pam.patch │ │ │ ├── 006-musl-compatibility.patch │ │ │ ├── 007-CVE-2015-1419.patch │ │ │ ├── 010-openssl-deprecated.patch │ │ │ ├── 100-add-uci-auth-support.patch │ │ │ ├── 101-enable-chroot-on-writable-dir.patch │ │ │ └── 102-keep-local-user-rights.patch │ └── wol │ │ ├── Makefile │ │ └── patches │ │ └── 001-fix-build-on-x86.patch ├── 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 │ │ │ ├── 007-add-libeu-symbols-to-libelf.patch │ │ │ ├── 008-fix-autoconf-ENABLE_IMA_VERIFICATION.patch │ │ │ ├── 009-fix-null-dereference-with-lto.patch │ │ │ ├── 100-musl-compat.patch │ │ │ ├── 101-no-fts.patch │ │ │ └── 102-fix-potential-deref-of-null-error.patch │ ├── gettext-full │ │ ├── Makefile │ │ └── patches │ │ │ ├── 000-relocatable.patch │ │ │ ├── 001-autotools.patch │ │ │ ├── 100-libxml-no-force-included.patch │ │ │ └── 200-libunistring-missing-link.patch │ ├── gmp │ │ └── Makefile │ ├── jansson │ │ └── Makefile │ ├── libaudit │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-Add-substitue-functions-for-strndupa-rawmemchr.patch │ │ │ └── 0002-fix-gcc-10.patch │ ├── libbpf │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-bpf_tc_classid.patch │ ├── libbsd │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-fix-libpath.patch │ ├── libcap │ │ ├── Makefile │ │ └── patches │ │ │ ├── 300-disable-tests.patch │ │ │ └── 900-use-more-compatible-shebang.patch │ ├── libevent2 │ │ └── Makefile │ ├── libiconv-full │ │ └── Makefile │ ├── libjson-c │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-dont-build-docs.patch │ ├── libmd │ │ └── Makefile │ ├── libmnl │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-fix_build.patch │ ├── libnetfilter-conntrack │ │ ├── Makefile │ │ └── patches │ │ │ └── 0001-conntrack-fix-build-with-kernel-5_15-and-musl.patch │ ├── libnfnetlink │ │ └── Makefile │ ├── libnftnl │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-libnftnl-add-fullcone-expression-support.patch │ ├── libnl-tiny │ │ └── Makefile │ ├── libnl │ │ └── Makefile │ ├── libpcap │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-no-openssl.patch │ │ │ ├── 102-skip-manpages.patch │ │ │ ├── 210-add-rpcapd-in-linux-support.patch │ │ │ └── 300-Add-support-for-B.A.T.M.A.N.-Advanced.patch │ ├── libselinux │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-Inject-matchpathcon_filespec_add64-if-defined-__INO_.patch │ │ │ └── 100-v2-libselinux-be-careful-with-non-portable-LFS-macro.patch │ ├── libsemanage │ │ └── Makefile │ ├── libsepol │ │ └── Makefile │ ├── libtool │ │ └── Makefile │ ├── libtraceevent │ │ └── Makefile │ ├── libtracefs │ │ └── Makefile │ ├── libubox │ │ └── Makefile │ ├── libunwind │ │ ├── Makefile │ │ └── patches │ │ │ ├── 002-fix-building-getcontext_S.patch │ │ │ ├── 003-fix-missing-ef_reg-defs-with-musl.patch │ │ │ └── 004-ppc-musl.patch │ ├── libusb │ │ └── Makefile │ ├── mbedtls │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-fix-gcc14-build.patch │ │ │ └── 101-remove-test.patch │ ├── mpfr │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-only-src.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 │ │ │ ├── legacy.cnf │ │ │ ├── openssl.init │ │ │ └── padlock.cnf │ │ └── patches │ │ │ ├── 100-Configure-afalg-support.patch │ │ │ ├── 110-openwrt_targets.patch │ │ │ ├── 120-strip-cflags-from-binary.patch │ │ │ ├── 130-dont-build-fuzz-docs.patch │ │ │ ├── 140-allow-prefer-chacha20.patch │ │ │ ├── 150-openssl.cnf-add-engines-conf.patch │ │ │ ├── 500-e_devcrypto-default-to-not-use-digests-in-engine.patch │ │ │ └── 510-e_devcrypto-ignore-error-when-closing-session.patch │ ├── pcre │ │ ├── Config.in │ │ └── Makefile │ ├── popt │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-configure.ac-remove-require-gettext-version.patch │ ├── 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 │ ├── udebug │ │ ├── Makefile │ │ └── files │ │ │ ├── udebug.config │ │ │ └── udebug.init │ ├── ustream-ssl │ │ └── Makefile │ ├── wolfssl │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-disable-hardening-check.patch │ ├── xcrypt │ │ ├── libcrypt-compat │ │ │ └── Makefile │ │ ├── libxcrypt-common.mk │ │ └── libxcrypt │ │ │ └── Makefile │ └── zlib │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ ├── 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 │ │ │ └── patches │ │ │ │ ├── 100-fullconenat.patch │ │ │ │ └── 101-bcm-fullconenat.patch │ │ ├── firewall4 │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ └── 001-firewall4-add-support-for-fullcone-nat.patch │ │ ├── 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 │ │ │ │ ├── init.d │ │ │ │ │ ├── network │ │ │ │ │ └── packet_steering │ │ │ │ ├── uci-defaults │ │ │ │ │ └── 14_migrate-dhcp-release │ │ │ │ └── udhcpc.user │ │ │ │ ├── lib │ │ │ │ ├── netifd │ │ │ │ │ ├── dhcp.script │ │ │ │ │ └── proto │ │ │ │ │ │ └── dhcp.sh │ │ │ │ └── network │ │ │ │ │ └── config.sh │ │ │ │ ├── sbin │ │ │ │ ├── devstatus │ │ │ │ ├── ifdown │ │ │ │ ├── ifstatus │ │ │ │ └── ifup │ │ │ │ └── usr │ │ │ │ ├── libexec │ │ │ │ └── network │ │ │ │ │ └── packet-steering.sh │ │ │ │ └── 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 │ │ ├── ipip6 │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── ipip6.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-ipset.sh │ │ │ │ ├── 50-dnsmasq-migrate-resolv-conf-auto.sh │ │ │ │ ├── dhcp-script.sh │ │ │ │ ├── dhcp.conf │ │ │ │ ├── dhcpbogushostname.conf │ │ │ │ ├── dnsmasq.conf │ │ │ │ ├── dnsmasq.init │ │ │ │ ├── dnsmasq_acl.json │ │ │ │ ├── dnsmasqsec.hotplug │ │ │ │ └── rfc6761.conf │ │ │ └── patches │ │ │ │ ├── 100-remove-old-runtime-kernel-support.patch │ │ │ │ └── 200-ubus_dns.patch │ │ ├── dropbear │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── dropbear.config │ │ │ │ ├── dropbear.failsafe │ │ │ │ └── dropbear.init │ │ │ └── patches │ │ │ │ ├── 001-fix-MAX_UNAUTH_CLIENTS-regression.patch │ │ │ │ ├── 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 │ │ ├── e2guardian │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── e2guardian.config │ │ │ │ ├── e2guardian.init │ │ │ │ └── e2guardianf1.conf │ │ ├── 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 │ │ ├── fullconenat-nft │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ └── 001-fix-build.patch │ │ ├── fullconenat │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ └── Makefile │ │ ├── hostapd │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── files │ │ │ │ ├── dhcp-get-server.sh │ │ │ │ ├── hostapd-basic.config │ │ │ │ ├── hostapd-full.config │ │ │ │ ├── hostapd-mini.config │ │ │ │ ├── hostapd.sh │ │ │ │ ├── multicall.c │ │ │ │ ├── radius.clients │ │ │ │ ├── radius.config │ │ │ │ ├── radius.init │ │ │ │ ├── radius.users │ │ │ │ ├── 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 │ │ │ │ ├── 110-mbedtls-TLS-crypto-option-initial-port.patch │ │ │ │ ├── 120-mbedtls-fips186_2_prf.patch │ │ │ │ ├── 130-mbedtls-annotate-with-TEST_FAIL-for-hwsim-tests.patch │ │ │ │ ├── 140-tests-Makefile-make-run-tests-with-CONFIG_TLS.patch │ │ │ │ ├── 150-add-NULL-checks-encountered-during-tests-hwsim.patch │ │ │ │ ├── 160-dpp_pkex-EC-point-mul-w-value-prime.patch │ │ │ │ ├── 170-hostapd-update-cfs0-and-cfs1-for-160MHz.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 │ │ │ │ ├── 450-scan_wait.patch │ │ │ │ ├── 460-wpa_supplicant-add-new-config-params-to-be-used-with.patch │ │ │ │ ├── 463-add-mcast_rate-to-11s.patch │ │ │ │ ├── 464-fix-mesh-obss-check.patch │ │ │ │ ├── 465-hostapd-config-support-random-BSS-color.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 │ │ │ │ ├── 760-dynamic_own_ip.patch │ │ │ │ ├── 761-shared_das_port.patch │ │ │ │ ├── 770-radius_server.patch │ │ │ │ └── 990-ctrl-make-WNM_AP-functions-dependant-on-CONFIG_AP.patch │ │ │ └── src │ │ │ │ ├── hostapd │ │ │ │ └── radius.c │ │ │ │ ├── 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 │ │ ├── noddos │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ ├── 010-openssl-1.1-fixes.patch │ │ │ │ ├── 020-Ipset.cxx-update-libipset-API-to-version-7.patch │ │ │ │ ├── 030-getnoddosdeviceprofiles-wget-timestamping-check.patch │ │ │ │ ├── 040-openssl-deprecated.patch │ │ │ │ └── 050-fix-gcc13.patch │ │ ├── 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.conf │ │ │ │ │ │ └── radius │ │ │ │ │ │ ├── dictionary │ │ │ │ │ │ ├── dictionary.asnet │ │ │ │ │ │ ├── dictionary.microsoft │ │ │ │ │ │ └── servers │ │ │ │ ├── lib │ │ │ │ │ └── netifd │ │ │ │ │ │ ├── ppp-down │ │ │ │ │ │ ├── ppp-up │ │ │ │ │ │ └── ppp6-up │ │ │ │ └── ppp.sh │ │ │ ├── patches │ │ │ │ ├── 000-pppd-session-fixed-building-with-gcc-15.patch │ │ │ │ ├── 001-pppdump-fixed-building-with-gcc-15.patch │ │ │ │ ├── 105-debian_demand.patch │ │ │ │ ├── 204-radius_config.patch │ │ │ │ ├── 207-lcp_mtu_max.patch │ │ │ │ ├── 208-fix_status_code.patch │ │ │ │ ├── 310-precompile_filter.patch │ │ │ │ ├── 321-multilink_support_custom_iface_names.patch │ │ │ │ ├── 340-populate_default_gateway.patch │ │ │ │ ├── 400-simplify_kernel_checks.patch │ │ │ │ ├── 401-no_record_file.patch │ │ │ │ ├── 404-remove_obsolete_protocol_names.patch │ │ │ │ ├── 405-no_multilink_option.patch │ │ │ │ ├── 500-add-pptp-plugin.patch │ │ │ │ └── 512-syncppp.patch │ │ │ └── utils │ │ │ │ └── pfc.c │ │ ├── relayd │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── relay.init │ │ ├── samba36 │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── samba.config │ │ │ │ ├── samba.init │ │ │ │ ├── smb.auto │ │ │ │ ├── smb.conf.template │ │ │ │ └── uci_defaults_samba │ │ │ └── patches │ │ │ │ ├── 008-loose-allocate.patch │ │ │ │ ├── 029-CVE-2017-7494-v3-6.patch │ │ │ │ ├── 110-multicall.patch │ │ │ │ ├── 120-add_missing_ifdef.patch │ │ │ │ ├── 200-remove_printer_support.patch │ │ │ │ ├── 220-remove_services.patch │ │ │ │ ├── 230-remove_winreg_support.patch │ │ │ │ ├── 270-remove_registry_backend.patch │ │ │ │ ├── 280-strip_srvsvc.patch │ │ │ │ ├── 285-remove_desrep_support.patch │ │ │ │ ├── 300-assert_debug_level.patch │ │ │ │ ├── 310-remove_error_strings.patch │ │ │ │ ├── 320-debug_level_checks.patch │ │ │ │ ├── 390-remove-auth-winbind.patch │ │ │ │ ├── 800-ldap-sasl.patch │ │ │ │ └── 810-ldap-determine-suffix-automatically.patch │ │ ├── shellsync │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ └── shellsync.c │ │ ├── uhttpd │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── ubus.default │ │ │ │ ├── uhttpd.config │ │ │ │ └── uhttpd.init │ │ ├── umdns │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── umdns.config │ │ │ │ ├── umdns.init │ │ │ │ └── umdns.json │ │ └── unetd │ │ │ ├── Makefile │ │ │ └── files │ │ │ ├── unet-dht.init │ │ │ ├── unetd.init │ │ │ └── unetd.sh │ └── utils │ │ ├── adb-enablemodem │ │ ├── Makefile │ │ └── files │ │ │ └── adb-enablemodem │ │ ├── arptables │ │ └── Makefile │ │ ├── bpftool │ │ ├── Makefile │ │ └── patches │ │ │ └── 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 │ │ ├── dpdk │ │ ├── Makefile │ │ └── patches │ │ │ └── 0001-Handling-backtrace-and-execinfo-header-file.patch │ │ ├── ebtables │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-musl_fix.patch │ │ │ └── 200-fix-extension-init.patch │ │ ├── ethtool │ │ └── Makefile │ │ ├── iproute2 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-configure.patch │ │ │ ├── 105-ipstats-Define-MIN-function-to-fix-undefined-referen.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 │ │ │ ├── 155-keep_tirpc_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 │ │ │ ├── 400-add-nss-qdisc.patch │ │ │ └── 500-add-nssmirred.patch │ │ ├── ipset │ │ ├── Makefile │ │ └── patches │ │ │ └── 0001-include-libgen.h-for-basename.patch │ │ ├── iptables │ │ ├── Makefile │ │ └── patches │ │ │ ├── 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 │ │ │ └── 900-bcm-fullconenat.patch │ │ ├── iw │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-nl80211_h_sync.patch │ │ │ ├── 010-Revert-iw-allow-specifying-CFLAGS-LIBS-externally.patch │ │ │ ├── 100-scan-Add-printing-of-HE-Operation-Element.patch │ │ │ ├── 101-iw-fix-HE-capabilities-on-Big-Endian-platforms.patch │ │ │ ├── 102-iw-fix-HE-operation-on-Big-Endian-platforms.patch │ │ │ ├── 130-survey-bss-rx-time.patch │ │ │ ├── 200-reduce_size.patch │ │ │ ├── 300-wiphy_radios.patch │ │ │ └── 310-vif_radio_mask.patch │ │ ├── iwcap │ │ ├── Makefile │ │ └── src │ │ │ └── iwcap.c │ │ ├── iwinfo │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-ralink.patch │ │ │ └── 100-multi_radio.patch │ │ ├── layerscape │ │ └── restool │ │ │ ├── Makefile │ │ │ └── patches │ │ │ └── 0001-restool-fix-get_device_file-function.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 │ │ │ └── 900-add_5.19_support.patch │ │ ├── ltq-dsl-base │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ └── hotplug.d │ │ │ │ └── dsl │ │ │ │ ├── led_dsl.sh │ │ │ │ └── pppoa.sh │ │ │ └── sbin │ │ │ └── dsl_notify.sh │ │ ├── nftables │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-drop-useless-file.patch │ │ │ └── 002-nftables-add-fullcone-expression-support.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 │ │ │ ├── 005-fix-iwpriv-e2p-error.patch │ │ │ └── 006-increase_max_priv_ioctl.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 ├── qca │ ├── nss-firmware │ │ └── Makefile │ ├── qca-mcs │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-kernel-5.10-compat.patch │ │ │ └── 0002-kernel-6.x-suport.patch │ ├── qca-nss-cfi │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-cryptoapi-v2.0-fix-SHA1-header-include.patch │ │ │ ├── 0002-cryptoapi-v2.0-make-ablkcipher-optional.patch │ │ │ ├── 0003-cryptoapi-v2.0-remove-setting-crypto_ahash_type-for-.patch │ │ │ ├── 0004-cryptoapi-v2.0-aead-add-downstream-crypto_tfm_alg_fl.patch │ │ │ ├── 0005-cryptoapi-v2.0-remove-dropped-flags.patch │ │ │ └── 0006-cryptoapi-v2.0-convert-to-skcipher.patch │ ├── qca-nss-clients │ │ ├── Makefile │ │ ├── files │ │ │ ├── qca-nss-ipsec │ │ │ ├── qca-nss-mirred.init │ │ │ ├── qca-nss-netlink.init │ │ │ └── qca-nss-ovpn.init │ │ └── patches │ │ │ ├── 0001-kernel-5.15-support-qdisc.patch │ │ │ ├── 0002-kernel-5.4-support-gre.patch │ │ │ ├── 0003-kernel-5.4-support-ipsec.patch │ │ │ ├── 0004-kernel-5.4-support-dtls.patch │ │ │ ├── 0005-vlanmgr-fix-compile-error.patch │ │ │ ├── 0006-match-fix-compile-error.patch │ │ │ ├── 0007-bridge-fix-compile-error.patch │ │ │ ├── 0008-profiler-fix-compile-error.patch │ │ │ ├── 0010-fix-portifmgr.patch │ │ │ ├── 0011-dtlsmgr-fix-SHA-header-include-in-5.15.patch │ │ │ ├── 0012-dtlsmgr-fix-debug-print-in-5.15.patch │ │ │ ├── 0013-tlsmgr-fix-SHA-header-include-in-5.15.patch │ │ │ ├── 0014-ovpnmgr-fix-SHA-header-include-in-5.15.patch │ │ │ ├── 0015-tunipip6-fix-compile-error-in-5.15.patch │ │ │ ├── 0016-vxlanmgr-fix-compile-error-in-5.15.patch │ │ │ ├── 0017-tlsmgr-fix-debug-print-in-5.15.patch │ │ │ ├── 0018-kernel-6.1-support.patch │ │ │ ├── 0019-wifi-meshmgr-fix-uninitialized-and-implicit.patch │ │ │ ├── 0020-capwapmgr-fix-compile-error.patch │ │ │ ├── 0022-netlink-modularize-makefile.patch │ │ │ ├── 0024-switch-to-wifili.patch │ │ │ ├── 0025-nss-clients-add-kernel-6.6-support.patch │ │ │ ├── 0028-dtlsmgr-use-eth_hw_addr_set.patch │ │ │ ├── 0029-dtlsmgr-properly-update-stats.patch │ │ │ ├── 0030-fixup-compiler-errors.patch │ │ │ ├── 0031-kernel-6.12-support.patch │ │ │ └── 0032-match-fix-procfs-read-write.patch │ ├── qca-nss-crypto │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-nss-crypto-support-kernel-6.12.patch │ │ │ └── 0002-nss-crypto-replace-ioremap_nocache-with-ioremap.patch │ ├── qca-nss-dp │ │ └── Makefile │ ├── qca-nss-drv │ │ ├── Config.in │ │ ├── Makefile │ │ ├── files │ │ │ ├── qca-nss-drv.conf │ │ │ ├── qca-nss-drv.debug │ │ │ ├── qca-nss-drv.hotplug │ │ │ ├── qca-nss-drv.init │ │ │ └── qca-nss-drv.sysctl │ │ └── patches │ │ │ ├── 0001-nss-drv-replace-ioremap_nocache-with-ioremap.patch │ │ │ ├── 0002-nss-drv-add-support-for-kernel-5.15.patch │ │ │ ├── 0003-DMA-Fix-NULL-pointer-exceptions.patch │ │ │ ├── 0004-nss-drv-rework-NSS_CORE_DMA_CACHE_MAINT-ops.patch │ │ │ ├── 0005-nss-drv-rework-getting-the-reserved-memory-size.patch │ │ │ ├── 0006-nss-drv-Fix-nss_clmap_stats-enum-int-compilation-error-GCC-13.patch │ │ │ ├── 0007-nss-drv-Fix-nss_wifili_if-compilation-error-GCC-13.patch │ │ │ ├── 0008-Add-kernel-6.1-support.patch │ │ │ ├── 0010-nss-drv-dynamic-interface-desc.patch │ │ │ ├── 0011-nss-drv-move-only-for-ipq806x.patch │ │ │ ├── 0012-nss-drv-quiet-messages.patch │ │ │ ├── 0013-nss-drv-remove-legacy-wifi.patch │ │ │ ├── 0014-nss-drv-avoid-recreating-virt_if.patch │ │ │ ├── 0015-nss-drv-fix-igs.patch │ │ │ ├── 0016-nss-drv-add-support-for-kernel-6.6.patch │ │ │ ├── 0017-nss-drv-wifili-add-exported-symbols.patch │ │ │ ├── 0018-nss-drv-more-uniform-kernel-msg.patch │ │ │ ├── 0019-nss-drv-mac80211-disable-signal-redirection.patch │ │ │ ├── 0019-nss-drv-reorg-irq-logic.patch │ │ │ ├── 0020-nss-drv-display-fw-version.patch │ │ │ ├── 0022-nss-drv-limit-fw-12.2.patch │ │ │ ├── 0022-nss-drv-set-addr-to-const.patch │ │ │ ├── 0023-add-boot-delay.patch │ │ │ ├── 0024-fix-mesh-stats-naming.patch │ │ │ ├── 0025-nss_rps-fix-procfs-read-write.patch │ │ │ ├── 0026-nss-drv-add-support-for-kernel-6.12.patch │ │ │ └── 0027-nss-core-build.patch │ ├── qca-nss-ecm │ │ ├── Makefile │ │ ├── files │ │ │ ├── disable_offloads.hotplug │ │ │ ├── disable_offloads.sh │ │ │ ├── ecm_dump.sh │ │ │ ├── on-demand-down │ │ │ ├── qca-nss-ecm.defaults │ │ │ ├── qca-nss-ecm.firewall │ │ │ ├── qca-nss-ecm.init │ │ │ ├── qca-nss-ecm.sysctl │ │ │ └── qca-nss-ecm.uci │ │ └── patches │ │ │ ├── 0001-treewide-componentize-the-module-even-more.patch │ │ │ ├── 0004-qca-nss-ecm-resolve-the-cpu-high-load-regarding-ecm.patch │ │ │ ├── 0008-ecm_tracker_datagram-drop-static-for-EXPORT_SYMBOL.patch │ │ │ ├── 0009-frontends-drop-udp_get_timeouts-and-use-standard-ups.patch │ │ │ ├── 0010-ecm_interface-fix-ppp-generic-function-calls-for-5.15.patch │ │ │ ├── 0011-ecm_classifier-move-defs.patch │ │ │ ├── 0012-ecm_add-check-for-pppoe.patch │ │ │ ├── 0013-treewide-export-ipv4-and-ipv6-symbols.patch │ │ │ ├── 0015-ecm-add-support-for-kernel-6.6.patch │ │ │ ├── 0016-ecm-conditionally-check-mlo-device.patch │ │ │ ├── 0017-ecm-interface-fix-fortify_memcpy_chk.patch │ │ │ ├── 0018-ecm-compat-nss-12_2.patch │ │ │ ├── 0020-remove-check-mlo-device.patch │ │ │ ├── 0021-fix-read-write-tcp-udp-denied-ports.patch │ │ │ ├── 0022-fix-undefined-dev-for-tunipip6.patch │ │ │ └── 0023-nss-ecm-add-kernel-6.12-support.patch │ ├── qca-ssdk-shell │ │ ├── Makefile │ │ └── patches │ │ │ └── 0001-qca-ssdk-shell-Fix-fal_port_cdt-compilation-error-GCC-13.patch │ ├── qca-ssdk │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-qca807x-add-a-LED-quirk-for-Xiaomi-AX9000.patch │ │ │ ├── 0002-qca807x-add-a-LED-quirk-for-Xiaomi-AX3600.patch │ │ │ ├── 0800-fix-linux-6.12-build.patch │ │ │ └── 0900-ignore-phy_addr-warning.patch │ └── shortcut-fe │ │ ├── fast-classifier │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ ├── fast-classifier.c │ │ │ ├── fast-classifier.h │ │ │ ├── nl_classifier_test.c │ │ │ └── userspace_example.c │ │ ├── shortcut-fe │ │ ├── Makefile │ │ ├── files │ │ │ ├── etc │ │ │ │ └── init.d │ │ │ │ │ └── shortcut-fe │ │ │ └── usr │ │ │ │ └── bin │ │ │ │ └── sfe_dump │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── sfe.h │ │ │ ├── sfe_backport.h │ │ │ ├── sfe_cm.c │ │ │ ├── sfe_cm.h │ │ │ ├── sfe_ipv4.c │ │ │ └── sfe_ipv6.c │ │ └── simulated-driver │ │ └── Makefile ├── system │ ├── apk │ │ ├── Makefile │ │ ├── files │ │ │ └── customfeeds.list │ │ └── patches │ │ │ └── 0001-openwrt-move-layer-db-to-temp-folder.patch │ ├── 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 │ │ └── patches │ │ │ ├── 0200-ntfs3-with-utf8.patch │ │ │ └── 0300-change-default-f2fs-overlay-size.patch │ ├── fwtool │ │ └── Makefile │ ├── iucode-tool │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-iucode_tool-add-missing-limits.h-for-USE_CPUID_DEVIC.patch │ │ │ └── 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 │ │ └── patches │ │ │ └── 001-use-standard-POSIX-header-for-basename.patch │ ├── rdloader │ │ ├── Makefile │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ ├── blkid2.c │ │ │ ├── blkid2.h │ │ │ ├── cmdline.c │ │ │ ├── cmdline.h │ │ │ ├── insmod.c │ │ │ ├── insmod.h │ │ │ ├── main.c │ │ │ ├── mkdev_node.c │ │ │ ├── mkdev_node.h │ │ │ ├── mknod.c │ │ │ ├── mknod.h │ │ │ ├── switch_root.c │ │ │ └── switch_root.h │ ├── 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 │ │ │ ├── logd.json │ │ │ └── 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 │ │ └── patches │ │ │ └── 0001-fix-high-cpu-usage-with-docker.patch │ ├── 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-utils │ │ ├── Makefile │ │ └── patches │ │ │ └── 0001-raspinfo-adapt-to-OpenWrt.patch │ ├── 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 │ │ │ ├── 530-nslookup-ensure-unique-transaction-IDs-for-the-DNS-queries.patch │ │ │ └── 900-add-e-f-option-for-docker.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 │ ├── fbtest │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── fbtest.c │ ├── fitblk │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── fitblk.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-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 │ │ │ └── 400-CVE-2014-5461.patch │ │ └── 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 │ │ │ └── 400-CVE-2014-5461.patch │ ├── lua5.3 │ │ ├── Makefile │ │ ├── patches-host │ │ │ ├── 001-include-version-number.patch │ │ │ └── 100-no_readline.patch │ │ └── patches │ │ │ ├── 001-include-version-number.patch │ │ │ ├── 020-shared_liblua.patch │ │ │ └── 100-no_readline.patch │ ├── mdadm │ │ ├── Makefile │ │ ├── files │ │ │ ├── mdadm.config │ │ │ └── mdadm.init │ │ └── patches │ │ │ ├── 100-cross_compile.patch │ │ │ └── 200-reduce_size.patch │ ├── mtd-utils │ │ ├── Makefile │ │ ├── files │ │ │ ├── ubihealthd.defaults │ │ │ └── ubihealthd.init │ │ └── 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-mod-bpf │ │ ├── Makefile │ │ └── src │ │ │ └── bpf.c │ ├── ucode │ │ └── Makefile │ ├── uencrypt │ │ ├── Makefile │ │ └── src │ │ │ ├── CMakeLists.txt │ │ │ └── uencrypt.c │ ├── ugps │ │ ├── Makefile │ │ └── files │ │ │ ├── gps.config │ │ │ └── ugps.init │ ├── usbgadget │ │ ├── Makefile │ │ └── files │ │ │ ├── presets │ │ │ ├── acm │ │ │ └── ncm │ │ │ ├── usbgadget.conf │ │ │ └── usbgadget.init │ ├── usbmode │ │ ├── Makefile │ │ ├── data │ │ │ ├── 12d1-1f16 │ │ │ └── a69c-5721 │ │ └── files │ │ │ ├── usbmode.hotplug │ │ │ └── usbmode.init │ ├── util-linux │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-use_urandom.patch │ └── zyxel-bootconfig │ │ ├── Makefile │ │ ├── files │ │ └── 95_apply_bootconfig │ │ └── src │ │ ├── Makefile │ │ └── zyxel-bootconfig.c └── wwan │ ├── app │ ├── fibocom-dial │ │ ├── Makefile │ │ └── src │ │ │ ├── GobiNetCM.c │ │ │ ├── MPQCTL.h │ │ │ ├── MPQMI.h │ │ │ ├── MPQMUX.c │ │ │ ├── MPQMUX.h │ │ │ ├── Makefile │ │ │ ├── QMIThread.c │ │ │ ├── QMIThread.h │ │ │ ├── QmiWwanCM.c │ │ │ ├── default.script │ │ │ ├── fibo_qmimsg_server.c │ │ │ ├── libmnl │ │ │ ├── README │ │ │ ├── attr.c │ │ │ ├── callback.c │ │ │ ├── dhcp │ │ │ │ ├── dhcp.h │ │ │ │ ├── dhcpclient.c │ │ │ │ ├── dhcpmsg.c │ │ │ │ ├── dhcpmsg.h │ │ │ │ ├── packet.c │ │ │ │ └── packet.h │ │ │ ├── ifutils.c │ │ │ ├── ifutils.h │ │ │ ├── libmnl.h │ │ │ ├── nlmsg.c │ │ │ └── socket.c │ │ │ ├── main.c │ │ │ ├── multi-pdn-manager.c │ │ │ ├── multi-pdn.ini │ │ │ ├── qmap_bridge_mode.c │ │ │ ├── query_pcie_mode.c │ │ │ ├── query_pcie_mode.h │ │ │ ├── udhcpc.c │ │ │ ├── udhcpc_netlink.c │ │ │ ├── util.c │ │ │ └── util.h │ ├── quectel-cm │ │ └── Makefile │ └── sendat │ │ └── Makefile │ └── driver │ ├── fibocom_QMI_WWAN │ ├── Makefile │ └── src │ │ ├── Makefile │ │ └── qmi_wwan_f.c │ ├── quectel_MHI │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── README │ │ ├── ReleaseNote.txt │ │ ├── controllers │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── mhi_arch_qti.c │ │ ├── mhi_qcom.c │ │ ├── mhi_qcom.h │ │ ├── mhi_qti.c │ │ └── mhi_qti.h │ │ ├── core │ │ ├── Makefile │ │ ├── mhi.h │ │ ├── mhi_boot.c │ │ ├── mhi_dtr.c │ │ ├── mhi_init.c │ │ ├── mhi_internal.h │ │ ├── mhi_main.c │ │ ├── mhi_pm.c │ │ ├── mhi_sdx20.h │ │ └── sdx20_mhi.h │ │ ├── devices │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── mhi_netdev.c │ │ ├── mhi_netdev_quectel.c │ │ ├── mhi_satellite.c │ │ └── mhi_uci.c │ │ └── log │ │ ├── AT_OVER_PCIE.txt │ │ ├── MBIM_OVER_PCIE.txt │ │ ├── QMI_OVER_PCIE.txt │ │ └── QXDM_OVER_PCIE.txt │ ├── quectel_QMI_WWAN │ ├── Makefile │ └── src │ │ ├── Makefile │ │ ├── ReleaseNote.txt │ │ ├── qmi_wwan_q.c │ │ └── rmnet_nss.c │ └── simcom_QMI_WWAN │ ├── Makefile │ └── src │ ├── Makefile │ └── qmi_wwan_s.c ├── rules.mk ├── scripts ├── arm-magic.sh ├── brcmImage.pl ├── bundle-libraries.sh ├── cameo-imghdr.py ├── cameo-tag.py ├── 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.guess ├── config.rpath ├── config.sub ├── config │ ├── .gitignore │ ├── 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 ├── const_structs.checkpatch ├── deptest.sh ├── diffconfig.sh ├── dl_cleanup.py ├── dl_github_archive.py ├── download.pl ├── dump-target-info.pl ├── env ├── ext-toolchain.sh ├── ext-tools.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-rddependencies.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-zyxel-fit.sh ├── mkits.sh ├── netgear-encrypted-factory.py ├── noop.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-kernel-header.py ├── sercomm-kernel.sh ├── sercomm-partition-tag.py ├── sercomm-payload.py ├── sercomm-pid.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 └── xxdi.pl ├── target ├── Config.in ├── Makefile ├── imagebuilder │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── Makefile │ │ ├── README.md │ │ └── repositories.conf ├── linux │ ├── Makefile │ ├── airoha │ │ ├── Makefile │ │ ├── an7581 │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ ├── dts │ │ │ ├── an7581-evb-emmc.dts │ │ │ ├── an7581-evb.dts │ │ │ ├── an7581.dtsi │ │ │ ├── en7523-evb.dts │ │ │ └── en7523.dtsi │ │ ├── en7523 │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── an7581.mk │ │ │ └── en7523.mk │ │ ├── modules.mk │ │ └── patches-6.6 │ │ │ ├── 001-v6.10-arm64-add-Airoha-EN7581-platform.patch │ │ │ ├── 002-v6.11-i2c-mt7621-Add-Airoha-EN7581-i2c-support.patch │ │ │ ├── 006-v6.11-net-airoha-Introduce-ethernet-support-for-EN7581-SoC.patch │ │ │ ├── 007-v6.11-net-airoha-fix-error-branch-in-airoha_dev_xmit-and-a.patch │ │ │ ├── 008-v6.11-net-airoha-Fix-NULL-pointer-dereference-in-airoha_qd.patch │ │ │ ├── 009-v6.11-net-airoha-Fix-MBI_RX_AGE_SEL_MASK-definition.patch │ │ │ ├── 010-01-v6.12-net-airoha-Introduce-airoha_qdma-struct.patch │ │ │ ├── 010-02-v6.12-net-airoha-Move-airoha_queues-in-airoha_qdma.patch │ │ │ ├── 010-03-v6.12-net-airoha-Move-irq_mask-in-airoha_qdma-structure.patch │ │ │ ├── 010-04-v6.12-net-airoha-Add-airoha_qdma-pointer-in-airoha_tx_irq_.patch │ │ │ ├── 010-05-v6.12-net-airoha-Use-qdma-pointer-as-private-structure-in-.patch │ │ │ ├── 010-06-v6.12-net-airoha-Allow-mapping-IO-region-for-multiple-qdma.patch │ │ │ ├── 010-07-v6.12-net-airoha-Start-all-qdma-NAPIs-in-airoha_probe.patch │ │ │ ├── 010-08-v6.12-net-airoha-Link-the-gdm-port-to-the-selected-qdma-co.patch │ │ │ ├── 011-v6.12-net-airoha-honor-reset-return-value-in-airoha_hw_ini.patch │ │ │ ├── 012-v6.12-net-airoha-configure-hw-mac-address-according-to-the.patch │ │ │ ├── 013-v6.12-net-airoha-fix-module-autoloading.patch │ │ │ ├── 014-01-v6.13-net-airoha-fix-PSE-memory-configuration-in-airoha_fe.patch │ │ │ ├── 014-02-v6.13-net-airoha-read-default-PSE-reserved-pages-value-bef.patch │ │ │ ├── 015-v6.12-net-airoha-Update-tx-cpu-dma-ring-idx-at-the-end-of-.patch │ │ │ ├── 016-v6.13-net-airoha-Fix-EGRESS_RATE_METER_EN_MASK-definition.patch │ │ │ ├── 017-v6.13-net-airoha-Implement-BQL-support.patch │ │ │ ├── 018-01-v6.10-clk-en7523-Add-en_clk_soc_data-data-structure.patch │ │ │ ├── 018-02-v6.10-clk-en7523-Add-EN7581-support.patch │ │ │ ├── 019-01-v6.11-clk-en7523-Add-reset-controller-support-for-EN7581-S.patch │ │ │ ├── 019-02-v6.11-clk-en7523-Remove-pcie-prepare-unpreare-callbacks-fo.patch │ │ │ ├── 019-03-v6.11-clk-en7523-Remove-PCIe-reset-open-drain-configuratio.patch │ │ │ ├── 020-v6.11-dt-bindings-clock-airoha-Add-reset-support-to-EN7581.patch │ │ │ ├── 021-01-v6.12-PCI-mediatek-gen3-Add-mtk_gen3_pcie_pdata-data-struc.patch │ │ │ ├── 021-02-v6.12-PCI-mediatek-gen3-Rely-on-reset_bulk-APIs-for-PHY-re.patch │ │ │ ├── 021-03-v6.12-PCI-mediatek-gen3-Add-Airoha-EN7581-support.patch │ │ │ ├── 022-v6.11-phy-airoha-Add-PCIe-PHY-driver-for-EN7581-SoC.patch │ │ │ ├── 023-v6.11-phy-airoha-Add-dtime-and-Rx-AEQ-IO-registers.patch │ │ │ ├── 024-v6.12-phy-airoha-adjust-initialization-delay-in-airoha_pci.patch │ │ │ ├── 025-01-v6.13-phy-airoha-Fix-REG_CSR_2L_PLL_CMN_RESERVE0-config-in.patch │ │ │ ├── 025-02-v6.13-phy-airoha-Fix-REG_PCIE_PMA_TX_RESET-config-in-airoh.patch │ │ │ ├── 025-03-v6.13-phy-airoha-Fix-REG_CSR_2L_JCPLL_SDM_HREN-config-in-a.patch │ │ │ ├── 025-04-v6.13-phy-airoha-Fix-REG_CSR_2L_RX-0-1-_REV0-definitions.patch │ │ │ ├── 025-v6.10-spi-airoha-add-SPI-NAND-Flash-controller-driver.patch │ │ │ ├── 026-01-v6.12-spi-airoha-fix-dirmap_-read-write-operations.patch │ │ │ ├── 026-02-v6.12-spi-airoha-fix-airoha_snand_-write-read-_data-data_l.patch │ │ │ ├── 027-v6.12-spi-airoha-remove-read-cache-in-airoha_snand_dirmap_.patch │ │ │ ├── 028-v6.13-spi-airoha-do-not-keep-tx-rx-dma-buffer-always-mappe.patch │ │ │ ├── 029-v6.12-net-dsa-mt7530-Add-EN7581-support.patch │ │ │ ├── 030-v6.13-hwrng-airoha-add-support-for-Airoha-EN7581-TRNG.patch │ │ │ ├── 031-01-v6.13-net-airoha-Read-completion-queue-data-in-airoha_qdma.patch │ │ │ ├── 031-02-v6.13-net-airoha-Simplify-Tx-napi-logic.patch │ │ │ ├── 032-v6.13-watchdog-Add-support-for-Airoha-EN7851-watchdog.patch │ │ │ ├── 033-01-v6.13-clk-en7523-remove-REG_PCIE-_-MEM-MEM_MASK-configurat.patch │ │ │ ├── 033-02-v6.13-clk-en7523-move-clock_register-in-hw_init-callback.patch │ │ │ ├── 033-03-v6.13-clk-en7523-introduce-chip_scu-regmap.patch │ │ │ ├── 033-04-v6.13-clk-en7523-fix-estimation-of-fixed-rate-for-EN7581.patch │ │ │ ├── 033-05-v6.13-clk-en7523-move-en7581_reset_register-in-en7581_clk_.patch │ │ │ ├── 033-06-v6.13-clk-en7523-map-io-region-in-a-single-block.patch │ │ │ ├── 034-v6.13-pinctrl-airoha-Add-support-for-EN7581-SoC.patch │ │ │ ├── 035-v6.13-clk-en7523-Fix-wrong-BUS-clock-for-EN7581.patch │ │ │ ├── 036-v6.13-net-airoha-Fix-typo-in-REG_CDM2_FWD_CFG-configuratio.patch │ │ │ ├── 037-v6.14-net-airoha-Fix-error-path-in-airoha_probe.patch │ │ │ ├── 038-01-v6.14-net-airoha-Enable-Tx-drop-capability-for-each-Tx-DMA.patch │ │ │ ├── 038-02-v6.14-net-airoha-Introduce-ndo_select_queue-callback.patch │ │ │ ├── 038-03-v6.14-net-airoha-Add-sched-ETS-offload-support.patch │ │ │ ├── 038-04-v6.14-net-airoha-Add-sched-HTB-offload-support.patch │ │ │ ├── 039-v6.14-cpufreq-airoha-Add-EN7581-CPUFreq-SMCCC-driver.patch │ │ │ ├── 039-v6.14-net-airoha-Enforce-ETS-Qdisc-priomap.patch │ │ │ ├── 040-v6.14-pmdomain-airoha-Add-Airoha-CPU-PM-Domain-support.patch │ │ │ ├── 041-01-v6.14-clk-en7523-Rework-clock-handling-for-different-clock.patch │ │ │ ├── 041-02-v6.14-dt-bindings-clock-drop-NUM_CLOCKS-define-for-EN7581.patch │ │ │ ├── 041-03-v6.14-dt-bindings-clock-add-ID-for-eMMC-for-EN7581.patch │ │ │ ├── 041-04-v6.14-clk-en7523-Add-clock-for-eMMC-for-EN7581.patch │ │ │ ├── 042-01-v6.14-PCI-mediatek-gen3-Rely-on-clk_bulk_prepare_enable-in.patch │ │ │ ├── 042-02-v6.14-PCI-mediatek-gen3-Move-reset-assert-callbacks-in-.po.patch │ │ │ ├── 042-03-v6.14-PCI-mediatek-gen3-Add-comment-about-initialization-o.patch │ │ │ ├── 042-04-v6.14-PCI-mediatek-gen3-Move-reset-delay-in-mtk_pcie_en758.patch │ │ │ ├── 042-05-v6.14-PCI-mediatek-gen3-Rely-on-msleep-in-mtk_pcie_en7581_.patch │ │ │ ├── 042-06-v6.14-PCI-mediatek-gen3-Avoid-PCIe-resetting-via-PERST-for.patch │ │ │ ├── 043-v6.15-PCI-mediatek-gen3-Remove-leftover-mac_reset-assert-f.patch │ │ │ ├── 044-v6.15-PCI-mediatek-gen3-Configure-PBUS_CSR-registers-for-E.patch │ │ │ ├── 101-01-thermal-of-Add-devm_thermal_of_zone_register_with_pa.patch │ │ │ ├── 101-02-thermal-Add-support-for-Airoha-EN7581-thermal-sensor.patch │ │ │ ├── 104-i2c-mt7621-optional-reset.patch │ │ │ ├── 105-uart-add-en7523-support.patch │ │ │ ├── 108-pwm-airoha-Add-support-for-EN7581-SoC.patch │ │ │ ├── 113-net-airoha-Fix-channel-configuration-for-ETS-Qdisc.patch │ │ │ ├── 200-spinlock-extend-guard-with-spinlock_bh-variants.patch │ │ │ ├── 201-crypto-Add-Mediatek-EIP-93-crypto-engine-support.patch │ │ │ ├── 300-spi-Add-support-for-the-Airoha-EN7523-SoC-SPI-contro.patch │ │ │ ├── 900-airoha-bmt-support.patch │ │ │ └── 901-snand-mtk-bmt-support.patch │ ├── allwinner │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ ├── config-6.12 │ │ ├── generic │ │ │ └── target.mk │ │ └── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ └── gen_d1_sdcard_img.sh │ ├── amlogic │ │ ├── Makefile │ │ ├── config-5.15 │ │ ├── config-6.1 │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ └── meson8b-onecloud.dts │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── aml_autoscript.cmd │ │ │ ├── amlogic.bootscript │ │ │ ├── boot.txt │ │ │ ├── emmc_autoscript.cmd │ │ │ ├── gen_aml_emmc_img.sh │ │ │ ├── gen_amlogic_image.sh │ │ │ ├── meson8b.mk │ │ │ ├── mesongx.mk │ │ │ └── s905_autoscript.cmd │ │ ├── meson8b │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── inittab │ │ │ │ │ └── rc.local │ │ │ │ ├── lib │ │ │ │ │ ├── preinit │ │ │ │ │ │ └── 79_move_config │ │ │ │ │ └── upgrade │ │ │ │ │ │ └── platform.sh │ │ │ │ └── root │ │ │ │ │ └── resize.sh │ │ │ ├── config-6.1 │ │ │ └── target.mk │ │ ├── mesongx │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── 12_enable-netifd-smp-tune │ │ │ │ ├── lib │ │ │ │ │ ├── preinit │ │ │ │ │ │ └── 79_move_config │ │ │ │ │ └── upgrade │ │ │ │ │ │ └── platform.sh │ │ │ │ └── root │ │ │ │ │ └── install-to-emmc.sh │ │ │ ├── config-5.15 │ │ │ ├── config-6.1 │ │ │ └── target.mk │ │ ├── modules.mk │ │ ├── patches-5.15 │ │ │ ├── 001-dts-s905d-fix-high-load.patch │ │ │ └── 002-dts-improve-phicomm-n1-support.patch │ │ └── patches-6.1 │ │ │ ├── 201-fix-i2ca-and-i2cb-missing-pins.patch │ │ │ ├── 902-use-system-LED-for-OpenWrt.patch │ │ │ ├── 903-add-dts-and-identify-emmc.patch │ │ │ └── 905-pwm-meson-modify-and-simplify-calculation-in.patch │ ├── apm821xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── firmware │ │ │ │ │ │ └── 10-ath9k-eeprom │ │ │ │ │ └── ieee80211 │ │ │ │ │ │ └── 10_fix_wifi_mac │ │ │ │ └── inittab │ │ │ └── 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.4 │ │ ├── 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 │ │ │ ├── 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.4 │ │ │ ├── 111-crypto-crypto4xx-reduce-memory-fragmentation.patch │ │ │ ├── 112-crypto-crypto4xx-use-GFP_KERNEL-for-big-allocations.patch │ │ │ ├── 201-add-amcc-apollo3g-support.patch │ │ │ ├── 300-fix-atheros-nics-on-apm82181.patch │ │ │ ├── 301-fix-memory-map-wndr4700.patch │ │ │ ├── 801-usb-xhci-add-firmware-loader-for-uPD720201-and-uPD72.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 │ │ └── sata │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ └── 00-default.mk │ │ │ └── target.mk │ ├── arc770 │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── board.d │ │ │ │ └── 02_network │ │ ├── config-5.4 │ │ ├── generic │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_axs10x_sdcard_img.sh │ │ │ └── uEnv.txt │ │ └── patches-5.4 │ │ │ └── 700-stmmac-Disable-frame-filtering-completely.patch │ ├── archs38 │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── board.d │ │ │ │ └── 02_network │ │ ├── config-5.4 │ │ ├── generic │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_axs10x_sdcard_img.sh │ │ │ ├── uEnv.txt │ │ │ └── uboot.env.txt │ │ └── patches-5.4 │ │ │ └── 0001-arch-arc-Add-compiler-option-for-gcc8.4.patch │ ├── armsr │ │ ├── Makefile │ │ ├── README │ │ ├── armv7 │ │ │ ├── config-6.12 │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ ├── armv8 │ │ │ ├── config-6.12 │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_led │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 03_gpio_switches │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ └── 05-migrate-ten64-gpio │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 01_sysinfo_acpi │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-6.12 │ │ ├── config-6.6 │ │ ├── image │ │ │ ├── Makefile │ │ │ └── grub-efi.cfg │ │ ├── modules.mk │ │ ├── patches-6.12 │ │ │ └── 300-printk-always-setup-default-consoles.patch │ │ └── patches-6.6 │ │ │ ├── 221-armsr-disable_gc_sections_armv7.patch │ │ │ └── 300-printk-always-setup-default-consoles.patch │ ├── at91 │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ └── 02_network │ │ │ │ └── config │ │ │ │ ├── firewall │ │ │ │ └── network │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── at91-q5xr5.dts │ │ │ │ ├── lmu5000.dts │ │ │ │ ├── wb45n.dts │ │ │ │ ├── wb50n.dts │ │ │ │ └── wb50n.dtsi │ │ ├── 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 │ │ │ └── uboot-env.txt │ │ ├── modules.mk │ │ ├── patches-5.4 │ │ │ ├── 101-ARM-at91-build-dtb-for-q5xr5.patch │ │ │ ├── 102-ARM-at91-build-dtb-for-wb45n.patch │ │ │ ├── 102-ARM-at91-wb45n-fix-duplicate-label.patch │ │ │ ├── 103-ARM-at91-build-dtb-for-wb50n.patch │ │ │ └── 103-ARM-at91-wb50n-fix-duplicate-label.patch │ │ ├── sam9x │ │ │ ├── config-default │ │ │ └── target.mk │ │ └── sama5 │ │ │ ├── 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.4 │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-5.4 │ │ │ ├── 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 │ │ └── profiles │ │ │ └── 00-default.mk │ ├── ath79 │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── hotplug.d │ │ │ │ └── ieee80211 │ │ │ │ └── 00-wifi-migration │ │ ├── config-5.4 │ │ ├── config-6.12 │ │ ├── config-6.6 │ │ ├── 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_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_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-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 │ │ │ ├── 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_arris_sbr-ac1750.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_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_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_alibaba_ap121-db.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_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-r473g.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_xd4200.dts │ │ │ ├── qca9563_yuncore_xd4200.dtsi │ │ │ ├── qca9563_zte_e8820.dts │ │ │ ├── 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-mikrotik.c │ │ │ │ │ ├── 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_legacy_debugfs.c │ │ │ │ │ ├── ag71xx_legacy_mdio.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 │ │ │ ├── bin │ │ │ │ └── pisen_wmb001n_factory-header.bin │ │ │ ├── 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 │ │ │ │ │ ├── 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.4 │ │ │ ├── 0001-MIPS-cmdline-Clean-up-boot_command_line-initializati.patch │ │ │ ├── 0002-watchdog-ath79-fix-maximum-timeout.patch │ │ │ ├── 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-GPIO-add-named-gpio-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 │ │ │ ├── 0051-spi-add-driver-for-ar934x-spi-controller.patch │ │ │ ├── 0061-tty-serial-ar933x-uart-rs485-gpio.patch │ │ │ ├── 0062-MIPS-pci-ar724x-add-QCA9550-reset-sequence.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 │ │ │ ├── 450-fix-block-protection-clearing.patch │ │ │ ├── 470-MIPS-ath79-swizzle-pci-address-for-ar71xx.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 │ │ ├── patches-6.12 │ │ │ ├── 001-irqchip-ath79-misc-fix-missing-prototypes-warnings.patch │ │ │ ├── 100-reset-ath79-read-back-reset-register.patch │ │ │ ├── 101-reset-ath79-reset-ETH-switch-for-AR9344.patch │ │ │ ├── 300-irqchip-irq-ath79-intc-add-irq-cascade-driver-for-QC.patch │ │ │ ├── 301-irqchip-irq-ath79-cpu-drop-OF-init-helper.patch │ │ │ ├── 310-dt-bindings-PCI-qcom-ar7100-adds-binding-doc.patch │ │ │ ├── 311-MIPS-pci-ar71xx-convert-to-OF.patch │ │ │ ├── 312-dt-bindings-PCI-qcom-ar7240-adds-binding-doc.patch │ │ │ ├── 313-MIPS-pci-ar724x-convert-to-OF.patch │ │ │ ├── 314-MIPS-ath79-remove-irq-code-from-pci.patch │ │ │ ├── 315-MIPS-pci-ar724x-add-QCA9550-reset-sequence.patch │ │ │ ├── 316-MIPS-ath79-swizzle-pci-address-for-ar71xx.patch │ │ │ ├── 317-MIPS-pci-ar724x-clear-power-down-of-pll-on-AR934x.patch │ │ │ ├── 318-MIPS-pci-ar724x-deassert-the-reset-of-PCIe-endpoint.patch │ │ │ ├── 330-missing-registers.patch │ │ │ ├── 331-MIPS-ath79-add-missing-QCA955x-GMAC-registers.patch │ │ │ ├── 332-ath79-sgmii-config.patch │ │ │ ├── 340-register_gpio_driver_earlier.patch │ │ │ ├── 341-wifi-ath9k-obtain-system-gpios.patch │ │ │ ├── 350-MIPS-ath79-ath9k-exports.patch │ │ │ ├── 351-MIPS-ath79-common-exports.patch │ │ │ ├── 360-MIPS-ath79-export-UART1-reference-clock.patch │ │ │ ├── 370-MIPS-ath79-sanitize-symbols.patch │ │ │ ├── 400-mtd-nor-support-mtd-name-from-device-tree.patch │ │ │ ├── 410-mtd-cybertan-trx-parser.patch │ │ │ ├── 430-mtd-ar934x-nand-driver.patch │ │ │ ├── 700-phy-add-ath79-usb-phys.patch │ │ │ ├── 701-usb-add-more-OF-quirk-properties.patch │ │ │ ├── 710-net-use-downstream-ag71xx.patch │ │ │ ├── 720-mdio_bitbang_ignore_ta_value.patch │ │ │ ├── 721-phy-mdio-bitbang-prevent-rescheduling-during-command.patch │ │ │ ├── 730-ar8216-make-reg-access-atomic.patch │ │ │ ├── 800-leds-add-reset-controller-based-driver.patch │ │ │ ├── 810-ath79-ignore-the-abused-interrupt-map-on-pcie-node.patch │ │ │ ├── 820-mfd-syscon-support-skip-reset-control-for-syscon-devices.patch │ │ │ ├── 900-unaligned_access_hacks.patch │ │ │ ├── 910-mikrotik-rb4xx.patch │ │ │ └── 911-mikrotik-rb91x.patch │ │ ├── patches-6.6 │ │ │ ├── 001-v6.11-gpio-ath79-convert-to-dynamic-GPIO-base-allocation.patch │ │ │ ├── 100-reset-ath79-read-back-reset-register.patch │ │ │ ├── 101-reset-ath79-reset-ETH-switch-for-AR9344.patch │ │ │ ├── 300-irqchip-irq-ath79-intc-add-irq-cascade-driver-for-QC.patch │ │ │ ├── 301-irqchip-irq-ath79-cpu-drop-OF-init-helper.patch │ │ │ ├── 310-dt-bindings-PCI-qcom-ar7100-adds-binding-doc.patch │ │ │ ├── 311-MIPS-pci-ar71xx-convert-to-OF.patch │ │ │ ├── 312-dt-bindings-PCI-qcom-ar7240-adds-binding-doc.patch │ │ │ ├── 313-MIPS-pci-ar724x-convert-to-OF.patch │ │ │ ├── 314-MIPS-ath79-remove-irq-code-from-pci.patch │ │ │ ├── 315-MIPS-pci-ar724x-add-QCA9550-reset-sequence.patch │ │ │ ├── 316-MIPS-ath79-swizzle-pci-address-for-ar71xx.patch │ │ │ ├── 317-MIPS-pci-ar724x-clear-power-down-of-pll-on-AR934x.patch │ │ │ ├── 318-MIPS-pci-ar724x-deassert-the-reset-of-PCIe-endpoint.patch │ │ │ ├── 330-missing-registers.patch │ │ │ ├── 331-MIPS-ath79-add-missing-QCA955x-GMAC-registers.patch │ │ │ ├── 332-ath79-sgmii-config.patch │ │ │ ├── 340-register_gpio_driver_earlier.patch │ │ │ ├── 341-wifi-ath9k-obtain-system-gpios.patch │ │ │ ├── 350-MIPS-ath79-ath9k-exports.patch │ │ │ ├── 351-MIPS-ath79-common-exports.patch │ │ │ ├── 360-MIPS-ath79-export-UART1-reference-clock.patch │ │ │ ├── 370-MIPS-ath79-sanitize-symbols.patch │ │ │ ├── 400-mtd-nor-support-mtd-name-from-device-tree.patch │ │ │ ├── 410-mtd-cybertan-trx-parser.patch │ │ │ ├── 430-mtd-ar934x-nand-driver.patch │ │ │ ├── 700-phy-add-ath79-usb-phys.patch │ │ │ ├── 701-usb-add-more-OF-quirk-properties.patch │ │ │ ├── 710-net-use-downstream-ag71xx.patch │ │ │ ├── 720-mdio_bitbang_ignore_ta_value.patch │ │ │ ├── 721-phy-mdio-bitbang-prevent-rescheduling-during-command.patch │ │ │ ├── 730-ar8216-make-reg-access-atomic.patch │ │ │ ├── 800-leds-add-reset-controller-based-driver.patch │ │ │ ├── 810-ath79-ignore-the-abused-interrupt-map-on-pcie-node.patch │ │ │ ├── 820-mfd-syscon-support-skip-reset-control-for-syscon-devices.patch │ │ │ ├── 900-unaligned_access_hacks.patch │ │ │ ├── 910-mikrotik-rb4xx.patch │ │ │ └── 911-mikrotik-rb91x.patch │ │ └── tiny │ │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ │ └── 10-ath9k-eeprom │ │ │ │ └── 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 │ │ │ │ └── 81_set_root_part │ │ │ │ └── upgrade │ │ │ │ ├── keep.d │ │ │ │ └── platform │ │ │ │ └── platform.sh │ │ ├── bcm2708 │ │ │ ├── config-6.12 │ │ │ └── target.mk │ │ ├── bcm2709 │ │ │ ├── config-6.12 │ │ │ └── target.mk │ │ ├── bcm2710 │ │ │ ├── config-6.12 │ │ │ └── target.mk │ │ ├── bcm2711 │ │ │ ├── config-6.12 │ │ │ └── target.mk │ │ ├── bcm2712 │ │ │ ├── config-6.12 │ │ │ └── target.mk │ │ ├── config-6.12 │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── cmdline.txt │ │ │ ├── config.txt │ │ │ ├── distroconfig.txt │ │ │ └── gen_rpi_sdcard_img.sh │ │ ├── modules.mk │ │ ├── modules │ │ │ ├── hwmon.mk │ │ │ ├── i2c.mk │ │ │ ├── other.mk │ │ │ ├── sound.mk │ │ │ ├── spi.mk │ │ │ └── video.mk │ │ └── patches-6.12 │ │ │ ├── 950-0004-Revert-spi-spidev-Fix-CS-polarity-if-GPIO-descriptor.patch │ │ │ ├── 950-0005-Revert-net-bcmgenet-Request-APD-DLL-disable-and-IDDQ.patch │ │ │ ├── 950-0006-xhci-add-quirk-for-host-controllers-that-don-t-updat.patch │ │ │ ├── 950-0008-Revert-ARM-dts-bcm2711-Add-BCM2711-xHCI-support.patch │ │ │ ├── 950-0009-Revert-usb-phy-generic-Get-the-vbus-supply.patch │ │ │ ├── 950-0010-raspberrypi-firmware-Update-mailbox-commands.patch │ │ │ ├── 950-0011-drm-atomic-Don-t-fixup-modes-that-haven-t-been-reset.patch │ │ │ ├── 950-0012-drm-Check-whether-the-gamma-lut-has-changed-before-u.patch │ │ │ ├── 950-0013-drm-dsi-Document-the-meaning-and-spec-references-for.patch │ │ │ ├── 950-0014-drm-bridge-tc358762-Ignore-EPROBE_DEFER-when-logging.patch │ │ │ ├── 950-0015-drm-Add-chroma-siting-properties.patch │ │ │ ├── 950-0016-drm-atomic-helpers-remove-legacy_cursor_update-hacks.patch │ │ │ ├── 950-0017-drm-atomic-If-margins-are-updated-update-all-planes.patch │ │ │ ├── 950-0018-arm64-setup-Fix-build-warning.patch │ │ │ ├── 950-0019-BCM2708-Add-core-Device-Tree-support.patch │ │ │ ├── 950-0021-clk-raspberrypi-Allow-cpufreq-driver-to-also-adjust-.patch │ │ │ ├── 950-0022-clk-bcm-rpi-Create-helper-to-retrieve-private-data.patch │ │ │ ├── 950-0023-clk-raspberrypi-Add-ISP-to-exported-clocks.patch │ │ │ ├── 950-0024-clk-clk-bcm2835-Register-the-clocks-early-during-the.patch │ │ │ ├── 950-0025-clk-bcm2835-Mark-used-PLLs-and-dividers-CRITICAL.patch │ │ │ ├── 950-0026-clk-bcm2835-Add-claim-clocks-property.patch │ │ │ ├── 950-0027-clk-bcm2835-Read-max-core-clock-from-firmware.patch │ │ │ ├── 950-0028-clk-bcm2835-Don-t-wait-for-pllh-lock.patch │ │ │ ├── 950-0029-clk-bcm2835-Add-support-for-setting-leaf-clock-rates.patch │ │ │ ├── 950-0030-clk-bcm2835-Allow-reparenting-leaf-clocks-while-they.patch │ │ │ ├── 950-0031-clk-bcm2835-Avoid-null-pointer-exception.patch │ │ │ ├── 950-0032-clk-bcm2835-Disable-v3d-clock.patch │ │ │ ├── 950-0033-clk-bcm2835-Use-PLLD-for-DSI0-HS-clock.patch │ │ │ ├── 950-0034-cache-export-clean-and-invalidate.patch │ │ │ ├── 950-0035-smsc95xx-Experimental-Enable-turbo_mode-and-packetsi.patch │ │ │ ├── 950-0036-Allow-mac-address-to-be-set-in-smsc95xx.patch │ │ │ ├── 950-0037-Protect-__release_resource-against-resources-without.patch │ │ │ ├── 950-0038-irq-bcm2836-Avoid-Invalid-trigger-warning.patch │ │ │ ├── 950-0039-irqchip-bcm2835-Add-FIQ-support.patch │ │ │ ├── 950-0040-irqchip-irq-bcm2835-Add-2836-FIQ-support.patch │ │ │ ├── 950-0041-spi-spidev-Completely-disable-the-spidev-warning.patch │ │ │ ├── 950-0042-dmaengine-bcm2835-Load-driver-early-and-support-lega.patch │ │ │ ├── 950-0043-rtc-Add-SPI-alias-for-pcf2123-driver.patch │ │ │ ├── 950-0044-watchdog-bcm2835-Support-setting-reboot-partition.patch │ │ │ ├── 950-0045-reboot-Use-power-off-rather-than-busy-spinning-when-.patch │ │ │ ├── 950-0046-bcm2835-rng-Avoid-initialising-if-already-enabled.patch │ │ │ ├── 950-0047-Update-vfpmodule.c.patch │ │ │ ├── 950-0048-i2c-bcm2835-Add-debug-support.patch │ │ │ ├── 950-0049-irqchip-irq-bcm2836-Remove-regmap-and-syscon-use.patch │ │ │ ├── 950-0050-amba_pl011-Insert-mb-for-correct-FIFO-handling.patch │ │ │ ├── 950-0051-amba_pl011-Add-cts-event-workaround-DT-property.patch │ │ │ ├── 950-0052-tty-amba-pl011-Avoid-rare-write-when-full-error.patch │ │ │ ├── 950-0053-Main-bcm2708-bcm2709-linux-port.patch │ │ │ ├── 950-0054-Add-dwc_otg-driver.patch │ │ │ ├── 950-0055-bcm2708_fb-Add-framebuffer-driver.patch │ │ │ ├── 950-0056-dmaengine-Add-support-for-BCM2708.patch │ │ │ ├── 950-0057-MMC-added-alternative-MMC-driver.patch │ │ │ ├── 950-0058-mmc-block-Don-t-do-single-sector-reads-during-recove.patch │ │ │ ├── 950-0059-Adding-bcm2835-sdhost-driver-and-an-overlay-to-enabl.patch │ │ │ ├── 950-0060-vc_mem-Add-vc_mem-driver-for-querying-firmware-memor.patch │ │ │ ├── 950-0061-Add-SMI-driver.patch │ │ │ ├── 950-0062-Add-Chris-Boot-s-i2c-driver.patch │ │ │ ├── 950-0063-char-Add-broadcom-char-drivers-back-to-build-files.patch │ │ │ ├── 950-0064-char-broadcom-Add-vcio-module.patch │ │ │ ├── 950-0065-drivers-char-add-generic-gpiomem-driver.patch │ │ │ ├── 950-0066-firmware-bcm2835-Support-ARCH_BCM270x.patch │ │ │ ├── 950-0067-leds-Add-the-input-trigger-for-pwr_led.patch │ │ │ ├── 950-0068-Added-Device-IDs-for-August-DVB-T-205.patch │ │ │ ├── 950-0069-Improve-__copy_to_user-and-__copy_from_user-performa.patch │ │ │ ├── 950-0070-mfd-Add-Raspberry-Pi-Sense-HAT-core-driver.patch │ │ │ ├── 950-0071-drivers-mfd-sensehat-Add-Raspberry-Pi-Sense-HAT-to-s.patch │ │ │ ├── 950-0072-Input-sensehat-joystick-Revert-to-downstream-keymap.patch │ │ │ ├── 950-0073-ASoC-Add-support-for-all-the-downstream-rpi-sound-ca.patch │ │ │ ├── 950-0074-rpi_display-add-backlight-driver-and-overlay.patch │ │ │ ├── 950-0075-bcm2835-virtgpio-Virtual-GPIO-driver.patch │ │ │ ├── 950-0076-OF-DT-Overlay-configfs-interface.patch │ │ │ ├── 950-0078-hci_h5-Don-t-send-conf_req-when-ACTIVE.patch │ │ │ ├── 950-0079-ARM64-Round-Robin-dispatch-IRQs-between-CPUs.patch │ │ │ ├── 950-0080-ARM64-Force-hardware-emulation-of-deprecated-instruc.patch │ │ │ ├── 950-0081-AXI-performance-monitor-driver-2222.patch │ │ │ ├── 950-0082-ARM-bcm2835-Set-Serial-number-and-Revision.patch │ │ │ ├── 950-0083-dwc-otg-FIQ-Fix-bad-mode-in-data-abort-handler.patch │ │ │ ├── 950-0084-ARM-Activate-FIQs-to-avoid-__irq_startup-warnings.patch │ │ │ ├── 950-0085-i2c-gpio-Also-set-bus-numbers-from-reg-property.patch │ │ │ ├── 950-0086-added-capture_clear-option-to-pps-gpio-via-dtoverlay.patch │ │ │ ├── 950-0087-hid-Reduce-default-mouse-polling-interval-to-60Hz.patch │ │ │ ├── 950-0088-firmware-raspberrypi-Notify-firmware-of-a-reboot.patch │ │ │ ├── 950-0089-irqchip-irq-bcm2835-Calc.-FIQ_START-at-boot-time.patch │ │ │ ├── 950-0091-cxd2880-CXD2880_SPI_DRV-should-select-DVB_CXD2880-wi.patch │ │ │ ├── 950-0093-firmware-raspberrypi-Report-the-fw-variant-during-pr.patch │ │ │ ├── 950-0094-net-lan78xx-Disable-TCP-Segmentation-Offload-TSO.patch │ │ │ ├── 950-0095-net-lan78xx-Support-auto-downshift-to-100Mb-s.patch │ │ │ ├── 950-0096-lan78xx-Debounce-link-events-to-minimize-poll-storm.patch │ │ │ ├── 950-0097-net-lan78xx-Ack-pending-PHY-ints-when-resetting.patch │ │ │ ├── 950-0098-Patching-lan78xx-for-SOF_TIMESTAMPING_TX_SOFTWARE-su.patch │ │ │ ├── 950-0099-lan78xx-Enable-LEDs-and-auto-negotiation.patch │ │ │ ├── 950-0101-media-tc358743-Add-support-for-972Mbit-s-link-freq.patch │ │ │ ├── 950-0103-media-adv7180-Default-to-the-first-valid-input.patch │ │ │ ├── 950-0104-media-adv7180-Add-YPrPb-support-for-ADV7282M.patch │ │ │ ├── 950-0105-media-videodev2-Add-helper-defines-for-printing-FOUR.patch │ │ │ ├── 950-0106-dt-bindings-Document-BCM283x-CSI2-CCP2-receiver.patch │ │ │ ├── 950-0108-staging-mmal-vchiq-Avoid-use-of-bool-in-structures.patch │ │ │ ├── 950-0109-staging-mmal-vchiq-Add-support-for-event-callbacks.patch │ │ │ ├── 950-0110-staging-vc04_services-Support-sending-data-to-MMAL-p.patch │ │ │ ├── 950-0111-media-videobuf2-Allow-exporting-of-a-struct-dmabuf.patch │ │ │ ├── 950-0112-staging-mmal-vchiq-Fix-client_component-for-64-bit-k.patch │ │ │ ├── 950-0113-staging-mmal_vchiq-Add-in-the-Bayer-encoding-formats.patch │ │ │ ├── 950-0114-staging-mmal-vchiq-Update-mmal_parameters.h-with-rec.patch │ │ │ ├── 950-0115-staging-mmal-vchiq-Free-the-event-context-for-contro.patch │ │ │ ├── 950-0116-staging-mmal-vchiq-Fix-memory-leak-in-error-path.patch │ │ │ ├── 950-0117-w1-w1-gpio-Make-GPIO-an-output-for-strong-pullup.patch │ │ │ ├── 950-0118-arm-bcm2835-Fix-FIQ-early-ioremap.patch │ │ │ ├── 950-0119-arm-bcm2835-DMA-can-only-address-1GB.patch │ │ │ ├── 950-0120-hwrng-iproc-rng200-Add-BCM2838-support.patch │ │ │ ├── 950-0121-bcmgenet-constrain-max-DMA-burst-length.patch │ │ │ ├── 950-0122-bcmgenet-Better-coalescing-parameter-defaults.patch │ │ │ ├── 950-0123-net-genet-enable-link-energy-detect-powerdown-for-ex.patch │ │ │ ├── 950-0124-usb-add-plumbing-for-updating-interrupt-endpoint-int.patch │ │ │ ├── 950-0125-xhci-implement-xhci_fixup_endpoint-for-interval-adju.patch │ │ │ ├── 950-0126-usb-xhci-workaround-for-bogus-SET_DEQ_PENDING-endpoi.patch │ │ │ ├── 950-0127-usb-xhci-drop-and-add-the-endpoint-context-in-xhci_f.patch │ │ │ ├── 950-0128-ARM-bcm-Backport-BCM2711-support-from-upstream.patch │ │ │ ├── 950-0129-i2c-bcm2835-Set-clock-stretch-timeout-to-35ms.patch │ │ │ ├── 950-0130-drm-v3d-Clock-V3D-down-when-not-in-use.patch │ │ │ ├── 950-0131-drm-v3d-Switch-clock-setting-to-new-api.patch │ │ │ ├── 950-0132-hid-usb-Add-device-quirks-for-Freeway-Airmouse-T3-an.patch │ │ │ ├── 950-0133-net-bcmgenet-Workaround-2-for-Pi4-Ethernet-fail.patch │ │ │ ├── 950-0134-arch-arm-Add-model-string-to-cpuinfo.patch │ │ │ ├── 950-0135-arch-arm64-Add-Revision-Serial-Model-to-cpuinfo.patch │ │ │ ├── 950-0136-media-i2c-imx477-Support-for-the-Sony-IMX477-sensor.patch │ │ │ ├── 950-0137-media-i2c-imx519-Support-for-the-Sony-IMX519-sensor.patch │ │ │ ├── 950-0138-drivers-media-imx296-Disable-2x2-binned-mode.patch │ │ │ ├── 950-0139-drivers-media-imx296-Updated-imx296-driver-for-exter.patch │ │ │ ├── 950-0140-drivers-media-i2c-imx296-imx477-Configure-tigger_mod.patch │ │ │ ├── 950-0141-media-i2c-imx296-Updated-register-setting-to-fix-Fas.patch │ │ │ ├── 950-0142-media-i2c-imx296-Get-sensor-crop-working.patch │ │ │ ├── 950-0143-media-i2c-imx296-Add-helper-for-hblank-control.patch │ │ │ ├── 950-0144-media-i2c-imx296-Set-a-1-frame-gain-delay.patch │ │ │ ├── 950-0145-media-i2c-imx296-Add-horizontal-vertical-flip-suppor.patch │ │ │ ├── 950-0146-media-i2c-imx296-Adjust-cropping-limits.patch │ │ │ ├── 950-0147-Documentation-devicetree-Add-documentation-for-imx37.patch │ │ │ ├── 950-0148-v4l2-Add-a-Greyworld-AWB-mode.patch │ │ │ ├── 950-0149-staging-bcm2835-camera-Add-greyworld-AWB-mode.patch │ │ │ ├── 950-0150-media-v4l2-Add-Greyworld-AWB-control-name.patch │ │ │ ├── 950-0151-dt-bindings-Add-binding-for-the-Infineon-IRS1125-sen.patch │ │ │ ├── 950-0152-media-i2c-Add-a-driver-for-the-Infineon-IRS1125-dept.patch │ │ │ ├── 950-0153-drm-v3d-Suppress-all-but-the-first-MMU-error.patch │ │ │ ├── 950-0154-staging-vchiq_arm-Register-vcsm-cma-as-a-platform-dr.patch │ │ │ ├── 950-0155-staging-vchiq_arm-Register-bcm2835-codec-as-a-platfo.patch │ │ │ ├── 950-0156-net-phy-broadcom-Allow-ethernet-LED-mode-to-be-set-v.patch │ │ │ ├── 950-0157-phy-broadcom-split-out-the-BCM54213PE-from-the-BCM54.patch │ │ │ ├── 950-0158-phy-broadcom-Add-bcm54213pe-configuration.patch │ │ │ ├── 950-0159-net-phy-broadcom-optionally-enable-link-down-powersa.patch │ │ │ ├── 950-0160-net-phy-BCM54210PE-does-not-support-PTP.patch │ │ │ ├── 950-0161-staging-vchiq_arm-Set-up-dma-ranges-on-child-devices.patch │ │ │ ├── 950-0162-staging-vchiq_arm-Usa-a-DMA-pool-for-small-bulks.patch │ │ │ ├── 950-0163-staging-vchiq-Load-bcm2835_isp-driver-from-vchiq.patch │ │ │ ├── 950-0164-pinctrl-bcm2835-Remove-gpiochip-on-error.patch │ │ │ ├── 950-0165-of-overlay-Correct-symbol-path-fixups.patch │ │ │ ├── 950-0166-dt-bindings-pci-Add-DT-docs-for-Brcmstb-PCIe-device.patch │ │ │ ├── 950-0167-bcmgenet-Disable-skip_umac_reset-by-default.patch │ │ │ ├── 950-0169-media-dt-bindings-media-Add-binding-for-the-Raspberr.patch │ │ │ ├── 950-0172-spi-Force-CS_HIGH-if-GPIO-descriptors-are-used.patch │ │ │ ├── 950-0173-media-uapi-v4l2-core-Add-sensor-ancillary-data-V4L2-.patch │ │ │ ├── 950-0174-media-uapi-Add-MEDIA_BUS_FMT_SENSOR_DATA-media-bus-f.patch │ │ │ ├── 950-0175-media-uapi-v4l2-core-Add-ISP-statistics-output-V4L2-.patch │ │ │ ├── 950-0176-media-uapi-v4l-ctrls-Add-CID-base-for-the-bcm2835-is.patch │ │ │ ├── 950-0177-staging-vc04_services-mmal-vchiq-Update-parameters-l.patch │ │ │ ├── 950-0178-staging-vc04_services-bcm2835-camera-Request-headers.patch │ │ │ ├── 950-0179-gpiolib-Don-t-prevent-IRQ-usage-of-output-GPIOs.patch │ │ │ ├── 950-0181-media-bcm2835-unicam-Driver-for-CCP2-CSI2-camera-int.patch │ │ │ ├── 950-0182-media-bcm2835-unicam-Add-support-for-get_mbus_config.patch │ │ │ ├── 950-0183-media-bcm2835-unicam-Avoid-gcc-warning-over-0-on-end.patch │ │ │ ├── 950-0184-serial-8250-bcm2835aux-defer-if-clock-is-zero.patch │ │ │ ├── 950-0185-media-bcm2835-unicam-Reinstate-V4L2_CAP_READWRITE-in.patch │ │ │ ├── 950-0186-media-bcm2835-unicam-Ensure-type-is-VIDEO_CAPTURE-in.patch │ │ │ ├── 950-0187-media-bcm2835-unicam-Set-VPU-min-clock-freq-to-250Mh.patch │ │ │ ├── 950-0188-dt-bindings-bcm2835-unicam-Update-documentation-with.patch │ │ │ ├── 950-0189-leds-Add-the-actpwr-trigger.patch │ │ │ ├── 950-0190-media-bcm2835-unicam-Drop-WARN-on-uing-direct-cache-.patch │ │ │ ├── 950-0191-media-bcm2835-unicam-Always-service-interrupts.patch │ │ │ ├── 950-0192-media-bcm2835-unicam-Fix-uninitialized-warning.patch │ │ │ ├── 950-0193-media-bcm2835-unicam-Fixup-review-comments-from-Hans.patch │ │ │ ├── 950-0194-media-bcm2835-unicam-Retain-packing-information-on-G.patch │ │ │ ├── 950-0195-media-bcm2835-unicam-change-minimum-number-of-vb2_qu.patch │ │ │ ├── 950-0196-staging-fbtft-Add-support-for-display-variants.patch │ │ │ ├── 950-0198-staging-bcm2835-camera-Replace-deprecated-V4L2_PIX_F.patch │ │ │ ├── 950-0199-staging-vc04_services-Add-new-vc-sm-cma-driver.patch │ │ │ ├── 950-0200-staging-vchiq-mmal-Add-support-for-14bit-Bayer.patch │ │ │ ├── 950-0201-staging-mmal-vchiq-Add-monochrome-image-formats.patch │ │ │ ├── 950-0202-staging-mmal-vchiq-Use-vc-sm-cma-to-support-zero-cop.patch │ │ │ ├── 950-0203-staging-vc04_services-Add-a-V4L2-M2M-codec-driver.patch │ │ │ ├── 950-0204-uapi-bcm2835-isp-Add-bcm2835-isp-uapi-header-file.patch │ │ │ ├── 950-0205-staging-vc04_services-ISP-Add-a-more-complex-ISP-pro.patch │ │ │ ├── 950-0206-gpio-Add-gpio-fsm-driver.patch │ │ │ ├── 950-0207-watchdog-bcm2835-Ignore-params-after-the-partition-n.patch │ │ │ ├── 950-0208-firmware-raspberrypi-Add-support-for-tryonce-reboot-.patch │ │ │ ├── 950-0209-Input-edt-ft5x06-Poll-the-device-if-no-interrupt-is-.patch │ │ │ ├── 950-0210-dt-bindings-Add-compatible-for-BCM2711-DSI1.patch │ │ │ ├── 950-0211-media-bcm2835-unicam-Correctly-handle-error-propagat.patch │ │ │ ├── 950-0212-media-bcm2835-unicam-Return-early-from-stop_streamin.patch │ │ │ ├── 950-0213-media-bcm2835-unicam-Clear-clock-state-when-stopping.patch │ │ │ ├── 950-0215-staging-vc04_services-Add-additional-unpacked-raw-fo.patch │ │ │ ├── 950-0216-uapi-bcm2835-isp-Add-colour-denoise-configuration.patch │ │ │ ├── 950-0217-spi-bcm2835-Workaround-fix-for-zero-length-transfers.patch │ │ │ ├── 950-0218-media-bcm2835-unicam-Fix-bug-in-buffer-swapping-logi.patch │ │ │ ├── 950-0219-Assign-crypto-aliases-to-different-AES-implementatio.patch │ │ │ ├── 950-0220-media-ov5647-Fix-return-codes-from-ov5647_write-ov56.patch │ │ │ ├── 950-0221-media-i2c-ov5647-Parse-and-register-properties.patch │ │ │ ├── 950-0222-staging-bcm2835-camera-Add-support-for-DMABUFs.patch │ │ │ ├── 950-0223-staging-fbtft-Add-minipitft13-variant.patch │ │ │ ├── 950-0224-staging-bcm2835-camera-Add-support-for-H264-levels-4.patch │ │ │ ├── 950-0225-media-i2c-ov5647-Correct-pixel-array-offset.patch │ │ │ ├── 950-0226-media-i2c-ov5647-Correct-minimum-VBLANK-value.patch │ │ │ ├── 950-0227-media-i2c-ov5647-Fix-v4l2-compliance-failure-subscri.patch │ │ │ ├── 950-0228-media-bcm2835-unicam-Forward-input-status-from-subde.patch │ │ │ ├── 950-0229-media-i2c-ov7251-Add-fwnode-properties-controls.patch │ │ │ ├── 950-0230-drm-panel-raspberrypi-touchscreen-Use-independent-I2.patch │ │ │ ├── 950-0231-drm-panel-simple-Add-a-timing-for-the-Raspberry-Pi-7.patch │ │ │ ├── 950-0232-drm-panel-jdi-lt070me05000-Use-gpiod_set_value_cansl.patch │ │ │ ├── 950-0233-Extending-ili9881c-driver-support-for-nwe080-panel.patch │ │ │ ├── 950-0234-dt-bindings-ili9881c-add-compatible-string-for-new-p.patch │ │ │ ├── 950-0235-drm-panel-Add-panel-driver-for-TDO-Y17B-based-panels.patch │ │ │ ├── 950-0236-drm-panel-Add-panel-driver-for-Waveshare-DSI-touchsc.patch │ │ │ ├── 950-0237-dt-bindings-vendor-prefixes-Add-Geekworm.patch │ │ │ ├── 950-0238-dt-bindings-display-simple-add-Geekworm-MZP280-Panel.patch │ │ │ ├── 950-0239-dt-bindings-display-panel-dsi-bindings.patch │ │ │ ├── 950-0240-staging-vchiq-mmal-Add-buffer-flags-for-interlaced-v.patch │ │ │ ├── 950-0241-staging-vchiq-mmal-Add-parameters-for-interlaced-vid.patch │ │ │ ├── 950-0242-staging-vchiq-mmal-Add-the-deinterlace-image-effects.patch │ │ │ ├── 950-0243-Add-Raspberry-Pi-PoE-HAT-support.patch │ │ │ ├── 950-0244-staging-mmal-vchiq-Add-module-parameter-to-enable-lo.patch │ │ │ ├── 950-0245-staging-mmal-vchiq-Reset-buffers_with_vpu-on-port_en.patch │ │ │ ├── 950-0246-hwmon-pwm-fan-Add-fan-speed-register-support.patch │ │ │ ├── 950-0247-drivers-gpio-Add-a-driver-that-wraps-the-PWM-API-as-.patch │ │ │ ├── 950-0248-media-i2c-ov5647-Sensor-should-report-RAW-color-spac.patch │ │ │ ├── 950-0249-media-bcm2835-unicam-Parse-pad-numbers-correctly.patch │ │ │ ├── 950-0250-media-bcm2835-unicam-Add-support-for-configuration-v.patch │ │ │ ├── 950-0251-staging-bcm2835-camera-Add-support-for-H264_MIN_QP-H.patch │ │ │ ├── 950-0252-staging-bcm2835-camera-Add-support-for-MPEG_VIDEO_FO.patch │ │ │ ├── 950-0254-media-i2c-ov5647-Support-HFLIP-and-VFLIP.patch │ │ │ ├── 950-0255-spi-spidev-Restore-loading-from-Device-Tree.patch │ │ │ ├── 950-0256-drivers-bcm2835_unicam-Add-logging-message-when-a-fr.patch │ │ │ ├── 950-0257-regulator-rpi-panel-attiny-Don-t-read-the-LCD-power-.patch │ │ │ ├── 950-0258-rtc-pcf8523-Fix-oscillator-stop-bit-handling.patch │ │ │ ├── 950-0259-media-i2c-ov5647-Add-support-for-regulator-control.patch │ │ │ ├── 950-0261-uapi-v4l2-controls-Reset-V4L2_CID_USER_BCM2835_ISP_B.patch │ │ │ ├── 950-0262-mfd-simple-mfd-i2c-Add-configuration-for-RPi-POE-HAT.patch │ │ │ ├── 950-0263-pwm-raspberrypi-poe-Add-option-of-being-created-by-M.patch │ │ │ ├── 950-0264-power-rpi-poe-Drop-CURRENT_AVG-as-it-is-not-hardware.patch │ │ │ ├── 950-0265-power-rpi-poe-Add-option-of-being-created-by-MFD-or-.patch │ │ │ ├── 950-0266-drivers-bcm2835_unicam-Disable-trigger-mode-operatio.patch │ │ │ ├── 950-0267-media-bcm2835-unicam-Set-ret-on-error-path-in-unicam.patch │ │ │ ├── 950-0268-i2c-bcm2835-Make-clock-stretch-timeout-configurable.patch │ │ │ ├── 950-0269-bindings-Add-sck-idle-input-to-spi-gpio.patch │ │ │ ├── 950-0270-spi-gpio-Add-sck-idle-input-property.patch │ │ │ ├── 950-0271-media-bcm2835-unicam-Handle-a-repeated-frame-start-w.patch │ │ │ ├── 950-0272-media-i2c-ov7251-Reinstate-setting-ov7251_global_ini.patch │ │ │ ├── 950-0273-media-i2c-Add-driver-for-Omnivision-OV2311.patch │ │ │ ├── 950-0274-dt-bindings-media-i2c-Add-binding-for-ad5398-VCM.patch │ │ │ ├── 950-0275-media-i2c-Add-driver-for-AD5398-VCM-lens-driver.patch │ │ │ ├── 950-0276-media-i2c-ov5647-Use-v4l2_async_register_subdev_sens.patch │ │ │ ├── 950-0277-mm-page_alloc-cma-introduce-a-customisable-threshold.patch │ │ │ ├── 950-0278-tpm_tis_spi_main-Force-probe-routine-to-run-synchron.patch │ │ │ ├── 950-0279-dt-bindings-vendor-prefixes-Add-Arducam.patch │ │ │ ├── 950-0280-media-dt-bindings-media-i2c-Add-Arducam-Pivariety-Se.patch │ │ │ ├── 950-0281-media-i2c-Add-driver-of-Arducam-Pivariety-series-cam.patch │ │ │ ├── 950-0282-thermal-broadcom-Use-dev_err_probe-to-suppress-defer.patch │ │ │ ├── 950-0283-dt-bindings-hwmon-add-microchip-emc2305.yaml-dt-bind.patch │ │ │ ├── 950-0284-hwmon-emc2305-fixups-for-driver-submitted-to-mailing.patch │ │ │ ├── 950-0285-vc04_services-vchiq-mmal-Add-defines-for-mmal_es_for.patch │ │ │ ├── 950-0286-random-do-not-use-jump-labels-before-they-are-initia.patch │ │ │ ├── 950-0287-media-dt-bindings-media-i2c-Add-Arducam-64MP-CMOS-se.patch │ │ │ ├── 950-0288-media-i2c-Add-driver-of-Arducam-64MP-camera.patch │ │ │ ├── 950-0289-Add-HDMI1-facility-to-the-driver.patch │ │ │ ├── 950-0290-Populate-phy-driver-block-for-BCM54213PE.patch │ │ │ ├── 950-0291-media-bcm2835-unicam-Correctly-handle-FS-FE-ISR-cond.patch │ │ │ ├── 950-0292-media-video-mux-Read-CSI2-config-from-FW-and-pass-to.patch │ │ │ ├── 950-0293-media-bcm2835-unicam-Fix-for-possible-dummy-buffer-o.patch │ │ │ ├── 950-0294-media-bcm2835-unicam-Fix-up-start-stop-api-change.patch │ │ │ ├── 950-0295-media-adv7180-Nasty-hack-to-allow-input-selection.patch │ │ │ ├── 950-0296-media-i2c-ov7251-Add-module-param-to-select-ext-trig.patch │ │ │ ├── 950-0297-net-bcmgenet-Add-eee-module-parameter.patch │ │ │ ├── 950-0298-media-dt-bindings-Add-DW9817-to-DW9807-binding.patch │ │ │ ├── 950-0299-media-dw9807-vcm-Add-support-for-DW9817-bidirectiona.patch │ │ │ ├── 950-0300-media-dt-bindings-Add-regulator-to-dw9807-vcm.patch │ │ │ ├── 950-0301-media-dw9807-vcm-Add-regulator-support-to-the-driver.patch │ │ │ ├── 950-0302-media-dw9807-vcm-Smooth-the-first-user-movement-of-t.patch │ │ │ ├── 950-0303-dtbindings-media-i2c-Add-IMX708-CMOS-sensor-binding.patch │ │ │ ├── 950-0304-media-i2c-Add-a-driver-for-the-Sony-IMX708-image-sen.patch │ │ │ ├── 950-0305-media-bcm2835-unicam-Use-mipi-csi2.h-header-for-data.patch │ │ │ ├── 950-0306-media-bcm2835-unicam-Add-support-for-RAW16-formats.patch │ │ │ ├── 950-0307-iio-adc-mcp3422-Add-correct-compatible-strings.patch │ │ │ ├── 950-0308-gpio-pca953x-Add-ti-tca9554-compatible-string.patch │ │ │ ├── 950-0309-hwmon-aht10-Add-DT-compatible-string.patch │ │ │ ├── 950-0310-hwmon-ds1621-Add-DT-compatible-strings.patch │ │ │ ├── 950-0311-rtc-ds3232-Add-DT-compatible-string-for-ds3234.patch │ │ │ ├── 950-0312-hwmon-sht3x-Add-DT-compatible-string.patch │ │ │ ├── 950-0313-iio-light-tsl4531-Add-DT-compatible-string.patch │ │ │ ├── 950-0314-iio-light-veml6070-Add-DT-compatible-string.patch │ │ │ ├── 950-0316-hwrng-bcm2835-sleep-more-intelligently.patch │ │ │ ├── 950-0317-fbdev-Don-t-cancel-deferred-work-if-pagelist-empty.patch │ │ │ ├── 950-0318-dt-bindings-media-i2c-Replace-IMX708-sensor-binding-.patch │ │ │ ├── 950-0319-media-bcm2835-unicam-Start-and-stop-media_pipeline-w.patch │ │ │ ├── 950-0320-input-goodix-Add-option-to-poll-instead-of-relying-o.patch │ │ │ ├── 950-0321-serial-8250-Add-NOMSI-bug-for-bcm2835aux.patch │ │ │ ├── 950-0322-Bluetooth-hci_sync-Add-fallback-bd-address-prop.patch │ │ │ ├── 950-0323-Bluetooth-hci_bcm-Add-more-invalid-BDADDRs.patch │ │ │ ├── 950-0324-pinctrl-bcm2835-Workaround-for-edge-IRQ-loss.patch │ │ │ ├── 950-0325-mmc-bcm2835-Use-phys-addresses-for-slave-DMA-config.patch │ │ │ ├── 950-0326-spi-bcm2835-Use-phys-addresses-for-slave-DMA-config.patch │ │ │ ├── 950-0327-i2c-bcm2835-Flush-FIFOs-cleanly-on-error.patch │ │ │ ├── 950-0328-i2c-bcm2835-Do-not-abort-transfers-on-ERR-if-still-a.patch │ │ │ ├── 950-0329-i2c-bcm2835-Implement-I2C_M_IGNORE_NAK.patch │ │ │ ├── 950-0330-pps-Compatibility-hack-should-be-X86-specific.patch │ │ │ ├── 950-0331-serial-sc16is7xx-Read-modem-line-state-at-startup.patch │ │ │ ├── 950-0332-drivers-media-bcm2835_unicam-Improve-frame-sequence-.patch │ │ │ ├── 950-0333-xhci-quirks-add-link-TRB-quirk-for-VL805.patch │ │ │ ├── 950-0334-usb-xhci-add-VLI_SS_BULK_OUT_BUG-quirk.patch │ │ │ ├── 950-0335-usb-xhci-add-XHCI_VLI_HUB_TT_QUIRK.patch │ │ │ ├── 950-0337-drm-ili9486-Resolve-clash-in-spi_device_id-names.patch │ │ │ ├── 950-0338-bcm2835-unicam-hacks-to-allow-it-to-build.patch │ │ │ ├── 950-0339-rtc-rv3028-Add-backup-switchover-mode-support.patch │ │ │ ├── 950-0340-gpio_brcmstb-Allow-to-build-for-ARCH_BCM2835.patch │ │ │ ├── 950-0342-pinctrl-bcm2712-pinctrl-pinconf-driver.patch │ │ │ ├── 950-0343-mmc-brcmstb-add-support-for-BCM2712.patch │ │ │ ├── 950-0344-sdhci-Add-SD-Express-hook.patch │ │ │ ├── 950-0345-irqchip-irq-bcm2712-mip-Support-for-2712-s-MIP.patch │ │ │ ├── 950-0346-reset-reset-brcmstb-rescal-Support-shared-use.patch │ │ │ ├── 950-0347-net-macb-Also-set-DMA-coherent-mask.patch │ │ │ ├── 950-0348-usb-dwc3-Set-DMA-and-coherent-masks-early.patch │ │ │ ├── 950-0349-V4L2-Add-PiSP-opaque-formats-to-V4L2.patch │ │ │ ├── 950-0350-V4L2-Add-PiSP-compressed-formats-to-V4L2.patch │ │ │ ├── 950-0351-dt-binding-mfd-Add-binding-for-Raspberry-Pi-RP1.patch │ │ │ ├── 950-0352-mfd-Add-rp1-driver.patch │ │ │ ├── 950-0353-dt-bindings-clock-Add-bindings-for-Raspberry-Pi-RP1.patch │ │ │ ├── 950-0354-clk-Add-rp1-clock-driver.patch │ │ │ ├── 950-0355-dt-bindings-pinctrl-Add-bindings-for-Raspberry-Pi-RP.patch │ │ │ ├── 950-0356-pinctrl-Add-rp1-driver.patch │ │ │ ├── 950-0357-serial-pl011-rp1-uart-support.patch │ │ │ ├── 950-0358-mmc-sdhci-of-dwcmshc-define-sdio-timeout-clocks.patch │ │ │ ├── 950-0359-clk-rp1-Add-sdio-clk-driver.patch │ │ │ ├── 950-0360-i2c-designware-Add-SMBUS-quick-command-support.patch │ │ │ ├── 950-0361-dmaengine-dw-axi-dmac-Fixes-for-RP1.patch │ │ │ ├── 950-0362-spi-dw-Handle-combined-tx-and-rx-messages.patch │ │ │ ├── 950-0363-pwm-Add-support-for-RP1-PWM.patch │ │ │ ├── 950-0364-drm-Add-RP1-DSI-driver.patch │ │ │ ├── 950-0365-drm-Add-RP1-DPI-driver.patch │ │ │ ├── 950-0366-drm-Add-RP1-VEC-driver.patch │ │ │ ├── 950-0367-media-rp1-Add-CFE-Camera-Front-End-support.patch │ │ │ ├── 950-0368-dt-bindings-net-cdns-macb-AXI-tuning-properties.patch │ │ │ ├── 950-0369-hwmon-Add-RP1-ADC-and-temperature-driver.patch │ │ │ ├── 950-0370-mfd-bcm2835-pm-Add-support-for-BCM2712.patch │ │ │ ├── 950-0371-soc-bcm-bcm2835-power-Add-support-for-BCM2712.patch │ │ │ ├── 950-0372-spi-gpio-Fix-spi-gpio-to-correctly-implement-sck-idl.patch │ │ │ ├── 950-0373-spi-spi-gpio-Implement-spidelay-when-requested-bit-r.patch │ │ │ ├── 950-0374-drm-v3d-add-brcm-2712-v3d-as-a-compatible-V3D-device.patch │ │ │ ├── 950-0375-dt-bindings-gpu-v3d-Add-BCM2712-to-compatibility-lis.patch │ │ │ ├── 950-0376-dmaengine-bcm2835-Add-BCM2712-support.patch │ │ │ ├── 950-0377-dmaengine-bcm2835-HACK-Support-DMA-Lite-channels.patch │ │ │ ├── 950-0378-dmaengine-bcm2835-Rename-to_bcm2711_cbaddr-to-to_40b.patch │ │ │ ├── 950-0379-drivers-iommu-Add-BCM2712-IOMMU.patch │ │ │ ├── 950-0380-irqchip-irq-brcmstb-l2-Add-config-for-2711-controlle.patch │ │ │ ├── 950-0381-rtc-rtc-rpi-Add-simple-RTC-driver-for-Raspberry-Pi.patch │ │ │ ├── 950-0382-dt-bindings-rtc-new-binding-for-Raspberry-Pi-RTC-dri.patch │ │ │ ├── 950-0383-dt-bindings-display-Add-BCM2712-HDMI-bindings.patch │ │ │ ├── 950-0384-dt-bindings-display-Add-BCM2712-HVS-bindings.patch │ │ │ ├── 950-0385-dt-bindings-display-Add-BCM2712-PixelValve-bindings.patch │ │ │ ├── 950-0386-dt-bindings-display-Add-BCM2712-MOP-bindings.patch │ │ │ ├── 950-0387-dt-bindings-display-Add-BCM2712-MOPLET-bindings.patch │ │ │ ├── 950-0388-dt-bindings-display-Add-BCM2712-KMS-driver-bindings.patch │ │ │ ├── 950-0389-media-i2c-Move-Kconfig-entry-for-IMX477-to-the-camer.patch │ │ │ ├── 950-0390-drm-Look-for-an-alias-for-the-displays-to-use-as-the.patch │ │ │ ├── 950-0391-media-i2c-ov9282-Read-chip-ID-via-2-reads.patch │ │ │ ├── 950-0392-fbdev-Allow-client-to-request-a-particular-dev-fbN-n.patch │ │ │ ├── 950-0393-drm-fb-helper-Look-up-preferred-fbdev-node-number-fr.patch │ │ │ ├── 950-0394-drm-connector-Change-DRM-card-alias-from-underscore-.patch │ │ │ ├── 950-0395-dt-bindings-PCI-brcmstb-add-optional-property-brcm-t.patch │ │ │ ├── 950-0396-drivers-mmc-sdhci-add-SPURIOUS_INT_RESP-quirk.patch │ │ │ ├── 950-0397-dt-bindings-mmc-sdhci-of-dwcmhsc-Add-Raspberry-Pi-RP.patch │ │ │ ├── 950-0398-Add-ability-to-export-gpio-used-by-gpio-poweroff.patch │ │ │ ├── 950-0399-gpio-poweroff-Disable-the-WARN.patch │ │ │ ├── 950-0400-w1-Disable-kernel-log-spam.patch │ │ │ ├── 950-0401-xhci-Use-more-event-ring-segment-table-entries.patch │ │ │ ├── 950-0402-drivers-thermal-step_wise-add-support-for-hysteresis.patch │ │ │ ├── 950-0403-media-i2c-ov7251-Switch-from-V4L2_CID_GAIN-to-V4L2_C.patch │ │ │ ├── 950-0404-drm-bridge-display-connector-Select-DRM_KMS_HELPER.patch │ │ │ ├── 950-0405-dtc-update.patch │ │ │ ├── 950-0406-media-dt-bindings-i2c-Add-Rohm-BU64754-bindings.patch │ │ │ ├── 950-0407-media-i2c-Add-ROHM-BU64754-Camera-Autofocus-Actuator.patch │ │ │ ├── 950-0408-firmware-psci-Pass-given-partition-number-through.patch │ │ │ ├── 950-0409-media-i2c-adv7180-Use-MEDIA_BUS_FMT_UYVY8_1X16-for-C.patch │ │ │ ├── 950-0410-media-i2c-adv7180-Add-support-for-V4L2_CID_LINK_FREQ.patch │ │ │ ├── 950-0412-dt-bindings-usb-update-dwc3-bindings-for-parkmode-di.patch │ │ │ ├── 950-0413-drivers-usb-dwc3-add-FS-LS-bus-instance-parkmode-dis.patch │ │ │ ├── 950-0414-i2c-designware-Use-SCL-rise-and-fall-times-in-DT.patch │ │ │ ├── 950-0415-i2c-designware-Support-non-standard-bus-speeds.patch │ │ │ ├── 950-0416-serial-sc16is7xx-Don-t-spin-if-no-data-received.patch │ │ │ ├── 950-0417-arm64-Kconfig-Don-t-set-DMA_BOUNCE_UNALIGNED_KMALLOC.patch │ │ │ ├── 950-0418-Bluetooth-btbcm-Add-entry-for-BCM43439-UART-BT.patch │ │ │ ├── 950-0419-dt-bindings-add-additional-RP1-PLL-output-channels.patch │ │ │ ├── 950-0420-regulator-Add-a-regulator-for-the-new-LCD-panels.patch │ │ │ ├── 950-0421-i2c-mux-Add-support-for-generic-base-nr-property.patch │ │ │ ├── 950-0426-mmc-bcm2835-sdhost-use-Host-Software-Queueing-mechan.patch │ │ │ ├── 950-0427-drivers-mmc-add-SD-support-for-Command-Queueing.patch │ │ │ ├── 950-0428-drivers-mmc-preallocate-a-block-for-SD-extension-reg.patch │ │ │ ├── 950-0429-drivers-mmc-trigger-activity-LED-when-CQE-is-active.patch │ │ │ ├── 950-0430-drivers-sdhci-brcmstb-work-around-mystery-CQE-CMD_ID.patch │ │ │ ├── 950-0431-drivers-mmc-cqhci-clear-CQHCI_CTL-if-halt-fails.patch │ │ │ ├── 950-0432-drivers-mmc-export-SD-extension-register-read-write-.patch │ │ │ ├── 950-0433-drivers-mmc-be-more-cautious-when-manipulating-Comma.patch │ │ │ ├── 950-0434-drivers-mmc-add-debugfs-entries-for-SD-extension-reg.patch │ │ │ ├── 950-0435-drivers-mmc-handle-1024-byte-SD-General-Info-lengths.patch │ │ │ ├── 950-0436-mmc-sdhci-brcmstb-add-hs400_downgrade-callback-for-b.patch │ │ │ ├── 950-0437-mmc-sdhci-extend-maximum-ADMA-transfer-length-to-4Mi.patch │ │ │ ├── 950-0438-drivers-mmc-sdhci-brcmstb-improve-bcm2712-card-remov.patch │ │ │ ├── 950-0439-drivers-mmc-core-handle-card-removal-when-running-CQ.patch │ │ │ ├── 950-0440-mmc-restrict-posted-write-counts-for-SD-cards-in-CQ-.patch │ │ │ ├── 950-0441-mmc-don-t-reference-requests-after-finishing-them.patch │ │ │ ├── 950-0442-drivers-mmc-disable-write-caching-on-Samsung-2023-mo.patch │ │ │ ├── 950-0443-mmc-quirks-disable-cache-on-more-known-bad-Sandisk-c.patch │ │ │ ├── 950-0444-mmc-block-disable-CQ-on-SD-cards-when-doing-non-Disc.patch │ │ │ ├── 950-0445-mmc-quirks-add-MMC_QUIRK_BROKEN_ERASE-for-Phison-Int.patch │ │ │ ├── 950-0446-i2c-designware-Add-support-for-bus-clear-feature.patch │ │ │ ├── 950-0447-i2c-designware-Make-the-SDA-hold-time-half-LCNT.patch │ │ │ ├── 950-0448-nvmem-raspberrypi-Add-nvmem-driver-for-accessing-OTP.patch │ │ │ ├── 950-0449-module-Avoid-ABI-changes-when-debug-info-is-disabled.patch │ │ │ ├── 950-0450-media-bcm2835-unicam-Add-option-for-a-GPIO-to-reflec.patch │ │ │ ├── 950-0451-dw-axi-dmac-platform-Avoid-trampling-with-zero-lengt.patch │ │ │ ├── 950-0452-drivers-media-cfe-Add-remap-entries-for-mono-formats.patch │ │ │ ├── 950-0453-drm-panel-Add-and-initialise-an-orientation-field-to.patch │ │ │ ├── 950-0454-drm-bridge-tc358762-Program-the-DPI-mode-into-the-ch.patch │ │ │ ├── 950-0455-drm-bridge-tc358762-revert-move-ops-to-enable.patch │ │ │ ├── 950-0456-pinctrl-bcm2835-Persist-outputs-by-default.patch │ │ │ ├── 950-0457-spi-dw-Handle-any-number-of-gpiod-CS-lines.patch │ │ │ ├── 950-0458-regulator-rpi_panel_v2-Add-remove-and-shutdown-hooks.patch │ │ │ ├── 950-0459-regulator-rpi_panel_v2-Add-delay-on-I2C-reads.patch │ │ │ ├── 950-0460-backlight-Add-a-display-name-to-the-core-and-a-funct.patch │ │ │ ├── 950-0461-drm-bridge-panel-Name-an-associated-backlight-device.patch │ │ │ ├── 950-0462-drivers-media-pci-Add-Hailo-accelerator-device-drive.patch │ │ │ ├── 950-0463-drivers-media-pcie-hailo-Fix-include-paths.patch │ │ │ ├── 950-0464-drivers-media-pci-Update-Hailo-accelerator-device-dr.patch │ │ │ ├── 950-0465-drivers-media-pci-Add-wrapper-after-removal-of-follo.patch │ │ │ ├── 950-0466-drivers-media-pci-Fix-Hailo-compile-warnings.patch │ │ │ ├── 950-0467-staging-vc04_services-Add-helpers-for-vchiq-driver-d.patch │ │ │ ├── 950-0468-staging-vc04_services-vc-sm-cma-Remove-deprecated-he.patch │ │ │ ├── 950-0469-staging-vc04_services-vc-sm-cma-Drop-include-Makefil.patch │ │ │ ├── 950-0470-staging-vc04_services-vc-sm-cma-Register-with-vchiq_.patch │ │ │ ├── 950-0471-arm-bcm2835-Add-bcm2838-compatible-string.patch │ │ │ ├── 950-0472-ARM-bcm-Switch-board-clk-and-pinctrl-to-bcm2711-comp.patch │ │ │ ├── 950-0473-media-bcm2835-unicam-Add-support-for-12bit-mono-pack.patch │ │ │ ├── 950-0474-media-bcm2835-unicam-Add-support-for-14bit-mono-sour.patch │ │ │ ├── 950-0475-media-bcm2835-unicam-Add-support-for-unpacked-14bit-.patch │ │ │ ├── 950-0476-lan78xx-Read-initial-EEE-status-from-DT.patch │ │ │ ├── 950-0477-lan78xx-Return-tx_lpi_timer-even-if-disabled.patch │ │ │ ├── 950-0478-staging-vc04_services-vc-sm-cma-Explicitly-set-DMA-m.patch │ │ │ ├── 950-0479-media-pisp-be-Backport-the-mainline-PiSP-BE-driver.patch │ │ │ ├── 950-0480-media-pisp_be-Re-introduce-multi-context-support.patch │ │ │ ├── 950-0481-media-pisp_be-Re-introduce-video-node-offset.patch │ │ │ ├── 950-0482-spi-dt-bindings-Add-RPI-RP2040-GPIO-Bridge.patch │ │ │ ├── 950-0483-spi-Add-a-driver-for-the-RPI-RP2040-GPIO-bridge.patch │ │ │ ├── 950-0484-dmaengine-dw-axi-dmac-Honour-snps-block-size.patch │ │ │ ├── 950-0488-dt-bindings-clk-rp1-Add-clocks-representing-MIPI-DSI.patch │ │ │ ├── 950-0489-media-bcm2835-unicam-Reinstate-old-downstream-driver.patch │ │ │ ├── 950-0490-media-platform-Move-bcm2835-unicam-compatible-to-dow.patch │ │ │ ├── 950-0491-pinctrl-rp1-jump-through-hoops-to-avoid-PCIe-latency.patch │ │ │ ├── 950-0492-spi-dw-Save-bandwidth-with-the-TMOD_TO-feature.patch │ │ │ ├── 950-0493-spi-dw-Save-bandwidth-with-the-TMOD_RO-feature.patch │ │ │ ├── 950-0494-spi-dw-don-t-immediately-kill-DMA-transfers-if-an-er.patch │ │ │ ├── 950-0495-drivers-dw-axi-dmac-make-more-sensible-choices-about.patch │ │ │ ├── 950-0496-DT-bindings-add-a-dma-maxburst-property-to-snps-desi.patch │ │ │ ├── 950-0497-sound-soc-dwc-i2s-choose-FIFO-thresholds-based-on-DM.patch │ │ │ ├── 950-0498-spi-dw-Fix-non-DMA-transmit-only-transfers.patch │ │ │ ├── 950-0499-spi-dw-Clamp-the-minimum-clock-speed.patch │ │ │ ├── 950-0500-hwmon-adt7410-Add-DT-compatible-strings.patch │ │ │ ├── 950-0501-gpiolib-Override-gpiochip-numbers-with-DT-aliases.patch │ │ │ ├── 950-0502-Bluetooth-hci_sync-Fix-crash-on-NULL-parent.patch │ │ │ ├── 950-0503-rtc-pcf8523-Fix-oscillator-stop-bit-handling-reading.patch │ │ │ ├── 950-0504-media-dt-bindings-i2c-Add-Sony-IMX500.patch │ │ │ ├── 950-0505-media-i2c-Add-driver-for-Sony-IMX500-sensor.patch │ │ │ ├── 950-0506-lib-earlycpio-export-symbol-find_cpio_data.patch │ │ │ ├── 950-0507-media-i2c-ov5647-Add-control-of-V4L2_CID_HBLANK.patch │ │ │ ├── 950-0508-drm-panel-ili9881-Correct-symmetry-on-enable-disable.patch │ │ │ ├── 950-0509-drm-panel-ili9881-Add-option-to-reconfigure-setup-co.patch │ │ │ ├── 950-0510-drivers-media-imx500-Enable-LS-correction.patch │ │ │ ├── 950-0511-NotForUpstream-media-video-mux-Propagate-controls-to.patch │ │ │ ├── 950-0512-media-platform-video-mux-Fix-mutex-locking.patch │ │ │ ├── 950-0513-media-i2c-ov5647-Tidy-up-mode-registers-to-make-the-.patch │ │ │ ├── 950-0514-media-i2c-ov5647-Separate-out-the-common-registers.patch │ │ │ ├── 950-0515-media-i2c-ov5647-Use-the-same-PLL-config-for-full-10.patch │ │ │ ├── 950-0516-media-i2c-ov5647-Add-V4L2_CID_LINK_FREQUENCY-control.patch │ │ │ ├── 950-0517-dma-buf-system_heap-Allow-specifying-maximum-allocat.patch │ │ │ ├── 950-0518-mm-numa-Allow-override-of-kernel-s-default-NUMA-poli.patch │ │ │ ├── 950-0519-numa-emulation-Check-emulated-zones-around-the-CMA-w.patch │ │ │ ├── 950-0520-drivers-media-bcm2835_isp-Cache-LS-table-dmabuf.patch │ │ │ ├── 950-0521-mm-vmscan-Maintain-TLB-coherency-in-LRU-code.patch │ │ │ ├── 950-0522-mmc-quirks-add-more-broken-Kingston-Canvas-Go-SD-car.patch │ │ │ ├── 950-0523-dt-bindings-usb-snps-dwc3-add-FS-HS-periodic-NAK-pol.patch │ │ │ ├── 950-0524-usb-dwc3-core-add-support-for-setting-NAK-enhancemen.patch │ │ │ ├── 950-0525-drivers-usb-xhci-prevent-a-theoretical-race-on-non-c.patch │ │ │ ├── 950-0526-iio-humidity-dht11-Allow-non-zero-decimals.patch │ │ │ ├── 950-0527-drm-Set-non-desktop-property-to-true-for-writeback-a.patch │ │ │ ├── 950-0528-drm-Increase-plane_mask-to-64bit.patch │ │ │ ├── 950-0529-drm-Add-a-DRM_MODE_TRANSPOSE-option-to-the-DRM-rotat.patch │ │ │ ├── 950-0530-drm-Add-a-rotation-parameter-to-connectors.patch │ │ │ ├── 950-0531-dmaengine-dw-axi-dmac-Allow-client-chosen-width.patch │ │ │ ├── 950-0532-spi-dw-Let-the-DMAC-set-the-transfer-widths.patch │ │ │ ├── 950-0533-serial-pl011-Request-a-memory-width-of-1-byte.patch │ │ │ ├── 950-0534-drivers-usb-xhci-set-HID-bit-in-streaming-endpoint-c.patch │ │ │ ├── 950-0535-media-i2c-imx477-Add-options-for-slightly-modifying-.patch │ │ │ ├── 950-0536-dtoverlays-Add-link-frequency-override-to-imx477-378.patch │ │ │ ├── 950-0537-dmaengine-dw-axi-dmac-Only-start-idle-channels.patch │ │ │ ├── 950-0538-mailbox-Add-RP1-mailbox-support.patch │ │ │ ├── 950-0539-firmware-Add-an-RP1-firmware-interface-over-mbox.patch │ │ │ ├── 950-0540-dts-bcm2712-rpi-Add-RP1-firmware-and-mailboxes.patch │ │ │ ├── 950-0541-misc-Add-RP1-PIO-driver.patch │ │ │ ├── 950-0543-dts-bcm2712-rpi-Add-the-RP1-PIO-device.patch │ │ │ ├── 950-0544-pwm-Add-pwm-pio-rp1-driver.patch │ │ │ ├── 950-0546-overlays-Add-pwm-pio-overlay.patch │ │ │ ├── 950-0548-drivers-media-pci-Update-Hailo-accelerator-device-dr.patch │ │ │ ├── 950-0549-dtoverlays-enable-SPI-CS-active-high.patch │ │ │ ├── 950-0550-overlays-Enable-Raspberry-Touch-2-rotation-with-over.patch │ │ │ ├── 950-0552-drm-connector-Initialise-max_bpc-to-the-minimum-valu.patch │ │ │ ├── 950-0553-drm-connector-hdmi-Attempt-YUV422-output-if-RGB-isn-.patch │ │ │ ├── 950-0554-Adding-Pimidi-kernel-module.patch │ │ │ ├── 950-0556-Adding-pimidi-overlay.dts.patch │ │ │ ├── 950-0557-media-i2c-imx477-Fix-link-frequency-menu.patch │ │ │ ├── 950-0558-misc-rp1-pio-Fix-copy-paste-error-in-pio_rp1.h.patch │ │ │ ├── 950-0559-misc-rp1-pio-Fix-parameter-checks-wihout-client.patch │ │ │ ├── 950-0560-drm-vc4-dsi-Handle-the-different-command-FIFO-widths.patch │ │ │ ├── 950-0561-dts-bcm2712-rpi-For-CM5IO-i2c_csi_dsi-needs-to-be-CA.patch │ │ │ ├── 950-0562-dts-bcm2712-rpi-cm5-Remove-inaccessible-USB_OC_N.patch │ │ │ ├── 950-0563-overlays-qca7000-replace-URL-with-textual-hint.patch │ │ │ ├── 950-0564-dt-bindings-net-cdns-macb-Add-compatible-for-Raspber.patch │ │ │ ├── 950-0565-net-macb-Add-support-for-Raspberry-Pi-RP1-ethernet-c.patch │ │ │ ├── 950-0566-rp1-clk-Only-set-PLL_SEC_RST-in-rp1_pll_divider_off.patch │ │ │ ├── 950-0567-rp1-clk-Rationalise-the-use-of-the-CLK_IS_CRITICAL-f.patch │ │ │ ├── 950-0568-dt-arm64-Fixup-RP1-ethernet-DT-configuration.patch │ │ │ ├── 950-0569-clk-rp1-Add-RP1_CLK_DMA.patch │ │ │ ├── 950-0570-rp1-clk-Remove-CLK_IGNORE_UNUSED-flags.patch │ │ │ ├── 950-0571-dt-rp1-Use-clk_sys-for-ethernet-hclk-and-pclk.patch │ │ │ ├── 950-0572-dt-rp1-Link-RP1-DMA-to-the-associated-clock.patch │ │ │ ├── 950-0573-dts-bcm2712-ds-Restore-the-A76-PMU-declaration.patch │ │ │ ├── 950-0574-dts-rp1-Re-enable-DMA-to-RP1-UART0.patch │ │ │ ├── 950-0575-dts-bcm2712-ds-Restore-gpio-direct-to-gio_aon.patch │ │ │ ├── 950-0576-drm-vc4-plane-Keep-fractional-source-coords-inside-s.patch │ │ │ ├── 950-0577-drm-vc4-plane-Handle-fractional-coordinates-using-th.patch │ │ │ ├── 950-0578-drm-vc4-crtc-Force-trigger-of-dlist-update-on-margin.patch │ │ │ ├── 950-0579-drm-vc4-plane-Add-support-for-YUV444-formats.patch │ │ │ ├── 950-0580-drm-vc4-hdmi-Warn-if-writing-to-an-unknown-HDMI-regi.patch │ │ │ ├── 950-0581-drm-vc4-hvs-More-logging-for-dlist-generation.patch │ │ │ ├── 950-0582-drm-vc4-hvs-Print-error-if-we-fail-an-allocation.patch │ │ │ ├── 950-0583-drm-vc4-plane-Add-more-debugging-for-LBM-allocation.patch │ │ │ ├── 950-0584-drm-vc4-plane-Use-return-variable-in-atomic_check.patch │ │ │ ├── 950-0585-drm-vc4-crtc-Move-assigned_channel-to-a-variable.patch │ │ │ ├── 950-0586-drm-vc4-plane-YUV-planes-require-vertical-scaling-to.patch │ │ │ ├── 950-0587-drm-vc4-hvs-Remove-ABORT_ON_EMPTY-flag.patch │ │ │ ├── 950-0588-drm-vc4-Make-v3d-paths-unavailable-on-any-generation.patch │ │ │ ├── 950-0589-drm-vc4-hvs-Use-switch-statement-to-simplify-vc4_hvs.patch │ │ │ ├── 950-0590-drm-vc4-hvs-Create-hw_init-function.patch │ │ │ ├── 950-0591-drm-vc4-hvs-Create-cob_init-function.patch │ │ │ ├── 950-0592-drm-vc4-hvs-Rename-hvs_regs-list.patch │ │ │ ├── 950-0593-drm-vc4-plane-Change-ptr0_offset-to-an-array.patch │ │ │ ├── 950-0594-drm-vc4-hvs-Rework-LBM-alignment.patch │ │ │ ├── 950-0595-drm-vc4-hvs-Change-prototype-of-__vc4_hvs_alloc-to-p.patch │ │ │ ├── 950-0596-drm-vc4-plane-Move-the-buffer-offset-out-of-the-vc4_.patch │ │ │ ├── 950-0597-drm-vc4-hvs-Enable-SCALER_CONTROL-early-in-HVS-init.patch │ │ │ ├── 950-0598-drm-vc4-Use-vc4_perfmon_find.patch │ │ │ ├── 950-0599-drm-vc4-Use-of_device_get_match_data-to-set-generati.patch │ │ │ ├── 950-0600-drm-vc4-Fix-reading-of-frame-count-on-GEN5-Pi4.patch │ │ │ ├── 950-0601-drm-vc4-drv-Support-BCM2712.patch │ │ │ ├── 950-0602-drm-vc4-hvs-Add-support-for-BCM2712-HVS.patch │ │ │ ├── 950-0603-drm-vc4-crtc-Add-support-for-BCM2712-PixelValves.patch │ │ │ ├── 950-0604-drm-vc4-hdmi-Add-support-for-BCM2712-HDMI-controller.patch │ │ │ ├── 950-0605-drm-vc4-txp-Introduce-structure-to-deal-with-revisio.patch │ │ │ ├── 950-0606-drm-vc4-txp-Rename-TXP-data-structure.patch │ │ │ ├── 950-0607-drm-vc4-txp-Add-byte-enable-toggle-bit.patch │ │ │ ├── 950-0608-drm-vc4-txp-Add-horizontal-and-vertical-size-offset-.patch │ │ │ ├── 950-0609-drm-vc4-txp-Handle-40-bits-DMA-Addresses.patch │ │ │ ├── 950-0610-drm-vc4-txp-Move-the-encoder-type-in-the-variant-str.patch │ │ │ ├── 950-0611-drm-vc4-txp-Add-a-new-TXP-encoder-type.patch │ │ │ ├── 950-0612-drm-vc4-txp-Add-support-for-BCM2712-MOP.patch │ │ │ ├── 950-0613-drm-vc4-txp-Add-BCM2712-MOPLET-support.patch │ │ │ ├── 950-0614-drm-vc4-drv-Add-support-for-2712-D-step.patch │ │ │ ├── 950-0615-drm-vc4-hvs-Add-in-support-for-2712-D-step.patch │ │ │ ├── 950-0616-drm-vc4-plane-Add-support-for-2712-D-step.patch │ │ │ ├── 950-0617-drm-vc4-hdmi-Support-2712-D-step-register-map.patch │ │ │ ├── 950-0618-drm-vc4-Add-additional-warn_on-for-incorrect-revisio.patch │ │ │ ├── 950-0619-drm-vc4-Enable-bg_fill-if-there-are-no-planes-enable.patch │ │ │ ├── 950-0620-drm-vc4-Drop-planes-that-are-completely-off-screen-o.patch │ │ │ ├── 950-0621-dt-Disabled-vc4-by-default-on-2712.patch │ │ │ ├── 950-0622-arch-arm64-broadcom-Add-firmware-clocks-node.patch │ │ │ ├── 950-0623-arm64-dts-broadcom-Add-display-pipeline-support-to-B.patch │ │ │ ├── 950-0624-arm64-dts-broadcom-Add-DT-for-D-step-version-of-BCM2.patch │ │ │ ├── 950-0625-arm64-dts-broadcom-Fixup-downstream-DT-changes-due-t.patch │ │ │ ├── 950-0626-dtoverlays-enable-gpu-node-from-vc4-kms-v3d-pi5.patch │ │ │ ├── 950-0627-drm-vc4-Use-phys-addresses-for-slave-DMA-config.patch │ │ │ ├── 950-0628-arm64-dts-broadcom-Fixup-HVS-address-for-downstream-.patch │ │ │ ├── 950-0629-drm-vc4-hvs-Defer-dlist-slots-deallocation.patch │ │ │ ├── 950-0630-drm-vc4-Add-hvs_dlist_allocs-debugfs-function.patch │ │ │ ├── 950-0631-drm-vc4-Disable-overrun-interrupts.patch │ │ │ ├── 950-0632-drm-vc4-Block-swiotlb-bounce-buffers-being-imported-.patch │ │ │ ├── 950-0633-drm-vc4-Add-option-to-call-from-crtc-to-encoder-on-v.patch │ │ │ ├── 950-0634-drm-vc4-dsi-Clocks-should-be-running-before-reset.patch │ │ │ ├── 950-0635-drm-vc4-Reset-DSI-AFE-on-disable.patch │ │ │ ├── 950-0636-drm-vc4-Ensure-DSI-is-enabled-for-FIFO-resets.patch │ │ │ ├── 950-0637-drm-vc4-Add-vblank-callback-to-DSI0-to-reset-FIFO.patch │ │ │ ├── 950-0638-drm-vc4-Fixup-mode-for-7inch-panel-on-DSI0.patch │ │ │ ├── 950-0639-drm-vc4-dsi-Don-t-reset-the-host-until-post_disable.patch │ │ │ ├── 950-0640-drm-vc4-dsi-enable-video-and-then-retry-failed-trans.patch │ │ │ ├── 950-0641-drm-vc4-Allow-setting-the-TV-norm-via-module-paramet.patch │ │ │ ├── 950-0642-drm-vc4-Make-VEC-progressive-modes-readily-accessibl.patch │ │ │ ├── 950-0643-drm-vc4-Initialise-the-tv_mode-property-default-from.patch │ │ │ ├── 950-0644-vc4-Add-jack-detection-to-HDMI-audio-driver.patch │ │ │ ├── 950-0645-drm-vc4-hdmi-Add-a-clear_infoframe-hook.patch │ │ │ ├── 950-0646-drm-vc4_hdmi-Allow-hotplug-detect-to-be-forced.patch │ │ │ ├── 950-0647-vc4-hdmi-Ignore-hotplug-interrupt-with-force_hotplug.patch │ │ │ ├── 950-0648-drm-vc4-Add-a-delay-after-disabling-hdmi-phy-output.patch │ │ │ ├── 950-0649-drm-vc4-Implement-vc6_hdmi_phy_disable.patch │ │ │ ├── 950-0650-drm-vc4-Also-power-down-the-PLL-core-when-resetting-.patch │ │ │ ├── 950-0651-drm-vc4-dpi-Add-override-for-RGB-order.patch │ │ │ ├── 950-0652-vc4-drm-plane-Make-use-of-chroma-siting-parameter.patch │ │ │ ├── 950-0653-drm-vc4-Add-support-for-per-plane-scaling-filter-sel.patch │ │ │ ├── 950-0654-drm-vc4-Use-the-TPZ-scaling-filter-for-1x1-source-im.patch │ │ │ ├── 950-0655-drm-vc4-hvs-Defer-updating-the-enable_bg_fill-until-.patch │ │ │ ├── 950-0656-drm-vc4-Increase-number-of-overlay-planes-from-16-to.patch │ │ │ ├── 950-0657-drm-vc4-Assign-32-overlay-planes-to-writeback-only.patch │ │ │ ├── 950-0658-drm-vc4-Do-not-include-writeback-conn-load-in-load-t.patch │ │ │ ├── 950-0659-drm-vc4-Drop-panic-priority-for-writeback-connector.patch │ │ │ ├── 950-0660-drm-vc4-txp-Add-a-rotation-property-to-the-writeback.patch │ │ │ ├── 950-0661-drm-vc4-Remove-request-for-min-clocks-when-hdmi-outp.patch │ │ │ ├── 950-0662-drm-vc4-Disable-the-2pixel-clock-odd-timings-workaro.patch │ │ │ ├── 950-0663-drm-vc4-fkms-Add-firmware-kms-mode.patch │ │ │ ├── 950-0664-drm-vc4-tests-Switch-generation-mockup-to-a-switch.patch │ │ │ ├── 950-0665-drm-vc4-tests-Drop-drm-parameter-for-vc4_find_crtc_f.patch │ │ │ ├── 950-0666-drm-vc4-tests-Return-the-allocated-output.patch │ │ │ ├── 950-0667-drm-vc4-tests-Add-BCM2712-mock-driver.patch │ │ │ ├── 950-0668-drm-vc4-tests-Add-tests-for-BCM2712-PixelValve-Muxin.patch │ │ │ ├── 950-0669-drm-vc4-tests-Use-custom-plane-state-for-mock.patch │ │ │ ├── 950-0670-drm-vc4-tests-Add-function-to-lookup-a-plane-for-a-C.patch │ │ │ ├── 950-0671-drm-vc4-tests-Add-helper-to-add-a-new-plane-to-a-sta.patch │ │ │ ├── 950-0672-drm-vc4-tests-Support-a-few-more-plane-formats.patch │ │ │ ├── 950-0673-drm-vc4-tests-Introduce-a-test-for-LBM-buffer-size.patch │ │ │ ├── 950-0674-drm-vc4-backport-27e0a194a256-and-b3bf19552ea3.patch │ │ │ ├── 950-0675-drm-vc4-Cache-LBM-allocations-to-avoid-double-buffer.patch │ │ │ ├── 950-0676-dtoverlays-bcm2712d0-Don-t-change-vc4-compatible-str.patch │ │ │ ├── 950-0677-arm64-dts-broadcom-Add-dma-names-for-HDMI-audio-DMA.patch │ │ │ ├── 950-0678-raspberrypi-firmware-Add-the-RPI-firmware-UART-APIs.patch │ │ │ ├── 950-0679-serial-core-Add-the-Raspberry-Pi-firmware-UART-id.patch │ │ │ ├── 950-0680-serial-tty-Add-a-driver-for-the-RPi-firmware-UART.patch │ │ │ ├── 950-0682-dtoverlay-Add-an-overlay-for-the-Raspberry-Pi-firmwa.patch │ │ │ ├── 950-0683-ARM-dts-Remove-duplicate-tags.patch │ │ │ ├── 950-0684-Allow-setting-I-C-clock-frequency-via-i2c_arm_baudra.patch │ │ │ ├── 950-0685-nvme-pci-Disable-Host-Memory-Buffer-usage.patch │ │ │ ├── 950-0686-serial-rpi-fw-uart-Demote-debug-log-messages.patch │ │ │ ├── 950-0687-dtoverlays-Add-Arducam-override-for-ov9281.patch │ │ │ ├── 950-0688-input-Add-support-for-no-irq-to-ili210x-driver.patch │ │ │ ├── 950-0689-drm-panel-Added-waveshare-13.3inch-panel.patch │ │ │ ├── 950-0690-overlays-Added-waveshare-13.3inch-panel-support.patch │ │ │ ├── 950-0691-dts-bcm2712-ds-Dedup-as-upstream-support-expands.patch │ │ │ ├── 950-0692-cgroup-Add-cgroup_enable-option.patch │ │ │ ├── 950-0693-drm-v3d-Correct-clock-settng-calls-to-new-APIs.patch │ │ │ ├── 950-0694-drm-bridge-panel-Connector-to-allow-interlaced-modes.patch │ │ │ ├── 950-0695-dts-overlays-vc4-kms-dpi-generic-overlay-Add-interla.patch │ │ │ ├── 950-0696-drm-rp1-rp1-dpi-Add-interlaced-modes-and-PIO-program.patch │ │ │ ├── 950-0697-ASoC-allo-piano-dac-plus-Fix-volume-limit-locking.patch │ │ │ ├── 950-0698-drm-vc4-txp-Do-not-allow-24bpp-formats-when-transpos.patch │ │ │ ├── 950-0699-drm-Validate-connector-rotation-has-one-bit-set-in-t.patch │ │ │ ├── 950-0700-ASoC-allo-piano-dac-plus-Suppress-517-errors.patch │ │ │ ├── 950-0701-drm-rp1-rp1-dpi-Fix-optional-dependency-on-RP1_PIO.patch │ │ │ ├── 950-0702-serial-sc16is7xx-announce-support-for-SER_RS485_RTS_.patch │ │ │ ├── 950-0703-dtoverlays-Add-override-for-target-path-on-I2C-overl.patch │ │ │ ├── 950-0704-misc-rp1-pio-Support-larger-data-transfers.patch │ │ │ ├── 950-0705-dtoverlays-Use-continuous-clock-mode-for-ov9281.patch │ │ │ ├── 950-0706-dts-bcm2712-ds-Restore-the-VGIC-interrupt.patch │ │ │ ├── 950-0707-overlays-goodix-Allow-override-i2c-address.patch │ │ │ ├── 950-0709-misc-rp1-pio-More-logical-probe-sequence.patch │ │ │ ├── 950-0710-misc-rp1-pio-Convert-floats-to-24.8-fixed-point.patch │ │ │ ├── 950-0711-misc-rp1-pio-Minor-cosmetic-tweaks.patch │ │ │ ├── 950-0712-misc-rp1-pio-Add-in-kernel-DMA-support.patch │ │ │ ├── 950-0713-misc-Add-ws2812-pio-rp1-driver.patch │ │ │ ├── 950-0714-overlays-Add-ws2812-pio-overlay.patch │ │ │ ├── 950-0716-overlays-Add-and-document-i2c_csi_dsi0-parameters.patch │ │ │ ├── 950-0717-dts-Add-noanthogs-parameter-to-CM4-and-CM5.patch │ │ │ ├── 950-0719-soc-pcm3168a-Add-DT-binding-to-force-clock-consumer-.patch │ │ │ ├── 950-0720-docs-pcm3168a-Add-DT-bindings-to-force-clock-consume.patch │ │ │ ├── 950-0721-overlays-Add-overlay-for-ezsound-6x8-soundcard.patch │ │ │ ├── 950-0722-overlays-Compile-the-new-overlay.patch │ │ │ ├── 950-0723-overlays-Add-ezsound-6x8iso-overlay-to-README.patch │ │ │ ├── 950-0724-Revert-PCI-Warn-if-no-host-bridge-NUMA-node-info.patch │ │ │ ├── 950-0727-Add-and-update-files-for-pwm-gpio-fan-overlay.patch │ │ │ ├── 950-0728-media-i2c-imx290-Limit-analogue-gain-according-to-mo.patch │ │ │ ├── 950-0729-media-dt-bindings-sony-imx290-Add-IMX462-to-the-IMX2.patch │ │ │ ├── 950-0730-media-i2c-imx290-Add-configuration-for-IMX462.patch │ │ │ ├── 950-0731-media-imx290-Add-module-parameter-to-allow-selection.patch │ │ │ ├── 950-0732-dtoverlays-Switch-imx462-overlay-to-use-the-new-comp.patch │ │ │ ├── 950-0735-dts-bcm2712-PL011-UARTs-are-actually-r1p5.patch │ │ │ ├── 950-0736-dts-rp1-PL011-UARTs-are-actually-r1p5.patch │ │ │ ├── 950-0737-media-rp1-cfe-Fix-up-link-validation-for-CFE-CFG-inp.patch │ │ │ ├── 950-0739-dtoverlays-Add-overlay-for-Sony-IMX415-image-sensor.patch │ │ │ ├── 950-0740-media-i2c-imx415-Add-read-write-control-of-VBLANK.patch │ │ │ ├── 950-0741-media-i2c-imx415-Make-HBLANK-controllable-and-in-con.patch │ │ │ ├── 950-0742-media-i2c-imx415-Link-frequencies-are-not-exclusive-.patch │ │ │ ├── 950-0743-ASoC-pcm512x-Demote-No-SCLK-to-debug-level.patch │ │ │ ├── 950-0744-ASoC-allo-piano-dac-plus-Fix-volume-limiting.patch │ │ │ ├── 950-0745-ASoC-allo-piano-dac-plus-Remove-pointless-code.patch │ │ │ ├── 950-0747-misc-rp1-pio-Handle-probe-errors.patch │ │ │ ├── 950-0748-firmware-rp1-Simplify-rp1_firmware_get.patch │ │ │ ├── 950-0749-DT-bcm2712-override-supports-cqe-to-a-cell.patch │ │ │ ├── 950-0750-mmc-sd-filter-card-CQ-support-based-on-an-allow-list.patch │ │ │ ├── 950-0751-mmc-set-MMC_QUIRK_KNOWN_WORKING_SD_CQ-on-Raspberry-P.patch │ │ │ ├── 950-0752-mmc-use-downstream-DT-property-to-modify-CQE-and-or-.patch │ │ │ ├── 950-0754-mmc-bcm2835-sdhost-Observe-SWIOTLB-memory-limit.patch │ │ │ ├── 950-0755-drm-v3d-CPU-job-submissions-shouldn-t-affect-V3D-GPU.patch │ │ │ ├── 950-0756-bcm2708_fb-Explicitly-initialise-the-IOMEM-ops.patch │ │ │ ├── 950-0758-mmc-bcm2835-Add-downstream-overclocking-support.patch │ │ │ ├── 950-0760-IMX219-Add-4-lane-option-to-the-device-tree-overlay.patch │ │ │ ├── 950-0761-drivers-media-pisp_be-Add-support-for-YUV422-planar-.patch │ │ │ ├── 950-0762-drivers-media-pisp_be-Remove-unused-fields-in-struct.patch │ │ │ ├── 950-0763-dtoverlays-waveshare-panel-Disable-new-touch-control.patch │ │ │ ├── 950-0764-drm-gem-Create-shmem-GEM-object-in-a-given-mountpoin.patch │ │ │ ├── 950-0765-drm-gem-Create-a-drm_gem_object_init_with_mnt-functi.patch │ │ │ ├── 950-0766-drm-v3d-Use-v3d_perfmon_find.patch │ │ │ ├── 950-0767-drm-v3d-Fix-return-if-scheduler-initialization-fails.patch │ │ │ ├── 950-0768-drm-v3d-Introduce-gemfs.patch │ │ │ ├── 950-0769-drm-v3d-Reduce-the-alignment-of-the-node-allocation.patch │ │ │ ├── 950-0770-drm-v3d-Support-Big-Super-Pages-when-writing-out-PTE.patch │ │ │ ├── 950-0771-drm-v3d-Use-gemfs-THP-in-BO-creation-if-available.patch │ │ │ ├── 950-0772-drm-v3d-Add-modparam-for-turning-off-Big-Super-Pages.patch │ │ │ ├── 950-0773-drm-v3d-Expose-Super-Pages-capability.patch │ │ │ ├── 950-0774-drm-v3d-Drop-allocation-of-object-without-mountpoint.patch │ │ │ ├── 950-0775-drm-v3d-Add-DRM_IOCTL_V3D_PERFMON_SET_GLOBAL.patch │ │ │ ├── 950-0776-drm-v3d-Fix-miscellaneous-documentation-errors.patch │ │ │ ├── 950-0777-drm-v3d-Remove-v3d-cpu_job.patch │ │ │ ├── 950-0778-drm-rp1-rp1-dpi-Add-rgb_order-property-to-match-VC4-.patch │ │ │ ├── 950-0780-add-ina238-to-i2c-sensors.patch │ │ │ ├── 950-0782-add-shtc3-to-i2c-sensors.patch │ │ │ ├── 950-0783-drivers-media-pci-Update-Hailo-accelerator-device-dr.patch │ │ │ ├── 950-0784-overlays-Regularisation-and-improvements.patch │ │ │ ├── 950-0785-overlays-Factor-out-the-common-i2c-bus-selection.patch │ │ │ ├── 950-0787-misc-rp1-pio-SM_CONFIG_XFER32-larger-DMA-bufs.patch │ │ │ ├── 950-0790-spi-dw-Wait-for-idle-after-TX.patch │ │ │ ├── 950-0791-misc-rp1-pio-Error-out-on-incompatible-firmware.patch │ │ │ ├── 950-0792-firmware-rp1-Linger-on-firmware-failure.patch │ │ │ ├── 950-0793-mailbox-rp1-Don-t-claim-channels-in-of_xlate.patch │ │ │ ├── 950-0794-arm64-dts-Prepare-for-size-cells-2.patch │ │ │ ├── 950-0795-dts-bcm2712-add-missing-brcm-vdm-qos-map-to-cm5-base.patch │ │ │ ├── 950-0796-dtoverlays-adds-support-for-Hifiberry-ADC8x-to-the-D.patch │ │ │ ├── 950-0797-ASoC-adds-ADC8x-support-to-the-Hifiberry-DAC8x.patch │ │ │ ├── 950-0800-drm-vc4-PV1-can-be-driven-via-any-HVS-channel-so-ada.patch │ │ │ ├── 950-0801-drm-vc4-tests-Update-pv-muxing-tests-now-DSI1-is-mor.patch │ │ │ ├── 950-0804-drm-edid-When-reset-assume-HDMI-displays-support-RGB.patch │ │ │ ├── 950-0806-overlays-Add-OpenHydroponics-RootMaster-overlay.patch │ │ │ ├── 950-0807-arm64-dts-Add-the-Audio-Out-block-to-rp1.dtsi.patch │ │ │ ├── 950-0808-clk-rp1-Allow-audio-out-to-use-PLL_AUDIO_SEC-workaro.patch │ │ │ ├── 950-0809-sound-soc-raspberrypi-RP1-Audio-Out-driver-as-an-ASO.patch │ │ │ ├── 950-0810-dts-overlays-Enable-RP1-Audio-Out-using-audremap-pi5.patch │ │ │ ├── 950-0811-media-i2c-arducam-pivariety-Fix-mutex-init-and-NULL-.patch │ │ │ ├── 950-0812-misc-rp1-pio-Demote-fw-probe-error-to-warning.patch │ │ │ ├── 950-0813-dts-Add-hogs-for-RP1-GPIO-46-48-on-CM5.patch │ │ │ ├── 950-0814-spi-rp2040-gpio-bridge-fix-gpiod-error-handling.patch │ │ │ ├── 950-0815-spi-rp2040-gpio-bridge-probe-Cfg-fast_xfer-clk.patch │ │ │ ├── 950-0817-iommu-dma-Add-ability-to-configure-NUMA-allocation-p.patch │ │ │ ├── 950-0818-mm-mempolicy-Add-MPOL_RANDOM.patch │ │ │ ├── 950-0819-dts-bcm2712-ds-Remove-bcm7445-from-gio_aon.patch │ │ │ ├── 950-0820-imx500-Fix-for-long-exposure-setup.patch │ │ │ ├── 950-0821-USB-serial-pl2303-account-for-deficits-of-clones.patch │ │ │ ├── 950-0823-drm-rp1-DPI-interlace-Improve-precision-of-PIO-gener.patch │ │ │ ├── 950-0824-drm-vc4-Correct-one-logging-message-that-got-promote.patch │ │ │ ├── 950-0828-media-mc-add-manual-request-completion.patch │ │ │ ├── 950-0829-media-vicodec-add-support-for-manual-completion.patch │ │ │ ├── 950-0830-media-mc-add-debugfs-node-to-keep-track-of-requests.patch │ │ │ ├── 950-0831-docs-uapi-media-Document-Raspberry-Pi-NV12-column-fo.patch │ │ │ ├── 950-0832-media-ioctl-Add-pixel-formats-NV12MT_COL128-and-NV12.patch │ │ │ ├── 950-0833-media-dt-bindings-media-Add-binding-for-the-Raspberr.patch │ │ │ ├── 950-0834-media-platform-Add-Raspberry-Pi-HEVC-decoder-driver.patch │ │ │ ├── 950-0835-arm-dts-bcm2711-rpi-Add-HEVC-decoder-node.patch │ │ │ ├── 950-0836-arm-dt-broadcom-fixup-downstream-dts-for-HEVC-decode.patch │ │ │ ├── 950-0837-dts-bcm2712-Fixup-HEVC-decoder-nodes-for-new-driver.patch │ │ │ ├── 950-0838-media-v4l2-Add-single-planar-NV12-column-formats.patch │ │ │ ├── 950-0839-media-hevc_dec-Add-in-downstream-single-planar-SAND-.patch │ │ │ ├── 950-0842-drm-vc4-hvs-Fix-vc6_hvs_debugfs_dlist-state-lookup.patch │ │ │ ├── 950-0843-drm-vc4-Add-algorithmic-handling-for-SAND.patch │ │ │ ├── 950-0844-drm-vc4-plane-Avoid-using-pitch-in-calculating-UBM-f.patch │ │ │ ├── 950-0845-drm-framebuffer-Pitch-checks-aren-t-valid-for-non-li.patch │ │ │ ├── 950-0846-media-hevc_dec-Add-module-parameter-for-video_nr.patch │ │ │ ├── 950-0847-media-hevc_dec-Drop-the-new-image-formats-until-we-h.patch │ │ │ ├── 950-0848-dts-remove-README-from-Makefile.patch │ │ │ ├── 950-0849-ARM-dts-Add-CM0-dts-file.patch │ │ │ ├── 950-0850-ARM64-dts-Add-the-64-bit-CM0-dts.patch │ │ │ ├── 950-0851-ARM-dts-bcm2711-Provide-a-hook-for-a-WiFi-MAC.patch │ │ │ ├── 950-0852-overlays-Add-the-wifimac-overlay.patch │ │ │ ├── 950-0854-dts-Remove-the-power-key-debounce-on-Pi-500.patch │ │ │ ├── 950-0855-dtoverlays-Add-adxl345-to-i2c-sensor.patch │ │ │ ├── 950-0856-overlays-Use-current-I2C-Sysfs-in-README-examples.patch │ │ │ ├── 950-0859-drm-v3d-Set-job-pointer-to-NULL-when-the-job-s-fence.patch │ │ │ ├── 950-0860-drm-v3d-Associate-a-V3D-tech-revision-to-all-support.patch │ │ │ ├── 950-0861-dt-bindings-gpu-v3d-Add-per-compatible-register-rest.patch │ │ │ ├── 950-0862-dt-bindings-gpu-v3d-Add-SMS-register-to-BCM2712-comp.patch │ │ │ ├── 950-0863-drm-v3d-Use-V3D_SMS-registers-for-power-on-off-and-r.patch │ │ │ ├── 950-0864-dt-bindings-gpu-Add-V3D-driver-maintainer-as-DT-main.patch │ │ │ ├── 950-0865-dts-bcm2712-Add-V3D_SMS-register.patch │ │ │ ├── 950-0866-overlays-Fix-some-unusable-fragments.patch │ │ │ ├── 950-0867-drm-panel-Add-panel-driver-for-Ilitek-ILI9806E-panel.patch │ │ │ ├── 950-0873-PCI-brcmstb-Reuse-config-structure.patch │ │ │ ├── 950-0875-PCI-brcmstb-Add-bcm2712-support.patch │ │ │ ├── 950-0876-PCI-brcmstb-Adjust-PHY-PLL-setup-to-use-a-54MHz-inpu.patch │ │ │ ├── 950-0884-PCI-brcmstb-Use-same-constant-table-for-config-space.patch │ │ │ ├── 950-0885-PCI-brcmstb-Make-two-changes-in-MDIO-register-fields.patch │ │ │ ├── 950-0886-PCI-brcmstb-Clarify-conversion-of-irq_domain_set_inf.patch │ │ │ ├── 950-0887-PCI-brcmstb-set-BCM7712-2712-specific-AXI-bridge-han.patch │ │ │ ├── 950-0888-PCI-brcmstb-don-t-use-ASPM-state-defines-for-registe.patch │ │ │ ├── 950-0889-PCI-brcmstb-Enable-CRS-software-visibility-after-lin.patch │ │ │ ├── 950-0890-PCI-brcmstb-add-NO_SSC-quirk-for-BCM2712.patch │ │ │ ├── 950-0891-PCI-brcmstb-add-support-for-BCM2712-priority-forward.patch │ │ │ ├── 950-0892-PCI-pcie-brcmstb-optionally-extend-Tperst_clk-time.patch │ │ │ ├── 950-0893-dt-bindings-PCI-brcmstb-Update-bindings-for-PCIe-on-.patch │ │ │ ├── 950-0894-dt-bindings-pci-pcie-brcmstb-add-BCM2712-specific-pr.patch │ │ │ ├── 950-0895-dt-bindings-pci-pcie-brcmstb-add-optional-brcm-tpers.patch │ │ │ ├── 950-0896-DT-bcm2712-swap-PCIe-QoS-properties-to-the-new-array.patch │ │ │ ├── 950-0897-arm64-dts-broadcom-bcm2712-rpi-5-b-Enable-PCIe-DT-no.patch │ │ │ ├── 950-0898-arm64-dts-Clean-up-the-downstream-patches.patch │ │ │ ├── 950-0899-arm64-dts-Drop-downstream-PCIe-nodes-that-are-about-.patch │ │ │ ├── 950-0900-arm64-dts-broadcom-bcm2712-Add-PCIe-DT-nodes.patch │ │ │ ├── 950-0901-irqchip-Add-Broadcom-bcm2712-MSI-X-interrupt-control.patch │ │ │ ├── 950-0902-dt-bindings-interrupt-controller-Add-bcm2712-MSI-X-D.patch │ │ │ ├── 950-0903-DT-bcm2711-bcm2712-use-upstream-property-for-control.patch │ │ │ ├── 950-0904-fix-clang-compilation-error.patch │ │ │ ├── 950-0905-media-i2c-imx477-Add-further-link-frequency-options.patch │ │ │ ├── 950-0906-dtoverlays-ov9281-Add-continuous-clock-option-as-an-.patch │ │ │ ├── 950-0907-drm-vc4-Correct-arithmetic-for-shifting-between-colu.patch │ │ │ ├── 950-0909-Adding-Pisound-Micro-kernel-module.patch │ │ │ ├── 950-0911-Adding-pisound-micro-overlay.dts.patch │ │ │ ├── 950-0912-dmaengine-dw-axi-dmac-Improve-axi_desc_put.patch │ │ │ ├── 950-0913-dmaengine-dw-axi-dmac-Fix-alignment-checks.patch │ │ │ ├── 950-0916-mm-mempolicy-Ignore-runtime-policy-changes-when-set-.patch │ │ │ ├── 950-0918-dts-rp1-Don-t-use-DMA-with-UARTs.patch │ │ │ ├── 950-0919-overlay-Rework-fix-the-Pi-5-MIDI-UART-overlays.patch │ │ │ ├── 950-0921-ARM64-dts-Add-sd-and-sd_poll_once-params-to-CM5.patch │ │ │ ├── 950-0922-overlays-README-Correct-watchdog-default-value.patch │ │ │ ├── 950-0930-dtoverlays-Disable-kernel-drivers-for-humidity-senso.patch │ │ │ ├── 950-0931-dtoverlays-Add-invx-and-invy-overrides-to-ads7846-to.patch │ │ │ ├── 950-0932-dtoverlays-Make-piscreen-consistent-on-swapxy.patch │ │ │ ├── 950-0933-staging-bcm2835-camera-Initialise-dev-in-v4l2_dev.patch │ │ │ ├── 950-0934-PCI-pcie-brcmstb-fake-MSIx-support-on-internal-MSI-t.patch │ │ │ ├── 950-0935-media-i2c-imx415-Correct-hmax_min-values-for-891Mbps.patch │ │ │ ├── 950-0936-dtoverlays-imx415-Add-an-override-for-37.125MHz-cloc.patch │ │ │ ├── 950-0937-drm-vc4-plane-Correct-SAND30-word-sizing-for-croppin.patch │ │ │ ├── 950-0938-drm-vc4-plane-Ensure-fetch_count-is-sufficient-for-h.patch │ │ │ ├── 950-0939-Show-process-name-in-set_mempolicy-ignored-message.patch │ │ │ ├── 950-0940-drm-panel-Added-waveshare-7.0inch-h-dsi-screen-suppo.patch │ │ │ ├── 950-0941-overlays-Added-waveshare-7.0inch-h-dsi-screen-suppor.patch │ │ │ ├── 950-0942-drivers-pci-hailo-Fix-kernel-warning-when-calling-fi.patch │ │ │ ├── 950-0944-Pisound-Micro-Fix-for-MIDI-output-under-full-load.patch │ │ │ ├── 950-0945-ARM-dts-Include-symbols-in-the-CM0-dtb.patch │ │ │ ├── 950-0946-fixup-Add-dwc_otg-driver.patch │ │ │ ├── 950-0947-fixup-mmc-sdhci-of-dwcmshc-define-sdio-timeout-clock.patch │ │ │ ├── 950-0948-PCI-pcie-brcmstb-add-more-safeguards-for-clkreq-safe.patch │ │ │ ├── 950-0949-PCI-quirks-work-around-VL805-firmware-ASPM-meddling.patch │ │ │ ├── 950-0950-usb-xhci-default-to-Intel-scheme-for-calculating-U1-.patch │ │ │ ├── 950-0951-media-i2c-imx219-Restore-the-1920x1080-to-using-a-1-.patch │ │ │ ├── 950-0952-drm-vc4-plane-Increase-UPM-allocation-size-for-YUV44.patch │ │ │ ├── 950-0953-drm-vc4-plane-Enable-scaler-for-YUV444-on-GEN6.patch │ │ │ ├── 950-0954-drm-vc4-plane-Use-nearest-neighbour-filter-with-YUV4.patch │ │ │ ├── 950-0955-hwmon-aht10-Fix-AHT20-initialization.patch │ │ │ ├── 950-0956-overlays-Add-aht20-support-to-i2c-sensor.patch │ │ │ ├── 950-0958-media-imx335-Rectify-name-of-mode-struct.patch │ │ │ ├── 950-0959-media-imx335-Support-vertical-flip.patch │ │ │ ├── 950-0963-dtoverlays-Add-overlay-for-the-Sony-IMX335-4-Lane-ca.patch │ │ │ ├── 950-0964-overlays-README-Fix-4-lane-CSI2-documentation-for-Pi.patch │ │ │ ├── 950-0965-drm-vc4-plane-Fix-incorrect-handling-of-GEN_6_D-in-v.patch │ │ │ ├── 950-0966-dtoverlays-Create-Pi5-variant-of-tc358743-overlay.patch │ │ │ ├── 950-0967-media-i2c-imx708-Fix-lockdep-issues.patch │ │ │ ├── 950-0968-media-i2c-imx477-Fix-lockdep-errors.patch │ │ │ ├── 950-0969-iio-add-modifiers-for-A-and-B-ultraviolet-light.patch │ │ │ ├── 950-0970-iio-move-LIGHT_UVA-and-LIGHT_UVB-to-the-end-of-iio_m.patch │ │ │ ├── 950-0972-overlays-Add-TCS3472-and-VEML6040-support.patch │ │ │ ├── 950-0985-PCI-brcmstb-Add-link-statistics-debug-features.patch │ │ │ ├── 950-0986-media-i2c-ov7251-Make-the-enable-GPIO-optional.patch │ │ │ ├── 950-0987-spi-bcm2835-Support-spi0-0cs-and-SPI_NO_CS-mode.patch │ │ │ ├── 950-0989-drivers-regulator-Add-a-regulator-to-Waveshare-DSI-T.patch │ │ │ ├── 950-0990-drivers-gpu-drm-panel-Add-the-device-for-the-Wavesha.patch │ │ │ ├── 950-0991-arch-arm-boot-dts-overlays-Add-Waveshare-DSI-TOUCH-s.patch │ │ │ ├── 950-0993-PCI-brcmstb-Do-not-assume-that-reg-field-starts-at-L.patch │ │ │ ├── 950-0995-add-ads7828-ads7830-to-i2c-sensors.patch │ │ │ ├── 950-0996-Add-RS485-mode-support-for-UART2-UART3-UART4-and-UAR.patch │ │ │ ├── 950-0997-Modified-potentially-confusing-documentation-for-rs4.patch │ │ │ ├── 950-0998-watchdog-Reduce-severity-of-release-without-stop.patch │ │ │ ├── 950-0999-DT-arm-bcm2712-re-add-mmio-hi-ranges-for-pciex1.patch │ │ │ ├── 950-1000-media-i2c-imx296-Add-OF-option-for-vsync-sink-for-XT.patch │ │ │ ├── 950-1001-dtoverlays-Add-sync-configuration-option-to-imx296-o.patch │ │ │ ├── 950-1007-drm-v3d-Don-t-retrieve-the-clock-twice.patch │ │ │ ├── 950-1008-Update-panel-ilitek-ili9881c.c.patch │ │ │ ├── 950-1009-arm64-dts-bcm2712-rpi-Add-uart0_dma-parameter.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.4 │ │ ├── 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.4 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-5.4 │ │ ├── files-5.4 │ │ │ └── drivers │ │ │ │ └── net │ │ │ │ └── ethernet │ │ │ │ └── broadcom │ │ │ │ └── unimac.h │ │ ├── generic │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── asus_gt-ac5300 │ │ │ │ └── rom │ │ │ │ │ └── etc │ │ │ │ │ ├── image_ident │ │ │ │ │ └── image_version │ │ │ ├── netgear_r8000p │ │ │ │ └── etc │ │ │ │ │ ├── image_ident │ │ │ │ │ └── image_version │ │ │ └── tplink_archer-c2300-v1 │ │ │ │ ├── etc │ │ │ │ └── image_version │ │ │ │ └── nvram.nvm │ │ └── patches-5.4 │ │ │ ├── 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 │ │ │ ├── 070-v5.10-0001-net-dsa-b53-Use-dev_-err-info-instead-of-pr_.patch │ │ │ ├── 070-v5.10-0002-net-dsa-b53-Print-err-message-on-SW_RST-timeout.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 │ │ │ ├── 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 │ │ │ ├── 083-v5.5-0001-phy-phy-brcm-usb-init-fix-__iomem-annotations.patch │ │ │ ├── 083-v5.5-0002-phy-phy-brcm-usb-init-fix-use-of-integer-as-pointer.patch │ │ │ ├── 084-v5.6-0001-phy-usb-EHCI-DMA-may-lose-a-burst-of-DMA-data-for-72.patch │ │ │ ├── 084-v5.6-0002-phy-usb-Get-all-drivers-that-use-USB-clks-using-corr.patch │ │ │ ├── 084-v5.6-0003-phy-usb-Put-USB-phys-into-IDDQ-on-suspend-to-save-po.patch │ │ │ ├── 084-v5.6-0004-phy-usb-Add-wake-on-functionality.patch │ │ │ ├── 084-v5.6-0005-phy-usb-Restructure-in-preparation-for-adding-7216-U.patch │ │ │ ├── 084-v5.6-0006-dt-bindings-Add-Broadcom-STB-USB-PHY-binding-documen.patch │ │ │ ├── 084-v5.6-0007-phy-usb-Add-support-for-new-Synopsys-USB-controller-.patch │ │ │ ├── 084-v5.6-0008-phy-usb-Add-support-for-new-Synopsys-USB-controller-.patch │ │ │ ├── 084-v5.6-0009-phy-usb-fix-driver-to-defer-on-clk_get-defer.patch │ │ │ ├── 084-v5.6-0010-phy-usb-PHY-s-MDIO-registers-not-accessible-without-.patch │ │ │ ├── 084-v5.6-0011-phy-usb-bdc-Fix-occasional-failure-with-BDC-on-7211.patch │ │ │ ├── 084-v5.6-0012-phy-usb-USB-driver-is-crashing-during-S3-resume-on-7.patch │ │ │ ├── 084-v5.6-0013-phy-usb-Add-support-for-wake-and-USB-low-power-mode-.patch │ │ │ ├── 085-v5.8-0001-phy-phy-brcm-usb-Constify-static-structs.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 │ │ │ ├── 300-arm64-dts-broadcom-bcm4908-limit-amount-of-GPIOs.patch │ │ │ ├── 400-mtd-rawnand-brcmnand-disable-WP-on-BCM4908.patch │ │ │ ├── 401-mtd-support-BLKRRPART.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 │ │ │ │ ├── init.d │ │ │ │ │ └── clear_partialboot │ │ │ │ └── uci-defaults │ │ │ │ │ └── 09_fix_crc │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 07_set_preinit_iface_bcm53xx │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-5.10 │ │ ├── config-5.4 │ │ ├── config-6.6 │ │ ├── files-5.4 │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── bcm-nsp-ax.dtsi │ │ │ │ ├── bcm-nsp.dtsi │ │ │ │ ├── bcm53015-meraki-mr26.dts │ │ │ │ ├── bcm958625-meraki-alamo.dtsi │ │ │ │ ├── bcm958625-meraki-kingpin.dtsi │ │ │ │ ├── bcm958625-meraki-mx64-a0.dts │ │ │ │ ├── bcm958625-meraki-mx64.dts │ │ │ │ ├── bcm958625-meraki-mx65.dts │ │ │ │ └── bcm958625-meraki-mx6x-common.dtsi │ │ ├── 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-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-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 │ │ │ ├── 081-v5.18-nvmem-brcm_nvram-parse-NVRAM-content-into-NVMEM-cell.patch │ │ │ ├── 082-v5.19-nvmem-brcm_nvram-find-Device-Tree-nodes-for-NVMEM-ce.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 │ │ │ ├── 600-net-disable-GRO-by-default.patch │ │ │ ├── 700-bgmac-reduce-max-frame-size-to-support-just-MTU-1500.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.4 │ │ │ ├── 030-v5.5-ARM-dts-BCM5301X-Add-DT-for-Luxul-XWC-2000.patch │ │ │ ├── 031-v5.8-ARM-dts-BCM5301X-Add-missing-memory-device_type-for-.patch │ │ │ ├── 032-v5.9-ARM-dts-BCM5301X-Specify-switch-ports-for-Luxul-devi.patch │ │ │ ├── 033-v5.10-0001-ARM-dts-BCM5301X-Specify-PWM-in-the-DT.patch │ │ │ ├── 033-v5.10-0002-ARM-dts-BCM5301X-Specify-uart2-in-the-DT.patch │ │ │ ├── 033-v5.10-0003-ARM-dts-BCM5301X-Specify-pcie2-in-the-DT.patch │ │ │ ├── 033-v5.10-0004-ARM-BCM5301X-Add-DT-for-Meraki-MR32.patch │ │ │ ├── 034-v5.11-0001-ARM-dts-BCM5301X-Linksys-EA9500-add-port-5-and-port-.patch │ │ │ ├── 034-v5.11-0002-ARM-dts-BCM5301X-Harmonize-EHCI-OHCI-DT-nodes-name.patch │ │ │ ├── 034-v5.11-0003-ARM-dts-BCM5310X-Harmonize-xHCI-DT-nodes-name.patch │ │ │ ├── 034-v5.11-0004-ARM-dts-BCM5301X-Linksys-EA9500-add-fixed-partitions.patch │ │ │ ├── 034-v5.11-0005-ARM-dts-BCM5301X-Use-corretc-pinctrl-compatible-for-.patch │ │ │ ├── 034-v5.11-0006-ARM-dts-BCM5301X-Linksys-EA9500-make-use-of-pinctrl.patch │ │ │ ├── 034-v5.11-0008-ARM-dts-BCM5301X-Disable-USB-3-PHY-on-devices-withou.patch │ │ │ ├── 034-v5.11-0009-ARM-dts-BCM5301X-Enable-USB-3-PHY-on-Luxul-XWR-3150.patch │ │ │ ├── 034-v5.11-0010-ARM-dts-BCM5301X-Update-Ethernet-switch-node-name.patch │ │ │ ├── 034-v5.11-0011-ARM-dts-BCM5301X-Add-a-default-compatible-for-switch.patch │ │ │ ├── 034-v5.11-0012-ARM-dts-BCM5301X-Provide-defaults-ports-container-no.patch │ │ │ ├── 035-v5.13-0001-ARM-dts-BCM5301X-fix-reg-formatting-in-memory-node.patch │ │ │ ├── 035-v5.13-0002-ARM-dts-BCM5301X-Describe-NVMEM-NVRAM-on-Linksys-Lux.patch │ │ │ ├── 035-v5.13-0003-ARM-dts-BCM5301X-Fix-Linksys-EA9500-partitions.patch │ │ │ ├── 035-v5.13-0004-ARM-dts-BCM5301X-Set-Linksys-EA9500-power-LED.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 │ │ │ ├── 302-ARM-dts-BCM5301X-Update-Northstar-pinctrl-binding.patch │ │ │ ├── 310-ARM-BCM5301X-Add-DT-for-Netgear-R7900.patch │ │ │ ├── 311-ARM-BCM5301X-Add-power-button-for-Buffalo-WZR-1750DHP.patch │ │ │ ├── 320-ARM-dts-BCM5301X-Add-serial-to-the-bootargs.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 │ │ │ ├── 700-b53-add-hacky-CPU-port-fixes-for-devices-not-using-p.patch │ │ │ ├── 701-b53-add-Tenda-AC9-switch-reset-workaround.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 │ │ │ └── 906-BCM5301x-uart1.patch │ │ ├── patches-6.6 │ │ │ ├── 030-v6.7-0001-ARM-dts-BCM5301X-Set-MACs-for-D-Link-DIR-885L.patch │ │ │ ├── 030-v6.7-0002-ARM-dts-BCM5301X-Set-MAC-address-for-Asus-RT-AC87U.patch │ │ │ ├── 030-v6.7-0003-ARM-dts-BCM5301X-Relicense-Felix-s-code-to-the-GPL-2.patch │ │ │ ├── 030-v6.7-0004-ARM-dts-BCM5301X-Relicense-Vivek-s-code-to-the-GPL-2.patch │ │ │ ├── 030-v6.7-0005-ARM-dts-BCM5301X-Explicitly-disable-unused-switch-CP.patch │ │ │ ├── 030-v6.7-0006-ARM-dts-BCM5301X-Set-fixed-link-for-extra-Netgear-R8.patch │ │ │ ├── 030-v6.7-0007-ARM-dts-BCM5301X-Set-switch-ports-for-Linksys-EA9200.patch │ │ │ ├── 040-v6.11-ARM-dts-broadcom-convert-NVMEM-content-to-layout-syntax.patch │ │ │ ├── 050-v6.13-ARM-dts-meraki-mr26-set-mac-address-for-gmac0.patch │ │ │ ├── 051-ARM-dts-meraki-mr26-wifi-MACs-in-dts.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 │ │ │ ├── 332-Meraki-MX6X-partition-fixups.patch │ │ │ ├── 333-bcm53xx-dts-meraki-mx6x-add-OpenWrt-specific-LED-ali.patch │ │ │ ├── 500-UBI-Detect-EOF-mark-and-erase-all-remaining-blocks.patch │ │ │ ├── 600-net-disable-GRO-by-default.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 │ │ ├── config-5.4 │ │ ├── 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 │ │ │ ├── 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 │ │ ├── patches-5.4 │ │ │ ├── 010-v5.8-MIPS-BCM63xx-fix-6328-boot-selection-bit.patch │ │ │ ├── 021-v5.8-mtd-rawnand-brcmnand-improve-hamming-oob-layout.patch │ │ │ ├── 023-v5.8-mtd-rawnand-brcmnand-rename-v4-registers.patch │ │ │ ├── 025-v5.8-mtd-rawnand-brcmnand-rename-page-sizes.patch │ │ │ ├── 026-v5.8-mtd-rawnand-brcmnand-support-v2.1-v2.2-controllers.patch │ │ │ ├── 030-v5.9-leds-bcm6328-support-second-hw-blinking-interval.patch │ │ │ ├── 031-v5.9-MIPS-BCM63xx-add-endif-comments.patch │ │ │ ├── 032-v5.9-MIPS-BCM63xx-improve-CFE-version-detection.patch │ │ │ ├── 033-v5.9-mtd-parsers-bcm63xx-simplify-CFE-detection.patch │ │ │ ├── 040-v5.12-bcm63xx_enet-batch-process-rx-path.patch │ │ │ ├── 041-v5.12-bcm63xx_enet-add-BQL-support.patch │ │ │ ├── 042-v5.12-bcm63xx_enet-add-xmit_more-support.patch │ │ │ ├── 043-v5.12-bcm63xx_enet-alloc-rx-skb-with-NET_IP_ALIGN.patch │ │ │ ├── 044-v5.12-bcm63xx_enet-consolidate-rx-SKB-ring-cleanup-code.patch │ │ │ ├── 045-v5.12-bcm63xx_enet-convert-to-build_skb.patch │ │ │ ├── 046-v5.12-bcm63xx_enet-improve-rx-loop.patch │ │ │ ├── 047-v5.12-bcm63xx_enet-fix-kernel-panic.patch │ │ │ ├── 100-MIPS-BCM63XX-add-USB-host-clock-enable-delay.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 │ │ │ ├── 502-board-bcm6358-DWV-S0_fixes.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.15 │ │ ├── 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.15 │ │ │ ├── 100-irqchip-add-support-for-bcm6345-style-external-inter.patch │ │ │ ├── 200-mips-bmips-automatically-detect-CPU-frequency.patch │ │ │ ├── 201-mips-bmips-automatically-detect-RAM-size.patch │ │ │ ├── 202-mips-bmips-tweak-Kconfig-options.patch │ │ │ ├── 210-macronix_nand_block_protection_support.patch │ │ │ ├── 500-net-broadcom-add-BCM6368-enetsw-controller-driver.patch │ │ │ ├── 501-net-broadcom-add-BCM6348-enet-controller-driver.patch │ │ │ ├── 502-net-mdio-mux-bcm6368-allow-disabling.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 │ │ │ ├── 700-leds-add-support-for-Sercomm-MSP430-LED-controller.patch │ │ │ └── 800-jffs2-work-around-unaligned-accesses-failing-on-bcm6.patch │ │ └── profiles │ │ │ └── default.mk │ ├── gemini │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ └── uci-defaults │ │ │ │ │ └── 09_fix-checksum │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 05_set_ether_mac_gemini │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-5.10 │ │ ├── config-5.4 │ │ ├── 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.4 │ │ │ ├── 0001-usb-host-fotg2-add-Gemini-specific-handling.patch │ │ │ ├── 0002-ARM-dts-Augment-DIR-685-partition-table-for-OpenWrt.patch │ │ │ ├── 0003-ARM-dts-gemini-Rename-IDE-nodes.patch │ │ │ └── 0004-ARM-dts-gemini-Add-thermal-zone-to-DIR-685.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 │ │ │ ├── 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 │ │ │ ├── 411-v6.0-mtd-parsers-add-support-for-Sercomm-partitions.patch │ │ │ ├── 414-v6.1-mtd-allow-getting-MTD-device-associated-with-a-speci.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 │ │ │ ├── 605-v5.12-net-export-dev_set_threaded-symbol.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-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.18-netfilter-flowtable-move-dst_check-to-packet-path.patch │ │ │ ├── 611-v5.12-net-ethernet-mediatek-support-setting-MTU.patch │ │ │ ├── 612-v5.15-netfilter-conntrack-sanitize-table-size-default-sett.patch │ │ │ ├── 615-v5.14-ip-Treat-IPv4-segment-s-lowest-address-as-unicast.patch │ │ │ ├── 630-v5.15-page_pool_frag_support.patch │ │ │ ├── 631-v6.3-net-page_pool-use-in_softirq-instead.patch │ │ │ ├── 632-v6.3-net-add-helper-eth_addr_add.patch │ │ │ ├── 633-v6.3-skbuff-Fix-a-race-between-coalescing-and-releasing-S.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-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 │ │ │ ├── 796-v5.14-net-phy-realtek-add-dt-property-to-disable-CLKOUT-cl.patch │ │ │ ├── 797-v5.17-net-usb-ax88179_178a-add-TSO-feature.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 │ │ │ ├── 801-v6.1-nvmem-add-driver-handling-U-Boot-environment-variabl.patch │ │ │ ├── 802-v5.19-nvmem-core-support-passing-DT-node-in-cell-info.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-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.17-net-skb-introduce-kfree_skb_reason.patch │ │ ├── backport-5.15 │ │ │ ├── 020-v6.1-01-mm-x86-arm64-add-arch_has_hw_pte_young.patch │ │ │ ├── 020-v6.1-02-mm-x86-add-CONFIG_ARCH_HAS_NONLEAF_PMD_YOUNG.patch │ │ │ ├── 020-v6.1-03-mm-vmscan.c-refactor-shrink_node.patch │ │ │ ├── 020-v6.1-04-Revert-include-linux-mm_inline.h-fold-__update_lru_s.patch │ │ │ ├── 020-v6.1-05-mm-multi-gen-LRU-groundwork.patch │ │ │ ├── 020-v6.1-06-mm-multi-gen-LRU-minimal-implementation.patch │ │ │ ├── 020-v6.1-07-mm-multi-gen-LRU-exploit-locality-in-rmap.patch │ │ │ ├── 020-v6.1-08-mm-multi-gen-LRU-support-page-table-walks.patch │ │ │ ├── 020-v6.1-09-mm-multi-gen-LRU-optimize-multiple-memcgs.patch │ │ │ ├── 020-v6.1-10-mm-multi-gen-LRU-kill-switch.patch │ │ │ ├── 020-v6.1-11-mm-multi-gen-LRU-thrashing-prevention.patch │ │ │ ├── 020-v6.1-12-mm-multi-gen-LRU-debugfs-interface.patch │ │ │ ├── 020-v6.1-13-mm-mglru-don-t-sync-disk-for-each-aging-cycle.patch │ │ │ ├── 020-v6.1-14-mm-multi-gen-LRU-retry-pages-written-back-while-isol.patch │ │ │ ├── 020-v6.1-15-mm-multi-gen-LRU-move-lru_gen_add_mm-out-of-IRQ-off-.patch │ │ │ ├── 020-v6.1-17-mm-add-dummy-pmd_young-for-architectures-not-having-.patch │ │ │ ├── 020-v6.1-18-mm-introduce-arch_has_hw_nonleaf_pmd_young.patch │ │ │ ├── 020-v6.2-16-mm-multi-gen-LRU-fix-crash-during-cgroup-migration.patch │ │ │ ├── 020-v6.3-19-mm-add-vma_has_recency.patch │ │ │ ├── 020-v6.3-20-mm-support-POSIX_FADV_NOREUSE.patch │ │ │ ├── 020-v6.3-21-mm-multi-gen-LRU-rename-lru_gen_struct-to-lru_gen_pa.patch │ │ │ ├── 020-v6.3-22-mm-multi-gen-LRU-rename-lrugen-lists-to-lrugen-pages.patch │ │ │ ├── 020-v6.3-23-mm-multi-gen-LRU-remove-eviction-fairness-safeguard.patch │ │ │ ├── 020-v6.3-24-mm-multi-gen-LRU-remove-aging-fairness-safeguard.patch │ │ │ ├── 020-v6.3-25-mm-multi-gen-LRU-shuffle-should_run_aging.patch │ │ │ ├── 020-v6.3-26-mm-multi-gen-LRU-per-node-lru_gen_page-lists.patch │ │ │ ├── 020-v6.3-27-mm-multi-gen-LRU-clarify-scan_control-flags.patch │ │ │ ├── 020-v6.3-28-mm-multi-gen-LRU-simplify-arch_has_hw_pte_young-chec.patch │ │ │ ├── 020-v6.3-29-mm-multi-gen-LRU-avoid-futile-retries.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 │ │ │ ├── 201-v5.16-scripts-dtc-Update-to-upstream-version-v1.6.1-19-g0a.patch │ │ │ ├── 300-v5.18-pinctrl-qcom-Return--EINVAL-for-setting-affinity-if-no-IRQ-parent.patch │ │ │ ├── 301-v5.16-soc-qcom-smem-Support-reserved-memory-description.patch │ │ │ ├── 330-v5.16-01-MIPS-kernel-proc-add-CPU-option-reporting.patch │ │ │ ├── 330-v5.16-02-MIPS-Fix-using-smp_processor_id-in-preemptible-in-sh.patch │ │ │ ├── 331-v5.19-mtd-spinand-Add-support-for-XTX-XT26G0xA.patch │ │ │ ├── 344-v5.18-01-phy-marvell-phy-mvebu-a3700-comphy-Remove-port-from-.patch │ │ │ ├── 344-v5.18-02-phy-marvell-phy-mvebu-a3700-comphy-Add-native-kernel.patch │ │ │ ├── 345-v5.17-arm64-dts-marvell-armada-37xx-Add-xtal-clock-to-comp.patch │ │ │ ├── 346-v5.18-01-Revert-ata-ahci-mvebu-Make-SATA-PHY-optional-for-Arm.patch │ │ │ ├── 346-v5.18-02-Revert-usb-host-xhci-mvebu-make-USB-3.0-PHY-optional.patch │ │ │ ├── 346-v5.18-03-Revert-PCI-aardvark-Fix-initialization-with-old-Marv.patch │ │ │ ├── 347-v6.0-phy-marvell-phy-mvebu-a3700-comphy-Remove-broken-res.patch │ │ │ ├── 350-v5.18-regmap-add-configurable-downshift-for-addresses.patch │ │ │ ├── 351-v5.18-regmap-allow-a-defined-reg_base-to-be-added-to-every.patch │ │ │ ├── 352-v6.3-regmap-apply-reg_base-and-reg_downshift-for-single-r.patch │ │ │ ├── 403-v6.1-mtd-allow-getting-MTD-device-associated-with-a-speci.patch │ │ │ ├── 407-v5.17-mtd-parsers-qcom-Don-t-print-error-message-on-EPROBE.patch │ │ │ ├── 410-v5.18-mtd-parsers-trx-allow-to-use-on-MediaTek-MIPS-SoCs.patch │ │ │ ├── 423-v6.3-mtd-spinand-macronix-use-scratch-buffer-for-DMA-oper.patch │ │ │ ├── 600-v5.18-page_pool-Add-allocation-stats.patch │ │ │ ├── 601-v5.18-page_pool-Add-recycle-stats.patch │ │ │ ├── 602-v5.18-page_pool-Add-function-to-batch-and-return-stats.patch │ │ │ ├── 603-v5.19-page_pool-Add-recycle-stats-to-page_pool_put_page_bu.patch │ │ │ ├── 604-v5.19-net-page_pool-introduce-ethtool-stats.patch │ │ │ ├── 605-v5.18-xdp-introduce-flags-field-in-xdp_buff-xdp_frame.patch │ │ │ ├── 606-v5.18-xdp-add-frags-support-to-xdp_return_-buff-frame.patch │ │ │ ├── 607-v5.18-net-skbuff-add-size-metadata-to-skb_shared_info-for-.patch │ │ │ ├── 608-v5.18-net-veth-Account-total-xdp_frame-len-running-ndo_xdp.patch │ │ │ ├── 609-v5.18-veth-Allow-jumbo-frames-in-xdp-mode.patch │ │ │ ├── 611-v6.3-net-add-helper-eth_addr_add.patch │ │ │ ├── 700-v5.17-net-dsa-introduce-tagger-owned-storage-for-private.patch │ │ │ ├── 701-v5.17-dsa-make-tagging-protocols-connect-to-individual-switches.patch │ │ │ ├── 702-v5.19-00-net-ethernet-mtk_eth_soc-add-support-for-coherent-DM.patch │ │ │ ├── 702-v5.19-02-net-ethernet-mtk_eth_soc-add-support-for-Wireless-Et.patch │ │ │ ├── 702-v5.19-03-net-ethernet-mtk_eth_soc-implement-flow-offloading-t.patch │ │ │ ├── 702-v5.19-05-net-ethernet-mtk_eth_soc-add-ipv6-flow-offload-suppo.patch │ │ │ ├── 702-v5.19-06-net-ethernet-mtk_eth_soc-support-TC_SETUP_BLOCK-for-.patch │ │ │ ├── 702-v5.19-07-net-ethernet-mtk_eth_soc-allocate-struct-mtk_ppe-sep.patch │ │ │ ├── 702-v5.19-08-net-ethernet-mtk_eth_soc-rework-hardware-flow-table-.patch │ │ │ ├── 702-v5.19-09-net-ethernet-mtk_eth_soc-remove-bridge-flow-offload-.patch │ │ │ ├── 702-v5.19-10-net-ethernet-mtk_eth_soc-support-creating-mac-addres.patch │ │ │ ├── 702-v5.19-11-net-ethernet-mtk_eth_soc-wed-fix-sparse-endian-warni.patch │ │ │ ├── 702-v5.19-12-net-ethernet-mtk_eth_soc-fix-return-value-check-in-m.patch │ │ │ ├── 702-v5.19-13-net-ethernet-mtk_eth_soc-use-standard-property-for-c.patch │ │ │ ├── 702-v5.19-14-net-ethernet-mtk_eth_soc-use-after-free-in-__mtk_ppe.patch │ │ │ ├── 702-v5.19-15-net-ethernet-mtk_eth_soc-add-check-for-allocation-fa.patch │ │ │ ├── 702-v5.19-16-eth-mtk_eth_soc-silence-the-GCC-12-array-bounds-warn.patch │ │ │ ├── 702-v5.19-17-net-ethernet-mtk_eth_soc-rely-on-GFP_KERNEL-for-dma_.patch │ │ │ ├── 702-v5.19-18-net-ethernet-mtk_eth_soc-move-tx-dma-desc-configurat.patch │ │ │ ├── 702-v5.19-19-net-ethernet-mtk_eth_soc-add-txd_size-to-mtk_soc_dat.patch │ │ │ ├── 702-v5.19-20-net-ethernet-mtk_eth_soc-rely-on-txd_size-in-mtk_tx_.patch │ │ │ ├── 702-v5.19-21-net-ethernet-mtk_eth_soc-rely-on-txd_size-in-mtk_des.patch │ │ │ ├── 702-v5.19-22-net-ethernet-mtk_eth_soc-rely-on-txd_size-in-txd_to_.patch │ │ │ ├── 702-v5.19-23-net-ethernet-mtk_eth_soc-add-rxd_size-to-mtk_soc_dat.patch │ │ │ ├── 702-v5.19-24-net-ethernet-mtk_eth_soc-rely-on-txd_size-field-in-m.patch │ │ │ ├── 702-v5.19-25-net-ethernet-mtk_eth_soc-rely-on-rxd_size-field-in-m.patch │ │ │ ├── 702-v5.19-26-net-ethernet-mtk_eth_soc-introduce-device-register-m.patch │ │ │ ├── 702-v5.19-27-net-ethernet-mtk_eth_soc-introduce-MTK_NETSYS_V2-sup.patch │ │ │ ├── 702-v5.19-28-net-ethernet-mtk_eth_soc-convert-ring-dma-pointer-to.patch │ │ │ ├── 702-v5.19-29-net-ethernet-mtk_eth_soc-convert-scratch_ring-pointe.patch │ │ │ ├── 702-v5.19-30-net-ethernet-mtk_eth_soc-introduce-support-for-mt798.patch │ │ │ ├── 702-v5.19-31-net-ethernet-mtk_eth_soc-fix-error-code-in-mtk_flow_.patch │ │ │ ├── 702-v5.19-33-net-ethernet-mtk_eth_soc-enable-rx-cksum-offload-for.patch │ │ │ ├── 702-v5.19-34-eth-mtk_ppe-fix-up-after-merge.patch │ │ │ ├── 703-00-v5.16-net-convert-users-of-bitmap_foo-to-linkmode_foo.patch │ │ │ ├── 703-01-v5.16-net-phylink-add-MAC-phy_interface_t-bitmap.patch │ │ │ ├── 703-02-v5.16-net-phylink-use-supported_interfaces-for-phylink-val.patch │ │ │ ├── 703-03-v5.16-net-dsa-populate-supported_interfaces-member.patch │ │ │ ├── 703-04-v5.17-net-dsa-consolidate-phylink-creation.patch │ │ │ ├── 703-05-v5.17-net-dsa-replace-phylink_get_interfaces-with-phylink_.patch │ │ │ ├── 703-06-v5.18-net-dsa-add-support-for-phylink-mac_select_pcs.patch │ │ │ ├── 703-07-v5.16-net-phy-add-phy_interface_t-bitmap-support.patch │ │ │ ├── 703-08-v5.17-net-phylink-add-mac_select_pcs-method-to-phylink_mac.patch │ │ │ ├── 703-09-v5.17-net-phylink-add-generic-validate-implementation.patch │ │ │ ├── 703-11-v5.17-net-phylink-add-pcs_validate-method.patch │ │ │ ├── 703-12-v5.17-net-phylink-add-legacy_pre_march2020-indicator.patch │ │ │ ├── 703-13-v5.17-net-dsa-mark-DSA-phylink-as-legacy_pre_march2020.patch │ │ │ ├── 703-14-v5.17-net-phylink-use-legacy_pre_march2020.patch │ │ │ ├── 703-15-v5.18-net-phy-phylink-fix-DSA-mac_select_pcs-introduction.patch │ │ │ ├── 703-16-v5.16-net-mvneta-populate-supported_interfaces-member.patch │ │ │ ├── 703-17-v5.16-net-mvneta-remove-interface-checks-in-mvneta_validat.patch │ │ │ ├── 703-18-v5.16-net-mvneta-drop-use-of-phylink_helper_basex_speed.patch │ │ │ ├── 703-19-v5.17-net-mvneta-use-phylink_generic_validate.patch │ │ │ ├── 703-20-v5.17-net-mvneta-mark-as-a-legacy_pre_march2020-driver.patch │ │ │ ├── 704-01-v5.17-net-mtk_eth_soc-populate-supported_interfaces-member.patch │ │ │ ├── 704-02-v5.17-net-mtk_eth_soc-remove-interface-checks-in-mtk_valid.patch │ │ │ ├── 704-03-v5.17-net-mtk_eth_soc-drop-use-of-phylink_helper_basex_spe.patch │ │ │ ├── 704-04-v5.17-net-mtk_eth_soc-use-phylink_generic_validate.patch │ │ │ ├── 704-05-v5.17-net-mtk_eth_soc-mark-as-a-legacy_pre_march2020-drive.patch │ │ │ ├── 704-06-v5.19-eth-mtk_eth_soc-remove-a-copy-of-the-NAPI_POLL_WEIGH.patch │ │ │ ├── 704-07-v5.19-mtk_eth_soc-remove-unused-mac-mode.patch │ │ │ ├── 704-08-v5.19-net-mtk_eth_soc-remove-unused-sgmii-flags.patch │ │ │ ├── 704-09-v5.19-net-mtk_eth_soc-add-mask-and-update-PCS-speed-defini.patch │ │ │ ├── 704-10-v5.19-net-mtk_eth_soc-correct-802.3z-speed-setting.patch │ │ │ ├── 704-11-v5.19-net-mtk_eth_soc-correct-802.3z-duplex-setting.patch │ │ │ ├── 704-12-v5.19-net-mtk_eth_soc-stop-passing-phylink-state-to-sgmii-.patch │ │ │ ├── 704-13-v5.19-net-mtk_eth_soc-provide-mtk_sgmii_config.patch │ │ │ ├── 704-14-v5.19-net-mtk_eth_soc-add-fixme-comment-for-state-speed-us.patch │ │ │ ├── 704-16-v5.19-net-mtk_eth_soc-move-restoration-of-SYSCFG0-to-mac_f.patch │ │ │ ├── 704-17-v5.19-net-mtk_eth_soc-convert-code-structure-to-suit-split.patch │ │ │ ├── 704-18-v5.19-net-mtk_eth_soc-partially-convert-to-phylink_pcs.patch │ │ │ ├── 705-01-v5.17-net-dsa-mt7530-iterate-using-dsa_switch_for_each_use.patch │ │ │ ├── 705-02-v5.19-net-dsa-mt7530-populate-supported_interfaces-and-mac.patch │ │ │ ├── 705-03-v5.19-net-dsa-mt7530-remove-interface-checks.patch │ │ │ ├── 705-04-v5.19-net-dsa-mt7530-drop-use-of-phylink_helper_basex_spee.patch │ │ │ ├── 705-05-v5.19-net-dsa-mt7530-only-indicate-linkmodes-that-can-be-s.patch │ │ │ ├── 705-06-v5.19-net-dsa-mt7530-switch-to-use-phylink_get_linkmodes.patch │ │ │ ├── 705-07-v5.19-net-dsa-mt7530-partially-convert-to-phylink_pcs.patch │ │ │ ├── 705-08-v5.19-net-dsa-mt7530-move-autoneg-handling-to-PCS-validati.patch │ │ │ ├── 705-09-v5.19-net-dsa-mt7530-mark-as-non-legacy.patch │ │ │ ├── 705-10-v5.19-net-dsa-mt753x-fix-pcs-conversion-regression.patch │ │ │ ├── 705-11-v6.0-net-dsa-mt7530-rework-mt7530_hw_vlan_-add-del.patch │ │ │ ├── 705-13-v6.0-net-dsa-mt7530-get-cpu-port-via-dp-cpu_dp-instead-of.patch │ │ │ ├── 706-00-v6.0-net-ethernet-mtk_eth_soc-rely-on-page_pool-for-singl.patch │ │ │ ├── 706-01-v6.0-net-ethernet-mtk_eth_soc-add-basic-XDP-support.patch │ │ │ ├── 706-02-v6.0-net-ethernet-mtk_eth_soc-introduce-xdp-ethtool-count.patch │ │ │ ├── 706-03-v6.0-net-ethernet-mtk_eth_soc-add-xmit-XDP-support.patch │ │ │ ├── 706-04-v6.0-net-ethernet-mtk_eth_soc-add-support-for-page_pool_g.patch │ │ │ ├── 706-05-v6.0-net-ethernet-mtk_eth_soc-introduce-mtk_xdp_frame_map.patch │ │ │ ├── 706-06-v6.0-net-ethernet-mtk_eth_soc-introduce-xdp-multi-frag-su.patch │ │ │ ├── 707-v6.3-net-pcs-add-driver-for-MediaTek-SGMII-PCS.patch │ │ │ ├── 710-v6.0-net-ethernet-mtk_eth_soc-fix-hw-hash-reporting-for-M.patch │ │ │ ├── 711-v6.0-01-net-ethernet-mtk_eth_soc-fix-off-by-one-check-of-ARR.patch │ │ │ ├── 711-v6.0-02-net-ethernet-mtk_ppe-fix-possible-NULL-pointer-deref.patch │ │ │ ├── 711-v6.0-03-net-ethernet-mtk-ppe-fix-traffic-offload-with-bridge.patch │ │ │ ├── 711-v6.0-04-net-ethernet-mtk_eth_soc-remove-mtk_foe_entry_timest.patch │ │ │ ├── 712-v6.0-net-ethernet-mtk_eth_soc-enable-XDP-support-just-for.patch │ │ │ ├── 713-v6.0-net-ethernet-mtk_eth_soc-move-gdma_to_ppe-and-ppe_ba.patch │ │ │ ├── 714-v6.0-net-ethernet-mtk_eth_soc-move-ppe-table-hash-offset-.patch │ │ │ ├── 715-v6.0-net-ethernet-mtk_eth_soc-add-the-capability-to-run-m.patch │ │ │ ├── 716-v6.0-net-ethernet-mtk_eth_soc-move-wdma_base-definitions-.patch │ │ │ ├── 717-v6.0-net-ethernet-mtk_eth_soc-add-foe_entry_size-to-mtk_e.patch │ │ │ ├── 718-v6.0-net-ethernet-mtk_eth_soc-fix-typo-in-__mtk_foe_entry.patch │ │ │ ├── 719-v6.0-net-ethernet-mtk_eth_soc-check-max-allowed-value-in-.patch │ │ │ ├── 720-v6.0-net-ethernet-mtk_eth_wed-add-mtk_wed_configure_irq-a.patch │ │ │ ├── 721-v6.0-net-ethernet-mtk_eth_wed-add-wed-support-for-mt7986-.patch │ │ │ ├── 722-v6.0-net-ethernet-mtk_eth_wed-add-axi-bus-support.patch │ │ │ ├── 723-v6.0-net-ethernet-mtk_eth_soc-introduce-flow-offloading-s.patch │ │ │ ├── 724-v6.0-net-ethernet-mtk_eth_soc-fix-wrong-use-of-new-helper.patch │ │ │ ├── 724-v6.2-net-ethernet-mtk_eth_soc-enable-flow-offloading-supp.patch │ │ │ ├── 725-v6.0-net-ethernet-mtk_eth_soc-fix-usage-of-foe_entry_size.patch │ │ │ ├── 726-v6.0-net-ethernet-mtk_eth_soc-fix-mask-of-RX_DMA_GET_SPOR.patch │ │ │ ├── 727-v6.1-net-ethernet-mtk_eth_soc-fix-state-in-__mtk_foe_entr.patch │ │ │ ├── 728-v6.1-01-net-ethernet-mtk_eth_soc-fix-possible-memory-leak-in.patch │ │ │ ├── 728-v6.1-02-net-ethernet-mtk_eth_wed-add-missing-put_device-in-m.patch │ │ │ ├── 728-v6.1-03-net-ethernet-mtk_eth_wed-add-missing-of_node_put.patch │ │ │ ├── 728-v6.1-04-net-ethernet-mtk_eth_soc-fix-resource-leak-in-error-.patch │ │ │ ├── 728-v6.1-05-net-ethernet-mtk_eth_soc-fix-memory-leak-in-error-pa.patch │ │ │ ├── 729-01-v6.1-net-ethernet-mtk_wed-introduce-wed-mcu-support.patch │ │ │ ├── 729-02-v6.1-net-ethernet-mtk_wed-introduce-wed-wo-support.patch │ │ │ ├── 729-03-v6.1-net-ethernet-mtk_wed-rename-tx_wdma-array-in-rx_wdma.patch │ │ │ ├── 729-04-v6.1-net-ethernet-mtk_wed-add-configure-wed-wo-support.patch │ │ │ ├── 729-05-v6.1-net-ethernet-mtk_wed-add-rx-mib-counters.patch │ │ │ ├── 729-06-v6.1-net-ethernet-mtk_eth_soc-do-not-overwrite-mtu-config.patch │ │ │ ├── 729-07-v6.1-net-ethernet-mtk_eth_soc-remove-cpu_relax-in-mtk_pen.patch │ │ │ ├── 729-08-v6.2-net-ethernet-mtk_eth_soc-fix-RSTCTRL_PPE-0-1-definit.patch │ │ │ ├── 729-09-v6.2-net-ethernet-mtk_wed-add-wcid-overwritten-support-fo.patch │ │ │ ├── 729-10-v6.2-net-ethernet-mtk_wed-return-status-value-in-mtk_wdma.patch │ │ │ ├── 729-11-v6.2-net-ethernet-mtk_wed-move-MTK_WDMA_RESET_IDX_TX-conf.patch │ │ │ ├── 729-12-v6.2-net-ethernet-mtk_wed-update-mtk_wed_stop.patch │ │ │ ├── 729-13-v6.2-net-ethernet-mtk_wed-add-mtk_wed_rx_reset-routine.patch │ │ │ ├── 729-14-v6.2-net-ethernet-mtk_wed-add-reset-to-tx_ring_setup-call.patch │ │ │ ├── 729-15-v6.2-net-ethernet-mtk_wed-fix-sleep-while-atomic-in-mtk_w.patch │ │ │ ├── 729-16-v6.3-net-ethernet-mtk_wed-get-rid-of-queue-lock-for-rx-qu.patch │ │ │ ├── 729-17-v6.3-net-ethernet-mtk_wed-get-rid-of-queue-lock-for-tx-qu.patch │ │ │ ├── 729-18-v6.3-net-ethernet-mtk_eth_soc-introduce-mtk_hw_reset-util.patch │ │ │ ├── 729-19-v6.3-net-ethernet-mtk_eth_soc-introduce-mtk_hw_warm_reset.patch │ │ │ ├── 729-20-v6.3-net-ethernet-mtk_eth_soc-align-reset-procedure-to-ve.patch │ │ │ ├── 729-21-v6.3-net-ethernet-mtk_eth_soc-add-dma-checks-to-mtk_hw_re.patch │ │ │ ├── 729-22-v6.3-net-ethernet-mtk_wed-add-reset-reset_complete-callba.patch │ │ │ ├── 729-23-v6.3-net-ethernet-mtk_wed-add-reset-to-rx_ring_setup-call.patch │ │ │ ├── 730-01-v6.3-net-ethernet-mtk_eth_soc-account-for-vlan-in-rx-head.patch │ │ │ ├── 730-02-v6.3-net-ethernet-mtk_eth_soc-increase-tx-ring-side-for-Q.patch │ │ │ ├── 730-03-v6.3-net-ethernet-mtk_eth_soc-avoid-port_mg-assignment-on.patch │ │ │ ├── 730-04-v6.3-net-ethernet-mtk_eth_soc-implement-multi-queue-suppo.patch │ │ │ ├── 730-05-v6.3-net-dsa-tag_mtk-assign-per-port-queues.patch │ │ │ ├── 730-06-v6.3-net-ethernet-mediatek-ppe-assign-per-port-queues-for.patch │ │ │ ├── 730-08-v6.3-net-dsa-add-support-for-DSA-rx-offloading-via-metada.patch │ │ │ ├── 730-09-v6.3-net-ethernet-mtk_eth_soc-fix-VLAN-rx-hardware-accele.patch │ │ │ ├── 730-10-v6.3-net-ethernet-mtk_eth_soc-drop-packets-to-WDMA-if-the.patch │ │ │ ├── 730-12-v6.3-net-ethernet-mtk_eth_soc-disable-hardware-DSA-untagg.patch │ │ │ ├── 730-13-v6.3-net-ethernet-mtk_eth_soc-enable-special-tag-when-any.patch │ │ │ ├── 730-14-v6.3-net-ethernet-mtk_eth_soc-fix-DSA-TX-tag-hwaccel-for-.patch │ │ │ ├── 730-15-v6.3-net-ethernet-mtk_wed-No-need-to-clear-memory-after-a.patch │ │ │ ├── 730-16-v6.3-net-ethernet-mtk_wed-fix-some-possible-NULL-pointer-.patch │ │ │ ├── 730-17-v6.3-net-ethernet-mtk_wed-fix-possible-deadlock-if-mtk_we.patch │ │ │ ├── 730-18-v6.3-net-ethernet-mtk_eth_soc-fix-tx-throughput-regressio.patch │ │ │ ├── 733-v6.2-01-net-ethernet-mtk_eth_soc-Avoid-truncating-allocation.patch │ │ │ ├── 733-v6.2-02-net-mtk_eth_soc-add-definitions-for-PCS.patch │ │ │ ├── 733-v6.2-03-net-mtk_eth_soc-eliminate-unnecessary-error-handling.patch │ │ │ ├── 733-v6.2-04-net-mtk_eth_soc-add-pcs_get_state-implementation.patch │ │ │ ├── 733-v6.2-05-net-mtk_eth_soc-convert-mtk_sgmii-to-use-regmap_upda.patch │ │ │ ├── 733-v6.2-06-net-mtk_eth_soc-add-out-of-band-forcing-of-speed-and.patch │ │ │ ├── 733-v6.2-07-net-mtk_eth_soc-move-PHY-power-up.patch │ │ │ ├── 733-v6.2-08-net-mtk_eth_soc-move-interface-speed-selection.patch │ │ │ ├── 733-v6.2-09-net-mtk_eth_soc-add-advertisement-programming.patch │ │ │ ├── 733-v6.2-10-net-mtk_eth_soc-move-and-correct-link-timer-programm.patch │ │ │ ├── 733-v6.2-11-net-mtk_eth_soc-add-support-for-in-band-802.3z-negot.patch │ │ │ ├── 733-v6.2-12-net-mediatek-sgmii-ensure-the-SGMII-PHY-is-powered-d.patch │ │ │ ├── 733-v6.2-13-net-mediatek-sgmii-fix-duplex-configuration.patch │ │ │ ├── 733-v6.2-14-mtk_sgmii-enable-PCS-polling-to-allow-SFP-work.patch │ │ │ ├── 733-v6.3-15-net-ethernet-mtk_eth_soc-reset-PCS-state.patch │ │ │ ├── 733-v6.3-16-net-ethernet-mtk_eth_soc-only-write-values-if-needed.patch │ │ │ ├── 733-v6.3-18-net-ethernet-mtk_eth_soc-add-support-for-MT7981.patch │ │ │ ├── 733-v6.3-19-net-ethernet-mtk_eth_soc-set-MDIO-bus-clock-frequenc.patch │ │ │ ├── 733-v6.3-20-net-ethernet-mtk_eth_soc-switch-to-external-PCS-driv.patch │ │ │ ├── 733-v6.3-21-net-ethernet-mtk_eth_soc-add-missing-ppe-cache-flush.patch │ │ │ ├── 733-v6.4-22-net-mtk_eth_soc-use-WO-firmware-for-MT7981.patch │ │ │ ├── 733-v6.4-23-net-ethernet-mtk_eth_soc-fix-NULL-pointer-dereferenc.patch │ │ │ ├── 733-v6.4-24-net-ethernet-mtk_eth_soc-ppe-add-support-for-flow-ac.patch │ │ │ ├── 733-v6.4-25-net-ethernet-mediatek-fix-ppe-flow-accounting-for-v1.patch │ │ │ ├── 733-v6.4-26-net-ethernet-mtk_eth_soc-drop-generic-vlan-rx-offloa.patch │ │ │ ├── 733-v6.5-27-net-ethernet-mtk_eth_soc-always-mtk_get_ib1_pkt_type.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 │ │ │ ├── 750-v6.5-01-net-ethernet-mtk_ppe-add-MTK_FOE_ENTRY_V-1-2-_SIZE-m.patch │ │ │ ├── 750-v6.5-02-net-ethernet-mtk_eth_soc-remove-incorrect-PLL-config.patch │ │ │ ├── 750-v6.5-03-net-ethernet-mtk_eth_soc-remove-mac_pcs_get_state-an.patch │ │ │ ├── 750-v6.5-05-net-ethernet-mtk_eth_soc-add-version-in-mtk_soc_data.patch │ │ │ ├── 750-v6.5-06-net-ethernet-mtk_eth_soc-increase-MAX_DEVS-to-3.patch │ │ │ ├── 750-v6.5-07-net-ethernet-mtk_eth_soc-rely-on-MTK_MAX_DEVS-and-re.patch │ │ │ ├── 750-v6.5-08-net-ethernet-mtk_eth_soc-add-NETSYS_V3-version-suppo.patch │ │ │ ├── 750-v6.5-09-net-ethernet-mtk_eth_soc-convert-caps-in-mtk_soc_dat.patch │ │ │ ├── 750-v6.5-10-net-ethernet-mtk_eth_soc-convert-clock-bitmap-to-u64.patch │ │ │ ├── 750-v6.5-11-net-ethernet-mtk_eth_soc-add-basic-support-for-MT798.patch │ │ │ ├── 750-v6.5-12-net-ethernet-mtk_eth_soc-enable-page_pool-support-fo.patch │ │ │ ├── 750-v6.5-13-net-ethernet-mtk_eth_soc-enable-nft-hw-flowtable_off.patch │ │ │ ├── 750-v6.5-14-net-ethernet-mtk_eth_soc-support-per-flow-accounting.patch │ │ │ ├── 750-v6.5-15-net-ethernet-mtk_eth_soc-fix-NULL-pointer-on-hw-rese.patch │ │ │ ├── 750-v6.5-16-net-ethernet-mtk_eth_soc-fix-register-definitions-fo.patch │ │ │ ├── 750-v6.5-17-net-ethernet-mtk_eth_soc-add-reset-bits-for-MT7988.patch │ │ │ ├── 750-v6.5-18-net-ethernet-mtk_eth_soc-add-support-for-in-SoC-SRAM.patch │ │ │ ├── 750-v6.5-19-net-ethernet-mtk_eth_soc-support-36-bit-DMA-addressi.patch │ │ │ ├── 750-v6.5-20-net-ethernet-mtk_eth_soc-fix-uninitialized-variable.patch │ │ │ ├── 750-v6.5-21-net-ethernet-mtk_eth_soc-fix-pse_port-configuration-.patch │ │ │ ├── 764-01-v5.16-net-dsa-qca8k-fix-internal-delay-applied-to-the-wrong-PAD.patch │ │ │ ├── 764-02-v5.16-net-dsa-qca8k-fix-MTU-calculation.patch │ │ │ ├── 764-03-v5.17-net-next-net-dsa-qca8k-remove-redundant-check-in-parse_port_config.patch │ │ │ ├── 764-04-v5.17-net-next-net-dsa-qca8k-convert-to-GENMASK_FIELD_PREP_FIELD_GET.patch │ │ │ ├── 764-05-v5.17-net-next-net-dsa-qca8k-remove-extra-mutex_init-in-qca8k_setup.patch │ │ │ ├── 764-06-v5.17-net-next-net-dsa-qca8k-move-regmap-init-in-probe-and-set-it.patch │ │ │ ├── 764-07-v5.17-net-next-net-dsa-qca8k-initial-conversion-to-regmap-heper.patch │ │ │ ├── 764-08-v5.17-net-next-net-dsa-qca8k-add-additional-MIB-counter-and-.patch │ │ │ ├── 764-09-v5.17-net-next-net-dsa-qca8k-add-support-for-port-fast-aging.patch │ │ │ ├── 764-10-v5.17-net-next-net-dsa-qca8k-add-set_ageing_time-support.patch │ │ │ ├── 764-11-v5.17-net-next-net-dsa-qca8k-add-support-for-mdb_add-del.patch │ │ │ ├── 764-12-v5.17-net-next-net-dsa-qca8k-add-support-for-mirror-mode.patch │ │ │ ├── 764-13-v5.17-net-next-net-dsa-qca8k-add-LAG-support.patch │ │ │ ├── 764-14-v5.17-net-next-net-dsa-qca8k-fix-warning-in-LAG-feature.patch │ │ │ ├── 765-v5.17-01-net-next-net-dsa-reorder-PHY-initialization-with-MTU-setup-in.patch │ │ │ ├── 765-v5.17-02-net-next-net-dsa-merge-rtnl_lock-sections-in-dsa_slave_create.patch │ │ │ ├── 765-v5.17-03-net-next-net-dsa-stop-updating-master-MTU-from-master.c.patch │ │ │ ├── 765-v5.17-04-net-next-net-dsa-hold-rtnl_mutex-when-calling-dsa_master_-set.patch │ │ │ ├── 765-v5.17-05-net-next-net-dsa-first-set-up-shared-ports-then-non-shared-po.patch │ │ │ ├── 765-v5.17-06-net-next-net-dsa-setup-master-before-ports.patch │ │ │ ├── 766-v5.18-01-net-dsa-provide-switch-operations-for-tracking-the-m.patch │ │ │ ├── 766-v5.18-02-net-dsa-replay-master-state-events-in-dsa_tree_-setu.patch │ │ │ ├── 766-v5.18-03-net-dsa-tag_qca-convert-to-FIELD-macro.patch │ │ │ ├── 766-v5.18-04-net-dsa-tag_qca-move-define-to-include-linux-dsa.patch │ │ │ ├── 766-v5.18-05-net-dsa-tag_qca-enable-promisc_on_master-flag.patch │ │ │ ├── 766-v5.18-06-net-dsa-tag_qca-add-define-for-handling-mgmt-Etherne.patch │ │ │ ├── 766-v5.18-07-net-dsa-tag_qca-add-define-for-handling-MIB-packet.patch │ │ │ ├── 766-v5.18-08-net-dsa-tag_qca-add-support-for-handling-mgmt-and-MI.patch │ │ │ ├── 766-v5.18-09-net-dsa-qca8k-add-tracking-state-of-master-port.patch │ │ │ ├── 766-v5.18-10-net-dsa-qca8k-add-support-for-mgmt-read-write-in-Eth.patch │ │ │ ├── 766-v5.18-11-net-dsa-qca8k-add-support-for-mib-autocast-in-Ethern.patch │ │ │ ├── 766-v5.18-12-net-dsa-qca8k-add-support-for-phy-read-write-with-mg.patch │ │ │ ├── 766-v5.18-13-net-dsa-qca8k-move-page-cache-to-driver-priv.patch │ │ │ ├── 766-v5.18-14-net-dsa-qca8k-cache-lo-and-hi-for-mdio-write.patch │ │ │ ├── 766-v5.18-15-net-dsa-qca8k-add-support-for-larger-read-write-size.patch │ │ │ ├── 766-v5.18-16-net-dsa-qca8k-introduce-qca8k_bulk_read-write-functi.patch │ │ │ ├── 767-v5.18-net-dsa-qca8k-check-correct-variable-in-qca8k_phy_et.patch │ │ │ ├── 768-v5.18-net-dsa-qca8k-fix-noderef.cocci-warnings.patch │ │ │ ├── 769-v5.19-01-net-dsa-qca8k-drop-MTU-tracking-from-qca8k_priv.patch │ │ │ ├── 769-v5.19-02-net-dsa-qca8k-drop-port_sts-from-qca8k_priv.patch │ │ │ ├── 769-v5.19-03-net-dsa-qca8k-rework-and-simplify-mdiobus-logic.patch │ │ │ ├── 769-v5.19-04-net-dsa-qca8k-drop-dsa_switch_ops-from-qca8k_priv.patch │ │ │ ├── 769-v5.19-05-net-dsa-qca8k-correctly-handle-mdio-read-error.patch │ │ │ ├── 769-v5.19-06-net-dsa-qca8k-unify-bus-id-naming-with-legacy-and-OF.patch │ │ │ ├── 770-v6.0-net-dsa-qca8k-move-driver-to-qca-dir.patch │ │ │ ├── 771-v6.0-01-net-dsa-qca8k-cache-match-data-to-speed-up-access.patch │ │ │ ├── 771-v6.0-02-net-dsa-qca8k-make-mib-autocast-feature-optional.patch │ │ │ ├── 771-v6.0-03-net-dsa-qca8k-move-mib-struct-to-common-code.patch │ │ │ ├── 771-v6.0-04-net-dsa-qca8k-move-qca8k-read-write-rmw-and-reg-tabl.patch │ │ │ ├── 771-v6.0-05-net-dsa-qca8k-move-qca8k-bulk-read-write-helper-to-c.patch │ │ │ ├── 771-v6.0-06-net-dsa-qca8k-move-mib-init-function-to-common-code.patch │ │ │ ├── 771-v6.0-07-net-dsa-qca8k-move-port-set-status-eee-ethtool-stats.patch │ │ │ ├── 771-v6.0-08-net-dsa-qca8k-move-bridge-functions-to-common-code.patch │ │ │ ├── 771-v6.0-09-net-dsa-qca8k-move-set-age-MTU-port-enable-disable-f.patch │ │ │ ├── 771-v6.0-10-net-dsa-qca8k-move-port-FDB-MDB-function-to-common-c.patch │ │ │ ├── 771-v6.0-11-net-dsa-qca8k-move-port-mirror-functions-to-common-c.patch │ │ │ ├── 771-v6.0-12-net-dsa-qca8k-move-port-VLAN-functions-to-common-cod.patch │ │ │ ├── 771-v6.0-13-net-dsa-qca8k-move-port-LAG-functions-to-common-code.patch │ │ │ ├── 771-v6.0-14-net-dsa-qca8k-move-read_switch_id-function-to-common.patch │ │ │ ├── 772-v6.0-net-dsa-qca8k-fix-NULL-pointer-dereference-for-of_de.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 │ │ │ ├── 775-v5.16-net-phylink-add-phylink_set_10g_modes_helper.patch │ │ │ ├── 775-v6.0-01-net-ethernet-stmicro-stmmac-move-queue-reset-to-dedi.patch │ │ │ ├── 775-v6.0-02-net-ethernet-stmicro-stmmac-first-disable-all-queues.patch │ │ │ ├── 775-v6.0-03-net-ethernet-stmicro-stmmac-move-dma-conf-to-dedicat.patch │ │ │ ├── 775-v6.0-04-net-ethernet-stmicro-stmmac-generate-stmmac-dma-conf.patch │ │ │ ├── 775-v6.0-05-net-ethernet-stmicro-stmmac-permit-MTU-change-with-i.patch │ │ │ ├── 776-v5.16-net-ethernet-use-phylink_set_10g_modes.patch │ │ │ ├── 782-v6.1-net-dsa-mt7530-add-support-for-in-band-link-status.patch │ │ │ ├── 783-v6.1-net-sfp-re-implement-soft-state-polling-setup.patch │ │ │ ├── 784-v6.1-net-sfp-move-quirk-handling-into-sfp.c.patch │ │ │ ├── 785-v6.1-net-sfp-move-Alcatel-Lucent-3FE46541AA-fixup.patch │ │ │ ├── 786-v6.1-net-sfp-move-Huawei-MA5671A-fixup.patch │ │ │ ├── 787-v6.1-net-sfp-add-support-for-HALNy-GPON-SFP.patch │ │ │ ├── 788-v6.3-net-dsa-mt7530-use-external-PCS-driver.patch │ │ │ ├── 789-v6.3-net-sfp-add-quirk-enabling-2500Base-x-for-HG-MXPD-48.patch │ │ │ ├── 790-v6.4-0001-net-dsa-mt7530-make-some-noise-if-register-read-fail.patch │ │ │ ├── 790-v6.4-0002-net-dsa-mt7530-refactor-SGMII-PCS-creation.patch │ │ │ ├── 790-v6.4-0003-net-dsa-mt7530-use-unlocked-regmap-accessors.patch │ │ │ ├── 790-v6.4-0004-net-dsa-mt7530-use-regmap-to-access-switch-register-.patch │ │ │ ├── 790-v6.4-0005-net-dsa-mt7530-move-SGMII-PCS-creation-to-mt7530_pro.patch │ │ │ ├── 790-v6.4-0006-net-dsa-mt7530-introduce-mutex-helpers.patch │ │ │ ├── 790-v6.4-0007-net-dsa-mt7530-move-p5_intf_modes-function-to-mt7530.patch │ │ │ ├── 790-v6.4-0008-net-dsa-mt7530-introduce-mt7530_probe_common-helper-.patch │ │ │ ├── 790-v6.4-0009-net-dsa-mt7530-introduce-mt7530_remove_common-helper.patch │ │ │ ├── 790-v6.4-0011-net-dsa-mt7530-introduce-separate-MDIO-driver.patch │ │ │ ├── 790-v6.4-0012-net-dsa-mt7530-skip-locking-if-MDIO-bus-isn-t-presen.patch │ │ │ ├── 790-v6.4-0013-net-dsa-mt7530-introduce-driver-for-MT7988-built-in-.patch │ │ │ ├── 790-v6.4-0014-net-dsa-mt7530-fix-support-for-MT7531BE.patch │ │ │ ├── 791-v6.2-01-net-phy-Add-driver-for-Motorcomm-yt8521-gigabit-ethernet.patch │ │ │ ├── 791-v6.2-02-net-phy-fix-yt8521-duplicated-argument-to-or.patch │ │ │ ├── 791-v6.2-03-net-phy-add-Motorcomm-YT8531S-phy-id.patch │ │ │ ├── 791-v6.3-04-net-phy-fix-the-spelling-problem-of-Sentinel.patch │ │ │ ├── 791-v6.3-05-net-phy-motorcomm-change-the-phy-id-of-yt8521-and-yt8531s.patch │ │ │ ├── 791-v6.3-06-net-phy-Add-BIT-macro-for-Motorcomm-yt8521-yt8531-gigabit.patch │ │ │ ├── 791-v6.3-07-net-phy-Add-dts-support-for-Motorcomm-yt8521-gigabit.patch │ │ │ ├── 791-v6.3-08-net-phy-Add-dts-support-for-Motorcomm-yt8531s-gigabit.patch │ │ │ ├── 791-v6.3-09-net-phy-Add-driver-for-Motorcomm-yt8531-gigabit-ethernet.patch │ │ │ ├── 791-v6.3-10-net-phy-motorcomm-uninitialized-variables-in.patch │ │ │ ├── 791-v6.6-11-net-phy-motorcomm-Add-pad-drive-strength-cfg-support.patch │ │ │ ├── 792-01-v6.0-net-phylink-disable-PCS-polling-over-major-configura.patch │ │ │ ├── 792-02-v6.0-net-phylink-fix-NULL-pl-pcs-dereference-during-phyli.patch │ │ │ ├── 792-03-v6.6-net-phylink-add-pcs_enable-pcs_disable-methods.patch │ │ │ ├── 793-v6.6-net-pcs-lynxi-implement-pcs_disable-op.patch │ │ │ ├── 795-v6.3-02-cdc_ether-no-need-to-blacklist-any-r8152-devices.patch │ │ │ ├── 795-v6.3-05-r8152-reduce-the-control-transfer-of-rtl8152_get_ver.patch │ │ │ ├── 795-v6.3-06-r8152-Add-__GFP_NOWARN-to-big-allocations.patch │ │ │ ├── 795-v6.6-08-r8152-adjust-generic_ocp_write-function.patch │ │ │ ├── 795-v6.6-09-r8152-set-bp-in-bulk.patch │ │ │ ├── 795-v6.6-13-r8152-Block-future-register-access-if-register-acces.patch │ │ │ ├── 795-v6.6-14-r8152-break-the-loop-when-the-budget-is-exhausted.patch │ │ │ ├── 795-v6.6-15-net-usb-cdc_ether-add-u-blox-0x1313-composition.patch │ │ │ ├── 797-v5.17-net-usb-ax88179_178a-add-TSO-feature.patch │ │ │ ├── 798-net-next-net-sfp-add-quirk-for-Fiberstone-GPON-ONU-34-20BI.patch │ │ │ ├── 799-v6.0-net-mii-add-mii_bmcr_encode_fixed.patch │ │ │ ├── 802-v6.1-nvmem-add-driver-handling-U-Boot-environment-variabl.patch │ │ │ ├── 803-v5.19-nvmem-core-support-passing-DT-node-in-cell-info.patch │ │ │ ├── 810-v5.17-net-qmi_wwan-add-ZTE-MF286D-modem-19d2-1485.patch │ │ │ ├── 814-v6.3-leds-Move-led_init_default_state_get-to-the-global-h.patch │ │ │ ├── 815-v6.4-01-net-dsa-qca8k-move-qca8k_port_to_phy-to-header.patch │ │ │ ├── 815-v6.4-02-net-dsa-qca8k-add-LEDs-basic-support.patch │ │ │ ├── 815-v6.4-03-net-dsa-qca8k-add-LEDs-blink_set-support.patch │ │ │ ├── 815-v6.4-04-leds-Provide-stubs-for-when-CLASS_LED-NEW_LEDS-are-d.patch │ │ │ ├── 815-v6.4-05-net-phy-Add-a-binding-for-PHY-LEDs.patch │ │ │ ├── 815-v6.4-06-net-phy-phy_device-Call-into-the-PHY-driver-to-set-L.patch │ │ │ ├── 815-v6.4-07-net-phy-marvell-Add-software-control-of-the-LEDs.patch │ │ │ ├── 815-v6.4-08-net-phy-phy_device-Call-into-the-PHY-driver-to-set-L.patch │ │ │ ├── 815-v6.4-09-net-phy-marvell-Implement-led_blink_set.patch │ │ │ ├── 816-v6.4-net-phy-marvell-Fix-inconsistent-indenting-in-led_bl.patch │ │ │ ├── 817-v6.5-02-leds-trigger-netdev-Drop-NETDEV_LED_MODE_LINKUP-from.patch │ │ │ ├── 817-v6.5-03-leds-trigger-netdev-Rename-add-namespace-to-netdev-t.patch │ │ │ ├── 817-v6.5-04-leds-trigger-netdev-Convert-device-attr-to-macro.patch │ │ │ ├── 817-v6.5-05-leds-trigger-netdev-Use-mutex-instead-of-spinlocks.patch │ │ │ ├── 818-v6.5-01-leds-add-APIs-for-LEDs-hw-control.patch │ │ │ ├── 818-v6.5-02-leds-add-API-to-get-attached-device-for-LED-hw-contr.patch │ │ │ ├── 818-v6.5-03-Documentation-leds-leds-class-Document-new-Hardware-.patch │ │ │ ├── 818-v6.5-04-leds-trigger-netdev-refactor-code-setting-device-nam.patch │ │ │ ├── 818-v6.5-05-leds-trigger-netdev-introduce-check-for-possible-hw-.patch │ │ │ ├── 818-v6.5-06-leds-trigger-netdev-add-basic-check-for-hw-control-s.patch │ │ │ ├── 818-v6.5-07-leds-trigger-netdev-reject-interval-store-for-hw_con.patch │ │ │ ├── 818-v6.5-08-leds-trigger-netdev-add-support-for-LED-hw-control.patch │ │ │ ├── 818-v6.5-09-leds-trigger-netdev-validate-configured-netdev.patch │ │ │ ├── 818-v6.5-10-leds-trigger-netdev-init-mode-if-hw-control-already-.patch │ │ │ ├── 818-v6.5-11-leds-trigger-netdev-expose-netdev-trigger-modes-in-l.patch │ │ │ ├── 818-v6.5-12-net-dsa-qca8k-implement-hw_control-ops.patch │ │ │ ├── 818-v6.5-13-net-dsa-qca8k-add-op-to-get-ports-netdev.patch │ │ │ ├── 821-v5.16-Bluetooth-btusb-Support-public-address-configuration.patch │ │ │ ├── 822-v5.17-Bluetooth-btusb-Fix-application-of-sizeof-to-pointer.patch │ │ │ ├── 823-v5.18-Bluetooth-btusb-Add-a-new-PID-VID-13d3-3567-for-MT79.patch │ │ │ ├── 824-v5.19-Bluetooth-btusb-Add-a-new-PID-VID-0489-e0c8-for-MT79.patch │ │ │ ├── 825-v6.1-Bluetooth-btusb-Add-a-new-VID-PID-0e8d-0608-for-MT79.patch │ │ │ ├── 850-v5.17-0002-PCI-pci-bridge-emul-Add-definitions-for-missing-capa.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-v5.18-hwmon-lm70-Add-ti-tmp125-support.patch │ │ │ ├── 888-v6.0-arm64-enable-THP_SWAP-for-arm64.patch │ │ │ ├── 890-v6.2-mtd-spinand-winbond-fix-flash-detection.patch │ │ │ ├── 891-v6.2-mtd-spinand-winbond-add-W25N02KV.patch │ │ │ ├── 892-v6.5-mtd-spinand-winbond-Fix-ecc_get_status.patch │ │ │ ├── 893-v6.12-mtd-spinand-winbond-add-support-for-W25N01KV.patch │ │ │ └── 894-v6.8-net-ethtool-implement-ethtool_puts.patch │ │ ├── backport-5.4 │ │ │ ├── 010-Kbuild-don-t-hardcode-path-to-awk-in-scripts-ld-vers.patch │ │ │ ├── 011-kbuild-export-SUBARCH.patch │ │ │ ├── 030-modpost-add-a-helper-to-get-data-pointed-by-a-symbol.patch │ │ │ ├── 031-modpost-refactor-namespace_from_kstrtabns-to-not-har.patch │ │ │ ├── 041-v5.5-arm64-Implement-optimised-checksum-routine.patch │ │ │ ├── 042-v5.5-arm64-csum-Fix-pathological-zero-length-calls.patch │ │ │ ├── 080-wireguard-0001-crypto-lib-tidy-up-lib-crypto-Kconfig-and-Makefile.patch │ │ │ ├── 080-wireguard-0002-crypto-chacha-move-existing-library-code-into-lib-cr.patch │ │ │ ├── 080-wireguard-0003-crypto-x86-chacha-depend-on-generic-chacha-library-i.patch │ │ │ ├── 080-wireguard-0004-crypto-x86-chacha-expose-SIMD-ChaCha-routine-as-libr.patch │ │ │ ├── 080-wireguard-0005-crypto-arm64-chacha-depend-on-generic-chacha-library.patch │ │ │ ├── 080-wireguard-0006-crypto-arm64-chacha-expose-arm64-ChaCha-routine-as-l.patch │ │ │ ├── 080-wireguard-0007-crypto-arm-chacha-import-Eric-Biggers-s-scalar-accel.patch │ │ │ ├── 080-wireguard-0008-crypto-arm-chacha-remove-dependency-on-generic-ChaCh.patch │ │ │ ├── 080-wireguard-0009-crypto-arm-chacha-expose-ARM-ChaCha-routine-as-libra.patch │ │ │ ├── 080-wireguard-0010-crypto-mips-chacha-import-32r2-ChaCha-code-from-Zinc.patch │ │ │ ├── 080-wireguard-0011-crypto-mips-chacha-wire-up-accelerated-32r2-code-fro.patch │ │ │ ├── 080-wireguard-0012-crypto-chacha-unexport-chacha_generic-routines.patch │ │ │ ├── 080-wireguard-0013-crypto-poly1305-move-core-routines-into-a-separate-l.patch │ │ │ ├── 080-wireguard-0014-crypto-x86-poly1305-unify-Poly1305-state-struct-with.patch │ │ │ ├── 080-wireguard-0015-crypto-poly1305-expose-init-update-final-library-int.patch │ │ │ ├── 080-wireguard-0016-crypto-x86-poly1305-depend-on-generic-library-not-ge.patch │ │ │ ├── 080-wireguard-0017-crypto-x86-poly1305-expose-existing-driver-as-poly13.patch │ │ │ ├── 080-wireguard-0018-crypto-arm64-poly1305-incorporate-OpenSSL-CRYPTOGAMS.patch │ │ │ ├── 080-wireguard-0019-crypto-arm-poly1305-incorporate-OpenSSL-CRYPTOGAMS-N.patch │ │ │ ├── 080-wireguard-0020-crypto-mips-poly1305-incorporate-OpenSSL-CRYPTOGAMS-.patch │ │ │ ├── 080-wireguard-0022-crypto-testmgr-add-test-cases-for-Blake2s.patch │ │ │ ├── 080-wireguard-0023-crypto-blake2s-implement-generic-shash-driver.patch │ │ │ ├── 080-wireguard-0024-crypto-blake2s-x86_64-SIMD-implementation.patch │ │ │ ├── 080-wireguard-0025-crypto-curve25519-generic-C-library-implementations.patch │ │ │ ├── 080-wireguard-0026-crypto-curve25519-add-kpp-selftest.patch │ │ │ ├── 080-wireguard-0027-crypto-curve25519-implement-generic-KPP-driver.patch │ │ │ ├── 080-wireguard-0028-crypto-lib-curve25519-work-around-Clang-stack-spilli.patch │ │ │ ├── 080-wireguard-0029-crypto-curve25519-x86_64-library-and-KPP-implementat.patch │ │ │ ├── 080-wireguard-0030-crypto-arm-curve25519-import-Bernstein-and-Schwabe-s.patch │ │ │ ├── 080-wireguard-0031-crypto-arm-curve25519-wire-up-NEON-implementation.patch │ │ │ ├── 080-wireguard-0032-crypto-chacha20poly1305-import-construction-and-self.patch │ │ │ ├── 080-wireguard-0033-crypto-lib-chacha20poly1305-reimplement-crypt_from_s.patch │ │ │ ├── 080-wireguard-0034-crypto-chacha_generic-remove-unnecessary-setkey-func.patch │ │ │ ├── 080-wireguard-0035-crypto-x86-chacha-only-unregister-algorithms-if-regi.patch │ │ │ ├── 080-wireguard-0036-crypto-lib-chacha20poly1305-use-chacha20_crypt.patch │ │ │ ├── 080-wireguard-0037-crypto-arch-conditionalize-crypto-api-in-arch-glue-f.patch │ │ │ ├── 080-wireguard-0038-crypto-chacha-fix-warning-message-in-header-file.patch │ │ │ ├── 080-wireguard-0039-crypto-arm-curve25519-add-arch-specific-key-generati.patch │ │ │ ├── 080-wireguard-0040-crypto-lib-curve25519-re-add-selftests.patch │ │ │ ├── 080-wireguard-0041-crypto-poly1305-add-new-32-and-64-bit-generic-versio.patch │ │ │ ├── 080-wireguard-0042-crypto-x86-poly1305-import-unmodified-cryptogams-imp.patch │ │ │ ├── 080-wireguard-0043-crypto-x86-poly1305-wire-up-faster-implementations-f.patch │ │ │ ├── 080-wireguard-0044-crypto-arm-arm64-mips-poly1305-remove-redundant-non-.patch │ │ │ ├── 080-wireguard-0045-crypto-curve25519-Fix-selftest-build-error.patch │ │ │ ├── 080-wireguard-0046-crypto-x86-poly1305-fix-.gitignore-typo.patch │ │ │ ├── 080-wireguard-0047-crypto-chacha20poly1305-add-back-missing-test-vector.patch │ │ │ ├── 080-wireguard-0048-crypto-x86-poly1305-emit-does-base-conversion-itself.patch │ │ │ ├── 080-wireguard-0049-crypto-arm-chacha-fix-build-failured-when-kernel-mod.patch │ │ │ ├── 080-wireguard-0050-crypto-Kconfig-allow-tests-to-be-disabled-when-manag.patch │ │ │ ├── 080-wireguard-0051-crypto-chacha20poly1305-prevent-integer-overflow-on-.patch │ │ │ ├── 080-wireguard-0052-crypto-x86-curve25519-support-assemblers-with-no-adx.patch │ │ │ ├── 080-wireguard-0053-crypto-arm64-chacha-correctly-walk-through-blocks.patch │ │ │ ├── 080-wireguard-0054-crypto-x86-curve25519-replace-with-formally-verified.patch │ │ │ ├── 080-wireguard-0055-crypto-x86-curve25519-leave-r12-as-spare-register.patch │ │ │ ├── 080-wireguard-0056-crypto-arm-64-poly1305-add-artifact-to-.gitignore-fi.patch │ │ │ ├── 080-wireguard-0057-crypto-arch-lib-limit-simd-usage-to-4k-chunks.patch │ │ │ ├── 080-wireguard-0058-crypto-lib-chacha20poly1305-Add-missing-function-dec.patch │ │ │ ├── 080-wireguard-0059-crypto-x86-chacha-sse3-use-unaligned-loads-for-state.patch │ │ │ ├── 080-wireguard-0060-crypto-x86-curve25519-Remove-unused-carry-variables.patch │ │ │ ├── 080-wireguard-0061-crypto-arm-curve25519-include-linux-scatterlist.h.patch │ │ │ ├── 080-wireguard-0062-crypto-arm-poly1305-Add-prototype-for-poly1305_block.patch │ │ │ ├── 080-wireguard-0063-crypto-curve25519-x86_64-Use-XORL-r32-32.patch │ │ │ ├── 080-wireguard-0064-crypto-poly1305-x86_64-Use-XORL-r32-32.patch │ │ │ ├── 080-wireguard-0065-crypto-x86-poly1305-Remove-assignments-with-no-effec.patch │ │ │ ├── 080-wireguard-0066-crypto-x86-poly1305-add-back-a-needed-assignment.patch │ │ │ ├── 080-wireguard-0067-crypto-Kconfig-CRYPTO_MANAGER_EXTRA_TESTS-requires-t.patch │ │ │ ├── 080-wireguard-0068-crypto-arm-chacha-neon-optimize-for-non-block-size-m.patch │ │ │ ├── 080-wireguard-0069-crypto-arm64-chacha-simplify-tail-block-handling.patch │ │ │ ├── 080-wireguard-0070-crypto-lib-chacha20poly1305-define-empty-module-exit.patch │ │ │ ├── 080-wireguard-0071-crypto-arm-chacha-neon-add-missing-counter-increment.patch │ │ │ ├── 080-wireguard-0072-net-WireGuard-secure-network-tunnel.patch │ │ │ ├── 080-wireguard-0073-wireguard-selftests-import-harness-makefile-for-test.patch │ │ │ ├── 080-wireguard-0074-wireguard-Kconfig-select-parent-dependency-for-crypt.patch │ │ │ ├── 080-wireguard-0075-wireguard-global-fix-spelling-mistakes-in-comments.patch │ │ │ ├── 080-wireguard-0076-wireguard-main-remove-unused-include-linux-version.h.patch │ │ │ ├── 080-wireguard-0077-wireguard-allowedips-use-kfree_rcu-instead-of-call_r.patch │ │ │ ├── 080-wireguard-0078-wireguard-selftests-remove-ancient-kernel-compatibil.patch │ │ │ ├── 080-wireguard-0079-wireguard-queueing-do-not-account-for-pfmemalloc-whe.patch │ │ │ ├── 080-wireguard-0080-wireguard-socket-mark-skbs-as-not-on-list-when-recei.patch │ │ │ ├── 080-wireguard-0081-wireguard-allowedips-fix-use-after-free-in-root_remo.patch │ │ │ ├── 080-wireguard-0082-wireguard-noise-reject-peers-with-low-order-public-k.patch │ │ │ ├── 080-wireguard-0083-wireguard-selftests-ensure-non-addition-of-peers-wit.patch │ │ │ ├── 080-wireguard-0084-wireguard-selftests-tie-socket-waiting-to-target-pid.patch │ │ │ ├── 080-wireguard-0085-wireguard-device-use-icmp_ndo_send-helper.patch │ │ │ ├── 080-wireguard-0086-wireguard-selftests-reduce-complexity-and-fix-make-r.patch │ │ │ ├── 080-wireguard-0087-wireguard-receive-reset-last_under_load-to-zero.patch │ │ │ ├── 080-wireguard-0088-wireguard-send-account-for-mtu-0-devices.patch │ │ │ ├── 080-wireguard-0089-wireguard-socket-remove-extra-call-to-synchronize_ne.patch │ │ │ ├── 080-wireguard-0090-wireguard-selftests-remove-duplicated-include-sys-ty.patch │ │ │ ├── 080-wireguard-0091-wireguard-queueing-account-for-skb-protocol-0.patch │ │ │ ├── 080-wireguard-0092-wireguard-receive-remove-dead-code-from-default-pack.patch │ │ │ ├── 080-wireguard-0093-wireguard-noise-error-out-precomputed-DH-during-hand.patch │ │ │ ├── 080-wireguard-0094-wireguard-send-remove-errant-newline-from-packet_enc.patch │ │ │ ├── 080-wireguard-0095-wireguard-queueing-cleanup-ptr_ring-in-error-path-of.patch │ │ │ ├── 080-wireguard-0096-wireguard-receive-use-tunnel-helpers-for-decapsulati.patch │ │ │ ├── 080-wireguard-0097-wireguard-selftests-use-normal-kernel-stack-size-on-.patch │ │ │ ├── 080-wireguard-0098-wireguard-socket-remove-errant-restriction-on-loopin.patch │ │ │ ├── 080-wireguard-0099-wireguard-send-receive-cond_resched-when-processing-.patch │ │ │ ├── 080-wireguard-0100-wireguard-selftests-initalize-ipv6-members-to-NULL-t.patch │ │ │ ├── 080-wireguard-0101-wireguard-send-receive-use-explicit-unlikely-branch-.patch │ │ │ ├── 080-wireguard-0102-wireguard-selftests-use-newer-iproute2-for-gcc-10.patch │ │ │ ├── 080-wireguard-0103-wireguard-noise-read-preshared-key-while-taking-lock.patch │ │ │ ├── 080-wireguard-0104-wireguard-queueing-preserve-flow-hash-across-packet-.patch │ │ │ ├── 080-wireguard-0105-wireguard-noise-separate-receive-counter-from-send-c.patch │ │ │ ├── 080-wireguard-0106-wireguard-noise-do-not-assign-initiation-time-in-if-.patch │ │ │ ├── 080-wireguard-0107-wireguard-device-avoid-circular-netns-references.patch │ │ │ ├── 080-wireguard-0108-wireguard-receive-account-for-napi_gro_receive-never.patch │ │ │ ├── 080-wireguard-0109-net-ip_tunnel-add-header_ops-for-layer-3-devices.patch │ │ │ ├── 080-wireguard-0110-wireguard-implement-header_ops-parse_protocol-for-AF.patch │ │ │ ├── 080-wireguard-0111-wireguard-queueing-make-use-of-ip_tunnel_parse_proto.patch │ │ │ ├── 080-wireguard-0112-netlink-consistently-use-NLA_POLICY_EXACT_LEN.patch │ │ │ ├── 080-wireguard-0113-netlink-consistently-use-NLA_POLICY_MIN_LEN.patch │ │ │ ├── 080-wireguard-0114-wireguard-noise-take-lock-when-removing-handshake-en.patch │ │ │ ├── 080-wireguard-0115-wireguard-peerlookup-take-lock-before-checking-hash-.patch │ │ │ ├── 080-wireguard-0116-wireguard-selftests-check-that-route_me_harder-packe.patch │ │ │ ├── 080-wireguard-0117-wireguard-avoid-double-unlikely-notation-when-using-.patch │ │ │ ├── 080-wireguard-0118-wireguard-socket-remove-bogus-__be32-annotation.patch │ │ │ ├── 080-wireguard-0119-wireguard-selftests-test-multiple-parallel-streams.patch │ │ │ ├── 080-wireguard-0120-wireguard-peer-put-frequently-used-members-above-cac.patch │ │ │ ├── 080-wireguard-0121-wireguard-device-do-not-generate-ICMP-for-non-IP-pac.patch │ │ │ ├── 080-wireguard-0122-wireguard-queueing-get-rid-of-per-peer-ring-buffers.patch │ │ │ ├── 080-wireguard-0123-wireguard-kconfig-use-arm-chacha-even-with-no-neon.patch │ │ │ ├── 080-wireguard-0124-crypto-mips-poly1305-enable-for-all-MIPS-processors.patch │ │ │ ├── 080-wireguard-0125-crypto-mips-add-poly1305-core.S-to-.gitignore.patch │ │ │ ├── 080-wireguard-0126-crypto-poly1305-fix-poly1305_core_setkey-declaration.patch │ │ │ ├── 080-wireguard-0127-wireguard-selftests-remove-old-conntrack-kconfig-val.patch │ │ │ ├── 080-wireguard-0128-wireguard-selftests-make-sure-rp_filter-is-disabled-.patch │ │ │ ├── 080-wireguard-0129-wireguard-do-not-use-O3.patch │ │ │ ├── 080-wireguard-0130-wireguard-use-synchronize_net-rather-than-synchroniz.patch │ │ │ ├── 080-wireguard-0131-wireguard-peer-allocate-in-kmem_cache.patch │ │ │ ├── 080-wireguard-0132-wireguard-allowedips-initialize-list-head-in-selftes.patch │ │ │ ├── 080-wireguard-0133-wireguard-allowedips-remove-nodes-in-O-1.patch │ │ │ ├── 080-wireguard-0134-wireguard-allowedips-allocate-nodes-in-kmem_cache.patch │ │ │ ├── 080-wireguard-0135-wireguard-allowedips-free-empty-intermediate-nodes-w.patch │ │ │ ├── 080-wireguard-0136-lib-crypto-blake2s-move-hmac-construction-into-wireg.patch │ │ │ ├── 300-MIPS-Exclude-more-dsemul-code-when-CONFIG_MIPS_FP_SU.patch │ │ │ ├── 310-mips-Kconfig-Add-ARCH_HAS_FORTIFY_SOURCE.patch │ │ │ ├── 310-v5.6-mips-vdso-fix-jalr-t9-crash-in-vdso-code.patch │ │ │ ├── 311-MIPS-Fix-exception-handler-memcpy.patch │ │ │ ├── 343-netfilter-nft_flow_offload-handle-netdevice-events-f.patch │ │ │ ├── 370-netfilter-nf_flow_table-fix-offloaded-connection-tim.patch │ │ │ ├── 371-netfilter-nf_flow_table-fix-up-ct-state-of-flows-aft.patch │ │ │ ├── 393-v5.5-sch_cake-drop-unused-variable-tin_quantum_prio.patch │ │ │ ├── 395-v5.8-net-sch_cake-Take-advantage-of-skb-hash-where-appropriate.patch │ │ │ ├── 399-5.9-sch_cake-add-RFC-8622-LE-PHB-support-to-CAKE-diffser.patch │ │ │ ├── 400-v5.8-dt-bindings-mtd-partition-Document-the-slc-mode-prop.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 │ │ │ ├── 410-mtd-fix-calculating-partition-end-address.patch │ │ │ ├── 411-v6.0-mtd-parsers-add-support-for-Sercomm-partitions.patch │ │ │ ├── 500-v5.13-ubifs-default-to-zstd-compression.patch │ │ │ ├── 610-v5.18-netfilter-flowtable-add-check_dst-in-packet-path.patch │ │ │ ├── 610-v5.9-net-bridge-clear-bridge-s-private-skb-space-on-xmit.patch │ │ │ ├── 700-v5.5-net-core-allow-fast-GRO-for-skbs-with-Ethernet-heade.patch │ │ │ ├── 716-v5.5-net-sfp-move-fwnode-parsing-into-sfp-bus-layer.patch │ │ │ ├── 717-v5.5-net-sfp-rework-upstream-interface.patch │ │ │ ├── 718-v5.5-net-sfp-fix-sfp_bus_put-kernel-documentation.patch │ │ │ ├── 719-v5.5-net-sfp-fix-sfp_bus_add_upstream-warning.patch │ │ │ ├── 720-v5.5-net-sfp-move-sfp-sub-state-machines-into-separate-fu.patch │ │ │ ├── 721-v5.5-net-sfp-move-tx-disable-on-device-down-to-main-state.patch │ │ │ ├── 722-v5.5-net-sfp-rename-sfp_sm_ins_next-as-sfp_sm_mod_next.patch │ │ │ ├── 723-v5.5-net-sfp-handle-module-remove-outside-state-machine.patch │ │ │ ├── 724-v5.5-net-sfp-rename-T_PROBE_WAIT-to-T_SERIAL.patch │ │ │ ├── 725-v5.5-net-sfp-parse-SFP-power-requirement-earlier.patch │ │ │ ├── 726-v5.5-net-sfp-avoid-power-switch-on-address-change-modules.patch │ │ │ ├── 727-v5.5-net-sfp-control-TX_DISABLE-and-phy-only-from-main-st.patch │ │ │ ├── 728-v5.5-net-sfp-split-the-PHY-probe-from-sfp_sm_mod_init.patch │ │ │ ├── 729-v5.5-net-sfp-eliminate-mdelay-from-PHY-probe.patch │ │ │ ├── 730-v5.5-net-sfp-allow-fault-processing-to-transition-to-othe.patch │ │ │ ├── 731-v5.5-net-sfp-ensure-TX_FAULT-has-deasserted-before-probin.patch │ │ │ ├── 732-v5.5-net-sfp-track-upstream-s-attachment-state-in-state-m.patch │ │ │ ├── 733-v5.5-net-sfp-split-power-mode-switching-from-probe.patch │ │ │ ├── 734-v5.5-net-sfp-move-module-insert-reporting-out-of-probe.patch │ │ │ ├── 735-v5.5-net-sfp-allow-sfp-to-probe-slow-to-initialise-GPON-m.patch │ │ │ ├── 736-v5.5-net-sfp-allow-modules-with-slow-diagnostics-to-probe.patch │ │ │ ├── 737-v5.5-net-phy-add-core-phylib-sfp-support.patch │ │ │ ├── 738-v5.5-net-phy-marvell10g-add-SFP-support.patch │ │ │ ├── 739-v5.5-net-phylink-update-to-use-phy_support_asym_pause.patch │ │ │ ├── 744-v5.5-net-sfp-soft-status-and-control-support.patch │ │ │ ├── 745-v5.7-net-dsa-mt7530-add-support-for-port-mirroring.patch │ │ │ ├── 746-v5.5-net-dsa-mv88e6xxx-Split-monitor-port-configuration.patch │ │ │ ├── 747-v5.5-net-dsa-mv88e6xxx-Add-support-for-port-mirroring.patch │ │ │ ├── 748-v5.5-net-dsa-mv88e6xxx-fix-broken-if-statement-because-of.patch │ │ │ ├── 749-v5.5-net-dsa-mv88e6xxx-Fix-masking-of-egress-port.patch │ │ │ ├── 750-v5.5-net-phy-add-support-for-clause-37-auto-negotiation.patch │ │ │ ├── 751-v5.6-net-mvmdio-avoid-error-message-for-optional-IRQ.patch │ │ │ ├── 752-v5.8-net-dsa-provide-an-option-for-drivers-to-always-rece.patch │ │ │ ├── 753-v5.8-net-dsa-mt7530-fix-VLAN-setup.patch │ │ │ ├── 756-v5.8-net-dsa-rtl8366-Pass-GENMASK-signed-bits.patch │ │ │ ├── 757-v5.8-net-dsa-tag_rtl4_a-Implement-Realtek-4-byte-A-tag.patch │ │ │ ├── 758-v5.8-net-dsa-rtl8366rb-Support-the-CPU-DSA-tag.patch │ │ │ ├── 760-net-ethernet-mediatek-Integrate-GDM-PSE-setup-operat.patch │ │ │ ├── 761-net-ethernet-mediatek-Refine-the-timing-of-GDM-PSE-s.patch │ │ │ ├── 762-net-ethernet-mediatek-Enable-GDM-GDMA_DROP_ALL-mode.patch │ │ │ ├── 765-v5.12-net-dsa-automatically-bring-up-DSA-master-when-openi.patch │ │ │ ├── 770-v5.12-net-bridge-notify-switchdev-of-disappearance-of-old-.patch │ │ │ ├── 771-mdio-bus-add-generic-find-bus.patch │ │ │ ├── 771-v5.12-net-dsa-be-louder-when-a-non-legacy-FDB-operation-fa.patch │ │ │ ├── 772-v5.12-net-dsa-don-t-use-switchdev_notifier_fdb_info-in-dsa.patch │ │ │ ├── 773-v5.12-net-dsa-move-switchdev-event-implementation-under-th.patch │ │ │ ├── 774-v5.12-net-dsa-exit-early-in-dsa_slave_switchdev_event-if-w.patch │ │ │ ├── 775-v5.12-net-dsa-listen-for-SWITCHDEV_-FDB-DEL-_ADD_TO_DEVICE.patch │ │ │ ├── 780-net-dsa-mt7530-setup-core-clock-even-in-TRGMII-mode.patch │ │ │ ├── 781-v5.18-1-net-dsa-Move-VLAN-filtering-syncing-out-of-dsa_switc.patch │ │ │ ├── 781-v5.18-2-net-dsa-Avoid-cross-chip-syncing-of-VLAN-filtering.patch │ │ │ ├── 782-net-next-1-of-net-pass-the-dst-buffer-to-of_get_mac_address.patch │ │ │ ├── 782-net-next-2-of-net-fix-of_get_mac_addr_nvmem-for-non-platform-devices.patch │ │ │ ├── 790-net-phy-at803x-select-correct-page-on-config-init.patch │ │ │ ├── 791-net-phy-at803x-fix-probe-error-if-copper-page-is-sel.patch │ │ │ ├── 800-v5.5-iio-imu-Add-support-for-the-FXOS8700-IMU.patch │ │ │ ├── 800-v5.5-scsi-core-Add-sysfs-attributes-for-VPD-pages-0h-and-.patch │ │ │ ├── 801-v5.5-hwmon-Driver-for-disk-and-solid-state-drives-with-te.patch │ │ │ ├── 801-v5.6-leds-populate-the-device-s-of_node.patch │ │ │ ├── 803-v5.8-i2c-pxa-use-official-address-byte-helper.patch │ │ │ ├── 804-v5.8-i2c-pxa-remove-unneeded-includes.patch │ │ │ ├── 805-v5.8-i2c-pxa-re-arrange-includes-to-be-in-alphabetical-or.patch │ │ │ ├── 806-v5.8-i2c-pxa-re-arrange-functions-to-flow-better.patch │ │ │ ├── 807-v5.8-i2c-pxa-re-arrange-register-field-definitions.patch │ │ │ ├── 808-v5.8-i2c-pxa-add-and-use-definitions-for-IBMR-register.patch │ │ │ ├── 809-v5.8-i2c-pxa-always-set-fm-and-hs-members-for-each-type.patch │ │ │ ├── 810-v5.8-i2c-pxa-move-private-definitions-to-i2c-pxa.c.patch │ │ │ ├── 811-v5.8-i2c-pxa-move-DT-IDs-along-side-platform-IDs.patch │ │ │ ├── 813-v5.8-i2c-pxa-clean-up-decode_bits.patch │ │ │ ├── 814-v5.8-i2c-pxa-fix-i2c_pxa_wait_bus_not_busy-boundary-condi.patch │ │ │ ├── 815-v5.8-i2c-pxa-consolidate-i2c_pxa_-xfer-implementations.patch │ │ │ ├── 816-v5.8-i2c-pxa-avoid-complaints-with-non-responsive-slaves.patch │ │ │ ├── 817-v5.8-i2c-pxa-ensure-timeout-messages-are-unique.patch │ │ │ ├── 818-v5.8-i2c-pxa-remove-some-unnecessary-debug.patch │ │ │ ├── 820-v5.8-i2c-pxa-use-master-abort-for-device-probes.patch │ │ │ ├── 821-v5.8-i2c-pxa-implement-generic-i2c-bus-recovery.patch │ │ │ ├── 825-v5.8-spi-rb4xx-null-pointer-bug-fix.patch │ │ │ ├── 826-v5.8-spi-rb4xx-update-driver-to-be-device-tree-aware.patch │ │ │ ├── 831-v5.13-0001-firmware-bcm47xx_nvram-rename-finding-function-and-i.patch │ │ │ ├── 831-v5.13-0002-firmware-bcm47xx_nvram-add-helper-checking-for-NVRAM.patch │ │ │ ├── 831-v5.13-0003-firmware-bcm47xx_nvram-extract-code-copying-NVRAM.patch │ │ │ ├── 831-v5.13-0004-firmware-bcm47xx_nvram-look-for-NVRAM-with-for-inste.patch │ │ │ ├── 831-v5.13-0005-firmware-bcm47xx_nvram-inline-code-checking-NVRAM-si.patch │ │ │ ├── 850-v5.13-usb-ehci-add-spurious-flag-to-disable-overcurrent-ch.patch │ │ │ ├── 851-v5.13-usb-host-ehci-platform-add-spurious_oc-DT-support.patch │ │ │ ├── 852-v5.10-0001-net-sfp-VSOL-V2801F-CarlitoxxPro-CPGOS03-0490-v2.0-w.patch │ │ │ ├── 852-v5.10-0002-net-sfp-add-workaround-for-Realtek-RTL8672-and-RTL96.patch │ │ │ ├── 880-v5.17-net-skb-introduce-kfree_skb_reason.patch │ │ │ ├── 900-v6.10-backport-stddef.patch │ │ │ ├── 901-v6.10-backport-net-device-path.patch │ │ │ ├── 902-v6.10-backport-minmax.patch │ │ │ ├── 903-v6.10-backport-genl-small-ops.patch │ │ │ ├── 905-v6.10-bridge-add-support-for-sticky-fdb-entries.patch │ │ │ └── 906-v6.15-policy-range-validation.patch │ │ ├── backport-6.1 │ │ │ ├── 020-v6.3-01-UPSTREAM-mm-multi-gen-LRU-rename-lru_gen_struct-to-l.patch │ │ │ ├── 020-v6.3-03-UPSTREAM-mm-multi-gen-LRU-remove-eviction-fairness-s.patch │ │ │ ├── 020-v6.3-04-BACKPORT-mm-multi-gen-LRU-remove-aging-fairness-safe.patch │ │ │ ├── 020-v6.3-05-UPSTREAM-mm-multi-gen-LRU-shuffle-should_run_aging.patch │ │ │ ├── 020-v6.3-06-BACKPORT-mm-multi-gen-LRU-per-node-lru_gen_folio-lis.patch │ │ │ ├── 020-v6.3-07-BACKPORT-mm-multi-gen-LRU-clarify-scan_control-flags.patch │ │ │ ├── 020-v6.3-08-UPSTREAM-mm-multi-gen-LRU-simplify-arch_has_hw_pte_y.patch │ │ │ ├── 020-v6.3-09-UPSTREAM-mm-multi-gen-LRU-avoid-futile-retries.patch │ │ │ ├── 020-v6.3-10-UPSTREAM-mm-add-vma_has_recency.patch │ │ │ ├── 020-v6.3-11-UPSTREAM-mm-support-POSIX_FADV_NOREUSE.patch │ │ │ ├── 020-v6.3-12-UPSTREAM-mm-multi-gen-LRU-section-for-working-set-pr.patch │ │ │ ├── 020-v6.3-13-UPSTREAM-mm-multi-gen-LRU-section-for-rmap-PT-walk-f.patch │ │ │ ├── 020-v6.3-14-UPSTREAM-mm-multi-gen-LRU-section-for-Bloom-filters.patch │ │ │ ├── 020-v6.3-15-UPSTREAM-mm-multi-gen-LRU-section-for-memcg-LRU.patch │ │ │ ├── 020-v6.3-16-UPSTREAM-mm-multi-gen-LRU-improve-lru_gen_exit_memcg.patch │ │ │ ├── 020-v6.3-17-UPSTREAM-mm-multi-gen-LRU-improve-walk_pmd_range.patch │ │ │ ├── 020-v6.3-18-UPSTREAM-mm-multi-gen-LRU-simplify-lru_gen_look_arou.patch │ │ │ ├── 020-v6.4-19-mm-Multi-gen-LRU-remove-wait_event_killable.patch │ │ │ ├── 200-v6.3-bitfield-add-FIELD_PREP_CONST.patch │ │ │ ├── 300-v6.2-powerpc-suppress-some-linker-warnings-in-recent-link.patch │ │ │ ├── 301-v6.9-kernel.h-removed-REPEAT_BYTE-from-kernel.h.patch │ │ │ ├── 302-v6.9-kernel.h-Move-upper_-_bits-and-lower_-_bits-to-wordp.patch │ │ │ ├── 400-v6.9-mtd-rawnand-brcmnand-Support-write-protection-settin.patch │ │ │ ├── 406-v6.2-0001-mtd-core-simplify-a-bit-code-find-partition-matching.patch │ │ │ ├── 406-v6.2-0002-mtd-core-try-to-find-OF-node-for-every-MTD-partition.patch │ │ │ ├── 408-v6.2-mtd-core-set-ROOT_DEV-for-partitions-marked-as-rootf.patch │ │ │ ├── 410-v6.2-mtd-spi-nor-add-generic-flash-driver.patch │ │ │ ├── 412-v6.3-02-spidev-Add-Silicon-Labs-SI3210-device-compatible.patch │ │ │ ├── 421-v6.2-mtd-parsers-add-TP-Link-SafeLoader-partitions-table-.patch │ │ │ ├── 423-v6.3-mtd-spinand-macronix-use-scratch-buffer-for-DMA-oper.patch │ │ │ ├── 424-v6.3-mtd-ubi-wire-up-parent-MTD-device.patch │ │ │ ├── 425-v6.3-mtd-ubi-block-wire-up-device-parent.patch │ │ │ ├── 426-v6.4-0004-mtd-core-prepare-mtd_otp_nvmem_add-to-handle-EPROBE_.patch │ │ │ ├── 600-v6.9-01-net-gro-parse-ipv6-ext-headers-without-frag0-invalid.patch │ │ │ ├── 611-v6.3-net-add-helper-eth_addr_add.patch │ │ │ ├── 701-net-next-net-sfp-add-quirk-for-Fiberstone-GPON-ONU-34-20BI.patch │ │ │ ├── 702-01-v6.7-net-phy-aquantia-move-to-separate-directory.patch │ │ │ ├── 702-02-v6.7-net-phy-aquantia-move-MMD_VEND-define-to-header.patch │ │ │ ├── 702-03-v6.7-net-phy-aquantia-add-firmware-load-support.patch │ │ │ ├── 703-v6.3-net-mdio-Add-dedicated-C45-API-to-MDIO-bus-drivers.patch │ │ │ ├── 704-v6.6-net-phy-Introduce-PSGMII-PHY-interface-mode.patch │ │ │ ├── 705-v6.4-net-phy-at803x-Replace-of_gpio.h-with-what-indeed-is.patch │ │ │ ├── 706-v6.6-01-net-phy-at803x-support-qca8081-genphy_c45_pma_read_a.patch │ │ │ ├── 706-v6.6-02-net-phy-at803x-merge-qca8081-slave-seed-function.patch │ │ │ ├── 706-v6.6-03-net-phy-at803x-enable-qca8081-slave-seed-conditional.patch │ │ │ ├── 706-v6.6-04-net-phy-at803x-support-qca8081-1G-chip-type.patch │ │ │ ├── 706-v6.6-05-net-phy-at803x-remove-qca8081-1G-fast-retrain-and-sl.patch │ │ │ ├── 706-v6.6-06-net-phy-at803x-add-qca8081-fifo-reset-on-the-link-ch.patch │ │ │ ├── 707-v6.8-02-net-phy-at803x-move-disable-WOL-to-specific-at8031-p.patch │ │ │ ├── 707-v6.8-03-net-phy-at803x-raname-hw_stats-functions-to-qca83xx-.patch │ │ │ ├── 707-v6.8-04-net-phy-at803x-move-qca83xx-specific-check-in-dedica.patch │ │ │ ├── 707-v6.8-05-net-phy-at803x-move-specific-DT-option-for-at8031-to.patch │ │ │ ├── 707-v6.8-06-net-phy-at803x-move-specific-at8031-probe-mode-check.patch │ │ │ ├── 707-v6.8-07-net-phy-at803x-move-specific-at8031-config_init-to-d.patch │ │ │ ├── 707-v6.8-08-net-phy-at803x-move-specific-at8031-WOL-bits-to-dedi.patch │ │ │ ├── 707-v6.8-09-net-phy-at803x-move-specific-at8031-config_intr-to-d.patch │ │ │ ├── 707-v6.8-10-net-phy-at803x-make-at8031-related-DT-functions-name.patch │ │ │ ├── 707-v6.8-11-net-phy-at803x-move-at8031-functions-in-dedicated-se.patch │ │ │ ├── 707-v6.8-12-net-phy-at803x-move-at8035-specific-DT-parse-to-dedi.patch │ │ │ ├── 707-v6.8-13-net-phy-at803x-drop-specific-PHY-ID-check-from-cable.patch │ │ │ ├── 708-v6.8-01-net-phy-at803x-move-specific-qca808x-config_aneg-to-.patch │ │ │ ├── 708-v6.8-02-net-phy-at803x-make-read-specific-status-function-mo.patch │ │ │ ├── 709-v6.8-01-net-phy-at803x-remove-extra-space-after-cast.patch │ │ │ ├── 709-v6.8-02-net-phy-at803x-replace-msleep-1-with-usleep_range.patch │ │ │ ├── 710-v6.8-net-phy-at803x-better-align-function-varibles-to-ope.patch │ │ │ ├── 711-v6.8-01-net-phy-at803x-generalize-cdt-fault-length-function.patch │ │ │ ├── 711-v6.8-02-net-phy-at803x-refactor-qca808x-cable-test-get-statu.patch │ │ │ ├── 711-v6.8-03-net-phy-at803x-add-support-for-cdt-cross-short-test-.patch │ │ │ ├── 711-v6.8-04-net-phy-at803x-make-read_status-more-generic.patch │ │ │ ├── 712-v6.9-net-phy-at803x-add-LED-support-for-qca808x.patch │ │ │ ├── 713-v6.9-01-net-phy-move-at803x-PHY-driver-to-dedicated-director.patch │ │ │ ├── 713-v6.9-02-net-phy-qcom-create-and-move-functions-to-shared-lib.patch │ │ │ ├── 713-v6.9-03-net-phy-qcom-deatch-qca83xx-PHY-driver-from-at803x.patch │ │ │ ├── 713-v6.9-04-net-phy-qcom-move-additional-functions-to-shared-lib.patch │ │ │ ├── 713-v6.9-05-net-phy-qcom-detach-qca808x-PHY-driver-from-at803x.patch │ │ │ ├── 714-net-pcs-add-driver-for-MediaTek-SGMII-PCS.patch │ │ │ ├── 714-v6.8-01-net-phy-make-addr-type-u8-in-phy_package_shared-stru.patch │ │ │ ├── 714-v6.8-02-net-phy-extend-PHY-package-API-to-support-multiple-g.patch │ │ │ ├── 714-v6.8-03-net-phy-restructure-__phy_write-read_mmd-to-helper-a.patch │ │ │ ├── 714-v6.8-04-net-phy-add-support-for-PHY-package-MMD-read-write.patch │ │ │ ├── 715-01-v6.2-net-fman-memac-Add-serdes-support.patch │ │ │ ├── 715-02-v6.2-net-fman-memac-Use-lynx-pcs-driver.patch │ │ │ ├── 715-03-v6.2-net-dpaa-Convert-to-phylink.patch │ │ │ ├── 715-04-v6.2-net-phylink-provide-phylink_validate_mask_caps-helpe.patch │ │ │ ├── 715-05-v6.2-phylink-require-valid-state-argument-to-phylink_vali.patch │ │ │ ├── 715-06-v6.2-net-phylink-add-phylink_get_link_timer_ns-helper.patch │ │ │ ├── 715-07-v6.2-net-remove-explicit-phylink_generic_validate-referen.patch │ │ │ ├── 715-08-net-sfp-make-sfp_bus_find_fwnode-take-a-const-fwnode.patch │ │ │ ├── 715-09-v6.4-net-pcs-lynx-don-t-print-an_enabled-in-pcs_get_state.patch │ │ │ ├── 715-10-v6.4-net-dpaa2-mac-use-Autoneg-bit-rather-than-an_enabled.patch │ │ │ ├── 715-11-v6.4-net-phylink-support-validated-pause-and-autoneg-in-f.patch │ │ │ ├── 715-12-v6.4-net-phylink-remove-an_enabled.patch │ │ │ ├── 715-13-v6.5-net-phylink-constify-fwnode-arguments.patch │ │ │ ├── 715-14-v6.3-net-phy-constify-fwnode_get_phy_node-fwnode-argument.patch │ │ │ ├── 715-15-v6.4-net-phylink-fix-ksettings_set-ethtool-call.patch │ │ │ ├── 715-16-v6.5-net-sfp-add-support-for-setting-signalling-rate.patch │ │ │ ├── 715-17-v6.5-net-phy-add-helpers-for-comparing-phy-IDs.patch │ │ │ ├── 715-18-v6.5-net-phylink-require-supported_interfaces-to-be-fille.patch │ │ │ ├── 715-19-v6.5-net-phylink-remove-duplicated-linkmode-pause-resolut.patch │ │ │ ├── 715-20-v6.5-net-phylink-add-function-to-resolve-clause-73-negoti.patch │ │ │ ├── 715-21-v6.5-net-phylink-provide-phylink_pcs_config-and-phylink_p.patch │ │ │ ├── 715-23-v6.4-net-phylink-actually-fix-ksettings_set-ethtool-call.patch │ │ │ ├── 715-24-v6.5-net-phylink-add-PCS-negotiation-mode.patch │ │ │ ├── 715-25-v6.5-net-phylink-convert-phylink_mii_c22_pcs_config-to-ne.patch │ │ │ ├── 715-26-v6.5-net-phylink-pass-neg_mode-into-phylink_mii_c22_pcs_c.patch │ │ │ ├── 715-27-v6.5-net-pcs-lynxi-update-PCS-driver-to-use-neg_mode.patch │ │ │ ├── 715-28-v6.4-net-pcs-xpcs-use-Autoneg-bit-rather-than-an_enabled.patch │ │ │ ├── 715-29-v6.4-net-pcs-xpcs-fix-incorrect-number-of-interfaces.patch │ │ │ ├── 715-v6.9-01-net-phy-qcom-qca808x-fix-logic-error-in-LED-brightne.patch │ │ │ ├── 715-v6.9-02-net-phy-qcom-qca808x-default-to-LED-active-High-if-n.patch │ │ │ ├── 716-v6.9-02-net-phy-add-support-for-scanning-PHY-in-PHY-packages.patch │ │ │ ├── 716-v6.9-03-net-phy-add-devm-of_phy_package_join-helper.patch │ │ │ ├── 716-v6.9-04-net-phy-qcom-move-more-function-to-shared-library.patch │ │ │ ├── 716-v6.9-06-net-phy-provide-whether-link-has-changed-in-c37_read.patch │ │ │ ├── 716-v6.9-07-net-phy-qcom-add-support-for-QCA807x-PHY-Family.patch │ │ │ ├── 716-v6.9-08-net-phy-qcom-move-common-qca808x-LED-define-to-share.patch │ │ │ ├── 716-v6.9-09-net-phy-qcom-generalize-some-qca808x-LED-functions.patch │ │ │ ├── 716-v6.9-10-net-phy-qca807x-add-support-for-configurable-LED.patch │ │ │ ├── 717-v6.9-net-phy-qca807x-move-interface-mode-check-to-.config.patch │ │ │ ├── 718-v6.9-net-phy-qcom-at803x-fix-kernel-panic-with-at8031_pro.patch │ │ │ ├── 720-v6.9-net-mdio-ipq4019-add-support-for-clock-frequency-pro.patch │ │ │ ├── 721-v6.7-net-phy-aquantia-drop-wrong-endianness-conversion-fo.patch │ │ │ ├── 724-v6.2-net-ethernet-mtk_eth_soc-enable-flow-offloading-supp.patch │ │ │ ├── 729-01-v6.1-net-ethernet-mtk_wed-introduce-wed-mcu-support.patch │ │ │ ├── 729-02-v6.1-net-ethernet-mtk_wed-introduce-wed-wo-support.patch │ │ │ ├── 729-03-v6.1-net-ethernet-mtk_wed-rename-tx_wdma-array-in-rx_wdma.patch │ │ │ ├── 729-04-v6.1-net-ethernet-mtk_wed-add-configure-wed-wo-support.patch │ │ │ ├── 729-05-v6.1-net-ethernet-mtk_wed-add-rx-mib-counters.patch │ │ │ ├── 729-07-v6.1-net-ethernet-mtk_eth_soc-remove-cpu_relax-in-mtk_pen.patch │ │ │ ├── 729-09-v6.2-net-ethernet-mtk_wed-add-wcid-overwritten-support-fo.patch │ │ │ ├── 729-10-v6.2-net-ethernet-mtk_wed-return-status-value-in-mtk_wdma.patch │ │ │ ├── 729-11-v6.2-net-ethernet-mtk_wed-move-MTK_WDMA_RESET_IDX_TX-conf.patch │ │ │ ├── 729-12-v6.2-net-ethernet-mtk_wed-update-mtk_wed_stop.patch │ │ │ ├── 729-13-v6.2-net-ethernet-mtk_wed-add-mtk_wed_rx_reset-routine.patch │ │ │ ├── 729-14-v6.2-net-ethernet-mtk_wed-add-reset-to-tx_ring_setup-call.patch │ │ │ ├── 729-15-v6.2-net-ethernet-mtk_wed-fix-sleep-while-atomic-in-mtk_w.patch │ │ │ ├── 729-16-v6.3-net-ethernet-mtk_wed-get-rid-of-queue-lock-for-rx-qu.patch │ │ │ ├── 729-17-v6.3-net-ethernet-mtk_wed-get-rid-of-queue-lock-for-tx-qu.patch │ │ │ ├── 729-18-v6.3-net-ethernet-mtk_eth_soc-introduce-mtk_hw_reset-util.patch │ │ │ ├── 729-19-v6.3-net-ethernet-mtk_eth_soc-introduce-mtk_hw_warm_reset.patch │ │ │ ├── 729-20-v6.3-net-ethernet-mtk_eth_soc-align-reset-procedure-to-ve.patch │ │ │ ├── 729-21-v6.3-net-ethernet-mtk_eth_soc-add-dma-checks-to-mtk_hw_re.patch │ │ │ ├── 729-22-v6.3-net-ethernet-mtk_wed-add-reset-reset_complete-callba.patch │ │ │ ├── 729-23-v6.3-net-ethernet-mtk_wed-add-reset-to-rx_ring_setup-call.patch │ │ │ ├── 730-01-v6.3-net-ethernet-mtk_eth_soc-account-for-vlan-in-rx-head.patch │ │ │ ├── 730-02-v6.3-net-ethernet-mtk_eth_soc-increase-tx-ring-side-for-Q.patch │ │ │ ├── 730-03-v6.3-net-ethernet-mtk_eth_soc-avoid-port_mg-assignment-on.patch │ │ │ ├── 730-04-v6.3-net-ethernet-mtk_eth_soc-implement-multi-queue-suppo.patch │ │ │ ├── 730-05-v6.3-net-dsa-tag_mtk-assign-per-port-queues.patch │ │ │ ├── 730-06-v6.3-net-ethernet-mediatek-ppe-assign-per-port-queues-for.patch │ │ │ ├── 730-08-v6.3-net-dsa-add-support-for-DSA-rx-offloading-via-metada.patch │ │ │ ├── 730-09-v6.3-net-ethernet-mtk_eth_soc-fix-VLAN-rx-hardware-accele.patch │ │ │ ├── 730-12-v6.3-net-ethernet-mtk_eth_soc-disable-hardware-DSA-untagg.patch │ │ │ ├── 730-13-v6.3-net-ethernet-mtk_eth_soc-enable-special-tag-when-any.patch │ │ │ ├── 730-14-v6.3-net-ethernet-mtk_eth_soc-fix-DSA-TX-tag-hwaccel-for-.patch │ │ │ ├── 730-15-v6.3-net-ethernet-mtk_wed-No-need-to-clear-memory-after-a.patch │ │ │ ├── 730-16-v6.3-net-ethernet-mtk_wed-fix-some-possible-NULL-pointer-.patch │ │ │ ├── 730-17-v6.3-net-ethernet-mtk_wed-fix-possible-deadlock-if-mtk_we.patch │ │ │ ├── 730-18-v6.3-net-ethernet-mtk_eth_soc-fix-tx-throughput-regressio.patch │ │ │ ├── 733-v6.2-02-net-mtk_eth_soc-add-definitions-for-PCS.patch │ │ │ ├── 733-v6.2-03-net-mtk_eth_soc-eliminate-unnecessary-error-handling.patch │ │ │ ├── 733-v6.2-04-net-mtk_eth_soc-add-pcs_get_state-implementation.patch │ │ │ ├── 733-v6.2-05-net-mtk_eth_soc-convert-mtk_sgmii-to-use-regmap_upda.patch │ │ │ ├── 733-v6.2-06-net-mtk_eth_soc-add-out-of-band-forcing-of-speed-and.patch │ │ │ ├── 733-v6.2-07-net-mtk_eth_soc-move-PHY-power-up.patch │ │ │ ├── 733-v6.2-08-net-mtk_eth_soc-move-interface-speed-selection.patch │ │ │ ├── 733-v6.2-09-net-mtk_eth_soc-add-advertisement-programming.patch │ │ │ ├── 733-v6.2-10-net-mtk_eth_soc-move-and-correct-link-timer-programm.patch │ │ │ ├── 733-v6.2-11-net-mtk_eth_soc-add-support-for-in-band-802.3z-negot.patch │ │ │ ├── 733-v6.2-12-net-mediatek-sgmii-ensure-the-SGMII-PHY-is-powered-d.patch │ │ │ ├── 733-v6.2-13-net-mediatek-sgmii-fix-duplex-configuration.patch │ │ │ ├── 733-v6.2-14-mtk_sgmii-enable-PCS-polling-to-allow-SFP-work.patch │ │ │ ├── 733-v6.3-15-net-ethernet-mtk_eth_soc-reset-PCS-state.patch │ │ │ ├── 733-v6.3-16-net-ethernet-mtk_eth_soc-only-write-values-if-needed.patch │ │ │ ├── 733-v6.3-18-net-ethernet-mtk_eth_soc-add-support-for-MT7981.patch │ │ │ ├── 733-v6.3-19-net-ethernet-mtk_eth_soc-set-MDIO-bus-clock-frequenc.patch │ │ │ ├── 733-v6.3-20-net-ethernet-mtk_eth_soc-switch-to-external-PCS-driv.patch │ │ │ ├── 733-v6.4-21-net-mtk_eth_soc-use-WO-firmware-for-MT7981.patch │ │ │ ├── 733-v6.4-22-net-ethernet-mtk_eth_soc-fix-NULL-pointer-dereferenc.patch │ │ │ ├── 733-v6.4-23-net-ethernet-mtk_eth_soc-ppe-add-support-for-flow-ac.patch │ │ │ ├── 733-v6.4-24-net-ethernet-mediatek-fix-ppe-flow-accounting-for-v1.patch │ │ │ ├── 733-v6.4-25-net-ethernet-mtk_eth_soc-drop-generic-vlan-rx-offloa.patch │ │ │ ├── 733-v6.5-26-net-ethernet-mtk_eth_soc-always-mtk_get_ib1_pkt_type.patch │ │ │ ├── 734-v6.8-net-phy-bcm54612e-add-suspend-resume.patch │ │ │ ├── 750-v6.5-01-net-ethernet-mtk_ppe-add-MTK_FOE_ENTRY_V-1-2-_SIZE-m.patch │ │ │ ├── 750-v6.5-02-net-ethernet-mtk_eth_soc-remove-incorrect-PLL-config.patch │ │ │ ├── 750-v6.5-03-net-ethernet-mtk_eth_soc-remove-mac_pcs_get_state-an.patch │ │ │ ├── 750-v6.5-05-net-ethernet-mtk_eth_soc-add-version-in-mtk_soc_data.patch │ │ │ ├── 750-v6.5-06-net-ethernet-mtk_eth_soc-increase-MAX_DEVS-to-3.patch │ │ │ ├── 750-v6.5-07-net-ethernet-mtk_eth_soc-rely-on-MTK_MAX_DEVS-and-re.patch │ │ │ ├── 750-v6.5-08-net-ethernet-mtk_eth_soc-add-NETSYS_V3-version-suppo.patch │ │ │ ├── 750-v6.5-09-net-ethernet-mtk_eth_soc-convert-caps-in-mtk_soc_dat.patch │ │ │ ├── 750-v6.5-10-net-ethernet-mtk_eth_soc-convert-clock-bitmap-to-u64.patch │ │ │ ├── 750-v6.5-11-net-ethernet-mtk_eth_soc-add-basic-support-for-MT798.patch │ │ │ ├── 750-v6.5-12-net-ethernet-mtk_eth_soc-enable-page_pool-support-fo.patch │ │ │ ├── 750-v6.5-13-net-ethernet-mtk_eth_soc-enable-nft-hw-flowtable_off.patch │ │ │ ├── 750-v6.5-14-net-ethernet-mtk_eth_soc-support-per-flow-accounting.patch │ │ │ ├── 750-v6.5-15-net-ethernet-mtk_eth_soc-fix-NULL-pointer-on-hw-rese.patch │ │ │ ├── 750-v6.5-16-net-ethernet-mtk_eth_soc-fix-register-definitions-fo.patch │ │ │ ├── 750-v6.5-17-net-ethernet-mtk_eth_soc-add-reset-bits-for-MT7988.patch │ │ │ ├── 750-v6.5-18-net-ethernet-mtk_eth_soc-add-support-for-in-SoC-SRAM.patch │ │ │ ├── 750-v6.5-19-net-ethernet-mtk_eth_soc-support-36-bit-DMA-addressi.patch │ │ │ ├── 750-v6.5-20-net-ethernet-mtk_eth_soc-fix-uninitialized-variable.patch │ │ │ ├── 750-v6.5-21-net-ethernet-mtk_eth_soc-fix-pse_port-configuration-.patch │ │ │ ├── 751-01-v6.4-net-ethernet-mtk_eth_soc-add-code-for-offloading-flo.patch │ │ │ ├── 751-02-v6.4-net-ethernet-mediatek-mtk_ppe-prefer-newly-added-l2-.patch │ │ │ ├── 751-03-v6.4-net-ethernet-mtk_eth_soc-improve-keeping-track-of-of.patch │ │ │ ├── 751-04-v6.4-net-ethernet-mediatek-fix-ppe-flow-accounting-for-L2.patch │ │ │ ├── 752-01-v6.6-net-ethernet-mtk_wed-add-some-more-info-in-wed_txinf.patch │ │ │ ├── 752-02-v6.6-net-ethernet-mtk_wed-minor-change-in-wed_-tx-rx-info.patch │ │ │ ├── 752-03-v6.6-net-ethernet-mtk_eth_soc-rely-on-mtk_pse_port-defini.patch │ │ │ ├── 752-04-v6.6-net-ethernet-mtk_wed-check-update_wo_rx_stats-in-mtk.patch │ │ │ ├── 752-05-v6.7-net-ethernet-mtk_wed-do-not-assume-offload-callbacks.patch │ │ │ ├── 752-06-v6.7-net-ethernet-mtk_wed-introduce-versioning-utility-ro.patch │ │ │ ├── 752-07-v6.7-net-ethernet-mtk_wed-do-not-configure-rx-offload-if-.patch │ │ │ ├── 752-08-v6.7-net-ethernet-mtk_wed-rename-mtk_rxbm_desc-in-mtk_wed.patch │ │ │ ├── 752-09-v6.7-net-ethernet-mtk_wed-introduce-mtk_wed_buf-structure.patch │ │ │ ├── 752-10-v6.7-net-ethernet-mtk_wed-move-mem_region-array-out-of-mt.patch │ │ │ ├── 752-11-v6.7-net-ethernet-mtk_wed-make-memory-region-optional.patch │ │ │ ├── 752-13-v6.7-net-ethernet-mtk_wed-add-mtk_wed_soc_data-structure.patch │ │ │ ├── 752-14-v6.7-net-ethernet-mtk_wed-introduce-WED-support-for-MT798.patch │ │ │ ├── 752-15-v6.7-net-ethernet-mtk_wed-refactor-mtk_wed_check_wfdma_rx.patch │ │ │ ├── 752-16-v6.7-net-ethernet-mtk_wed-introduce-partial-AMSDU-offload.patch │ │ │ ├── 752-17-v6.7-net-ethernet-mtk_wed-introduce-hw_rro-support-for-MT.patch │ │ │ ├── 752-18-v6.7-net-ethernet-mtk_wed-debugfs-move-wed_v2-specific-re.patch │ │ │ ├── 752-19-v6.7-net-ethernet-mtk_wed-debugfs-add-WED-3.0-debugfs-ent.patch │ │ │ ├── 752-20-v6.7-net-ethernet-mtk_wed-add-wed-3.0-reset-support.patch │ │ │ ├── 760-v6.9-net-phy-aquantia-add-AQR111-and-AQR111B0-PHY-ID.patch │ │ │ ├── 761-v6.9-net-phy-aquantia-add-AQR113-PHY-ID.patch │ │ │ ├── 762-v6.9-net-phy-aquantia-add-AQR813-PHY-ID.patch │ │ │ ├── 765-v6.10-net-dsa-introduce-dsa_phylink_to_port.patch │ │ │ ├── 766-v6.10-net-dsa-allow-DSA-switch-drivers-to-provide-their-ow.patch │ │ │ ├── 770-net-introduce-napi_is_scheduled-helper.patch │ │ │ ├── 771-v6.7-01-net-stmmac-improve-TX-timer-arm-logic.patch │ │ │ ├── 771-v6.7-02-net-stmmac-move-TX-timer-arm-after-DMA-enable.patch │ │ │ ├── 771-v6.7-03-net-stmmac-increase-TX-coalesce-timer-to-5ms.patch │ │ │ ├── 777-v6.2-04-net-dsa-qca8k-introduce-single-mii-read-write-lo-hi.patch │ │ │ ├── 777-v6.2-05-net-dsa-qca8k-improve-mdio-master-read-write-by-usin.patch │ │ │ ├── 778-v6.3-01-net-dsa-qca8k-add-QCA8K_ATU_TABLE_SIZE-define-for-fd.patch │ │ │ ├── 778-v6.3-02-net-dsa-qca8k-convert-to-regmap-read-write-API.patch │ │ │ ├── 779-v6.5-net-dsa-qca8k-enable-use_single_write-for-qca8xxx.patch │ │ │ ├── 780-v6.6-01-net-dsa-qca8k-make-learning-configurable-and-keep-of.patch │ │ │ ├── 780-v6.6-02-net-dsa-qca8k-limit-user-ports-access-to-the-first-C.patch │ │ │ ├── 780-v6.6-03-net-dsa-qca8k-move-qca8xxx-hol-fixup-to-separate-fun.patch │ │ │ ├── 780-v6.6-04-net-dsa-qca8k-use-dsa_for_each-macro-instead-of-for-.patch │ │ │ ├── 781-v6.6-01-net-dsa-qca8k-fix-regmap-bulk-read-write-methods-on-.patch │ │ │ ├── 790-01-v6.2-net-dsa-mt7530-remove-redundant-assignment.patch │ │ │ ├── 790-02-v6.4-net-dsa-mt7530-use-external-PCS-driver.patch │ │ │ ├── 790-03-v6.4-net-dsa-mt7530-make-some-noise-if-register-read-fail.patch │ │ │ ├── 790-04-v6.4-net-dsa-mt7530-refactor-SGMII-PCS-creation.patch │ │ │ ├── 790-05-v6.4-net-dsa-mt7530-use-unlocked-regmap-accessors.patch │ │ │ ├── 790-06-v6.4-net-dsa-mt7530-use-regmap-to-access-switch-register-.patch │ │ │ ├── 790-07-v6.4-net-dsa-mt7530-move-SGMII-PCS-creation-to-mt7530_pro.patch │ │ │ ├── 790-08-v6.4-net-dsa-mt7530-introduce-mutex-helpers.patch │ │ │ ├── 790-09-v6.4-net-dsa-mt7530-move-p5_intf_modes-function-to-mt7530.patch │ │ │ ├── 790-10-v6.4-net-dsa-mt7530-introduce-mt7530_probe_common-helper-.patch │ │ │ ├── 790-11-v6.4-net-dsa-mt7530-introduce-mt7530_remove_common-helper.patch │ │ │ ├── 790-12-v6.4-net-dsa-mt7530-introduce-separate-MDIO-driver.patch │ │ │ ├── 790-13-v6.4-net-dsa-mt7530-skip-locking-if-MDIO-bus-isn-t-presen.patch │ │ │ ├── 790-14-v6.4-net-dsa-mt7530-introduce-driver-for-MT7988-built-in-.patch │ │ │ ├── 790-15-v6.4-net-dsa-mt7530-fix-support-for-MT7531BE.patch │ │ │ ├── 790-17-v6.5-net-dsa-mt7530-update-PCS-driver-to-use-neg_mode.patch │ │ │ ├── 790-18-v6.7-net-dsa-mt7530-Convert-to-platform-remove-callback-r.patch │ │ │ ├── 790-19-v6.7-net-dsa-mt753x-remove-mt753x_phylink_pcs_link_up.patch │ │ │ ├── 790-20-v6.7-net-dsa-mt7530-replace-deprecated-strncpy-with-ethto.patch │ │ │ ├── 790-21-v6.9-net-dsa-mt7530-support-OF-based-registration-of-swit.patch │ │ │ ├── 790-22-v6.8-net-dsa-mt7530-fix-10M-100M-speed-on-MT7988-switch.patch │ │ │ ├── 790-23-v6.9-net-dsa-mt7530-always-trap-frames-to-active-CPU-port.patch │ │ │ ├── 790-24-v6.9-net-dsa-mt7530-use-p5_interface_select-as-data-type-.patch │ │ │ ├── 790-25-v6.9-net-dsa-mt7530-store-port-5-SGMII-capability-of-MT75.patch │ │ │ ├── 790-26-v6.9-net-dsa-mt7530-improve-comments-regarding-switch-por.patch │ │ │ ├── 790-27-v6.9-net-dsa-mt7530-improve-code-path-for-setting-up-port.patch │ │ │ ├── 790-28-v6.9-net-dsa-mt7530-do-not-set-priv-p5_interface-on-mt753.patch │ │ │ ├── 790-29-v6.9-net-dsa-mt7530-do-not-run-mt7530_setup_port5-if-port.patch │ │ │ ├── 790-30-v6.9-net-dsa-mt7530-empty-default-case-on-mt7530_setup_po.patch │ │ │ ├── 790-31-v6.9-net-dsa-mt7530-move-XTAL-check-to-mt7530_setup.patch │ │ │ ├── 790-32-v6.9-net-dsa-mt7530-simplify-mt7530_pad_clk_setup.patch │ │ │ ├── 790-33-v6.9-net-dsa-mt7530-call-port-6-setup-from-mt7530_mac_con.patch │ │ │ ├── 790-34-v6.9-net-dsa-mt7530-remove-pad_setup-function-pointer.patch │ │ │ ├── 790-35-v6.9-net-dsa-mt7530-correct-port-capabilities-of-MT7988.patch │ │ │ ├── 790-36-v6.9-net-dsa-mt7530-do-not-clear-config-supported_interfa.patch │ │ │ ├── 790-37-v6.9-net-dsa-mt7530-remove-.mac_port_config-for-MT7988-an.patch │ │ │ ├── 790-38-v6.9-net-dsa-mt7530-set-interrupt-register-only-for-MT753.patch │ │ │ ├── 790-39-v6.9-net-dsa-mt7530-do-not-use-SW_PHY_RST-to-reset-MT7531.patch │ │ │ ├── 790-40-v6.9-net-dsa-mt7530-get-rid-of-useless-error-returns-on-p.patch │ │ │ ├── 790-41-v6.9-net-dsa-mt7530-get-rid-of-priv-info-cpu_port_config.patch │ │ │ ├── 790-42-v6.9-net-dsa-mt7530-get-rid-of-mt753x_mac_config.patch │ │ │ ├── 790-43-v6.9-net-dsa-mt7530-put-initialising-PCS-devices-code-bac.patch │ │ │ ├── 790-44-v6.9-net-dsa-mt7530-sort-link-settings-ops-and-force-link.patch │ │ │ ├── 790-45-v6.9-net-dsa-mt7530-simplify-link-operations.patch │ │ │ ├── 790-49-v6.10-net-dsa-mt7530-provide-own-phylink-MAC-operations.patch │ │ │ ├── 790-51-v6.10-net-dsa-mt7530-fix-port-mirroring-for-MT7988-SoC-swi.patch │ │ │ ├── 790-52-v6.10-net-dsa-mt7530-mdio-read-PHY-address-of-switch-from-.patch │ │ │ ├── 790-53-v6.10-net-dsa-mt7530-simplify-core-operations.patch │ │ │ ├── 790-54-v6.10-net-dsa-mt7530-disable-EEE-abilities-on-failure-on-M.patch │ │ │ ├── 790-55-v6.10-net-dsa-mt7530-refactor-MT7530_PMCR_P.patch │ │ │ ├── 790-56-v6.10-net-dsa-mt7530-rename-p5_intf_sel-and-use-only-for-M.patch │ │ │ ├── 790-57-v6.10-net-dsa-mt7530-rename-mt753x_bpdu_port_fw-enum-to-mt.patch │ │ │ ├── 790-58-v6.10-net-dsa-mt7530-refactor-MT7530_MFC-and-MT7531_CFC-ad.patch │ │ │ ├── 790-59-v6.10-net-dsa-mt7530-refactor-MT7530_HWTRAP-and-MT7530_MHW.patch │ │ │ ├── 790-60-v6.10-net-dsa-mt7530-move-MT753X_MTRAP-operations-for-MT75.patch │ │ │ ├── 790-61-v6.10-net-dsa-mt7530-return-mt7530_setup_mdio-mt7531_setup.patch │ │ │ ├── 790-62-v6.10-net-dsa-mt7530-define-MAC-speed-capabilities-per-swi.patch │ │ │ ├── 790-63-v6.10-net-dsa-mt7530-get-rid-of-function-sanity-check.patch │ │ │ ├── 790-64-v6.10-net-dsa-mt7530-refactor-MT7530_PMEEECR_P.patch │ │ │ ├── 790-65-v6.10-net-dsa-mt7530-get-rid-of-mac_port_validate-member-o.patch │ │ │ ├── 790-66-v6.10-net-dsa-mt7530-use-priv-ds-num_ports-instead-of-MT75.patch │ │ │ ├── 790-67-v6.10-net-dsa-mt7530-do-not-pass-port-variable-to-mt7531_r.patch │ │ │ ├── 790-68-v6.10-net-dsa-mt7530-explain-exposing-MDIO-bus-of-MT7531AE.patch │ │ │ ├── 790-69-v6.10-net-dsa-mt7530-do-not-set-MT7530_P5_DIS-when-PHY-.patch │ │ │ ├── 790-70-v6.10-796-net-dsa-mt7530-detect-PHY-muxing-when-PHY-is-defined.patch │ │ │ ├── 791-v6.2-01-net-phy-Add-driver-for-Motorcomm-yt8521-gigabit-ethernet.patch │ │ │ ├── 791-v6.2-02-net-phy-fix-yt8521-duplicated-argument-to-or.patch │ │ │ ├── 791-v6.2-03-net-phy-add-Motorcomm-YT8531S-phy-id.patch │ │ │ ├── 791-v6.3-04-net-phy-fix-the-spelling-problem-of-Sentinel.patch │ │ │ ├── 791-v6.3-05-net-phy-motorcomm-change-the-phy-id-of-yt8521-and-yt8531s.patch │ │ │ ├── 791-v6.3-06-net-phy-Add-BIT-macro-for-Motorcomm-yt8521-yt8531-gigabit.patch │ │ │ ├── 791-v6.3-07-net-phy-Add-dts-support-for-Motorcomm-yt8521-gigabit.patch │ │ │ ├── 791-v6.3-08-net-phy-Add-dts-support-for-Motorcomm-yt8531s-gigabit.patch │ │ │ ├── 791-v6.3-09-net-phy-Add-driver-for-Motorcomm-yt8531-gigabit-ethernet.patch │ │ │ ├── 791-v6.3-10-net-phy-motorcomm-uninitialized-variables-in.patch │ │ │ ├── 791-v6.6-11-net-phy-motorcomm-Add-pad-drive-strength-cfg-support.patch │ │ │ ├── 792-v6.6-net-phylink-add-pcs_enable-pcs_disable-methods.patch │ │ │ ├── 793-v6.6-net-pcs-lynxi-implement-pcs_disable-op.patch │ │ │ ├── 794-v6.2-net-core-Allow-live-renaming-when-an-interface-is-up.patch │ │ │ ├── 795-v6.3-02-cdc_ether-no-need-to-blacklist-any-r8152-devices.patch │ │ │ ├── 795-v6.3-05-r8152-reduce-the-control-transfer-of-rtl8152_get_ver.patch │ │ │ ├── 795-v6.3-06-r8152-Add-__GFP_NOWARN-to-big-allocations.patch │ │ │ ├── 795-v6.6-08-r8152-adjust-generic_ocp_write-function.patch │ │ │ ├── 795-v6.6-09-r8152-set-bp-in-bulk.patch │ │ │ ├── 795-v6.6-10-eth-r8152-try-to-use-a-normal-budget.patch │ │ │ ├── 795-v6.6-13-r8152-Block-future-register-access-if-register-acces.patch │ │ │ ├── 795-v6.6-14-r8152-break-the-loop-when-the-budget-is-exhausted.patch │ │ │ ├── 795-v6.6-15-net-usb-cdc_ether-add-u-blox-0x1313-composition.patch │ │ │ ├── 795-v6.7-16-r8152-use-napi_gro_frags.patch │ │ │ ├── 796-v6.5-01-usbnet-ipheth-fix-risk-of-NULL-pointer-deallocation.patch │ │ │ ├── 796-v6.5-02-usbnet-ipheth-transmit-URBs-without-trailing-padding.patch │ │ │ ├── 796-v6.5-03-usbnet-ipheth-add-CDC-NCM-support.patch │ │ │ ├── 796-v6.5-04-usbnet-ipheth-update-Kconfig-description.patch │ │ │ ├── 797-6.7-net-dsa-mv88e6xxx-fix-marvell-6350-switch-probing.patch │ │ │ ├── 798-v6.10-net-phy-air_en8811h-Add-the-Airoha-EN8811H-PHY-drive.patch │ │ │ ├── 799-v6.10-net-phy-air_en8811h-fix-some-error-codes.patch │ │ │ ├── 800-v6.3-leds-Move-led_init_default_state_get-to-the-global-h.patch │ │ │ ├── 801-v6.4-01-net-dsa-qca8k-move-qca8k_port_to_phy-to-header.patch │ │ │ ├── 801-v6.4-02-net-dsa-qca8k-add-LEDs-basic-support.patch │ │ │ ├── 801-v6.4-03-net-dsa-qca8k-add-LEDs-blink_set-support.patch │ │ │ ├── 801-v6.4-04-leds-Provide-stubs-for-when-CLASS_LED-NEW_LEDS-are-d.patch │ │ │ ├── 801-v6.4-05-net-phy-Add-a-binding-for-PHY-LEDs.patch │ │ │ ├── 801-v6.4-06-net-phy-phy_device-Call-into-the-PHY-driver-to-set-L.patch │ │ │ ├── 801-v6.4-07-net-phy-marvell-Add-software-control-of-the-LEDs.patch │ │ │ ├── 801-v6.4-08-net-phy-phy_device-Call-into-the-PHY-driver-to-set-L.patch │ │ │ ├── 801-v6.4-09-net-phy-marvell-Implement-led_blink_set.patch │ │ │ ├── 802-v6.4-net-phy-marvell-Fix-inconsistent-indenting-in-led_bl.patch │ │ │ ├── 803-v6.5-02-leds-trigger-netdev-Drop-NETDEV_LED_MODE_LINKUP-from.patch │ │ │ ├── 803-v6.5-03-leds-trigger-netdev-Rename-add-namespace-to-netdev-t.patch │ │ │ ├── 803-v6.5-04-leds-trigger-netdev-Convert-device-attr-to-macro.patch │ │ │ ├── 803-v6.5-05-leds-trigger-netdev-Use-mutex-instead-of-spinlocks.patch │ │ │ ├── 804-v6.5-01-leds-add-APIs-for-LEDs-hw-control.patch │ │ │ ├── 804-v6.5-02-leds-add-API-to-get-attached-device-for-LED-hw-contr.patch │ │ │ ├── 804-v6.5-03-Documentation-leds-leds-class-Document-new-Hardware-.patch │ │ │ ├── 804-v6.5-04-leds-trigger-netdev-refactor-code-setting-device-nam.patch │ │ │ ├── 804-v6.5-05-leds-trigger-netdev-introduce-check-for-possible-hw-.patch │ │ │ ├── 804-v6.5-06-leds-trigger-netdev-add-basic-check-for-hw-control-s.patch │ │ │ ├── 804-v6.5-07-leds-trigger-netdev-reject-interval-store-for-hw_con.patch │ │ │ ├── 804-v6.5-08-leds-trigger-netdev-add-support-for-LED-hw-control.patch │ │ │ ├── 804-v6.5-09-leds-trigger-netdev-validate-configured-netdev.patch │ │ │ ├── 804-v6.5-10-leds-trigger-netdev-init-mode-if-hw-control-already-.patch │ │ │ ├── 804-v6.5-11-leds-trigger-netdev-expose-netdev-trigger-modes-in-l.patch │ │ │ ├── 804-v6.5-12-net-dsa-qca8k-implement-hw_control-ops.patch │ │ │ ├── 804-v6.5-13-net-dsa-qca8k-add-op-to-get-ports-netdev.patch │ │ │ ├── 805-v6.5-01-leds-trigger-netdev-add-additional-specific-link-spe.patch │ │ │ ├── 805-v6.5-02-leds-trigger-netdev-add-additional-specific-link-dup.patch │ │ │ ├── 805-v6.5-03-leds-trigger-netdev-expose-hw_control-status-via-sys.patch │ │ │ ├── 806-v6.5-net-dsa-qca8k-add-support-for-additional-modes-for-n.patch │ │ │ ├── 807-v6.5-02-net-dsa-mv88e6xxx-use-mv88e6xxx_phy_is_internal-in-m.patch │ │ │ ├── 807-v6.5-04-net-dsa-mv88e6xxx-fix-88E6393X-family-internal-phys-.patch │ │ │ ├── 807-v6.5-05-net-dsa-mv88e6xxx-pass-mv88e6xxx_chip-structure-to-p.patch │ │ │ ├── 807-v6.5-06-net-dsa-mv88e6xxx-enable-support-for-88E6361-switch.patch │ │ │ ├── 808-v6.2-0001-nvmem-stm32-move-STM32MP15_BSEC_NUM_LOWER-in-config.patch │ │ │ ├── 808-v6.2-0002-nvmem-stm32-add-warning-when-upper-OTPs-are-updated.patch │ │ │ ├── 808-v6.2-0003-nvmem-stm32-add-nvmem-type-attribute.patch │ │ │ ├── 808-v6.2-0004-nvmem-stm32-fix-spelling-typo-in-comment.patch │ │ │ ├── 808-v6.2-0005-nvmem-Kconfig-Fix-spelling-mistake-controlls-control.patch │ │ │ ├── 808-v6.2-0006-nvmem-u-boot-env-add-Broadcom-format-support.patch │ │ │ ├── 809-v6.3-0001-nvmem-core-remove-spurious-white-space.patch │ │ │ ├── 809-v6.3-0002-nvmem-core-add-an-index-parameter-to-the-cell.patch │ │ │ ├── 809-v6.3-0003-nvmem-core-move-struct-nvmem_cell_info-to-nvmem-prov.patch │ │ │ ├── 809-v6.3-0004-nvmem-core-drop-the-removal-of-the-cells-in-nvmem_ad.patch │ │ │ ├── 809-v6.3-0005-nvmem-core-add-nvmem_add_one_cell.patch │ │ │ ├── 809-v6.3-0006-nvmem-core-use-nvmem_add_one_cell-in-nvmem_add_cells.patch │ │ │ ├── 809-v6.3-0007-nvmem-stm32-add-OP-TEE-support-for-STM32MP13x.patch │ │ │ ├── 809-v6.3-0008-nvmem-stm32-detect-bsec-pta-presence-for-STM32MP15x.patch │ │ │ ├── 809-v6.3-0009-nvmem-rave-sp-eeprm-fix-kernel-doc-bad-line-warning.patch │ │ │ ├── 809-v6.3-0010-nvmem-qcom-spmi-sdam-register-at-device-init-time.patch │ │ │ ├── 809-v6.3-0011-nvmem-stm32-fix-OPTEE-dependency.patch │ │ │ ├── 810-v6.3-i915-Move-list_count-to-list.h-as-list_count_nodes-f.patch │ │ │ ├── 811-v6.4-0001-nvmem-xilinx-zynqmp-make-modular.patch │ │ │ ├── 811-v6.4-0002-nvmem-core-introduce-NVMEM-layouts.patch │ │ │ ├── 811-v6.4-0003-nvmem-core-handle-the-absence-of-expected-layouts.patch │ │ │ ├── 811-v6.4-0004-nvmem-core-request-layout-modules-loading.patch │ │ │ ├── 811-v6.4-0005-nvmem-core-add-per-cell-post-processing.patch │ │ │ ├── 811-v6.4-0006-nvmem-core-allow-to-modify-a-cell-before-adding-it.patch │ │ │ ├── 811-v6.4-0007-nvmem-imx-ocotp-replace-global-post-processing-with-.patch │ │ │ ├── 811-v6.4-0008-nvmem-cell-drop-global-cell_post_process.patch │ │ │ ├── 811-v6.4-0009-nvmem-core-provide-own-priv-pointer-in-post-process-.patch │ │ │ ├── 811-v6.4-0010-nvmem-layouts-sl28vpd-Add-new-layout-driver.patch │ │ │ ├── 811-v6.4-0011-nvmem-layouts-onie-tlv-Add-new-layout-driver.patch │ │ │ ├── 811-v6.4-0012-nvmem-stm32-romem-mark-OF-related-data-as-maybe-unus.patch │ │ │ ├── 811-v6.4-0013-nvmem-mtk-efuse-Support-postprocessing-for-GPU-speed.patch │ │ │ ├── 811-v6.4-0014-nvmem-bcm-ocotp-Use-devm_platform_ioremap_resource.patch │ │ │ ├── 811-v6.4-0015-nvmem-nintendo-otp-Use-devm_platform_ioremap_resourc.patch │ │ │ ├── 811-v6.4-0016-nvmem-vf610-ocotp-Use-devm_platform_get_and_ioremap_.patch │ │ │ ├── 811-v6.4-0017-nvmem-core-support-specifying-both-cell-raw-data-pos.patch │ │ │ ├── 811-v6.4-0018-nvmem-u-boot-env-post-process-ethaddr-env-variable.patch │ │ │ ├── 811-v6.4-0019-nvmem-Add-macro-to-register-nvmem-layout-drivers.patch │ │ │ ├── 811-v6.4-0020-nvmem-layouts-sl28vpd-Use-module_nvmem_layout_driver.patch │ │ │ ├── 811-v6.4-0021-nvmem-layouts-onie-tlv-Use-module_nvmem_layout_drive.patch │ │ │ ├── 811-v6.4-0022-nvmem-layouts-onie-tlv-Drop-wrong-module-alias.patch │ │ │ ├── 811-v6.4-0023-nvmem-layouts-sl28vpd-set-varaiable-sl28vpd_layout-s.patch │ │ │ ├── 812-v6.2-firmware-nvram-bcm47xx-support-init-from-IO-memory.patch │ │ │ ├── 813-v6.5-0001-nvmem-imx-ocotp-set-varaiable-imx_ocotp_layout-stora.patch │ │ │ ├── 813-v6.5-0002-nvmem-imx-ocotp-Reverse-MAC-addresses-on-all-i.MX-de.patch │ │ │ ├── 813-v6.5-0003-nvmem-brcm_nvram-add-.read_post_process-for-MACs.patch │ │ │ ├── 813-v6.5-0004-nvmem-rockchip-otp-Add-clks-and-reg_read-to-rockchip.patch │ │ │ ├── 813-v6.5-0005-nvmem-rockchip-otp-Generalize-rockchip_otp_wait_stat.patch │ │ │ ├── 813-v6.5-0006-nvmem-rockchip-otp-Use-devm_reset_control_array_get_.patch │ │ │ ├── 813-v6.5-0007-nvmem-rockchip-otp-Improve-probe-error-handling.patch │ │ │ ├── 813-v6.5-0008-nvmem-rockchip-otp-Add-support-for-RK3588.patch │ │ │ ├── 813-v6.5-0009-nvmem-zynqmp-Switch-xilinx.com-emails-to-amd.com.patch │ │ │ ├── 813-v6.5-0010-nvmem-imx-support-i.MX93-OCOTP.patch │ │ │ ├── 813-v6.5-0011-nvmem-core-add-support-for-fixed-cells-layout.patch │ │ │ ├── 814-v6.6-0001-nvmem-sunxi_sid-Convert-to-devm_platform_ioremap_res.patch │ │ │ ├── 814-v6.6-0002-nvmem-brcm_nvram-Use-devm_platform_get_and_ioremap_r.patch │ │ │ ├── 814-v6.6-0003-nvmem-lpc18xx_otp-Convert-to-devm_platform_ioremap_r.patch │ │ │ ├── 814-v6.6-0004-nvmem-meson-mx-efuse-Convert-to-devm_platform_iorema.patch │ │ │ ├── 814-v6.6-0005-nvmem-rockchip-efuse-Use-devm_platform_get_and_iorem.patch │ │ │ ├── 814-v6.6-0006-nvmem-stm32-romem-Use-devm_platform_get_and_ioremap_.patch │ │ │ ├── 814-v6.6-0007-nvmem-qfprom-do-some-cleanup.patch │ │ │ ├── 814-v6.6-0008-nvmem-uniphier-Use-devm_platform_get_and_ioremap_res.patch │ │ │ ├── 814-v6.6-0009-nvmem-add-new-NXP-QorIQ-eFuse-driver.patch │ │ │ ├── 814-v6.6-0011-nvmem-Kconfig-Fix-typo-drive-driver.patch │ │ │ ├── 814-v6.6-0012-nvmem-sec-qfprom-Add-Qualcomm-secure-QFPROM-support.patch │ │ │ ├── 814-v6.6-0013-nvmem-u-boot-env-Replace-zero-length-array-with-DECL.patch │ │ │ ├── 814-v6.6-0014-nvmem-core-Create-all-cells-before-adding-the-nvmem-.patch │ │ │ ├── 814-v6.6-0015-nvmem-core-Return-NULL-when-no-nvmem-layout-is-found.patch │ │ │ ├── 814-v6.6-0016-nvmem-core-Do-not-open-code-existing-functions.patch │ │ │ ├── 814-v6.6-0017-nvmem-core-Notify-when-a-new-layout-is-registered.patch │ │ │ ├── 815-v6.6-1-leds-turris-omnia-Use-sysfs_emit-instead-of-sprintf.patch │ │ │ ├── 815-v6.7-2-leds-turris-omnia-Make-set_brightness-more-efficient.patch │ │ │ ├── 815-v6.7-3-leds-turris-omnia-Support-HW-controlled-mode-via-pri.patch │ │ │ ├── 815-v6.7-4-leds-turris-omnia-Add-support-for-enabling-disabling.patch │ │ │ ├── 815-v6.7-5-leds-turris-omnia-Fix-brightness-setting-and-trigger.patch │ │ │ ├── 816-v6.7-0001-nvmem-qfprom-Mark-core-clk-as-optional.patch │ │ │ ├── 816-v6.7-0002-nvmem-add-explicit-config-option-to-read-old-syntax-.patch │ │ │ ├── 816-v6.7-0003-nvmem-Use-device_get_match_data.patch │ │ │ ├── 816-v6.7-0004-Revert-nvmem-add-new-config-option.patch │ │ │ ├── 816-v6.7-0005-nvmem-Do-not-expect-fixed-layouts-to-grab-a-layout-d.patch │ │ │ ├── 816-v6.7-0006-nvmem-brcm_nvram-store-a-copy-of-NVRAM-content.patch │ │ │ ├── 817-v6.9-0001-dt-bindings-leds-Add-FUNCTION-defines-for-per-band-W.patch │ │ │ ├── 817-v6.9-0002-dt-bindings-leds-Add-LED_FUNCTION_WAN_ONLINE-for-Int.patch │ │ │ ├── 818-v6.8-of-device-Export-of_device_make_bus_id.patch │ │ │ ├── 819-v6.8-0001-nvmem-Move-of_nvmem_layout_get_container-in-another-.patch │ │ │ ├── 819-v6.8-0002-nvmem-Create-a-header-for-internal-sharing.patch │ │ │ ├── 819-v6.8-0003-nvmem-Simplify-the-add_cells-hook.patch │ │ │ ├── 819-v6.8-0004-nvmem-Move-and-rename-fixup_cell_info.patch │ │ │ ├── 819-v6.8-0005-nvmem-core-Rework-layouts-to-become-regular-devices.patch │ │ │ ├── 819-v6.8-0006-nvmem-core-Expose-cells-through-sysfs.patch │ │ │ ├── 819-v6.8-0007-nvmem-stm32-add-support-for-STM32MP25-BSEC-to-contro.patch │ │ │ ├── 819-v6.8-0008-nvmem-layouts-refactor-.add_cells-callback-arguments.patch │ │ │ ├── 819-v6.8-0009-nvmem-drop-nvmem_layout_get_match_data.patch │ │ │ ├── 819-v6.8-0010-nvmem-core-add-nvmem_dev_size-helper.patch │ │ │ ├── 819-v6.8-0011-nvmem-u-boot-env-use-nvmem_add_one_cell-nvmem-subsys.patch │ │ │ ├── 819-v6.8-0012-nvmem-u-boot-env-use-nvmem-device-helpers.patch │ │ │ ├── 819-v6.8-0013-nvmem-u-boot-env-improve-coding-style.patch │ │ │ ├── 820-v6.4-net-phy-fix-circular-LEDS_CLASS-dependencies.patch │ │ │ ├── 821-v6.4-net-phy-Fix-reading-LED-reg-property.patch │ │ │ ├── 822-v6.4-net-phy-Manual-remove-LEDs-to-ensure-correct-orderin.patch │ │ │ ├── 824-v6.5-leds-trigger-netdev-Remove-NULL-check-before-dev_-pu.patch │ │ │ ├── 825-v6.5-leds-trigger-netdev-uninitialized-variable-in-netdev.patch │ │ │ ├── 826-v6.6-01-led-trig-netdev-Fix-requesting-offload-device.patch │ │ │ ├── 826-v6.6-02-net-phy-phy_device-Call-into-the-PHY-driver-to-set-L.patch │ │ │ ├── 826-v6.6-03-net-phy-marvell-Add-support-for-offloading-LED-blink.patch │ │ │ ├── 826-v6.6-04-leds-trig-netdev-Disable-offload-on-deactivation-of-.patch │ │ │ ├── 827-v6.3-0001-of-base-add-of_parse_phandle_with_optional_args.patch │ │ │ ├── 827-v6.3-0002-of-property-make-.-cells-optional-for-simple-props.patch │ │ │ ├── 827-v6.3-0003-of-property-add-nvmem-cell-cells-property.patch │ │ │ ├── 827-v6.3-0004-of-device-Ignore-modalias-of-reused-nodes.patch │ │ │ ├── 827-v6.3-0005-of-device-Do-not-ignore-error-code-in-of_device_ueve.patch │ │ │ ├── 828-v6.4-0002-of-Update-of_device_get_modalias.patch │ │ │ ├── 828-v6.4-0003-of-Rename-of_modalias_node.patch │ │ │ ├── 828-v6.4-0004-of-Move-of_modalias-to-module.c.patch │ │ │ ├── 828-v6.4-0005-of-Move-the-request-module-helper-logic-to-module.c.patch │ │ │ ├── 830-00-v6.2-dt-bindings-arm-qcom-document-qcom-msm-id-and-qcom-b.patch │ │ │ ├── 830-01-v6.5-soc-qcom-socinfo-move-SMEM-item-struct-and-defines-t.patch │ │ │ ├── 830-02-v6.5-soc-qcom-smem-Switch-to-EXPORT_SYMBOL_GPL.patch │ │ │ ├── 830-03-v6.5-soc-qcom-smem-introduce-qcom_smem_get_soc_id.patch │ │ │ ├── 830-04-v6.5-cpufreq-qcom-nvmem-use-SoC-ID-s-from-bindings.patch │ │ │ ├── 830-05-v6.5-cpufreq-qcom-nvmem-use-helper-to-get-SMEM-SoC-ID.patch │ │ │ ├── 831-v6.7-rtc-rtc7301-Support-byte-addressed-IO.patch │ │ │ ├── 832-v6.7-net-phy-amd-Support-the-Altima-AMI101L.patch │ │ │ ├── 833-v6.8-leds-core-Add-more-colors-from-DT-bindings-to-led_co.patch.patch │ │ │ ├── 834-v6.8-leds-trigger-netdev-Extend-speeds-up-to-10G.patch │ │ │ ├── 835-v6.9-net-phy-add-support-for-PHY-LEDs-polarity-modes.patch │ │ │ ├── 836-v6.7-leds-trigger-netdev-fix-RTNL-handling-to-prevent-pot.patch │ │ │ ├── 837-v6.4-net-phy-hide-the-PHYLIB_LEDS-knob.patch │ │ │ ├── 838-v6.9-leds-trigger-netdev-Fix-kernel-panic-on-interface-re.patch │ │ │ ├── 839-v6.9-net-phy-aquantia-clear-PMD-Global-Transmit-Disable-b.patch │ │ │ ├── 850-v6.2-bus-mhi-host-pci_generic-add-support-for-sc8280xp-cr.patch │ │ │ ├── 851-v6.2-bus-mhi-host-pci_generic-Add-HP-variant-of-T99W175.patch │ │ │ ├── 852-v6.2-bus-mhi-host-pci_generic-Add-definition-for-some-VID.patch │ │ │ ├── 853-v6.2-bus-mhi-host-pci_generic-Drop-redundant-pci_enable_p.patch │ │ │ ├── 854-v6.4-bus-mhi-pci_generic-Add-Foxconn-T99W510.patch │ │ │ ├── 855-v6.6-bus-mhi-host-pci_generic-Add-support-for-IP_SW0-chan.patch │ │ │ ├── 856-v6.6-bus-mhi-host-pci_generic-Add-support-for-Quectel-EM1.patch │ │ │ ├── 857-v6.6-bus-mhi-host-pci_generic-Add-support-for-Quectel-RM5.patch │ │ │ ├── 858-v6.6-bus-mhi-host-pci_generic-Add-support-for-Dell-DW5932.patch │ │ │ ├── 859-v6.6-bus-mhi-host-pci_generic-Add-support-for-Quectel-RM5.patch │ │ │ ├── 861-v6.8-bus-mhi-host-Add-a-separate-timeout-parameter-for-wa.patch │ │ │ ├── 862-v6.8-bus-mhi-host-pci_generic-Add-SDX75-based-modem-suppo.patch │ │ │ ├── 863-stable-bus-mhi-host-pci_generic-constify-modem_telit_fn980_.patch │ │ │ ├── 864-v6.6-bus-mhi-host-allow-MHI-client-drivers-to-provide-the.patch │ │ │ ├── 880-v6.3-mfd-axp20x-Fix-order-of-pek-rise-and-fall-events.patch │ │ │ ├── 881-v6.3-mfd-axp20x-Switch-to-the-sys-off-handler-API.patch │ │ │ ├── 882-v6.3-mfd-axp20x-Fix-axp288-writable-ranges.patch │ │ │ ├── 883-v6.4-mfd-axp20x-Add-support-for-AXP15060-PMIC.patch │ │ │ ├── 884-v6.5-mfd-axp20x-Add-support-for-AXP313a-PMIC.patch │ │ │ ├── 885-v6.5-regulator-axp20x-Add-support-for-AXP313a-variant.patch │ │ │ ├── 886-v6.5-regulator-axp20x-Add-AXP15060-support.patch │ │ │ ├── 887-v6.5-mfd-axp20x-Add-support-for-AXP192.patch │ │ │ ├── 890-v6.2-mtd-spinand-winbond-fix-flash-detection.patch │ │ │ ├── 891-v6.2-mtd-spinand-winbond-add-W25N02KV.patch │ │ │ ├── 892-v6.5-mtd-spinand-winbond-Fix-ecc_get_status.patch │ │ │ ├── 894-v6.8-net-ethtool-implement-ethtool_puts.patch │ │ │ ├── 895-01-v6.8-net-phy-add-possible-interfaces.patch │ │ │ ├── 895-02-v6.8-net-phylink-use-for_each_set_bit.patch │ │ │ ├── 895-03-v6.8-net-phylink-split-out-per-interface-validation.patch │ │ │ ├── 895-04-v6.8-net-phylink-pass-PHY-into-phylink_validate_one.patch │ │ │ ├── 895-05-v6.8-net-phylink-pass-PHY-into-phylink_validate_mask.patch │ │ │ ├── 895-06-v6.8-net-phylink-split-out-PHY-validation-from-phylink_br.patch │ │ │ ├── 895-07-v6.8-net-phylink-use-the-PHY-s-possible_interfaces-if-pop.patch │ │ │ ├── 897-01-v6.9-net-phy-qcom-qca808x-add-helper-for-checking-for-1G-.patch │ │ │ └── 897-02-v6.9-net-phy-qcom-qca808x-fill-in-possible_interfaces.patch │ │ ├── backport-6.12 │ │ │ ├── 200-v6.14-compiler.h-add-const_true.patch │ │ │ ├── 201-v6.16-bitfield-Add-FIELD_MODIFY-helper.patch │ │ │ ├── 203-v6.15-drivers-base-component-add-function-to-query-the-bound.patch │ │ │ ├── 330-v6.13-jiffies-Define-secs_to_jiffies.patch │ │ │ ├── 331-v6.14-jiffies-Cast-to-unsigned-long-in-secs_to_jiffies-con.patch │ │ │ ├── 410-v6.13-01-block-add-support-for-defining-read-only-partitions.patch │ │ │ ├── 410-v6.13-03-block-introduce-add_disk_fwnode.patch │ │ │ ├── 410-v6.13-04-mmc-block-attach-partitions-fwnode-if-found-in-mmc-c.patch │ │ │ ├── 410-v6.13-05-block-add-support-for-partition-table-defined-in-OF.patch │ │ │ ├── 412-v6.14-mtd-spinand-add-support-for-FORESEE-F35SQA001G.patch │ │ │ ├── 413-01-v6.14-mtd-rawnand-qcom-cleanup-qcom_nandc-driver.patch │ │ │ ├── 413-02-v6.14-mtd-rawnand-qcom-Add-qcom-prefix-to-common-api.patch │ │ │ ├── 413-03-v6.14-mtd-nand-Add-qpic_common-API-file.patch │ │ │ ├── 413-04-v6.14-mtd-rawnand-qcom-use-FIELD_PREP-and-GENMASK.patch │ │ │ ├── 413-05-v6.14-mtd-nand-change-to-qpic_version2.patch │ │ │ ├── 414-v6.14-mtd-rawnand-qcom-fix-broken-config-in-qcom_param_pag.patch │ │ │ ├── 415-v6.14-mtd-rawnand-qcom-Fix-build-issue-on-x86-architecture.patch │ │ │ ├── 416-v6.15-01-spi-spi-qpic-add-driver-for-QCOM-SPI-NAND-flash-Inte.patch │ │ │ ├── 416-v6.15-02-spi-spi-qpic-snand-Fix-ECC_CFG_ECC_DISABLE-shift-in-.patch │ │ │ ├── 416-v6.15-03-spi-spi-qpic-snand-avoid-memleak-in-qcom_spi_ecc_ini.patch │ │ │ ├── 416-v6.15-04-spi-SPI_QPIC_SNAND-should-be-tristate-and-depend-on-.patch │ │ │ ├── 416-v6.15-05-spi-spi-qpic-snand-propagate-errors-from-qcom_spi_block_erase.patch │ │ │ ├── 416-v6.15-06-spi-spi-qpic-snand-fix-NAND_READ_LOCATION_2-register-handling.patch │ │ │ ├── 416-v6.15-07-spi-spi-qpic-snand-use-kmalloc-for-OOB-buffer-alloca.patch │ │ │ ├── 416-v6.16-08-spi-spi-qpic-snand-remove-unused-wlen-member-of-struct-qpic_spi_nand.patch │ │ │ ├── 620-v6.15-ppp-use-IFF_NO_QUEUE-in-virtual-interfaces.patch │ │ │ ├── 720-v6.13-net-phy-mediatek-ge-soc-Fix-coding-style.patch │ │ │ ├── 721-v6.13-net-phy-mediatek-ge-soc-Shrink-line-wrapping-to-80-c.patch │ │ │ ├── 722-v6.13-net-phy-mediatek-ge-soc-Propagate-error-code-correct.patch │ │ │ ├── 723-v6.13-net-phy-mediatek-Re-organize-MediaTek-ethernet-phy-d.patch │ │ │ ├── 724-v6.13-net-phy-mediatek-Move-LED-helper-functions-into-mtk-.patch │ │ │ ├── 725-v6.13-net-phy-mediatek-Improve-readability-of-mtk-phy-lib..patch │ │ │ ├── 726-v6.13-net-phy-mediatek-Integrate-read-write-page-helper-fu.patch │ │ │ ├── 727-v6.13-net-phy-mediatek-add-MT7530-MT7531-s-PHY-ID-macros.patch │ │ │ ├── 728-v6.14-net-phy-Constify-struct-mdio_device_id.patch │ │ │ ├── 729-v6.15-net-phy-mediatek-Change-to-more-meaningful-macros.patch │ │ │ ├── 730-v6.15-net-phy-mediatek-Add-token-ring-access-helper-functi.patch │ │ │ ├── 731-v6.15-net-phy-mediatek-Add-token-ring-set-bit-operation-su.patch │ │ │ ├── 732-v6.15-net-phy-mediatek-Add-token-ring-clear-bit-operation-.patch │ │ │ ├── 733-v6.15-net-phy-mediatek-Move-some-macros-to-phy-lib-for-lat.patch │ │ │ ├── 735-v6.16-net-phy-mediatek-permit-to-compile-test-GE-SOC-PHY-d.patch │ │ │ ├── 736-v6.16-net-phy-mediatek-add-Airoha-PHY-ID-to-SoC-driver.patch │ │ │ ├── 737-v6.16-net-phy-mediatek-init-val-in-.phy_led_polarity_set-f.patch │ │ │ ├── 753-v6.15-net-ethernet-mediatek-add-EEE-support.patch │ │ │ ├── 780-01-v6.13-r8169-remove-original-workaround-for-RTL8125-broken-.patch │ │ │ ├── 780-02-v6.13-r8169-enable-SG-TSO-on-selected-chip-versions-per-de.patch │ │ │ ├── 780-03-v6.13-r8169-implement-additional-ethtool-stats-ops.patch │ │ │ ├── 780-04-v6.13-r8169-don-t-take-RTNL-lock-in-rtl_task.patch │ │ │ ├── 780-05-v6.13-replace-custom-flag-with-disable_work-et-al.patch │ │ │ ├── 780-06-v6.13-r8169-avoid-duplicated-messages-if-loading-firmware-.patch │ │ │ ├── 780-07-v6.13-r8169-remove-rtl_dash_loop_wait_high-low.patch │ │ │ ├── 780-08-v6.13-r8169-enable-EEE-at-2.5G-per-default-on-RTL8125B.patch │ │ │ ├── 780-10-v6.13-r8169-fix-inconsistent-indenting-in-rtl8169_get_eth_.patch │ │ │ ├── 780-11-v6.13-r8169-align-RTL8125-EEE-config-with-vendor-driver.patch │ │ │ ├── 780-12-v6.13-r8169-align-RTL8125-RTL8126-PHY-config-with-vendor-d.patch │ │ │ ├── 780-13-v6.13-r8169-align-RTL8126-EEE-config-with-vendor-driver.patch │ │ │ ├── 780-14-v6.13-r8169-improve-initialization-of-RSS-registers-on-RTL.patch │ │ │ ├── 780-15-v6.13-r8169-remove-leftover-locks-after-reverted-change.patch │ │ │ ├── 780-16-v6.13-r8169-improve-__rtl8169_set_wol.patch │ │ │ ├── 780-17-v6.13-r8169-improve-rtl_set_d3_pll_down.patch │ │ │ ├── 780-18-v6.13-r8169-align-WAKE_PHY-handling-with-r8125-r8126-vendo.patch │ │ │ ├── 780-19-v6.13-r8169-use-helper-r8169_mod_reg8_cond-to-simplify-rtl.patch │ │ │ ├── 780-20-v6.13-r8169-copy-vendor-driver-2.5G-5G-EEE-advertisement-c.patch │ │ │ ├── 780-21-v6.14-r8169-remove-unused-flag-RTL_FLAG_TASK_RESET_NO_QUEU.patch │ │ │ ├── 780-22-v6.14-r8169-remove-support-for-chip-version-11.patch │ │ │ ├── 780-23-v6.14-r8169-adjust-version-numbering-for-RTL8126.patch │ │ │ ├── 780-24-v6.14-r8169-add-support-for-RTL8125D-rev.b.patch │ │ │ ├── 780-25-v6.14-r8169-add-support-for-RTL8125BP-rev.b.patch │ │ │ ├── 780-26-v6.15-r8169-make-Kconfig-option-for-LED-support-user-visib.patch │ │ │ ├── 780-28-v6.15-r8169-add-support-for-Intel-Killer-E5000.patch │ │ │ ├── 780-29-v6.15-r8169-add-PHY-c45-ops-for-MDIO_MMD_VENDOR2-registers.patch │ │ │ ├── 780-30-v6.15-r8169-increase-max-jumbo-packet-size-on-RTL8125-RTL8.patch │ │ │ ├── 780-31-v6.15-r8169-switch-away-from-deprecated-pcim_iomap_table.patch │ │ │ ├── 780-32-v6.15-r8169-enable-RTL8168H-RTL8168EP-RTL8168FP-ASPM-suppo.patch │ │ │ ├── 780-34-v6.16-r8169-add-helper-rtl_csi_mod-for-accessing-extended.patch │ │ │ ├── 780-35-v6.16-r8169-add-helper-rtl8125_phy_param.patch │ │ │ ├── 780-36-v6.16-r8169-refactor-chip-version-detection.patch │ │ │ ├── 780-37-v6.16-r8169-add-RTL_GIGA_MAC_VER_LAST-to-facilitate-adding.patch │ │ │ ├── 780-38-v6.16-r8169-use-pci_prepare_to_sleep-in-rtl_shutdown.patch │ │ │ ├── 780-39-v6.16-r8169-merge-chip-versions-70-and-71-RTL8126A.patch │ │ │ ├── 780-40-v6.16-r8169-merge-chip-versions-64-and-65-RTL8125D.patch │ │ │ ├── 780-41-v6.16-r8169-merge-chip-versions-52-and-53-RTL8117.patch │ │ │ ├── 780-42-v6.16-r8169-add-support-for-RTL8127A.patch │ │ │ ├── 781-01-v6.13-net-phy-realtek-read-duplex-and-gbit-master-from-PHY.patch │ │ │ ├── 781-02-v6.13-net-phy-realtek-change-order-of-calls-in-C22-read_st.patch │ │ │ ├── 781-03-v6.13-net-phy-realtek-clear-1000Base-T-link-partner-advert.patch │ │ │ ├── 781-06-v6.14-net-phy-realtek-add-support-for-reading-MDIO_MMD_VEN.patch │ │ │ ├── 781-07-v6.14-net-phy-realtek-clear-1000Base-T-lpa-if-link-is-down.patch │ │ │ ├── 781-08-v6.14-net-phy-realtek-clear-master_slave_state-if-link-is-.patch │ │ │ ├── 781-09-v6.14-net-phy-realtek-always-clear-NBase-T-lpa.patch │ │ │ ├── 781-10-v6.14-net-phy-move-realtek-PHY-driver-to-its-own-subdirect.patch │ │ │ ├── 781-11-v6.14-net-phy-realtek-add-hwmon-support-for-temp-sensor-on.patch │ │ │ ├── 781-12-v6.14-net-phy-realtek-HWMON-support-for-standalone-version.patch │ │ │ ├── 781-13-v6.15-net-phy-realtek-make-HWMON-support-a-user-visible-Kc.patch │ │ │ ├── 781-14-v6.15-net-phy-realtek-use-string-choices-helpers.patch │ │ │ ├── 781-15-v6.15-net-phy-realtek-improve-mmd-register-access-for-inte.patch │ │ │ ├── 781-16-v6.15-net-phy-realtek-switch-from-paged-to-MMD-ops-in-rtl8.patch │ │ │ ├── 781-17-v6.15-net-phy-realtek-add-helper-RTL822X_VND2_C22_REG.patch │ │ │ ├── 781-18-v6.15-net-phy-realtek-add-defines-for-shadowed-c45-standar.patch │ │ │ ├── 781-19-v6.15-net-phy-realtek-disable-PHY-mode-EEE.patch │ │ │ ├── 781-20-v6.16-net-phy-realtek-Add-support-for-WOL-magic-packet-on.patch │ │ │ ├── 781-21-v6.16-net-phy-realtek-remove-unsed-RTL821x_PHYSR-macros.patch │ │ │ ├── 781-22-v6.16-net-phy-realtek-Clean-up-RTL821x-ExtPage-access.patch │ │ │ ├── 781-23-v6.16-net-phy-realtek-add-RTL8211F-register-defines.patch │ │ │ ├── 781-24-v6.16-net-phy-realtek-Group-RTL82-macro-definitions.patch │ │ │ ├── 781-25-v6.16-net-phy-realtek-use-__set_bit-in-rtl8211f_led_hw_con.patch │ │ │ ├── 781-26-v6.16-net-phy-realtek-Add-support-for-PHY-LEDs-on-RTL8211E.patch │ │ │ ├── 781-27-v6.16-net-phy-realtek-add-RTL8127-internal-PHY.patch │ │ │ ├── 782-01-v6.16-net-phy-pass-PHY-driver-to-.match_phy_device-OP.patch │ │ │ ├── 782-04-v6.16-net-phy-introduce-genphy_match_phy_device.patch │ │ │ ├── 782-05-v6.16-net-phy-Add-support-for-Aeonsemi-AS21xxx-PHYs.patch │ │ │ ├── 792-v6.16-igc-enable-HW-vlan-tag-insertion-stripping-by-defaul.patch │ │ │ ├── 800-v6.13-hwmon-Add-static-visibility-member-to-struct-hwmon_o.patch │ │ │ ├── 801-02-v6.13-clk-clk-gpio-update-documentation-for-gpio-gate-cloc.patch │ │ │ ├── 801-03-v6.13-clk-clk-gpio-use-dev_err_probe-for-gpio-get-failure.patch │ │ │ ├── 801-04-v6.13-clk-clk-gpio-add-driver-for-gated-fixed-clocks.patch │ │ │ ├── 839-v6.13-net-phy-aquantia-allow-forcing-order-of-MDI-pairs.patch │ │ │ ├── 840-v6.13-net-phy-aquantia-fix-return-value-check-in-aqr107_co.patch │ │ │ ├── 841-v6.13-net-phy-support-active-high-property-for-PHY-LEDs.patch │ │ │ ├── 842-v6.13-net-phy-aquantia-correctly-describe-LED-polarity-ove.patch │ │ │ ├── 843-v6.13-net-phy-mxl-gpy-add-basic-LED-support.patch │ │ │ ├── 844-v6.13-net-phy-mxl-gpy-add-missing-support-for-TRIGGER_NETD.patch │ │ │ ├── 845-v6.13-net-phy-mxl-gpy-correctly-describe-LED-polarity.patch │ │ │ ├── 846-v6.13-net-phy-intel-xway-add-support-for-PHY-LEDs.patch │ │ │ ├── 880-v6.14-gpio-regmap-Use-generic-request-free-ops.patch │ │ │ ├── 901-v6.13-net-dsa-mv88e6xxx-Support-LED-control.patch │ │ │ └── 902-v6.13-fortify-Hide-run-time-copy-size-from-value-range-tracking.patch │ │ ├── backport-6.6 │ │ │ ├── 0080-v6.9-smp-Avoid-setup_max_cpus_namespace_collision_shadowing.patch │ │ │ ├── 065-v6.10-compiler_types.h-Define-__retain.patch │ │ │ ├── 066-v6.10-bpf-Harden-__bpf_kfunc-against-linker-removal.patch │ │ │ ├── 300-v6.7-arm64-swiotlb-Reduce-the-default-size-if-no-ZONE_DMA.patch │ │ │ ├── 301-v6.9-kernel.h-removed-REPEAT_BYTE-from-kernel.h.patch │ │ │ ├── 302-v6.9-kernel.h-Move-upper_-_bits-and-lower_-_bits-to-wordp.patch │ │ │ ├── 310-v6.7-mips-kexec-fix-the-incorrect-ifdeffery-and-dependenc.patch │ │ │ ├── 330-v6.13-jiffies-Define-secs_to_jiffies.patch │ │ │ ├── 331-v6.14-jiffies-Cast-to-unsigned-long-in-secs_to_jiffies-con.patch │ │ │ ├── 400-v6.9-mtd-rawnand-brcmnand-Support-write-protection-settin.patch │ │ │ ├── 401-v6.9-dt-bindings-mtd-add-basic-bindings-for-UBI.patch │ │ │ ├── 402-v6.9-dt-bindings-mtd-ubi-volume-allow-UBI-volumes-to-prov.patch │ │ │ ├── 403-v6.9-mtd-ubi-block-use-notifier-to-create-ubiblock-from-p.patch │ │ │ ├── 404-v6.9-mtd-ubi-attach-from-device-tree.patch │ │ │ ├── 405-v6.9-mtd-ubi-introduce-pre-removal-notification-for-UBI-v.patch │ │ │ ├── 406-v6.9-mtd-ubi-populate-ubi-volume-fwnode.patch │ │ │ ├── 407-v6.9-mtd-ubi-provide-NVMEM-layer-over-UBI-volumes.patch │ │ │ ├── 408-v6.9-mtd-ubi-fix-NVMEM-over-UBI-volumes-on-32-bit-systems.patch │ │ │ ├── 410-v6.13-01-block-add-support-for-defining-read-only-partitions.patch │ │ │ ├── 410-v6.13-03-block-introduce-add_disk_fwnode.patch │ │ │ ├── 410-v6.13-04-mmc-block-attach-partitions-fwnode-if-found-in-mmc-c.patch │ │ │ ├── 410-v6.13-05-block-add-support-for-partition-table-defined-in-OF.patch │ │ │ ├── 411-v6.7-mtd-spinand-add-support-for-FORESEE-F35SQA002G.patch │ │ │ ├── 412-v6.14-mtd-spinand-add-support-for-FORESEE-F35SQA001G.patch │ │ │ ├── 413-01-v6.14-mtd-rawnand-qcom-cleanup-qcom_nandc-driver.patch │ │ │ ├── 413-02-v6.14-mtd-rawnand-qcom-Add-qcom-prefix-to-common-api.patch │ │ │ ├── 413-03-v6.14-mtd-nand-Add-qpic_common-API-file.patch │ │ │ ├── 413-04-v6.14-mtd-rawnand-qcom-use-FIELD_PREP-and-GENMASK.patch │ │ │ ├── 413-05-v6.14-mtd-nand-change-to-qpic_version2.patch │ │ │ ├── 414-v6.14-mtd-rawnand-qcom-fix-broken-config-in-qcom_param_pag.patch │ │ │ ├── 415-v6.14-mtd-rawnand-qcom-Fix-build-issue-on-x86-architecture.patch │ │ │ ├── 416-v6.15-01-spi-spi-qpic-add-driver-for-QCOM-SPI-NAND-flash-Inte.patch │ │ │ ├── 416-v6.15-02-spi-spi-qpic-snand-Fix-ECC_CFG_ECC_DISABLE-shift-in-.patch │ │ │ ├── 416-v6.15-03-spi-spi-qpic-snand-avoid-memleak-in-qcom_spi_ecc_ini.patch │ │ │ ├── 416-v6.15-04-spi-SPI_QPIC_SNAND-should-be-tristate-and-depend-on-.patch │ │ │ ├── 416-v6.15-05-spi-spi-qpic-snand-propagate-errors-from-qcom_spi_block_erase.patch │ │ │ ├── 416-v6.15-06-spi-spi-qpic-snand-fix-NAND_READ_LOCATION_2-register-handling.patch │ │ │ ├── 416-v6.15-07-spi-spi-qpic-snand-use-kmalloc-for-OOB-buffer-alloca.patch │ │ │ ├── 416-v6.16-08-spi-spi-qpic-snand-remove-unused-wlen-member-of-struct-qpic_spi_nand.patch │ │ │ ├── 600-v6.10-net-Remove-conditional-threaded-NAPI-wakeup-based-on.patch │ │ │ ├── 601-v6.10-net-Allow-to-use-SMP-threads-for-backlog-NAPI.patch │ │ │ ├── 602-v6.10-net-Use-backlog-NAPI-to-clean-up-the-defer_list.patch │ │ │ ├── 603-v6.10-net-Rename-rps_lock-to-backlog_lock.patch │ │ │ ├── 610-v6.9-net-mdio-add-2.5g-and-5g-related-PMA-speed-constants.patch │ │ │ ├── 624-v6.15-ppp-use-IFF_NO_QUEUE-in-virtual-interfaces.patch │ │ │ ├── 702-01-v6.7-net-phy-aquantia-move-to-separate-directory.patch │ │ │ ├── 702-02-v6.7-net-phy-aquantia-move-MMD_VEND-define-to-header.patch │ │ │ ├── 702-03-v6.7-net-phy-aquantia-add-firmware-load-support.patch │ │ │ ├── 703-v6.10-flow_offload-add-control-flag-checking-helpers.patch │ │ │ ├── 704-v6.12-ipv6-Add-ipv6_addr_-cpu_to_be32-be32_to_cpu-helpers.patch │ │ │ ├── 707-v6.8-02-net-phy-at803x-move-disable-WOL-to-specific-at8031-p.patch │ │ │ ├── 707-v6.8-03-net-phy-at803x-raname-hw_stats-functions-to-qca83xx-.patch │ │ │ ├── 707-v6.8-04-net-phy-at803x-move-qca83xx-specific-check-in-dedica.patch │ │ │ ├── 707-v6.8-05-net-phy-at803x-move-specific-DT-option-for-at8031-to.patch │ │ │ ├── 707-v6.8-06-net-phy-at803x-move-specific-at8031-probe-mode-check.patch │ │ │ ├── 707-v6.8-07-net-phy-at803x-move-specific-at8031-config_init-to-d.patch │ │ │ ├── 707-v6.8-08-net-phy-at803x-move-specific-at8031-WOL-bits-to-dedi.patch │ │ │ ├── 707-v6.8-09-net-phy-at803x-move-specific-at8031-config_intr-to-d.patch │ │ │ ├── 707-v6.8-10-net-phy-at803x-make-at8031-related-DT-functions-name.patch │ │ │ ├── 707-v6.8-11-net-phy-at803x-move-at8031-functions-in-dedicated-se.patch │ │ │ ├── 707-v6.8-12-net-phy-at803x-move-at8035-specific-DT-parse-to-dedi.patch │ │ │ ├── 707-v6.8-13-net-phy-at803x-drop-specific-PHY-ID-check-from-cable.patch │ │ │ ├── 708-v6.8-01-net-phy-at803x-move-specific-qca808x-config_aneg-to-.patch │ │ │ ├── 708-v6.8-02-net-phy-at803x-make-read-specific-status-function-mo.patch │ │ │ ├── 709-v6.8-01-net-phy-at803x-remove-extra-space-after-cast.patch │ │ │ ├── 709-v6.8-02-net-phy-at803x-replace-msleep-1-with-usleep_range.patch │ │ │ ├── 710-v6.8-net-phy-at803x-better-align-function-varibles-to-ope.patch │ │ │ ├── 711-v6.8-01-net-phy-at803x-generalize-cdt-fault-length-function.patch │ │ │ ├── 711-v6.8-02-net-phy-at803x-refactor-qca808x-cable-test-get-statu.patch │ │ │ ├── 711-v6.8-03-net-phy-at803x-add-support-for-cdt-cross-short-test-.patch │ │ │ ├── 711-v6.8-04-net-phy-at803x-make-read_status-more-generic.patch │ │ │ ├── 712-v6.9-net-phy-at803x-add-LED-support-for-qca808x.patch │ │ │ ├── 713-v6.9-01-net-phy-move-at803x-PHY-driver-to-dedicated-director.patch │ │ │ ├── 713-v6.9-02-net-phy-qcom-create-and-move-functions-to-shared-lib.patch │ │ │ ├── 713-v6.9-03-net-phy-qcom-deatch-qca83xx-PHY-driver-from-at803x.patch │ │ │ ├── 713-v6.9-04-net-phy-qcom-move-additional-functions-to-shared-lib.patch │ │ │ ├── 713-v6.9-05-net-phy-qcom-detach-qca808x-PHY-driver-from-at803x.patch │ │ │ ├── 714-v6.8-01-net-phy-make-addr-type-u8-in-phy_package_shared-stru.patch │ │ │ ├── 714-v6.8-02-net-phy-extend-PHY-package-API-to-support-multiple-g.patch │ │ │ ├── 714-v6.8-03-net-phy-restructure-__phy_write-read_mmd-to-helper-a.patch │ │ │ ├── 714-v6.8-04-net-phy-add-support-for-PHY-package-MMD-read-write.patch │ │ │ ├── 715-v6.9-01-net-phy-qcom-qca808x-fix-logic-error-in-LED-brightne.patch │ │ │ ├── 715-v6.9-02-net-phy-qcom-qca808x-default-to-LED-active-High-if-n.patch │ │ │ ├── 716-v6.9-02-net-phy-add-support-for-scanning-PHY-in-PHY-packages.patch │ │ │ ├── 716-v6.9-03-net-phy-add-devm-of_phy_package_join-helper.patch │ │ │ ├── 716-v6.9-04-net-phy-qcom-move-more-function-to-shared-library.patch │ │ │ ├── 716-v6.9-06-net-phy-provide-whether-link-has-changed-in-c37_read.patch │ │ │ ├── 716-v6.9-07-net-phy-qcom-add-support-for-QCA807x-PHY-Family.patch │ │ │ ├── 716-v6.9-08-net-phy-qcom-move-common-qca808x-LED-define-to-share.patch │ │ │ ├── 716-v6.9-09-net-phy-qcom-generalize-some-qca808x-LED-functions.patch │ │ │ ├── 716-v6.9-10-net-phy-qca807x-add-support-for-configurable-LED.patch │ │ │ ├── 717-v6.9-net-phy-qca807x-move-interface-mode-check-to-.config.patch │ │ │ ├── 718-v6.9-net-phy-qcom-at803x-fix-kernel-panic-with-at8031_pro.patch │ │ │ ├── 720-v6.9-net-mdio-ipq4019-add-support-for-clock-frequency-pro.patch │ │ │ ├── 721-v6.7-net-phy-aquantia-drop-wrong-endianness-conversion-fo.patch │ │ │ ├── 722-v6.10-dt-bindings-arm-qcom-ids-Add-SoC-ID-for-IPQ5321.patch │ │ │ ├── 730-v6.7-net-sfp-re-implement-ignoring-the-hardware-TX_FAULT-.patch │ │ │ ├── 734-v6.8-net-phy-bcm54612e-add-suspend-resume.patch │ │ │ ├── 740-v6.10-net-stmmac-dwmac-ipq806x-account-for-rgmii-txid-rxid.patch │ │ │ ├── 751-01-STABLE-net-ethernet-mediatek-split-tx-and-rx-fields-in-mtk_.patch │ │ │ ├── 751-02-STABLE-net-ethernet-mediatek-use-QDMA-instead-of-ADMAv2-on-.patch │ │ │ ├── 751-03-v6.4-net-ethernet-mtk_eth_soc-improve-keeping-track-of-of.patch │ │ │ ├── 751-04-v6.4-net-ethernet-mediatek-fix-ppe-flow-accounting-for-L2.patch │ │ │ ├── 752-03-v6.6-net-ethernet-mtk_eth_soc-rely-on-mtk_pse_port-defini.patch │ │ │ ├── 752-05-v6.7-net-ethernet-mtk_wed-do-not-assume-offload-callbacks.patch │ │ │ ├── 752-06-v6.7-net-ethernet-mtk_wed-introduce-versioning-utility-ro.patch │ │ │ ├── 752-07-v6.7-net-ethernet-mtk_wed-do-not-configure-rx-offload-if-.patch │ │ │ ├── 752-08-v6.7-net-ethernet-mtk_wed-rename-mtk_rxbm_desc-in-mtk_wed.patch │ │ │ ├── 752-09-v6.7-net-ethernet-mtk_wed-introduce-mtk_wed_buf-structure.patch │ │ │ ├── 752-10-v6.7-net-ethernet-mtk_wed-move-mem_region-array-out-of-mt.patch │ │ │ ├── 752-11-v6.7-net-ethernet-mtk_wed-make-memory-region-optional.patch │ │ │ ├── 752-13-v6.7-net-ethernet-mtk_wed-add-mtk_wed_soc_data-structure.patch │ │ │ ├── 752-14-v6.7-net-ethernet-mtk_wed-introduce-WED-support-for-MT798.patch │ │ │ ├── 752-15-v6.7-net-ethernet-mtk_wed-refactor-mtk_wed_check_wfdma_rx.patch │ │ │ ├── 752-16-v6.7-net-ethernet-mtk_wed-introduce-partial-AMSDU-offload.patch │ │ │ ├── 752-17-v6.7-net-ethernet-mtk_wed-introduce-hw_rro-support-for-MT.patch │ │ │ ├── 752-18-v6.7-net-ethernet-mtk_wed-debugfs-move-wed_v2-specific-re.patch │ │ │ ├── 752-19-v6.7-net-ethernet-mtk_wed-debugfs-add-WED-3.0-debugfs-ent.patch │ │ │ ├── 752-20-v6.7-net-ethernet-mtk_wed-add-wed-3.0-reset-support.patch │ │ │ ├── 752-21-v6.7-net-ethernet-mtk_wed-fix-firmware-loading-for-MT7986.patch │ │ │ ├── 752-22-v6.7-net-ethernet-mtk_wed-remove-wo-pointer-in-wo_r32-wo_.patch │ │ │ ├── 752-23-v6.8-net-ethernet-mtk_wed-rely-on-__dev_alloc_page-in-mtk.patch │ │ │ ├── 752-24-v6.8-net-ethernet-mtk_wed-add-support-for-devices-with-mo.patch │ │ │ ├── 752-25-v6.10-net-ethernet-mtk_eth_soc-handle-dma-buffer-size-soc-.patch │ │ │ ├── 752-26-v6.10-net-ethernet-mtk_eth_soc-ppe-add-support-for-multipl.patch │ │ │ ├── 752-27-v6.10-net-ethernet-mtk_eth_soc-ppe-prevent-ppe-update-for-.patch │ │ │ ├── 752-28-v6.10-net-ethernet-mediatek-Allow-gaps-in-MAC-allocation.patch │ │ │ ├── 752-29-v6.10-net-ethernet-mtk_ppe-Change-PPE-entries-number-to-16.patch │ │ │ ├── 752-30-v6.10-net-ethernet-mtk_eth_soc-implement-.-get-set-_pausep.patch │ │ │ ├── 760-v6.9-net-phy-aquantia-add-AQR111-and-AQR111B0-PHY-ID.patch │ │ │ ├── 761-v6.9-net-phy-aquantia-add-AQR113-PHY-ID.patch │ │ │ ├── 762-v6.9-net-phy-aquantia-add-AQR813-PHY-ID.patch │ │ │ ├── 763-v6.10-net-dsa-introduce-dsa_phylink_to_port.patch │ │ │ ├── 764-v6.10-net-dsa-allow-DSA-switch-drivers-to-provide-their-ow.patch │ │ │ ├── 765-v6.9-net-phy-aquantia-add-support-for-AQR114C-PHY-ID.patch │ │ │ ├── 770-net-introduce-napi_is_scheduled-helper.patch │ │ │ ├── 771-v6.7-01-net-stmmac-improve-TX-timer-arm-logic.patch │ │ │ ├── 771-v6.7-02-net-stmmac-move-TX-timer-arm-after-DMA-enable.patch │ │ │ ├── 771-v6.7-03-net-stmmac-increase-TX-coalesce-timer-to-5ms.patch │ │ │ ├── 780-01-v6.8-r8169-improve-RTL8411b-phy-down-fixup.patch │ │ │ ├── 780-02-v6.8-r8169-remove-not-needed-check-in-rtl_fw_write_firmwa.patch │ │ │ ├── 780-03-v6.8-r8169-remove-multicast-filter-limit.patch │ │ │ ├── 780-04-v6.8-r8169-improve-handling-task-scheduling.patch │ │ │ ├── 780-05-v6.8-r8169-add-support-for-LED-s-on-RTL8168-RTL8101.patch │ │ │ ├── 780-06-v6.8-r8169-fix-building-with-CONFIG_LEDS_CLASS-m.patch │ │ │ ├── 780-07-v6.9-r8169-simplify-EEE-handling.patch │ │ │ ├── 780-08-v6.9-r8169-add-support-for-RTL8126A.patch │ │ │ ├── 780-09-v6.9-r8169-improve-checking-for-valid-LED-modes.patch │ │ │ ├── 780-10-v6.9-r8169-simplify-code-by-using-core-provided-pcpu-stat.patch │ │ │ ├── 780-11-v6.9-r8169-add-LED-support-for-RTL8125-RTL8126.patch │ │ │ ├── 780-12-v6.9-r8169-add-generic-rtl_set_eee_txidle_timer-function.patch │ │ │ ├── 780-13-v6.9-r8169-support-setting-the-EEE-tx-idle-timer-on-RTL81.patch │ │ │ ├── 780-14-v6.9-r8169-add-support-for-returning-tx_lpi_timer-in-etht.patch │ │ │ ├── 780-15-v6.9-r8169-add-MODULE_FIRMWARE-entry-for-RTL8126A.patch │ │ │ ├── 780-16-v6.9-r8169-fix-LED-related-deadlock-on-module-removal.patch │ │ │ ├── 780-17-v6.9-r8169-add-missing-conditional-compiling-for-call-to-.patch │ │ │ ├── 780-18-v6.10-r8169-add-support-for-RTL8168M.patch │ │ │ ├── 780-19-v6.10-net-annotate-writes-on-dev-mtu-from-ndo_change_mtu.patch │ │ │ ├── 780-20-v6.11-r8169-disable-interrupt-source-RxOverflow.patch │ │ │ ├── 780-21-v6.11-r8169-remove-detection-of-chip-version-11-early-RTL8.patch │ │ │ ├── 780-22-v6.12-r8169-add-support-for-RTL8126A-rev.b.patch │ │ │ ├── 780-23-v6.12-r8169-add-missing-MODULE_FIRMWARE-entry-for-RTL8126A.patch │ │ │ ├── 780-25-v6.13-r8169-remove-original-workaround-for-RTL8125-broken-.patch │ │ │ ├── 780-26-v6.13-r8169-enable-SG-TSO-on-selected-chip-versions-per-de.patch │ │ │ ├── 780-27-v6.13-r8169-implement-additional-ethtool-stats-ops.patch │ │ │ ├── 780-28-v6.13-r8169-don-t-take-RTNL-lock-in-rtl_task.patch │ │ │ ├── 780-30-v6.13-r8169-avoid-duplicated-messages-if-loading-firmware-.patch │ │ │ ├── 780-31-v6.13-r8169-remove-rtl_dash_loop_wait_high-low.patch │ │ │ ├── 780-32-v6.13-r8169-enable-EEE-at-2.5G-per-default-on-RTL8125B.patch │ │ │ ├── 780-33-v6.13-r8169-add-support-for-RTL8125D.patch │ │ │ ├── 780-34-v6.13-r8169-fix-inconsistent-indenting-in-rtl8169_get_eth_.patch │ │ │ ├── 780-35-v6.13-r8169-align-RTL8125-EEE-config-with-vendor-driver.patch │ │ │ ├── 780-36-v6.13-r8169-align-RTL8125-RTL8126-PHY-config-with-vendor-d.patch │ │ │ ├── 780-37-v6.13-r8169-align-RTL8126-EEE-config-with-vendor-driver.patch │ │ │ ├── 780-38-v6.13-r8169-improve-initialization-of-RSS-registers-on-RTL.patch │ │ │ ├── 780-39-v6.13-r8169-remove-leftover-locks-after-reverted-change.patch │ │ │ ├── 780-40-v6.13-r8169-improve-__rtl8169_set_wol.patch │ │ │ ├── 780-41-v6.13-r8169-improve-rtl_set_d3_pll_down.patch │ │ │ ├── 780-42-v6.13-r8169-align-WAKE_PHY-handling-with-r8125-r8126-vendo.patch │ │ │ ├── 780-43-v6.13-r8169-use-helper-r8169_mod_reg8_cond-to-simplify-rtl.patch │ │ │ ├── 780-44-v6.13-r8169-copy-vendor-driver-2.5G-5G-EEE-advertisement-c.patch │ │ │ ├── 780-45-v6.14-r8169-remove-unused-flag-RTL_FLAG_TASK_RESET_NO_QUEU.patch │ │ │ ├── 780-46-v6.14-r8169-remove-support-for-chip-version-11.patch │ │ │ ├── 780-47-v6.14-r8169-adjust-version-numbering-for-RTL8126.patch │ │ │ ├── 780-48-v6.14-r8169-add-support-for-RTL8125D-rev.b.patch │ │ │ ├── 780-49-v6.14-r8169-add-support-for-RTL8125BP-rev.b.patch │ │ │ ├── 780-50-v6.15-r8169-make-Kconfig-option-for-LED-support-user-visib.patch │ │ │ ├── 780-52-v6.15-r8169-add-support-for-Intel-Killer-E5000.patch │ │ │ ├── 780-53-v6.15-r8169-add-PHY-c45-ops-for-MDIO_MMD_VENDOR2-registers.patch │ │ │ ├── 780-54-v6.15-r8169-increase-max-jumbo-packet-size-on-RTL8125-RTL8.patch │ │ │ ├── 780-55-v6.15-r8169-enable-RTL8168H-RTL8168EP-RTL8168FP-ASPM-suppo.patch │ │ │ ├── 780-56-v6.15-r8169-disable-RTL8126-ZRX-DC-timeout.patch │ │ │ ├── 781-01-v6.9-net-phy-realtek-add-support-for-RTL8126A-integrated-.patch │ │ │ ├── 781-02-v6.9-net-phy-realtek-use-generic-MDIO-constants.patch │ │ │ ├── 781-03-v6.9-net-phy-realtek-add-5Gbps-support-to-rtl822x_config_.patch │ │ │ ├── 781-04-v6.9-net-phy-realtek-use-generic-MDIO-helpers-to-simplify.patch │ │ │ ├── 781-05-v6.10-net-phy-realtek-configure-SerDes-mode-for-rtl822xb-P.patch │ │ │ ├── 781-06-v6.10-net-phy-realtek-add-get_rate_matching-for-rtl822xb-P.patch │ │ │ ├── 781-07-v6.10-net-phy-realtek-Add-driver-instances-for-rtl8221b-vi.patch │ │ │ ├── 781-08-v6.10-net-phy-realtek-Change-rtlgen_get_speed-to-rtlgen_de.patch │ │ │ ├── 781-09-v6.10-net-phy-realtek-add-rtl822x_c45_get_features-to-set-.patch │ │ │ ├── 781-10-v6.11-net-phy-realtek-add-support-for-rtl8224-2.5Gbps-PHY.patch │ │ │ ├── 781-11-v6.11-net-phy-realtek-Add-support-for-PHY-LEDs-on-RTL8211F.patch │ │ │ ├── 781-12-v6.11-net-phy-realtek-Fix-setting-of-PHY-LEDs-Mode-B-bit-o.patch │ │ │ ├── 781-13-v6.12-net-phy-realtek-Check-the-index-value-in-led_hw_cont.patch │ │ │ ├── 781-14-v6.12-net-phy-realtek-Fix-MMD-access-on-RTL8126A-integrate.patch │ │ │ ├── 781-15-v6.13-net-phy-realtek-read-duplex-and-gbit-master-from-PHY.patch │ │ │ ├── 781-16-v6.13-net-phy-realtek-change-order-of-calls-in-C22-read_st.patch │ │ │ ├── 781-17-v6.13-net-phy-realtek-clear-1000Base-T-link-partner-advert.patch │ │ │ ├── 781-18-v6.13-net-phy-realtek-merge-the-drivers-for-internal-NBase.patch │ │ │ ├── 781-19-v6.13-net-phy-realtek-add-RTL8125D-internal-PHY.patch │ │ │ ├── 781-20-v6.14-net-phy-realtek-clear-1000Base-T-lpa-if-link-is-down.patch │ │ │ ├── 781-21-v6.14-net-phy-realtek-clear-master_slave_state-if-link-is-.patch │ │ │ ├── 781-22-v6.14-net-phy-realtek-always-clear-NBase-T-lpa.patch │ │ │ ├── 781-23-v6.14-net-phy-realtek-add-support-for-reading-MDIO_MMD_VEN.patch │ │ │ ├── 781-24-v6.14-net-phy-move-realtek-PHY-driver-to-its-own-subdirect.patch │ │ │ ├── 781-25-v6.14-net-phy-realtek-add-hwmon-support-for-temp-sensor-on.patch │ │ │ ├── 781-26-v6.14-net-phy-realtek-HWMON-support-for-standalone-version.patch │ │ │ ├── 781-27-v6.15-net-phy-realtek-make-HWMON-support-a-user-visible-Kc.patch │ │ │ ├── 781-28-v6.15-net-phy-realtek-use-string-choices-helpers.patch │ │ │ ├── 781-29-v6.15-net-phy-realtek-improve-mmd-register-access-for-inte.patch │ │ │ ├── 781-30-v6.15-net-phy-realtek-switch-from-paged-to-MMD-ops-in-rtl8.patch │ │ │ ├── 781-31-v6.15-net-phy-realtek-add-helper-RTL822X_VND2_C22_REG.patch │ │ │ ├── 781-32-v6.15-net-phy-realtek-add-defines-for-shadowed-c45-standar.patch │ │ │ ├── 781-33-v6.15-net-phy-realtek-disable-PHY-mode-EEE.patch │ │ │ ├── 781-34-v6.16-net-phy-realtek-Add-support-for-WOL-magic-packet-on.patch │ │ │ ├── 781-35-v6.16-net-phy-realtek-remove-unsed-RTL821x_PHYSR-macros.patch │ │ │ ├── 781-36-v6.16-net-phy-realtek-Clean-up-RTL821x-ExtPage-access.patch │ │ │ ├── 781-37-v6.16-net-phy-realtek-add-RTL8211F-register-defines.patch │ │ │ ├── 781-38-v6.16-net-phy-realtek-Group-RTL82-macro-definitions.patch │ │ │ ├── 781-39-v6.16-net-phy-realtek-use-__set_bit-in-rtl8211f_led_hw_con.patch │ │ │ ├── 781-40-v6.16-net-phy-realtek-Add-support-for-PHY-LEDs-on-RTL8211E.patch │ │ │ ├── 781-41-v6.16-net-phy-realtek-add-RTL8127-internal-PHY.patch │ │ │ ├── 782-01-v6.16-net-phy-pass-PHY-driver-to-.match_phy_device-OP.patch │ │ │ ├── 782-04-v6.16-net-phy-introduce-genphy_match_phy_device.patch │ │ │ ├── 782-05-v6.16-net-phy-Add-support-for-Aeonsemi-AS21xxx-PHYs.patch │ │ │ ├── 785-01-v6.8-net-sfp-rework-the-RollBall-PHY-waiting-code.patch │ │ │ ├── 785-02-v6.8-net-sfp-fix-PHY-discovery-for-FS-SFP-10G-T-module.patch │ │ │ ├── 785-03-v6.10-net-sfp-update-comment-for-FS-SFP-10G-T-quirk.patch │ │ │ ├── 785-04-v6.10-net-sfp-enhance-quirk-for-Fibrestore-2.5G-copper-SFP-module.patch │ │ │ ├── 785-05-v6.15-net-sfp-add-quirk-for-FS-SFP-10GM-T-copper-SFP-module.patch │ │ │ ├── 786-v6.10-net-sfp-add-quirk-for-another-multigig-RollBall-tran.patch │ │ │ ├── 790-01-v6.7-net-dsa-mt7530-Convert-to-platform-remove-callback-r.patch │ │ │ ├── 790-02-v6.7-net-dsa-mt753x-remove-mt753x_phylink_pcs_link_up.patch │ │ │ ├── 790-03-v6.7-net-dsa-mt7530-replace-deprecated-strncpy-with-ethto.patch │ │ │ ├── 790-04-v6.9-net-dsa-mt7530-support-OF-based-registration-of-swit.patch │ │ │ ├── 790-05-v6.9-net-dsa-mt7530-always-trap-frames-to-active-CPU-port.patch │ │ │ ├── 790-06-v6.9-net-dsa-mt7530-use-p5_interface_select-as-data-type-.patch │ │ │ ├── 790-07-v6.9-net-dsa-mt7530-store-port-5-SGMII-capability-of-MT75.patch │ │ │ ├── 790-08-v6.9-net-dsa-mt7530-improve-comments-regarding-switch-por.patch │ │ │ ├── 790-09-v6.9-net-dsa-mt7530-improve-code-path-for-setting-up-port.patch │ │ │ ├── 790-10-v6.9-net-dsa-mt7530-do-not-set-priv-p5_interface-on-mt753.patch │ │ │ ├── 790-11-v6.9-net-dsa-mt7530-do-not-run-mt7530_setup_port5-if-port.patch │ │ │ ├── 790-12-v6.9-net-dsa-mt7530-empty-default-case-on-mt7530_setup_po.patch │ │ │ ├── 790-13-v6.9-net-dsa-mt7530-move-XTAL-check-to-mt7530_setup.patch │ │ │ ├── 790-14-v6.9-net-dsa-mt7530-simplify-mt7530_pad_clk_setup.patch │ │ │ ├── 790-15-v6.9-net-dsa-mt7530-call-port-6-setup-from-mt7530_mac_con.patch │ │ │ ├── 790-16-v6.9-net-dsa-mt7530-remove-pad_setup-function-pointer.patch │ │ │ ├── 790-17-v6.9-net-dsa-mt7530-correct-port-capabilities-of-MT7988.patch │ │ │ ├── 790-18-v6.9-net-dsa-mt7530-do-not-clear-config-supported_interfa.patch │ │ │ ├── 790-19-v6.9-net-dsa-mt7530-remove-.mac_port_config-for-MT7988-an.patch │ │ │ ├── 790-20-v6.9-net-dsa-mt7530-set-interrupt-register-only-for-MT753.patch │ │ │ ├── 790-21-v6.9-net-dsa-mt7530-do-not-use-SW_PHY_RST-to-reset-MT7531.patch │ │ │ ├── 790-22-v6.9-net-dsa-mt7530-get-rid-of-useless-error-returns-on-p.patch │ │ │ ├── 790-23-v6.9-net-dsa-mt7530-get-rid-of-priv-info-cpu_port_config.patch │ │ │ ├── 790-24-v6.9-net-dsa-mt7530-get-rid-of-mt753x_mac_config.patch │ │ │ ├── 790-25-v6.9-net-dsa-mt7530-put-initialising-PCS-devices-code-bac.patch │ │ │ ├── 790-26-v6.9-net-dsa-mt7530-sort-link-settings-ops-and-force-link.patch │ │ │ ├── 790-27-v6.9-net-dsa-mt7530-simplify-link-operations.patch │ │ │ ├── 790-28-v6.9-net-dsa-mt7530-disable-LEDs-before-reset.patch │ │ │ ├── 790-30-v6.9-net-dsa-mt7530-prevent-possible-incorrect-XTAL-frequ.patch │ │ │ ├── 790-33-v6.10-net-dsa-mt7530-provide-own-phylink-MAC-operations.patch │ │ │ ├── 790-36-v6.10-net-dsa-mt7530-mdio-read-PHY-address-of-switch-from-.patch │ │ │ ├── 790-37-v6.10-net-dsa-mt7530-simplify-core-operations.patch │ │ │ ├── 790-38-v6.10-net-dsa-mt7530-disable-EEE-abilities-on-failure-on-M.patch │ │ │ ├── 790-39-v6.10-net-dsa-mt7530-refactor-MT7530_PMCR_P.patch │ │ │ ├── 790-40-v6.10-net-dsa-mt7530-rename-p5_intf_sel-and-use-only-for-M.patch │ │ │ ├── 790-41-v6.10-net-dsa-mt7530-rename-mt753x_bpdu_port_fw-enum-to-mt.patch │ │ │ ├── 790-42-v6.10-net-dsa-mt7530-refactor-MT7530_MFC-and-MT7531_CFC-ad.patch │ │ │ ├── 790-43-v6.10-net-dsa-mt7530-refactor-MT7530_HWTRAP-and-MT7530_MHW.patch │ │ │ ├── 790-44-v6.10-net-dsa-mt7530-move-MT753X_MTRAP-operations-for-MT75.patch │ │ │ ├── 790-45-v6.10-net-dsa-mt7530-return-mt7530_setup_mdio-mt7531_setup.patch │ │ │ ├── 790-46-v6.10-net-dsa-mt7530-define-MAC-speed-capabilities-per-swi.patch │ │ │ ├── 790-47-v6.10-net-dsa-mt7530-get-rid-of-function-sanity-check.patch │ │ │ ├── 790-48-v6.10-net-dsa-mt7530-refactor-MT7530_PMEEECR_P.patch │ │ │ ├── 790-49-v6.10-net-dsa-mt7530-get-rid-of-mac_port_validate-member-o.patch │ │ │ ├── 790-50-v6.10-net-dsa-mt7530-use-priv-ds-num_ports-instead-of-MT75.patch │ │ │ ├── 790-51-v6.10-net-dsa-mt7530-do-not-pass-port-variable-to-mt7531_r.patch │ │ │ ├── 790-52-v6.10-net-dsa-mt7530-explain-exposing-MDIO-bus-of-MT7531AE.patch │ │ │ ├── 790-53-v6.10-net-dsa-mt7530-do-not-set-MT7530_P5_DIS-when-PHY-.patch │ │ │ ├── 790-54-v6.10-796-net-dsa-mt7530-detect-PHY-muxing-when-PHY-is-defined.patch │ │ │ ├── 790-55-v6.11-net-dsa-mt7530-factor-out-bridge-join-leave-logic.patch │ │ │ ├── 790-56-v6.11-net-dsa-mt7530-add-support-for-bridge-port-isolation.patch │ │ │ ├── 791-v6.11-01-net-phy-aquantia-move-priv-and-hw-stat-to-header.patch │ │ │ ├── 791-v6.11-02-net-phy-aquantia-add-support-for-PHY-LEDs.patch │ │ │ ├── 795-v6.7-16-r8152-use-napi_gro_frags.patch │ │ │ ├── 798-v6.10-net-phy-air_en8811h-Add-the-Airoha-EN8811H-PHY-drive.patch │ │ │ ├── 799-v6.10-net-phy-air_en8811h-fix-some-error-codes.patch │ │ │ ├── 800-v6.9-0001-dt-bindings-leds-Add-FUNCTION-defines-for-per-band-W.patch │ │ │ ├── 800-v6.9-0002-dt-bindings-leds-Add-LED_FUNCTION_WAN_ONLINE-for-Int.patch │ │ │ ├── 810-v6.11-hwmon-g672-add-support-for-g761.patch │ │ │ ├── 815-v6.7-2-leds-turris-omnia-Make-set_brightness-more-efficient.patch │ │ │ ├── 815-v6.7-3-leds-turris-omnia-Support-HW-controlled-mode-via-pri.patch │ │ │ ├── 815-v6.7-4-leds-turris-omnia-Add-support-for-enabling-disabling.patch │ │ │ ├── 815-v6.7-5-leds-turris-omnia-Fix-brightness-setting-and-trigger.patch │ │ │ ├── 816-v6.7-0001-nvmem-qfprom-Mark-core-clk-as-optional.patch │ │ │ ├── 816-v6.7-0003-nvmem-Use-device_get_match_data.patch │ │ │ ├── 816-v6.7-0004-Revert-nvmem-add-new-config-option.patch │ │ │ ├── 818-v6.8-of-device-Export-of_device_make_bus_id.patch │ │ │ ├── 819-v6.8-0001-nvmem-Move-of_nvmem_layout_get_container-in-another-.patch │ │ │ ├── 819-v6.8-0005-nvmem-core-Rework-layouts-to-become-regular-devices.patch │ │ │ ├── 819-v6.8-0006-nvmem-core-Expose-cells-through-sysfs.patch │ │ │ ├── 819-v6.8-0007-nvmem-stm32-add-support-for-STM32MP25-BSEC-to-contro.patch │ │ │ ├── 819-v6.8-0008-nvmem-layouts-refactor-.add_cells-callback-arguments.patch │ │ │ ├── 819-v6.8-0009-nvmem-drop-nvmem_layout_get_match_data.patch │ │ │ ├── 831-v6.7-rtc-rtc7301-Support-byte-addressed-IO.patch │ │ │ ├── 832-v6.7-net-phy-amd-Support-the-Altima-AMI101L.patch │ │ │ ├── 833-v6.8-leds-core-Add-more-colors-from-DT-bindings-to-led_co.patch.patch │ │ │ ├── 834-v6.8-leds-trigger-netdev-Extend-speeds-up-to-10G.patch │ │ │ ├── 835-v6.9-net-phy-add-support-for-PHY-LEDs-polarity-modes.patch │ │ │ ├── 836-v6.9-net-phy-aquantia-clear-PMD-Global-Transmit-Disable-b.patch │ │ │ ├── 837-v6.12-net-phy-aquantia-fix-setting-active_low-bit.patch │ │ │ ├── 838-v6.12-net-phy-aquantia-fix-applying-active_low-bit-after-reset.patch │ │ │ ├── 839-v6.13-net-phy-aquantia-allow-forcing-order-of-MDI-pairs.patch │ │ │ ├── 840-v6.13-net-phy-aquantia-fix-return-value-check-in-aqr107_co.patch │ │ │ ├── 841-v6.13-net-phy-support-active-high-property-for-PHY-LEDs.patch │ │ │ ├── 842-v6.13-net-phy-aquantia-correctly-describe-LED-polarity-ove.patch │ │ │ ├── 843-v6.13-net-phy-mxl-gpy-add-basic-LED-support.patch │ │ │ ├── 844-v6.13-net-phy-mxl-gpy-add-missing-support-for-TRIGGER_NETD.patch │ │ │ ├── 845-v6.13-net-phy-mxl-gpy-correctly-describe-LED-polarity.patch │ │ │ ├── 846-v6.13-net-phy-intel-xway-add-support-for-PHY-LEDs.patch │ │ │ ├── 850-v6.8-bus-mhi-host-Add-a-separate-timeout-parameter-for-wa.patch │ │ │ ├── 851-v6.8-bus-mhi-host-pci_generic-Add-SDX75-based-modem-suppo.patch │ │ │ ├── 852-stable-bus-mhi-host-pci_generic-constify-modem_telit_fn980_.patch │ │ │ ├── 853-v6.10-bus-mhi-host-Add-mhi_power_down_keep_dev-API-to-supp.patch │ │ │ ├── 880-v6.14-gpio-regmap-Use-generic-request-free-ops.patch │ │ │ ├── 894-v6.7-net-dsa-realtek-Convert-to-platform-remove-callback.patch │ │ │ ├── 894-v6.8-net-ethtool-implement-ethtool_puts.patch │ │ │ ├── 895-01-v6.8-net-phy-add-possible-interfaces.patch │ │ │ ├── 895-02-v6.8-net-phylink-use-for_each_set_bit.patch │ │ │ ├── 895-03-v6.8-net-phylink-split-out-per-interface-validation.patch │ │ │ ├── 895-04-v6.8-net-phylink-pass-PHY-into-phylink_validate_one.patch │ │ │ ├── 895-05-v6.8-net-phylink-pass-PHY-into-phylink_validate_mask.patch │ │ │ ├── 895-06-v6.8-net-phylink-split-out-PHY-validation-from-phylink_br.patch │ │ │ ├── 895-07-v6.8-net-phylink-use-the-PHY-s-possible_interfaces-if-pop.patch │ │ │ ├── 896-01-v6.9-net-dsa-mv88e6xxx-rename-mv88e6xxx_g2_scratch_gpio_s.patch │ │ │ ├── 896-02-v6.9-net-dsa-mv88e6xxx-add-Amethyst-specific-SMI-GPIO-fun.patch │ │ │ ├── 896-v6.9-0001-net-dsa-realtek-drop-cleanup-from-realtek_ops.patch │ │ │ ├── 896-v6.9-0002-net-dsa-realtek-introduce-REALTEK_DSA-namespace.patch │ │ │ ├── 896-v6.9-0003-net-dsa-realtek-convert-variants-into-real-drivers.patch │ │ │ ├── 896-v6.9-0004-net-dsa-realtek-keep-variant-reference-in-realtek_pr.patch │ │ │ ├── 896-v6.9-0005-net-dsa-realtek-common-rtl83xx-module.patch │ │ │ ├── 896-v6.9-0006-net-dsa-realtek-merge-rtl83xx-and-interface-modules-.patch │ │ │ ├── 896-v6.9-0007-net-dsa-realtek-get-internal-MDIO-node-by-name.patch │ │ │ ├── 896-v6.9-0008-net-dsa-realtek-clean-user_mii_bus-setup.patch │ │ │ ├── 896-v6.9-0009-net-dsa-realtek-migrate-user_mii_bus-setup-to-realte.patch │ │ │ ├── 896-v6.9-0010-net-dsa-realtek-use-the-same-mii-bus-driver-for-both.patch │ │ │ ├── 896-v6.9-0011-net-dsa-realtek-embed-dsa_switch-into-realtek_priv.patch │ │ │ ├── 897-01-v6.9-net-phy-qcom-qca808x-add-helper-for-checking-for-1G-.patch │ │ │ ├── 897-02-v6.9-net-phy-qcom-qca808x-fill-in-possible_interfaces.patch │ │ │ ├── 897-v6.9-net-dsa-realtek-fix-digital-interface-select-macro-f.patch │ │ │ ├── 898-v6.7-mtd-spinand-winbond-add-support-for-serial-NAND-flash.patch │ │ │ ├── 898-v6.9-0001-dt-bindings-net-dsa-realtek-reset-gpios-is-not-requi.patch │ │ │ ├── 898-v6.9-0002-dt-bindings-net-dsa-realtek-add-reset-controller.patch │ │ │ ├── 898-v6.9-0003-net-dsa-realtek-support-reset-controller.patch │ │ │ ├── 899-v6.10-0002-net-dsa-realtek-do-not-assert-reset-on-remove.patch │ │ │ ├── 899-v6.10-0003-net-dsa-realtek-add-LED-drivers-for-rtl8366rb.patch │ │ │ ├── 899-v6.9-mtd-spinand-winbond-add-W25N04KV.patch │ │ │ ├── 906-01-v6.7-crypto-jitter-add-RCTAPT-support-for-different-OSRs.patch │ │ │ ├── 906-02-v6.7-crypto-jitter-Allow-configuration-of-memory-size.patch │ │ │ ├── 906-03-v6.7-crypto-jitter-Allow-configuration-of-oversampling-rate.patch │ │ │ ├── 906-04-v6.7-crypto-jitter-reuse-allocated-entropy-collector.patch │ │ │ ├── 906-05-v6.7-crypto-jitter-use-permanent-health-test-storage.patch │ │ │ ├── 906-06-v6.7-crypto-jitterentropy-Hide-esoteric-Kconfig-options-under.patch │ │ │ ├── 906-07-v6.10-crypto-jitter-Use-kvfree_sensitive-to-fix-Coccinelle.patch │ │ │ ├── 906-08-v6.12-crypto-jitter-set-default-OSR-to-3.patch │ │ │ └── 920-v6.12-clk-provide-devm_clk_get_optional_enabled_with_rate.patch │ │ ├── config-5.10 │ │ ├── config-5.15 │ │ ├── config-5.4 │ │ ├── config-6.1 │ │ ├── config-6.12 │ │ ├── config-6.6 │ │ ├── config-filter │ │ ├── files-5.10 │ │ │ └── fs │ │ │ │ └── ntfs3 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── attrib.c │ │ │ │ ├── attrlist.c │ │ │ │ ├── bitfunc.c │ │ │ │ ├── bitmap.c │ │ │ │ ├── debug.h │ │ │ │ ├── dir.c │ │ │ │ ├── file.c │ │ │ │ ├── frecord.c │ │ │ │ ├── fslog.c │ │ │ │ ├── fsntfs.c │ │ │ │ ├── index.c │ │ │ │ ├── inode.c │ │ │ │ ├── lib │ │ │ │ ├── decompress_common.c │ │ │ │ ├── decompress_common.h │ │ │ │ ├── lib.h │ │ │ │ ├── lzx_decompress.c │ │ │ │ └── xpress_decompress.c │ │ │ │ ├── lznt.c │ │ │ │ ├── namei.c │ │ │ │ ├── ntfs.h │ │ │ │ ├── ntfs_fs.h │ │ │ │ ├── record.c │ │ │ │ ├── run.c │ │ │ │ ├── super.c │ │ │ │ ├── upcase.c │ │ │ │ └── xattr.c │ │ ├── files-5.4 │ │ │ └── fs │ │ │ │ └── ntfs3 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── attrib.c │ │ │ │ ├── attrlist.c │ │ │ │ ├── bitfunc.c │ │ │ │ ├── bitmap.c │ │ │ │ ├── debug.h │ │ │ │ ├── dir.c │ │ │ │ ├── file.c │ │ │ │ ├── frecord.c │ │ │ │ ├── fslog.c │ │ │ │ ├── fsntfs.c │ │ │ │ ├── index.c │ │ │ │ ├── inode.c │ │ │ │ ├── lib │ │ │ │ ├── decompress_common.c │ │ │ │ ├── decompress_common.h │ │ │ │ ├── lib.h │ │ │ │ ├── lzx_decompress.c │ │ │ │ └── xpress_decompress.c │ │ │ │ ├── lznt.c │ │ │ │ ├── namei.c │ │ │ │ ├── ntfs.h │ │ │ │ ├── ntfs_fs.h │ │ │ │ ├── record.c │ │ │ │ ├── run.c │ │ │ │ ├── super.c │ │ │ │ ├── upcase.c │ │ │ │ └── xattr.c │ │ ├── files │ │ │ ├── Documentation │ │ │ │ ├── devicetree │ │ │ │ │ └── bindings │ │ │ │ │ │ └── mtd │ │ │ │ │ │ └── partitions │ │ │ │ │ │ └── openwrt,uimage.yaml │ │ │ │ └── networking │ │ │ │ │ └── adm6996.txt │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ └── fw │ │ │ │ │ └── myloader │ │ │ │ │ ├── Makefile │ │ │ │ │ └── myloader.c │ │ │ ├── drivers │ │ │ │ ├── bcma │ │ │ │ │ └── fallback-sprom.c │ │ │ │ ├── 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_h3c_vfs.c │ │ │ │ │ │ ├── mtdsplit_jimage.c │ │ │ │ │ │ ├── mtdsplit_lzma.c │ │ │ │ │ │ ├── mtdsplit_minor.c │ │ │ │ │ │ ├── mtdsplit_seama.c │ │ │ │ │ │ ├── mtdsplit_seil.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 │ │ │ │ │ │ ├── mvswitch.c │ │ │ │ │ │ ├── mvswitch.h │ │ │ │ │ │ ├── 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_hardconfig.h │ │ │ │ │ │ ├── rb_nvmem.c │ │ │ │ │ │ ├── rb_softconfig.c │ │ │ │ │ │ ├── routerboot.c │ │ │ │ │ │ └── routerboot.h │ │ │ │ └── ssb │ │ │ │ │ └── fallback-sprom.c │ │ │ └── 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 │ │ │ ├── 100-update-mtk_wed_h.patch │ │ │ ├── 204-module_strip.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 │ │ │ ├── 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 │ │ │ ├── 601-netfilter-export-udp_get_timeouts-function.patch │ │ │ ├── 640-bridge-only-accept-EAP-locally.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-use_fq_codel_by_default.patch │ │ │ ├── 700-swconfig_switch_drivers.patch │ │ │ ├── 710-net-dsa-mv88e6xxx-default-VID-1.patch │ │ │ ├── 711-net-dsa-mv88e6xxx-disable-ATU-violation.patch │ │ │ ├── 721-net-add-packet-mangeling.patch │ │ │ ├── 773-bgmac-add-srab-switch.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 │ │ │ ├── 952-net-conntrack-events-support-multiple-registrant.patch │ │ │ ├── 953-net-patch-linux-kernel-to-support-shortcut-fe.patch │ │ │ ├── 982-add-bcm-fullconenat-support.patch │ │ │ ├── 983-add-bcm-fullconenat-to-nft.patch │ │ │ ├── 992-add-ndo-do-ioctl.patch │ │ │ ├── 994-mhi-use-irq-flags.patch │ │ │ ├── 995-add-support-for-forced-PM-resume.patch │ │ │ └── 996-fs-ntfs3-Add-NTFS3-in-fs-Kconfig-and-fs-Makefile.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 │ │ │ ├── 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 │ │ │ ├── 402-mtd-blktrans-call-add-disks-after-mtd-device.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 │ │ │ ├── 600-bridge_offload.patch │ │ │ ├── 601-of_net-add-mac-address-ascii-support.patch │ │ │ ├── 640-bridge-only-accept-EAP-locally.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 │ │ │ ├── 661-use_fq_codel_by_default.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 │ │ │ ├── 750-net-pcs-mtk-lynxi-workaround-2500BaseX-no-an.patch │ │ │ ├── 760-net-usb-r8152-add-LED-configuration-from-OF.patch │ │ │ ├── 761-dt-bindings-net-add-RTL8152-binding-documentation.patch │ │ │ ├── 765-mxl-gpy-control-LED-reg-from-DT.patch │ │ │ ├── 766-net-phy-mediatek-ge-add-LED-configuration-interface.patch │ │ │ ├── 767-net-phy-realtek-add-led-link-select-for-RTL8221.patch │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ ├── 780-usb-net-MeigLink_modem_support.patch │ │ │ ├── 781-usb-net-rndis-support-asr.patch │ │ │ ├── 790-SFP-GE-T-ignore-TX_FAULT.patch │ │ │ ├── 795-backport-phylink_pcs-helpers.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 │ │ │ ├── 930-Revert-Revert-Revert-driver-core-Set-fw_devlink-on-b.patch │ │ │ ├── 952-add-net-conntrack-events-support-multiple-registrant.patch │ │ │ ├── 953-net-patch-linux-kernel-to-support-shortcut-fe.patch │ │ │ ├── 982-add-bcm-fullconenat-support.patch │ │ │ ├── 983-add-bcm-fullconenat-to-nft.patch │ │ │ └── 992-add-ndo-do-ioctl.patch │ │ ├── hack-5.4 │ │ │ ├── 204-module_strip.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-sound_kconfig.patch │ │ │ ├── 253-ksmbd-config.patch │ │ │ ├── 259-regmap_dynamic.patch │ │ │ ├── 260-crypto_test_dependencies.patch │ │ │ ├── 260-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 │ │ │ ├── 400-block-fit-partition-parser.patch │ │ │ ├── 400-unlock_mx25l6406e_with_4bit_block_protect.patch │ │ │ ├── 550-loop-Report-EOPNOTSUPP-properly.patch │ │ │ ├── 601-netfilter-export-udp_get_timeouts-function.patch │ │ │ ├── 640-bridge-only-accept-EAP-locally.patch │ │ │ ├── 645-netfilter-connmark-introduce-set-dscpmark.patch │ │ │ ├── 647-netfilter-flow-acct.patch │ │ │ ├── 650-netfilter-add-xt_OFFLOAD-target.patch │ │ │ ├── 651-wireless_mesh_header.patch │ │ │ ├── 660-fq_codel_defaults.patch │ │ │ ├── 661-use_fq_codel_by_default.patch │ │ │ ├── 662-remove_pfifo_fast.patch │ │ │ ├── 700-swconfig_switch_drivers.patch │ │ │ ├── 703-add_vsc8504_support.patch │ │ │ ├── 710-net-dsa-mv88e6xxx-default-VID-1.patch │ │ │ ├── 711-net-dsa-mv88e6xxx-disable-ATU-violation.patch │ │ │ ├── 721-phy_packets.patch │ │ │ ├── 773-bgmac-add-srab-switch.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 │ │ │ ├── 921-always-create-console-node-in-initramfs.patch │ │ │ ├── 952-net-conntrack-events-support-multiple-registrant.patch │ │ │ ├── 953-net-patch-linux-kernel-to-support-shortcut-fe.patch │ │ │ ├── 982-add-bcm-fullconenat-support.patch │ │ │ ├── 983-add-bcm-fullconenat-to-nft.patch │ │ │ ├── 992-add-ndo-do-ioctl.patch │ │ │ ├── 995-usb-serial-option-add-ec200a.patch │ │ │ └── 996-fs-ntfs3-Add-NTFS3-in-fs-Kconfig-and-fs-Makefile.patch │ │ ├── hack-6.1 │ │ │ ├── 204-module_strip.patch │ │ │ ├── 205-kconfig-abort-configuration-on-unset-symbol.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 │ │ │ ├── 250-netfilter_depends.patch │ │ │ ├── 251-kconfig.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 │ │ │ ├── 402-mtd-blktrans-call-add-disks-after-mtd-device.patch │ │ │ ├── 420-mtd-support-OpenWrt-s-MTD_ROOTFS_ROOT_DEV.patch │ │ │ ├── 421-drivers-mtd-parsers-add-nvmem-support-to-cmdlinepart.patch │ │ │ ├── 430-mtk-bmt-support.patch │ │ │ ├── 600-bridge_offload.patch │ │ │ ├── 601-of_net-add-mac-address-ascii-support.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 │ │ │ ├── 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 │ │ │ ├── 725-net-phy-aquantia-add-PHY_IDs-for-AQR112-variants.patch │ │ │ ├── 750-net-pcs-mtk-lynxi-workaround-2500BaseX-no-an.patch │ │ │ ├── 760-net-usb-r8152-add-LED-configuration-from-OF.patch │ │ │ ├── 761-dt-bindings-net-add-RTL8152-binding-documentation.patch │ │ │ ├── 765-mxl-gpy-control-LED-reg-from-DT.patch │ │ │ ├── 766-net-phy-mediatek-ge-add-LED-configuration-interface.patch │ │ │ ├── 767-net-phy-realtek-add-led-link-select-for-RTL8221.patch │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ ├── 780-usb-net-MeigLink_modem_support.patch │ │ │ ├── 781-usb-net-rndis-support-asr.patch │ │ │ ├── 790-SFP-GE-T-ignore-TX_FAULT.patch │ │ │ ├── 800-GPIO-add-named-gpio-exports.patch │ │ │ ├── 810-bcma-ssb-fallback-sprom.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 │ │ │ ├── 930-Revert-Revert-Revert-driver-core-Set-fw_devlink-on-b.patch │ │ │ ├── 952-add-net-conntrack-events-support-multiple-registrant.patch │ │ │ ├── 953-net-patch-linux-kernel-to-support-shortcut-fe.patch │ │ │ ├── 982-add-bcm-fullconenat-support.patch │ │ │ ├── 983-add-bcm-fullconenat-to-nft.patch │ │ │ └── 992-add-ndo-do-ioctl.patch │ │ ├── hack-6.12 │ │ │ ├── 200-tools_portability.patch │ │ │ ├── 204-module_strip.patch │ │ │ ├── 205-kconfig-abort-configuration-on-unset-symbol.patch │ │ │ ├── 210-darwin_scripts_include.patch │ │ │ ├── 211-darwin-uuid-typedef-clash.patch │ │ │ ├── 214-spidev_h_portability.patch │ │ │ ├── 230-openwrt_lzma_options.patch │ │ │ ├── 250-netfilter_depends.patch │ │ │ ├── 251-kconfig.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-01-mm-permit-to-declare-custom-execmem-alloc-free-funct.patch │ │ │ ├── 301-02-mips-replace-mlong-calls-with-mno-long-calls-if-poss.patch │ │ │ ├── 402-mtd-blktrans-call-add-disks-after-mtd-device.patch │ │ │ ├── 420-mtd-support-OpenWrt-s-MTD_ROOTFS_ROOT_DEV.patch │ │ │ ├── 421-drivers-mtd-parsers-add-nvmem-support-to-cmdlinepart.patch │ │ │ ├── 430-mtk-bmt-support.patch │ │ │ ├── 499-LEGACY-block-partitions-populate-fwnode.patch │ │ │ ├── 600-net-enable-fraglist-GRO-by-default.patch │ │ │ ├── 610-net-page_pool-try-to-free-deferred-skbs-while-waitin.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 │ │ │ ├── 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 │ │ │ ├── 725-net-phy-aquantia-add-PHY_IDs-for-AQR112-variants.patch │ │ │ ├── 730-net-ethernet-mtk_eth_soc-add-hw-dump-for-forced-rese.patch │ │ │ ├── 750-net-pcs-mtk-lynxi-workaround-2500BaseX-no-an.patch │ │ │ ├── 760-net-usb-r8152-add-LED-configuration-from-OF.patch │ │ │ ├── 761-dt-bindings-net-add-RTL8152-binding-documentation.patch │ │ │ ├── 766-net-phy-mediatek-ge-add-LED-configuration-interface.patch │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ ├── 780-usb-net-MeigLink_modem_support.patch │ │ │ ├── 781-usb-net-rndis-support-asr.patch │ │ │ ├── 800-GPIO-add-named-gpio-exports.patch │ │ │ ├── 810-bcma-ssb-fallback-sprom.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 │ │ │ ├── 930-Revert-Revert-Revert-driver-core-Set-fw_devlink-on-b.patch │ │ │ ├── 952-add-net-conntrack-events-support-multiple-registrant.patch │ │ │ ├── 953-net-patch-linux-kernel-to-support-shortcut-fe.patch │ │ │ ├── 980-mtd-silence-UBI-NAND-warnings.patch │ │ │ ├── 982-add-bcm-fullconenat-support.patch │ │ │ ├── 983-add-bcm-fullconenat-to-nft.patch │ │ │ ├── 992-add-ndo-do-ioctl.patch │ │ │ ├── 997-revert-strtobool.patch │ │ │ ├── 998-revert-genetlink-remove-userhdr-from-struct-genl_inf.patch │ │ │ └── 999-revert-6.5-deprecated-API.patch │ │ ├── hack-6.6 │ │ │ ├── 200-tools_portability.patch │ │ │ ├── 204-module_strip.patch │ │ │ ├── 205-kconfig-abort-configuration-on-unset-symbol.patch │ │ │ ├── 210-darwin_scripts_include.patch │ │ │ ├── 211-darwin-uuid-typedef-clash.patch │ │ │ ├── 214-spidev_h_portability.patch │ │ │ ├── 220-arm-gc_sections.patch │ │ │ ├── 230-openwrt_lzma_options.patch │ │ │ ├── 250-netfilter_depends.patch │ │ │ ├── 251-kconfig.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 │ │ │ ├── 402-mtd-blktrans-call-add-disks-after-mtd-device.patch │ │ │ ├── 420-mtd-support-OpenWrt-s-MTD_ROOTFS_ROOT_DEV.patch │ │ │ ├── 421-drivers-mtd-parsers-add-nvmem-support-to-cmdlinepart.patch │ │ │ ├── 430-mtk-bmt-support.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 │ │ │ ├── 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 │ │ │ ├── 725-net-phy-aquantia-add-PHY_IDs-for-AQR112-variants.patch │ │ │ ├── 750-net-pcs-mtk-lynxi-workaround-2500BaseX-no-an.patch │ │ │ ├── 760-net-usb-r8152-add-LED-configuration-from-OF.patch │ │ │ ├── 761-dt-bindings-net-add-RTL8152-binding-documentation.patch │ │ │ ├── 765-mxl-gpy-control-LED-reg-from-DT.patch │ │ │ ├── 766-net-phy-mediatek-ge-add-LED-configuration-interface.patch │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ ├── 780-usb-net-MeigLink_modem_support.patch │ │ │ ├── 781-usb-net-rndis-support-asr.patch │ │ │ ├── 800-GPIO-add-named-gpio-exports.patch │ │ │ ├── 810-bcma-ssb-fallback-sprom.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 │ │ │ ├── 930-Revert-Revert-Revert-driver-core-Set-fw_devlink-on-b.patch │ │ │ ├── 952-add-net-conntrack-events-support-multiple-registrant.patch │ │ │ ├── 953-net-patch-linux-kernel-to-support-shortcut-fe.patch │ │ │ ├── 980-mtd-silence-UBI-NAND-warnings.patch │ │ │ ├── 982-add-bcm-fullconenat-support.patch │ │ │ ├── 983-add-bcm-fullconenat-to-nft.patch │ │ │ ├── 992-add-ndo-do-ioctl.patch │ │ │ ├── 998-revert-genetlink-remove-userhdr-from-struct-genl_inf.patch │ │ │ └── 999-revert-6.5-deprecated-API.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 │ │ │ ├── 100-compiler.h-only-include-asm-rwonce.h-for-kernel-code.patch │ │ │ ├── 102-MIPS-only-process-negative-stack-offsets-on-stack-tr.patch │ │ │ ├── 110-v6.3-0001-spidev-Add-Silicon-Labs-EM3581-device-compatible.patch │ │ │ ├── 110-v6.3-0002-spidev-Add-Silicon-Labs-SI3210-device-compatible.patch │ │ │ ├── 120-Fix-alloc_node_mem_map-with-ARCH_PFN_OFFSET-calcu.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 485-mtd-spi-nor-add-xmc-xm25qh128c.patch │ │ │ ├── 488-mtd-spi-nor-add-xmc-xm25qh64c.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 │ │ │ ├── 496-dt-bindings-add-bindings-for-mtd-concat-devices.patch │ │ │ ├── 497-mtd-mtdconcat-add-dt-driver-for-concat-devices.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 │ │ │ ├── 681-NET-add-mtd-mac-address-support-to-of_get_mac_addres.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-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-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 │ │ │ ├── 705-net-dsa-tag_mtk-add-padding-for-tx-packets.patch │ │ │ ├── 750-skb-Do-mix-page-pool-and-page-referenced-frags-in-GR.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 │ │ │ ├── 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 │ │ │ └── 920-mangle_bootargs.patch │ │ ├── pending-5.15 │ │ │ ├── 100-compiler.h-only-include-asm-rwonce.h-for-kernel-code.patch │ │ │ ├── 102-MIPS-only-process-negative-stack-offsets-on-stack-tr.patch │ │ │ ├── 103-kbuild-export-SUBARCH.patch │ │ │ ├── 110-v6.3-0002-spidev-Add-Silicon-Labs-SI3210-device-compatible.patch │ │ │ ├── 120-Fix-alloc_node_mem_map-with-ARCH_PFN_OFFSET-calcu.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 481-mtd-spi-nor-add-support-for-Gigadevice-GD25D05.patch │ │ │ ├── 481-mtd-spi-nor-rework-broken-flash-reset-support.patch │ │ │ ├── 482-mtd-spi-nor-add-gd25q512.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 │ │ │ ├── 488-mtd-spi-nor-add-xmc-xm25qh64c.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 │ │ │ ├── 540-ksmbd-only-v2-leases-handle-the-directory.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 │ │ │ ├── 700-netfilter-nft_flow_offload-handle-netdevice-events-f.patch │ │ │ ├── 702-net-ethernet-mtk_eth_soc-enable-threaded-NAPI.patch │ │ │ ├── 703-phy-add-detach-callback-to-struct-phy_driver.patch │ │ │ ├── 705-net-dsa-tag_mtk-add-padding-for-tx-packets.patch │ │ │ ├── 710-bridge-add-knob-for-filtering-rx-tx-BPDU-pack.patch │ │ │ ├── 721-net-phy-realtek-rtl8221-allow-to-configure-SERDES-mo.patch │ │ │ ├── 722-net-phy-realtek-support-switching-between-SGMII-and-.patch │ │ │ ├── 723-net-mt7531-ensure-all-MACs-are-powered-down-before-r.patch │ │ │ ├── 724-net-phy-realtek-use-genphy_soft_reset-for-2.5G-PHYs.patch │ │ │ ├── 725-net-phy-realtek-disable-SGMII-in-band-AN-for-2-5G-PHYs.patch │ │ │ ├── 726-net-phy-realtek-make-sure-paged-read-is-protected-by.patch │ │ │ ├── 727-net-phy-realtek-use-inline-functions-for-10GbE-adver.patch │ │ │ ├── 728-net-phy-realtek-check-validity-of-10GbE-link-partner.patch │ │ │ ├── 729-net-phy-realtek-introduce-rtl822x_probe.patch │ │ │ ├── 730-net-phy-realtek-detect-early-version-of-RTL8221B.patch │ │ │ ├── 731-net-phy-realtek-support-interrupt-of-RTL8221B.patch │ │ │ ├── 732-00-net-ethernet-mtk_eth_soc-compile-out-netsys-v2-code-.patch │ │ │ ├── 732-01-net-ethernet-mtk_eth_soc-work-around-issue-with-send.patch │ │ │ ├── 732-02-net-ethernet-mtk_eth_soc-set-NETIF_F_ALL_TSO.patch │ │ │ ├── 732-03-net-ethernet-mtk_eth_soc-fix-remaining-throughput-re.patch │ │ │ ├── 734-net-ethernet-mtk_eth_soc-ppe-fix-L2-offloading-with-.patch │ │ │ ├── 736-01-net-ethernet-mtk_eth_soc-add-code-for-offloading-flo.patch │ │ │ ├── 736-02-net-ethernet-mediatek-mtk_ppe-prefer-newly-added-l2-.patch │ │ │ ├── 736-03-net-ethernet-mtk_eth_soc-improve-keeping-track-of-of.patch │ │ │ ├── 736-04-net-ethernet-mediatek-fix-ppe-flow-accounting-for-L2.patch │ │ │ ├── 737-net-ethernet-mtk_eth_soc-add-paths-and-SerDes-modes-.patch │ │ │ ├── 750-skb-Do-mix-page-pool-and-page-referenced-frags-in-GR.patch │ │ │ ├── 760-net-core-add-optional-threading-for-backlog-processi.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 │ │ │ ├── 790-bus-mhi-core-add-SBL-state-callback.patch │ │ │ ├── 795-mt7530-register-OF-node-for-internal-MDIO-bus.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 │ │ │ ├── 850-0016-PCI-aardvark-Add-support-for-PME-interrupts.patch │ │ │ ├── 850-0023-PCI-aardvark-Make-main-irq_chip-structure-a-static-d.patch │ │ │ ├── 860-serial-8250_mtk-track-busclk-state-to-avoid-bus-error.patch │ │ │ ├── 920-mangle_bootargs.patch │ │ │ ├── 930-qcom-qmi-helpers.patch │ │ │ └── 980-tools-thermal-tmon-Fix-compilation-warning-for-wrong.patch │ │ ├── pending-5.4 │ │ │ ├── 102-MIPS-only-process-negative-stack-offsets-on-stack-tr.patch │ │ │ ├── 103-MIPS-select-CPU_MIPS64-for-remaining-MIPS64-CPUs.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 │ │ │ ├── 150-bridge_allow_receiption_on_disabled_port.patch │ │ │ ├── 180-net-phy-at803x-add-support-for-AT8032.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 │ │ │ ├── 311-MIPS-zboot-put-appended-dtb-into-a-section.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-add-rootfs-split-support.patch │ │ │ ├── 401-mtd-add-support-for-different-partition-parser-types.patch │ │ │ ├── 402-mtd-use-typed-mtd-parsers-for-rootfs-and-firmware-split.patch │ │ │ ├── 403-mtd-hook-mtdsplit-to-Kbuild.patch │ │ │ ├── 404-mtd-add-more-helper-functions.patch │ │ │ ├── 410-mtd-parsers-ofpart-fix-parsing-subpartitions.patch │ │ │ ├── 411-mtd-partial_eraseblock_write.patch │ │ │ ├── 412-mtd-partial_eraseblock_unlock.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 │ │ │ ├── 447-mtd-spinand-gigadevice-Add-support-for-GD5F4GQ4xC.patch │ │ │ ├── 450-mtd-spi-nor-allow-NOR-driver-to-write-fewer-bytes-th.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 │ │ │ ├── 466-Revert-mtd-spi-nor-fix-Spansion-regressions-aliased-.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 │ │ │ ├── 480-mtd-set-rootfs-to-be-root-dev.patch │ │ │ ├── 481-mtd-spi-nor-rework-broken-flash-reset-support.patch │ │ │ ├── 482-mtd-spi-nor-add-support-for-Gigadevice-GD25D05.patch │ │ │ ├── 482-mtd-spi-nor-fix-4-byte-opcode-support-for-w25q256.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-mtdconcat-select-readwrite-function.patch │ │ │ ├── 499-mtd-spi-nor-add-xmc-xm25qh128c.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 │ │ │ ├── 640-netfilter-nf_flow_table-add-hardware-offload-support.patch │ │ │ ├── 641-netfilter-nf_flow_table-support-hw-offload-through-v.patch │ │ │ ├── 642-net-8021q-support-hardware-flow-table-offload.patch │ │ │ ├── 643-net-bridge-support-hardware-flow-table-offload.patch │ │ │ ├── 644-net-pppoe-support-hardware-flow-table-offload.patch │ │ │ ├── 645-netfilter-nf_flow_table-rework-hardware-offload-time.patch │ │ │ ├── 646-netfilter-nf_flow_table-rework-private-driver-data.patch │ │ │ ├── 647-net-dsa-support-hardware-flow-table-offload.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 │ │ │ ├── 681-NET-add-mtd-mac-address-support-to-of_get_mac_addres.patch │ │ │ ├── 690-net-add-support-for-threaded-NAPI-polling.patch │ │ │ ├── 702-net-ethernet-mtk_eth_soc-enable-threaded-NAPI.patch │ │ │ ├── 703-phy-add-detach-callback-to-struct-phy_driver.patch │ │ │ ├── 739-net-avoid-tx-fault-with-Nokia-GPON-module.patch │ │ │ ├── 740-net-sfp-remove-incomplete-100BASE-FX-and-100BASE-LX-.patch │ │ │ ├── 741-net-sfp-derive-interface-mode-from-ethtool-link-mode.patch │ │ │ ├── 742-net-sfp-add-more-extended-compliance-codes.patch │ │ │ ├── 743-net-sfp-add-module-start-stop-upstream-notifications.patch │ │ │ ├── 744-net-sfp-move-phy_start-phy_stop-to-phylink.patch │ │ │ ├── 745-net-mdio-i2c-add-support-for-Clause-45-accesses.patch │ │ │ ├── 746-net-phylink-re-split-__phylink_connect_phy.patch │ │ │ ├── 747-net-phylink-support-Clause-45-PHYs-on-SFP-modules.patch │ │ │ ├── 748-net-phylink-split-link_an_mode-configured-and-curren.patch │ │ │ ├── 749-net-phylink-split-phylink_sfp_module_insert.patch │ │ │ ├── 750-net-phylink-delay-MAC-configuration-for-copper-SFP-m.patch │ │ │ ├── 751-net-phylink-make-Broadcom-BCM84881-based-SFPs-work.patch │ │ │ ├── 752-net-phy-add-Broadcom-BCM84881-PHY-driver.patch │ │ │ ├── 753-net-sfp-add-support-for-Clause-45-PHYs.patch │ │ │ ├── 754-net-sfp-fix-unbind.patch │ │ │ ├── 755-net-sfp-fix-hwmon.patch │ │ │ ├── 756-net-sfp-use-a-definition-for-the-fault-recovery-atte.patch │ │ │ ├── 757-net-sfp-rename-sm_retries.patch │ │ │ ├── 758-net-sfp-error-handling-for-phy-probe.patch │ │ │ ├── 759-net-sfp-re-attempt-probing-for-phy.patch │ │ │ ├── 760-net-dsa-mv88e6xxx-fix-vlan-setup.patch │ │ │ ├── 761-net-dsa-mt7530-Support-EEE-features.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 │ │ │ ├── 770-00-net-ethernet-mtk_eth_soc-use-napi_consume_skb.patch │ │ │ ├── 770-01-net-ethernet-mtk_eth_soc-significantly-reduce-mdio-b.patch │ │ │ ├── 770-03-net-ethernet-mtk_eth_soc-fix-unnecessary-tx-queue-st.patch │ │ │ ├── 770-04-net-ethernet-mtk_eth_soc-use-larger-burst-size-for-q.patch │ │ │ ├── 770-05-net-ethernet-mtk_eth_soc-increase-DMA-ring-sizes.patch │ │ │ ├── 770-06-net-ethernet-mtk_eth_soc-implement-dynamic-interrupt.patch │ │ │ ├── 770-08-net-ethernet-mtk_eth_soc-cache-hardware-pointer-of-l.patch │ │ │ ├── 770-09-net-ethernet-mtk_eth_soc-only-read-the-full-rx-descr.patch │ │ │ ├── 770-10-net-ethernet-mtk_eth_soc-unmap-rx-data-before-callin.patch │ │ │ ├── 770-11-net-ethernet-mtk_eth_soc-avoid-rearming-interrupt-if.patch │ │ │ ├── 770-13-net-ethernet-mtk_eth_soc-fix-parsing-packets-in-GDM.patch │ │ │ ├── 770-14-net-ethernet-mtk_eth_soc-set-PPE-flow-hash-as-skb-ha.patch │ │ │ ├── 770-15-net-ethernet-mediatek-mtk_eth_soc-add-support-for-in.patch │ │ │ ├── 770-16-net-ethernet-mediatek-mtk_eth_soc-add-flow-offloadin.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 │ │ │ ├── 810-pci_disable_common_quirks.patch │ │ │ ├── 811-pci_disable_usb_common_quirks.patch │ │ │ ├── 820-libata-Assign-OF-node-to-the-SCSI-device.patch │ │ │ ├── 834-ledtrig-libata.patch │ │ │ ├── 840-hwrng-bcm2835-set-quality-to-1000.patch │ │ │ ├── 920-mangle_bootargs.patch │ │ │ ├── 931-w1-gpio-fix-problem-with-platfom-data-in-w1-gpio.patch │ │ │ └── 999-backport-wireless-ethernet-dispatch.patch │ │ ├── pending-6.1 │ │ │ ├── 100-compiler.h-only-include-asm-rwonce.h-for-kernel-code.patch │ │ │ ├── 102-MIPS-only-process-negative-stack-offsets-on-stack-tr.patch │ │ │ ├── 103-kbuild-export-SUBARCH.patch │ │ │ ├── 111-watchdog-max63xx_wdt-Add-support-for-specifying-WDI-.patch │ │ │ ├── 120-Fix-alloc_node_mem_map-with-ARCH_PFN_OFFSET-calcu.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 │ │ │ ├── 151-net-bridge-do-not-send-arp-replies-if-src-and-target.patch │ │ │ ├── 190-rtc-rs5c372-support_alarms_up_to_1_week.patch │ │ │ ├── 191-rtc-rs5c372-let_the_alarm_to_be_used_as_wakeup_source.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 │ │ │ ├── 301-MIPS-Add-barriers-between-dcache-icache-flushes.patch │ │ │ ├── 302-mips_no_branch_likely.patch │ │ │ ├── 305-mips_module_reloc.patch │ │ │ ├── 308-mips32r2_tune.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 │ │ │ ├── 350-mips-kernel-fix-detect_memory_region-function.patch │ │ │ ├── 351-irqchip-bcm-6345-l1-request-memory-region.patch │ │ │ ├── 400-mtd-mtdsplit-support.patch │ │ │ ├── 401-mtd-don-t-register-NVMEM-devices-for-partitions-with.patch │ │ │ ├── 402-mtd-spi-nor-write-support-for-minor-aligned-partitions.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 │ │ │ ├── 450-01-dt-bindings-mtd-add-basic-bindings-for-UBI.patch │ │ │ ├── 450-02-dt-bindings-mtd-ubi-volume-allow-UBI-volumes-to-prov.patch │ │ │ ├── 450-03-mtd-ubi-block-use-notifier-to-create-ubiblock-from-p.patch │ │ │ ├── 450-04-mtd-ubi-attach-from-device-tree.patch │ │ │ ├── 450-05-mtd-ubi-introduce-pre-removal-notification-for-UBI-v.patch │ │ │ ├── 450-06-mtd-ubi-populate-ubi-volume-fwnode.patch │ │ │ ├── 450-07-mtd-ubi-provide-NVMEM-layer-over-UBI-volumes.patch │ │ │ ├── 450-08-dt-bindings-block-add-basic-bindings-for-block-devic.patch │ │ │ ├── 450-09-block-partitions-populate-fwnode.patch │ │ │ ├── 450-10-block-add-new-genhd-flag-GENHD_FL_NVMEM.patch │ │ │ ├── 450-11-block-implement-NVMEM-provider.patch │ │ │ ├── 450-12-dt-bindings-mmc-mmc-card-add-block-device-nodes.patch │ │ │ ├── 450-13-mmc-core-set-card-fwnode_handle.patch │ │ │ ├── 450-14-mmc-block-set-fwnode-of-disk-devices.patch │ │ │ ├── 450-15-mmc-block-set-GENHD_FL_NVMEM.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 │ │ │ ├── 476-mtd-spi-nor-add-eon-en25q128.patch │ │ │ ├── 477-mtd-spi-nor-add-eon-en25qx128a.patch │ │ │ ├── 479-mtd-spi-nor-add-xtx-xt25f128b.patch │ │ │ ├── 481-mtd-spi-nor-add-support-for-Gigadevice-GD25D05.patch │ │ │ ├── 482-mtd-spi-nor-add-gd25q512.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 │ │ │ ├── 487-mtd-spinand-Add-support-for-Etron-EM73D044VCx.patch │ │ │ ├── 488-mtd-spi-nor-add-xmc-xm25qh64c.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 │ │ │ ├── 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 │ │ │ ├── 510-block-add-uImage.FIT-subimage-block-driver.patch │ │ │ ├── 511-init-bypass-device-lookup-for-dev-fit-rootfs.patch │ │ │ ├── 530-jffs2_make_lzma_available.patch │ │ │ ├── 532-jffs2_eofdetect.patch │ │ │ ├── 540-ksmbd-only-v2-leases-handle-the-directory.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 │ │ │ ├── 683-of_net-add-mac-address-to-of-tree.patch │ │ │ ├── 700-netfilter-nft_flow_offload-handle-netdevice-events-f.patch │ │ │ ├── 701-netfilter-nf_tables-ignore-EOPNOTSUPP-on-flowtable-d.patch │ │ │ ├── 702-net-ethernet-mtk_eth_soc-enable-threaded-NAPI.patch │ │ │ ├── 703-phy-add-detach-callback-to-struct-phy_driver.patch │ │ │ ├── 704-netfilter-nf_tables-fix-bidirectional-offload-regres.patch │ │ │ ├── 705-net-dsa-tag_mtk-add-padding-for-tx-packets.patch │ │ │ ├── 710-bridge-add-knob-for-filtering-rx-tx-BPDU-pack.patch │ │ │ ├── 711-01-net-dsa-qca8k-implement-lag_fdb_add-del-ops.patch │ │ │ ├── 711-02-net-dsa-qca8k-enable-flooding-to-both-CPU-port.patch │ │ │ ├── 711-03-net-dsa-qca8k-add-support-for-port_change_master.patch │ │ │ ├── 712-net-dsa-qca8k-enable-assisted-learning-on-CPU-port.patch │ │ │ ├── 713-03-arm64-dts-qcom-ipq8074-add-clock-frequency-to-MDIO-n.patch │ │ │ ├── 721-net-phy-realtek-rtl8221-allow-to-configure-SERDES-mo.patch │ │ │ ├── 722-net-phy-realtek-support-switching-between-SGMII-and-.patch │ │ │ ├── 724-net-phy-realtek-use-genphy_soft_reset-for-2.5G-PHYs.patch │ │ │ ├── 725-net-phy-realtek-disable-SGMII-in-band-AN-for-2-5G-PHYs.patch │ │ │ ├── 726-net-phy-realtek-make-sure-paged-read-is-protected-by.patch │ │ │ ├── 727-net-phy-realtek-use-inline-functions-for-10GbE-adver.patch │ │ │ ├── 728-net-phy-realtek-check-validity-of-10GbE-link-partner.patch │ │ │ ├── 729-net-phy-realtek-introduce-rtl822x_probe.patch │ │ │ ├── 730-net-phy-realtek-detect-early-version-of-RTL8221B.patch │ │ │ ├── 731-net-permit-ieee80211_ptr-even-with-no-CFG82111-suppo.patch │ │ │ ├── 732-00-net-ethernet-mtk_eth_soc-compile-out-netsys-v2-code-.patch │ │ │ ├── 732-01-net-ethernet-mtk_eth_soc-work-around-issue-with-send.patch │ │ │ ├── 732-02-net-ethernet-mtk_eth_soc-set-NETIF_F_ALL_TSO.patch │ │ │ ├── 732-03-net-ethernet-mtk_eth_soc-fix-remaining-throughput-re.patch │ │ │ ├── 734-net-ethernet-mtk_eth_soc-ppe-fix-L2-offloading-with-.patch │ │ │ ├── 737-net-ethernet-mtk_eth_soc-add-paths-and-SerDes-modes-.patch │ │ │ ├── 738-net-ethernet-mtk_eth_soc-set-coherent-mask-to-get-PP.patch │ │ │ ├── 739-01-dt-bindings-phy-mediatek-xfi-tphy-add-new-bindings.patch │ │ │ ├── 739-02-phy-add-driver-for-MediaTek-XFI-T-PHY.patch │ │ │ ├── 739-03-net-pcs-pcs-mtk-lynxi-add-platform-driver-for-MT7988.patch │ │ │ ├── 739-04-dt-bindings-net-pcs-add-bindings-for-MediaTek-USXGMI.patch │ │ │ ├── 739-05-net-pcs-add-driver-for-MediaTek-USXGMII-PCS.patch │ │ │ ├── 740-net-phy-motorcomm-Add-missing-include.patch │ │ │ ├── 741-net-phy-realtek-support-interrupt-of-RTL8221B.patch │ │ │ ├── 742-net-phy-air_en8811h-reset-netdev-rules-when-LED-is-s.patch │ │ │ ├── 760-net-core-add-optional-threading-for-backlog-processi.patch │ │ │ ├── 768-net-dsa-mv88e6xxx-Request-assisted-learning-on-CPU-port.patch │ │ │ ├── 772-net-dsa-b53-add-support-for-BCM63xx-RGMIIs.patch │ │ │ ├── 773-net-dsa-b53-mmap-add-more-63xx-SoCs.patch │ │ │ ├── 774-net-dsa-b53-mmap-allow-passing-a-chip-ID.patch │ │ │ ├── 775-net-dsa-b53-add-BCM63268-RGMII-configuration.patch │ │ │ ├── 777-net-dsa-b53-mdio-add-support-for-BCM53134.patch │ │ │ ├── 780-ARM-kirkwood-add-missing-linux-if_ether.h-for-ETH_AL.patch │ │ │ ├── 790-bus-mhi-core-add-SBL-state-callback.patch │ │ │ ├── 800-bcma-get-SoC-device-struct-copy-its-DMA-params-to-th.patch │ │ │ ├── 801-gpio-gpio-cascade-add-generic-GPIO-cascade.patch │ │ │ ├── 802-OPP-Provide-old-opp-to-config_clks-on-_set_opp.patch │ │ │ ├── 804-nvmem-core-support-mac-base-fixed-layout-cells.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 │ │ │ ├── 850-0023-PCI-aardvark-Make-main-irq_chip-structure-a-static-d.patch │ │ │ ├── 850-dt-bindings-clk-add-BCM63268-timer-clock-definitions.patch │ │ │ ├── 851-dt-bindings-reset-add-BCM63268-timer-reset-definitions.patch │ │ │ ├── 852-clk-bcm-Add-BCM63268-timer-clock-and-reset-driver.patch │ │ │ ├── 860-serial-8250_mtk-track-busclk-state-to-avoid-bus-error.patch │ │ │ ├── 870-ARM-dts-nxp-imx7d-pico-add-cpu-supply-nodes.patch │ │ │ ├── 880-01-dt-bindings-leds-add-LED_FUNCTION_MOBILE-for-mobile-.patch │ │ │ ├── 880-02-dt-bindings-leds-add-LED_FUNCTION_SPEED_-for-link-sp.patch │ │ │ ├── 890-usb-serial-add-support-for-CH348.patch │ │ │ ├── 901-usb-add-more-modem-support.patch │ │ │ ├── 920-mangle_bootargs.patch │ │ │ └── 980-tools-thermal-tmon-Fix-compilation-warning-for-wrong.patch │ │ ├── pending-6.12 │ │ │ ├── 100-compiler.h-only-include-asm-rwonce.h-for-kernel-code.patch │ │ │ ├── 102-MIPS-only-process-negative-stack-offsets-on-stack-tr.patch │ │ │ ├── 103-kbuild-export-SUBARCH.patch │ │ │ ├── 111-watchdog-max63xx_wdt-Add-support-for-specifying-WDI-.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 │ │ │ ├── 151-net-bridge-do-not-send-arp-replies-if-src-and-target.patch │ │ │ ├── 190-rtc-rs5c372-support_alarms_up_to_1_week.patch │ │ │ ├── 191-rtc-rs5c372-let_the_alarm_to_be_used_as_wakeup_source.patch │ │ │ ├── 200-ARM-9404-1-arm32-fix-boot-hang-with-HAVE_LD_DEAD_COD.patch │ │ │ ├── 203-kallsyms_uncompressed.patch │ │ │ ├── 205-backtrace_module_info.patch │ │ │ ├── 240-remove-unsane-filenames-from-deps_initramfs-list.patch │ │ │ ├── 250-kernel-fork-Increase-minimum-number-of-allowed-threa.patch │ │ │ ├── 270-platform-mikrotik-build-bits.patch │ │ │ ├── 300-mips_expose_boot_raw.patch │ │ │ ├── 301-MIPS-Add-barriers-between-dcache-icache-flushes.patch │ │ │ ├── 302-mips_no_branch_likely.patch │ │ │ ├── 308-mips32r2_tune.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 │ │ │ ├── 350-mips-kernel-fix-detect_memory_region-function.patch │ │ │ ├── 400-mtd-mtdsplit-support.patch │ │ │ ├── 401-mtd-don-t-register-NVMEM-devices-for-partitions-with.patch │ │ │ ├── 402-mtd-spi-nor-write-support-for-minor-aligned-partitions.patch │ │ │ ├── 416-09-next-spi-spi-qpic-snand-validate-user-chip-specific-ECC-properties.patch │ │ │ ├── 416-10-next-1-2-mtd-nand-qpic-common-add-defines-for-ECC_MODE-values.patch │ │ │ ├── 416-11-next-2-2-spi-spi-qpic-snand-add-support-for-8-bits-ECC-strength.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 │ │ │ ├── 450-block-allow-setting-partition-of_node.patch │ │ │ ├── 451-block-partitions-of-assign-Device-Tree-node-to-parti.patch │ │ │ ├── 452-partitions-efi-apply-Linux-code-style.patch │ │ │ ├── 453-partitions-efi-allow-assigning-partition-Device-Tree.patch │ │ │ ├── 454-block-add-support-for-notifications.patch │ │ │ ├── 455-block-add-new-genhd-flag-GENHD_FL_NVMEM.patch │ │ │ ├── 456-nvmem-implement-block-NVMEM-provider.patch │ │ │ ├── 457-mmc-block-set-GENHD_FL_NVMEM.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 │ │ │ ├── 476-mtd-spi-nor-add-eon-en25q128.patch │ │ │ ├── 477-mtd-spi-nor-add-eon-en25qx128a.patch │ │ │ ├── 479-mtd-spi-nor-add-xtx-xt25f128b.patch │ │ │ ├── 481-mtd-spi-nor-add-support-for-Gigadevice-GD25D05.patch │ │ │ ├── 482-mtd-spi-nor-add-gd25q512.patch │ │ │ ├── 484-mtd-spi-nor-add-esmt-f25l16pa.patch │ │ │ ├── 485-mtd-spi-nor-add-xmc-xm25qh128c.patch │ │ │ ├── 487-mtd-spinand-Add-support-for-Etron-EM73D044VCx.patch │ │ │ ├── 488-mtd-spi-nor-add-xmc-xm25qh64c.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 │ │ │ ├── 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 │ │ │ ├── 510-block-add-uImage.FIT-subimage-block-driver.patch │ │ │ ├── 511-init-bypass-device-lookup-for-dev-fit-rootfs.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 │ │ │ ├── 630-packet_socket_type.patch │ │ │ ├── 640-net-bridge-fix-switchdev-host-mdb-entry-updates.patch │ │ │ ├── 641-net-bridge-switchdev-Don-t-drop-packets-between-port.patch │ │ │ ├── 642-net-bridge-locally-receive-all-multicast-packets-if-.patch │ │ │ ├── 650-net-pppoe-implement-GRO-support.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 │ │ │ ├── 681-net-remove-NETIF_F_GSO_FRAGLIST-from-NETIF_F_GSO_SOF.patch │ │ │ ├── 683-of_net-add-mac-address-to-of-tree.patch │ │ │ ├── 690-net-add-missing-check-for-TCP-fraglist-GRO.patch │ │ │ ├── 700-netfilter-nft_flow_offload-handle-netdevice-events-f.patch │ │ │ ├── 701-netfilter-nf_tables-ignore-EOPNOTSUPP-on-flowtable-d.patch │ │ │ ├── 702-net-ethernet-mtk_eth_soc-enable-threaded-NAPI.patch │ │ │ ├── 703-phy-add-detach-callback-to-struct-phy_driver.patch │ │ │ ├── 705-net-dsa-tag_mtk-add-padding-for-tx-packets.patch │ │ │ ├── 706-net-phy-populate-host_interfaces-when-attaching-PHY.patch │ │ │ ├── 710-bridge-add-knob-for-filtering-rx-tx-BPDU-pack.patch │ │ │ ├── 711-01-net-dsa-qca8k-implement-lag_fdb_add-del-ops.patch │ │ │ ├── 711-02-net-dsa-qca8k-enable-flooding-to-both-CPU-port.patch │ │ │ ├── 711-03-net-dsa-qca8k-add-support-for-port_change_master.patch │ │ │ ├── 712-net-dsa-qca8k-enable-assisted-learning-on-CPU-port.patch │ │ │ ├── 720-01-net-phy-realtek-use-genphy_soft_reset-for-2.5G-PHYs.patch │ │ │ ├── 720-02-net-phy-realtek-disable-SGMII-in-band-AN-for-2-5G-PHYs.patch │ │ │ ├── 720-03-net-phy-realtek-make-sure-paged-read-is-protected-by.patch │ │ │ ├── 720-04-net-phy-realtek-setup-aldps.patch │ │ │ ├── 720-05-net-phy-realtek-detect-early-version-of-RTL8221B.patch │ │ │ ├── 720-06-net-phy-realtek-support-interrupt-of-RTL8221B.patch │ │ │ ├── 720-07-net-phy-realtek-mark-existing-MMDs-as-present.patch │ │ │ ├── 720-08-net-phy-realtek-work-around-broken-serdes.patch │ │ │ ├── 720-09-net-phy-realtek-disable-MDIO-broadcast.patch │ │ │ ├── 731-net-permit-ieee80211_ptr-even-with-no-CFG82111-suppo.patch │ │ │ ├── 732-00-net-ethernet-mtk_eth_soc-compile-out-netsys-v2-code-.patch │ │ │ ├── 732-01-net-ethernet-mtk_eth_soc-work-around-issue-with-send.patch │ │ │ ├── 732-02-net-ethernet-mtk_eth_soc-set-NETIF_F_ALL_TSO.patch │ │ │ ├── 733-01-net-ethernet-mtk_eth_soc-use-napi_build_skb.patch │ │ │ ├── 734-net-ethernet-mediatek-enlarge-DMA-reserve-buffer.patch │ │ │ ├── 736-03-net-ethernet-mtk_eth_soc-improve-keeping-track-of-of.patch │ │ │ ├── 736-04-net-ethernet-mediatek-fix-ppe-flow-accounting-for-L2.patch │ │ │ ├── 737-net-ethernet-mtk_eth_soc-add-paths-and-SerDes-modes-.patch │ │ │ ├── 738-01-net-ethernet-mtk_eth_soc-reduce-rx-ring-size-for-older.patch │ │ │ ├── 738-02-net-ethernet-mtk_eth_soc-do-not-enable-page-pool-sta.patch │ │ │ ├── 739-01-dt-bindings-phy-mediatek-xfi-tphy-add-new-bindings.patch │ │ │ ├── 739-03-net-pcs-pcs-mtk-lynxi-add-platform-driver-for-MT7988.patch │ │ │ ├── 739-04-dt-bindings-net-pcs-add-bindings-for-MediaTek-USXGMI.patch │ │ │ ├── 739-05-net-pcs-add-driver-for-MediaTek-USXGMII-PCS.patch │ │ │ ├── 740-net-phy-motorcomm-Add-missing-include.patch │ │ │ ├── 741-net-phy-broadcom-update-dependency-condition.patch │ │ │ ├── 750-net-sfp-add-quirk-for-FlyPro-10Gbase-T-module.patch │ │ │ ├── 780-ARM-kirkwood-add-missing-linux-if_ether.h-for-ETH_AL.patch │ │ │ ├── 790-bus-mhi-core-add-SBL-state-callback.patch │ │ │ ├── 791-tg3-Fix-DMA-allocations-on-57766-devices.patch │ │ │ ├── 800-bcma-get-SoC-device-struct-copy-its-DMA-params-to-th.patch │ │ │ ├── 801-gpio-gpio-cascade-add-generic-GPIO-cascade.patch │ │ │ ├── 802-OPP-Provide-old-opp-to-config_clks-on-_set_opp.patch │ │ │ ├── 804-nvmem-core-support-mac-base-fixed-layout-cells.patch │ │ │ ├── 809-01-nvmem-core-generalize-mac-base-cells-handling.patch │ │ │ ├── 809-02-nvmem-layouts-add-support-for-ascii-env-driver.patch │ │ │ ├── 809-03-nvmem-layouts-ascii-env-handle-CRLF-while-parsing.patch │ │ │ ├── 810-pci_disable_common_quirks.patch │ │ │ ├── 811-pci_disable_usb_common_quirks.patch │ │ │ ├── 834-ledtrig-libata.patch │ │ │ ├── 840-hwrng-bcm2835-set-quality-to-1000.patch │ │ │ ├── 850-0023-PCI-aardvark-Make-main-irq_chip-structure-a-static-d.patch │ │ │ ├── 890-usb-serial-add-support-for-CH348.patch │ │ │ ├── 891-dt-bindings-leds-Add-LED1202-LED-Controller.patch │ │ │ ├── 892-leds-Add-LED1202-I2C-driver.patch │ │ │ ├── 893-leds_st1202-Fix-NULL-pointer-access-error.patch │ │ │ ├── 900-net-ag71xx-fix-qca9530-and-qca9550-mdio-probe.patch │ │ │ └── 920-mangle_bootargs.patch │ │ └── pending-6.6 │ │ │ ├── 100-compiler.h-only-include-asm-rwonce.h-for-kernel-code.patch │ │ │ ├── 102-MIPS-only-process-negative-stack-offsets-on-stack-tr.patch │ │ │ ├── 103-kbuild-export-SUBARCH.patch │ │ │ ├── 111-watchdog-max63xx_wdt-Add-support-for-specifying-WDI-.patch │ │ │ ├── 120-Fix-alloc_node_mem_map-with-ARCH_PFN_OFFSET-calcu.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 │ │ │ ├── 151-net-bridge-do-not-send-arp-replies-if-src-and-target.patch │ │ │ ├── 190-rtc-rs5c372-support_alarms_up_to_1_week.patch │ │ │ ├── 191-rtc-rs5c372-let_the_alarm_to_be_used_as_wakeup_source.patch │ │ │ ├── 203-kallsyms_uncompressed.patch │ │ │ ├── 205-backtrace_module_info.patch │ │ │ ├── 240-remove-unsane-filenames-from-deps_initramfs-list.patch │ │ │ ├── 250-kernel-fork-Increase-minimum-number-of-allowed-threa.patch │ │ │ ├── 270-platform-mikrotik-build-bits.patch │ │ │ ├── 300-mips_expose_boot_raw.patch │ │ │ ├── 301-MIPS-Add-barriers-between-dcache-icache-flushes.patch │ │ │ ├── 302-mips_no_branch_likely.patch │ │ │ ├── 305-mips_module_reloc.patch │ │ │ ├── 308-mips32r2_tune.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 │ │ │ ├── 350-mips-kernel-fix-detect_memory_region-function.patch │ │ │ ├── 400-mtd-mtdsplit-support.patch │ │ │ ├── 401-mtd-don-t-register-NVMEM-devices-for-partitions-with.patch │ │ │ ├── 402-mtd-spi-nor-write-support-for-minor-aligned-partitions.patch │ │ │ ├── 416-09-next-spi-spi-qpic-snand-validate-user-chip-specific-ECC-properties.patch │ │ │ ├── 416-10-next-1-2-mtd-nand-qpic-common-add-defines-for-ECC_MODE-values.patch │ │ │ ├── 416-11-next-2-2-spi-spi-qpic-snand-add-support-for-8-bits-ECC-strength.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 │ │ │ ├── 450-dt-bindings-block-add-basic-bindings-for-block-devic.patch │ │ │ ├── 451-block-partitions-populate-fwnode.patch │ │ │ ├── 452-block-add-support-for-notifications.patch │ │ │ ├── 453-block-add-new-genhd-flag-GENHD_FL_NVMEM.patch │ │ │ ├── 454-nvmem-implement-block-NVMEM-provider.patch │ │ │ ├── 455-dt-bindings-mmc-mmc-card-add-block-device-nodes.patch │ │ │ ├── 456-mmc-core-set-card-fwnode_handle.patch │ │ │ ├── 457-mmc-block-set-fwnode-of-disk-devices.patch │ │ │ ├── 458-mmc-block-set-GENHD_FL_NVMEM.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 │ │ │ ├── 476-mtd-spi-nor-add-eon-en25q128.patch │ │ │ ├── 477-mtd-spi-nor-add-eon-en25qx128a.patch │ │ │ ├── 479-mtd-spi-nor-add-xtx-xt25f128b.patch │ │ │ ├── 481-mtd-spi-nor-add-support-for-Gigadevice-GD25D05.patch │ │ │ ├── 482-mtd-spi-nor-add-gd25q512.patch │ │ │ ├── 484-mtd-spi-nor-add-esmt-f25l16pa.patch │ │ │ ├── 485-mtd-spi-nor-add-xmc-xm25qh128c.patch │ │ │ ├── 487-mtd-spinand-Add-support-for-Etron-EM73D044VCx.patch │ │ │ ├── 488-mtd-spi-nor-add-xmc-xm25qh64c.patch │ │ │ ├── 489-mtd-spinand-winbond-add-support-for-W25N01KV.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 │ │ │ ├── 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 │ │ │ ├── 510-block-add-uImage.FIT-subimage-block-driver.patch │ │ │ ├── 511-init-bypass-device-lookup-for-dev-fit-rootfs.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 │ │ │ ├── 640-net-bridge-fix-switchdev-host-mdb-entry-updates.patch │ │ │ ├── 641-net-bridge-switchdev-Don-t-drop-packets-between-port.patch │ │ │ ├── 642-net-bridge-locally-receive-all-multicast-packets-if-.patch │ │ │ ├── 650-net-pppoe-implement-GRO-support.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 │ │ │ ├── 683-of_net-add-mac-address-to-of-tree.patch │ │ │ ├── 700-netfilter-nft_flow_offload-handle-netdevice-events-f.patch │ │ │ ├── 701-netfilter-nf_tables-ignore-EOPNOTSUPP-on-flowtable-d.patch │ │ │ ├── 702-net-ethernet-mtk_eth_soc-enable-threaded-NAPI.patch │ │ │ ├── 703-phy-add-detach-callback-to-struct-phy_driver.patch │ │ │ ├── 704-netfilter-nf_tables-fix-bidirectional-offload-regres.patch │ │ │ ├── 705-net-dsa-tag_mtk-add-padding-for-tx-packets.patch │ │ │ ├── 706-net-phy-populate-host_interfaces-when-attaching-PHY.patch │ │ │ ├── 710-bridge-add-knob-for-filtering-rx-tx-BPDU-pack.patch │ │ │ ├── 711-01-net-dsa-qca8k-implement-lag_fdb_add-del-ops.patch │ │ │ ├── 711-02-net-dsa-qca8k-enable-flooding-to-both-CPU-port.patch │ │ │ ├── 711-03-net-dsa-qca8k-add-support-for-port_change_master.patch │ │ │ ├── 712-net-dsa-qca8k-enable-assisted-learning-on-CPU-port.patch │ │ │ ├── 713-03-arm64-dts-qcom-ipq8074-add-clock-frequency-to-MDIO-n.patch │ │ │ ├── 720-01-net-phy-realtek-use-genphy_soft_reset-for-2.5G-PHYs.patch │ │ │ ├── 720-02-net-phy-realtek-disable-SGMII-in-band-AN-for-2-5G-PHYs.patch │ │ │ ├── 720-03-net-phy-realtek-make-sure-paged-read-is-protected-by.patch │ │ │ ├── 720-04-net-phy-realtek-setup-aldps.patch │ │ │ ├── 720-05-net-phy-realtek-detect-early-version-of-RTL8221B.patch │ │ │ ├── 720-06-net-phy-realtek-support-interrupt-of-RTL8221B.patch │ │ │ ├── 720-07-net-phy-realtek-mark-existing-MMDs-as-present.patch │ │ │ ├── 720-08-net-phy-realtek-work-around-broken-serdes.patch │ │ │ ├── 720-09-net-phy-realtek-disable-MDIO-broadcast.patch │ │ │ ├── 731-net-permit-ieee80211_ptr-even-with-no-CFG82111-suppo.patch │ │ │ ├── 732-00-net-ethernet-mtk_eth_soc-compile-out-netsys-v2-code-.patch │ │ │ ├── 732-01-net-ethernet-mtk_eth_soc-work-around-issue-with-send.patch │ │ │ ├── 732-02-net-ethernet-mtk_eth_soc-set-NETIF_F_ALL_TSO.patch │ │ │ ├── 733-01-net-ethernet-mtk_eth_soc-use-napi_build_skb.patch │ │ │ ├── 736-net-ethernet-mtk_wed-fix-path-of-MT7988-WO-firmware.patch │ │ │ ├── 737-net-ethernet-mtk_eth_soc-add-paths-and-SerDes-modes-.patch │ │ │ ├── 739-01-dt-bindings-phy-mediatek-xfi-tphy-add-new-bindings.patch │ │ │ ├── 739-02-phy-add-driver-for-MediaTek-XFI-T-PHY.patch │ │ │ ├── 739-03-net-pcs-pcs-mtk-lynxi-add-platform-driver-for-MT7988.patch │ │ │ ├── 739-04-dt-bindings-net-pcs-add-bindings-for-MediaTek-USXGMI.patch │ │ │ ├── 739-05-net-pcs-add-driver-for-MediaTek-USXGMII-PCS.patch │ │ │ ├── 740-net-phy-motorcomm-Add-missing-include.patch │ │ │ ├── 741-net-phy-broadcom-update-dependency-condition.patch │ │ │ ├── 742-net-phy-air_en8811h-reset-netdev-rules-when-LED-is-s.patch │ │ │ ├── 750-net-sfp-add-quirk-for-FlyPro-10Gbase-T-module.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 │ │ │ ├── 790-bus-mhi-core-add-SBL-state-callback.patch │ │ │ ├── 792-igc-enable-HW-vlan-tag-insertion-stripping-by-defaul.patch │ │ │ ├── 800-bcma-get-SoC-device-struct-copy-its-DMA-params-to-th.patch │ │ │ ├── 801-gpio-gpio-cascade-add-generic-GPIO-cascade.patch │ │ │ ├── 802-OPP-Provide-old-opp-to-config_clks-on-_set_opp.patch │ │ │ ├── 804-nvmem-core-support-mac-base-fixed-layout-cells.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 │ │ │ ├── 850-0023-PCI-aardvark-Make-main-irq_chip-structure-a-static-d.patch │ │ │ ├── 870-ARM-dts-nxp-imx7d-pico-add-cpu-supply-nodes.patch │ │ │ ├── 880-01-dt-bindings-leds-add-LED_FUNCTION_MOBILE-for-mobile-.patch │ │ │ ├── 880-02-dt-bindings-leds-add-LED_FUNCTION_SPEED_-for-link-sp.patch │ │ │ ├── 890-usb-serial-add-support-for-CH348.patch │ │ │ ├── 901-usb-add-more-modem-support.patch │ │ │ ├── 920-mangle_bootargs.patch │ │ │ └── 980-tools-thermal-tmon-Fix-compilation-warning-for-wrong.patch │ ├── imx │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── inittab │ │ ├── config-5.10 │ │ ├── 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 │ │ ├── files │ │ │ └── firmware │ │ │ │ └── imx │ │ │ │ └── sdma │ │ │ │ └── sdma-imx6q.bin │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── bootscript-solidrun_cubox-i │ │ │ ├── bootscript-toradex_apalis │ │ │ ├── bootscript-ventana │ │ │ ├── cortexa7.mk │ │ │ ├── cortexa9.mk │ │ │ └── recovery-toradex_apalis │ │ ├── patches-5.10 │ │ │ ├── 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 │ │ ├── config-5.10 │ │ ├── files-5.10 │ │ │ └── drivers │ │ │ │ └── net │ │ │ │ └── mdio │ │ │ │ ├── ar40xx.c │ │ │ │ └── ar40xx.h │ │ ├── files │ │ │ ├── arch │ │ │ │ └── arm │ │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ ├── qcom-ipq4018-a42.dts │ │ │ │ │ ├── qcom-ipq4018-ap120c-ac.dts │ │ │ │ │ ├── qcom-ipq4018-ap4220-128m.dts │ │ │ │ │ ├── qcom-ipq4018-ap4220-48m.dts │ │ │ │ │ ├── qcom-ipq4018-ap4220.dtsi │ │ │ │ │ ├── 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-le1.dts │ │ │ │ │ ├── qcom-ipq4019-lhgg-60ad.dts │ │ │ │ │ ├── qcom-ipq4019-map-ac2200.dts │ │ │ │ │ ├── qcom-ipq4019-mf286d.dts │ │ │ │ │ ├── qcom-ipq4019-mf289f.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-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 │ │ │ │ └── phy │ │ │ │ └── qca807x.c │ │ ├── generic │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── 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 │ │ │ ├── 444-mtd-nand-rawnand-add-support-for-Toshiba-TC58NVG0S3H.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 │ │ │ └── 999-ipq40xx-unlock-cpu-frequency.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 │ │ │ │ │ └── cpu_freq │ │ │ │ ├── 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 │ │ │ │ │ ├── ruijie.sh │ │ │ │ │ └── zyxel.sh │ │ │ └── sbin │ │ │ │ └── asrock_g10_back_to_factory │ │ ├── config-5.10 │ │ ├── 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-g-nat200.dts │ │ │ │ ├── qcom-ipq8064-g10.dts │ │ │ │ ├── qcom-ipq8064-r7500.dts │ │ │ │ ├── qcom-ipq8064-r7500v2.dts │ │ │ │ ├── qcom-ipq8064-rg-mtfi-m520.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 │ │ │ ├── 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 │ ├── 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 │ │ ├── config-5.10 │ │ ├── config-5.4 │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── kirkwood-e4200-v2.dts │ │ │ │ ├── kirkwood-ea3500.dts │ │ │ │ ├── kirkwood-ea4500.dts │ │ │ │ ├── kirkwood-goflexhome.dts │ │ │ │ ├── kirkwood-m8621t.dts │ │ │ │ ├── kirkwood-net110.dts │ │ │ │ ├── kirkwood-nsa310b.dts │ │ │ │ ├── kirkwood-nsa310s.dts │ │ │ │ └── kirkwood-on100.dts │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ ├── 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 │ │ │ ├── 201-enable-sata-port-specific-led-triggers.patch │ │ │ ├── 202-linksys-find-active-root.patch │ │ │ └── 203-blackarmor-nas220.patch │ │ └── patches-5.4 │ │ │ ├── 001-ARM-dts-kirkwood-Add-Check-Point-L-50-board.patch │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── config-5.4 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ └── 02_migrate_xdsl_iface │ │ │ └── lib │ │ │ │ ├── functions │ │ │ │ └── lantiq.sh │ │ │ │ └── preinit │ │ │ │ └── 05_set_preinit_iface_lantiq │ │ ├── config-5.10 │ │ ├── config-5.4 │ │ ├── falcon │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── 01_led_migration │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── config-5.4 │ │ │ ├── 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 │ │ │ └── firmware │ │ │ │ └── lantiq │ │ │ │ ├── xrx200_phy11g_a14.bin │ │ │ │ ├── xrx200_phy11g_a22.bin │ │ │ │ ├── xrx200_phy22f_a14.bin │ │ │ │ └── xrx200_phy22f_a22.bin │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── amazonse.mk │ │ │ ├── ar9.mk │ │ │ ├── danube.mk │ │ │ ├── eva.dummy.squashfs │ │ │ ├── falcon.mk │ │ │ ├── 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 │ │ │ ├── 0024-MIPS-lantiq-revert-DSA-switch-driver-PMU-clock-chang.patch │ │ │ ├── 0025-NET-MIPS-lantiq-adds-xrx200-legacy.patch │ │ │ ├── 0026-MIPS-lantiq-Add-GPHY-Firmware-loader.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 │ │ │ └── 0701-NET-lantiq-etop-of-mido.patch │ │ ├── patches-5.4 │ │ │ ├── 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 │ │ │ ├── 0024-MIPS-lantiq-revert-DSA-switch-driver-PMU-clock-chang.patch │ │ │ ├── 0025-NET-MIPS-lantiq-adds-xrx200-legacy.patch │ │ │ ├── 0026-MIPS-lantiq-Add-GPHY-Firmware-loader.patch │ │ │ ├── 0028-NET-lantiq-various-etop-fixes.patch │ │ │ ├── 0030-GPIO-add-named-gpio-exports.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 │ │ │ └── 0701-NET-lantiq-etop-of-mido.patch │ │ ├── xrx200 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ └── firmware │ │ │ │ │ │ │ ├── 11-ath10k-caldata │ │ │ │ │ │ │ └── 12-ath9k-eeprom │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── 01_led_migration │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── config-5.4 │ │ │ ├── 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 │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── config-5.4 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ └── xway_legacy │ │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ └── uci-defaults │ │ │ │ │ └── 01_led_migration │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── config-5.4 │ │ │ ├── profiles │ │ │ └── 00-default.mk │ │ │ └── target.mk │ ├── layerscape │ │ ├── Makefile │ │ ├── README │ │ ├── armv7 │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ └── target.mk │ │ ├── armv8_64b │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ └── 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 │ │ │ ├── 303-arm64-dts-ls1012a-frdm-workaround-by-updating-qspi-f.patch │ │ │ ├── 304-arm64-dts-ls1012a-rdb-workaround-by-updating-qspi-fl.patch │ │ │ ├── 305-arm64-dts-ls1046a-rdb-Update-qspi-spi-rx-bus-width-t.patch │ │ │ ├── 400-LF-20-3-mtd-spi-nor-Use-1-bit-mode-of-spansion-s25fs.patch │ │ │ ├── 701-staging-add-fsl_ppfe-driver.patch │ │ │ └── 702-phy-Add-2.5G-SGMII-interface-mode.patch │ │ └── patches-5.15 │ │ │ ├── 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 │ │ │ ├── 303-arm64-dts-ls1012a-frdm-workaround-by-updating-qspi-f.patch │ │ │ ├── 304-arm64-dts-ls1012a-rdb-workaround-by-updating-qspi-fl.patch │ │ │ ├── 305-arm64-dts-ls1046a-rdb-Update-qspi-spi-rx-bus-width-t.patch │ │ │ ├── 400-LF-20-3-mtd-spi-nor-Use-1-bit-mode-of-spansion-s25fs.patch │ │ │ ├── 701-staging-add-fsl_ppfe-driver.patch │ │ │ └── 702-phy-Add-2.5G-SGMII-interface-mode.patch │ ├── loongarch64 │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 01_sysinfo_acpi │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-6.12 │ │ ├── config-6.6 │ │ ├── generic │ │ │ └── target.mk │ │ └── image │ │ │ ├── Makefile │ │ │ └── grub-efi.cfg │ ├── 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.4 │ │ ├── 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-elecom-wrc-x3200gst3.dts │ │ │ ├── mt7622-linksys-e8450-ubi.dts │ │ │ ├── mt7622-linksys-e8450.dts │ │ │ ├── mt7622-linksys-e8450.dtsi │ │ │ ├── mt7622-netgear-wax206.dts │ │ │ ├── mt7622-rfb1-ubi.dts │ │ │ ├── mt7622-ruijie-rg-ew3200gx-pro.dts │ │ │ ├── mt7622-totolink-a8000ru.dts │ │ │ ├── mt7622-ubnt-unifi-6-lr-v1-ubootmod.dts │ │ │ ├── mt7622-ubnt-unifi-6-lr-v1.dts │ │ │ ├── mt7622-ubnt-unifi-6-lr-v1.dtsi │ │ │ ├── mt7622-ubnt-unifi-6-lr-v2-ubootmod.dts │ │ │ ├── mt7622-ubnt-unifi-6-lr-v2.dts │ │ │ ├── mt7622-ubnt-unifi-6-lr-v2.dtsi │ │ │ ├── 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 │ │ │ ├── mt7981a-glinet-gl-x3000-xe3000-common.dtsi │ │ │ ├── mt7981a-glinet-gl-x3000.dts │ │ │ ├── mt7981a-glinet-gl-xe3000.dts │ │ │ ├── mt7981b-abt-asr3000.dts │ │ │ ├── mt7981b-cetron-ct3003-mod.dts │ │ │ ├── mt7981b-cetron-ct3003.dts │ │ │ ├── mt7981b-cmcc-a10-mod.dts │ │ │ ├── mt7981b-cmcc-a10.dts │ │ │ ├── mt7981b-cmcc-rax3000m-emmc.dts │ │ │ ├── mt7981b-cmcc-rax3000m-nand.dts │ │ │ ├── mt7981b-cmcc-rax3000m.dts │ │ │ ├── mt7981b-cmcc-xr30-emmc.dts │ │ │ ├── mt7981b-cmcc-xr30-nand.dts │ │ │ ├── mt7981b-cmcc-xr30.dtsi │ │ │ ├── mt7981b-cudy-tr3000-256mb-v1.dts │ │ │ ├── mt7981b-cudy-tr3000-mod.dts │ │ │ ├── mt7981b-cudy-tr3000-v1.dts │ │ │ ├── mt7981b-fzs-5gcpe-p3.dts │ │ │ ├── mt7981b-glinet-gl-mt2500.dts │ │ │ ├── mt7981b-glinet-gl-mt3000.dts │ │ │ ├── mt7981b-h3c-magic-nx30-pro.dts │ │ │ ├── mt7981b-huasifei-wh3000-emmc.dts │ │ │ ├── mt7981b-huasifei-wh3000-pro.dts │ │ │ ├── mt7981b-huasifei-ws3006.dts │ │ │ ├── mt7981b-huasifei-ws3009.dts │ │ │ ├── mt7981b-imou-lc-hx3001.dts │ │ │ ├── mt7981b-jcg-q30-pro.dts │ │ │ ├── mt7981b-konka-komi-a31.dts │ │ │ ├── mt7981b-nokia-ea0326gmp.dts │ │ │ ├── mt7981b-openembed-som7981.dts │ │ │ ├── mt7981b-qihoo-360t7.dts │ │ │ ├── mt7981b-tenbay-wr3000k.dts │ │ │ ├── mt7981b-xiaomi-ax3000t.dts │ │ │ ├── mt7981b-xiaomi-wr30u.dts │ │ │ ├── mt7981b-xiaomi_mi-router.dtsi │ │ │ ├── mt7986a-asus-tuf-ax4200.dts │ │ │ ├── mt7986a-asus-tuf-ax6000.dts │ │ │ ├── mt7986a-glinet-gl-mt6000.dts │ │ │ ├── mt7986a-hf-m7986r1-emmc.dts │ │ │ ├── mt7986a-hf-m7986r1-nand.dts │ │ │ ├── mt7986a-hf-m7986r1.dtsi │ │ │ ├── mt7986a-jdcloud-re-cs-05.dts │ │ │ ├── mt7986a-netcore-n60-pro.dts │ │ │ ├── mt7986a-netcore-n60.dts │ │ │ ├── mt7986a-ruijie-rg-x60-pro.dts │ │ │ ├── mt7986a-tplink-tl-xdr-common.dtsi │ │ │ ├── mt7986a-tplink-tl-xdr4288.dts │ │ │ ├── mt7986a-tplink-tl-xdr6086.dts │ │ │ ├── mt7986a-tplink-tl-xdr6088.dts │ │ │ ├── mt7986a-tplink-tl-xtr8488.dts │ │ │ └── mt7986a-xiaomi-redmi-router-ax6000.dts │ │ ├── files-5.15 │ │ │ ├── arch │ │ │ │ └── arm64 │ │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ └── mediatek │ │ │ │ │ ├── mt7981.dtsi │ │ │ │ │ ├── mt7986a-bananapi-bpi-r3-emmc.dtso │ │ │ │ │ ├── mt7986a-bananapi-bpi-r3-nand.dtso │ │ │ │ │ ├── mt7986a-bananapi-bpi-r3-nor.dtso │ │ │ │ │ ├── mt7986a-bananapi-bpi-r3-sd.dtso │ │ │ │ │ ├── mt7986a-bananapi-bpi-r3.dts │ │ │ │ │ ├── mt7986a-rfb-spim-nand.dts │ │ │ │ │ ├── mt7986a-rfb-spim-nor.dts │ │ │ │ │ ├── mt7986a-rfb.dtsi │ │ │ │ │ ├── mt7986a.dtsi │ │ │ │ │ ├── mt7986b-rfb.dts │ │ │ │ │ ├── mt7986b.dtsi │ │ │ │ │ ├── mt7988a-rfb-emmc.dtso │ │ │ │ │ ├── mt7988a-rfb-eth1-aqr.dtso │ │ │ │ │ ├── mt7988a-rfb-eth1-i2p5g-phy.dtso │ │ │ │ │ ├── mt7988a-rfb-eth1-mxl.dtso │ │ │ │ │ ├── mt7988a-rfb-eth1-sfp.dtso │ │ │ │ │ ├── mt7988a-rfb-eth2-aqr.dtso │ │ │ │ │ ├── mt7988a-rfb-eth2-mxl.dtso │ │ │ │ │ ├── mt7988a-rfb-eth2-sfp.dtso │ │ │ │ │ ├── mt7988a-rfb-sd.dtso │ │ │ │ │ ├── mt7988a-rfb-snfi-nand.dtso │ │ │ │ │ ├── mt7988a-rfb-spim-nand.dtso │ │ │ │ │ ├── mt7988a-rfb-spim-nor.dtso │ │ │ │ │ ├── mt7988a-rfb.dts │ │ │ │ │ └── mt7988a.dtsi │ │ │ ├── drivers │ │ │ │ ├── clk │ │ │ │ │ └── mediatek │ │ │ │ │ │ ├── clk-mt7981-apmixed.c │ │ │ │ │ │ ├── clk-mt7981-eth.c │ │ │ │ │ │ ├── clk-mt7981-infracfg.c │ │ │ │ │ │ ├── clk-mt7981-topckgen.c │ │ │ │ │ │ ├── clk-mt7986-apmixed.c │ │ │ │ │ │ ├── clk-mt7986-eth.c │ │ │ │ │ │ ├── clk-mt7986-infracfg.c │ │ │ │ │ │ ├── clk-mt7986-topckgen.c │ │ │ │ │ │ ├── clk-mt7988-apmixed.c │ │ │ │ │ │ ├── clk-mt7988-eth.c │ │ │ │ │ │ ├── clk-mt7988-infracfg.c │ │ │ │ │ │ └── clk-mt7988-topckgen.c │ │ │ │ ├── net │ │ │ │ │ └── phy │ │ │ │ │ │ └── mediatek-2p5ge.c │ │ │ │ └── pinctrl │ │ │ │ │ └── mediatek │ │ │ │ │ ├── pinctrl-mt7981.c │ │ │ │ │ ├── pinctrl-mt7986.c │ │ │ │ │ └── pinctrl-mt7988.c │ │ │ └── include │ │ │ │ └── dt-bindings │ │ │ │ ├── clock │ │ │ │ ├── mediatek,mt7981-clk.h │ │ │ │ ├── mediatek,mt7988-clk.h │ │ │ │ └── mt7986-clk.h │ │ │ │ └── reset │ │ │ │ └── mt7986-resets.h │ │ ├── files-6.1 │ │ │ ├── arch │ │ │ │ └── arm64 │ │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ └── mediatek │ │ │ │ │ ├── mt7981-rfb-mxl-2p5g-phy-eth1.dtso │ │ │ │ │ ├── mt7981-rfb-mxl-2p5g-phy-swp5.dtso │ │ │ │ │ ├── mt7981-rfb-spim-nand.dtso │ │ │ │ │ ├── mt7981-rfb.dts │ │ │ │ │ ├── mt7981.dtsi │ │ │ │ │ ├── mt7986a-bananapi-bpi-r3-mini.dts │ │ │ │ │ ├── mt7986a-bananapi-bpi-r3mini-emmc.dts │ │ │ │ │ ├── mt7986a-bananapi-bpi-r3mini-nand.dts │ │ │ │ │ ├── mt7986a-rfb-spim-nand.dts │ │ │ │ │ ├── mt7986a-rfb-spim-nor.dts │ │ │ │ │ ├── mt7986a-rfb.dtsi │ │ │ │ │ ├── mt7988a-bananapi-bpi-r4-emmc.dtso │ │ │ │ │ ├── mt7988a-bananapi-bpi-r4-poe.dts │ │ │ │ │ ├── mt7988a-bananapi-bpi-r4-rtc.dtso │ │ │ │ │ ├── mt7988a-bananapi-bpi-r4-sd.dtso │ │ │ │ │ ├── mt7988a-bananapi-bpi-r4.dts │ │ │ │ │ ├── mt7988a-rfb-emmc.dtso │ │ │ │ │ ├── mt7988a-rfb-eth1-aqr.dtso │ │ │ │ │ ├── mt7988a-rfb-eth1-i2p5g-phy.dtso │ │ │ │ │ ├── mt7988a-rfb-eth1-mxl.dtso │ │ │ │ │ ├── mt7988a-rfb-eth1-sfp.dtso │ │ │ │ │ ├── mt7988a-rfb-eth2-aqr.dtso │ │ │ │ │ ├── mt7988a-rfb-eth2-mxl.dtso │ │ │ │ │ ├── mt7988a-rfb-eth2-sfp.dtso │ │ │ │ │ ├── mt7988a-rfb-sd.dtso │ │ │ │ │ ├── mt7988a-rfb-snfi-nand.dtso │ │ │ │ │ ├── mt7988a-rfb-spim-nand.dtso │ │ │ │ │ ├── mt7988a-rfb-spim-nor.dtso │ │ │ │ │ ├── mt7988a-rfb.dts │ │ │ │ │ └── mt7988a.dtsi │ │ │ └── drivers │ │ │ │ ├── net │ │ │ │ └── phy │ │ │ │ │ └── mediatek-2p5ge.c │ │ │ │ └── pinctrl │ │ │ │ └── mediatek │ │ │ │ └── pinctrl-mt7988.c │ │ ├── files-6.12 │ │ │ └── arch │ │ │ │ └── arm64 │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ └── mediatek │ │ │ │ ├── mt7981-rfb-mxl-2p5g-phy-eth1.dtso │ │ │ │ ├── mt7981-rfb-mxl-2p5g-phy-swp5.dtso │ │ │ │ ├── mt7981-rfb-spim-nand.dtso │ │ │ │ ├── mt7981-rfb.dts │ │ │ │ ├── mt7981.dtsi │ │ │ │ ├── mt7986a-bananapi-bpi-r3-mini.dts │ │ │ │ ├── mt7986a-bananapi-bpi-r3mini-emmc.dts │ │ │ │ ├── mt7986a-bananapi-bpi-r3mini-nand.dts │ │ │ │ ├── mt7986a-rfb-spim-nand.dts │ │ │ │ ├── mt7986a-rfb-spim-nor.dts │ │ │ │ └── mt7986a-rfb.dtsi │ │ ├── files-6.6 │ │ │ ├── arch │ │ │ │ └── arm64 │ │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ └── mediatek │ │ │ │ │ ├── mt7981-rfb-mxl-2p5g-phy-eth1.dtso │ │ │ │ │ ├── mt7981-rfb-mxl-2p5g-phy-swp5.dtso │ │ │ │ │ ├── mt7981-rfb-spim-nand.dtso │ │ │ │ │ ├── mt7981-rfb.dts │ │ │ │ │ ├── mt7981.dtsi │ │ │ │ │ ├── mt7986a-bananapi-bpi-r3-mini.dts │ │ │ │ │ ├── mt7986a-bananapi-bpi-r3mini-emmc.dts │ │ │ │ │ ├── mt7986a-bananapi-bpi-r3mini-nand.dts │ │ │ │ │ ├── mt7986a-rfb-spim-nand.dts │ │ │ │ │ ├── mt7986a-rfb-spim-nor.dts │ │ │ │ │ ├── mt7986a-rfb.dtsi │ │ │ │ │ ├── mt7988a-bananapi-bpi-r4-emmc.dtso │ │ │ │ │ ├── mt7988a-bananapi-bpi-r4-poe.dts │ │ │ │ │ ├── mt7988a-bananapi-bpi-r4-rtc.dtso │ │ │ │ │ ├── mt7988a-bananapi-bpi-r4-sd.dtso │ │ │ │ │ ├── mt7988a-bananapi-bpi-r4.dts │ │ │ │ │ ├── mt7988a-bananapi-bpi-r4.dtsi │ │ │ │ │ ├── mt7988a-rfb-emmc.dtso │ │ │ │ │ ├── mt7988a-rfb-eth1-aqr.dtso │ │ │ │ │ ├── mt7988a-rfb-eth1-i2p5g-phy.dtso │ │ │ │ │ ├── mt7988a-rfb-eth1-mxl.dtso │ │ │ │ │ ├── mt7988a-rfb-eth1-sfp.dtso │ │ │ │ │ ├── mt7988a-rfb-eth2-aqr.dtso │ │ │ │ │ ├── mt7988a-rfb-eth2-mxl.dtso │ │ │ │ │ ├── mt7988a-rfb-eth2-sfp.dtso │ │ │ │ │ ├── mt7988a-rfb-sd.dtso │ │ │ │ │ ├── mt7988a-rfb-snfi-nand.dtso │ │ │ │ │ ├── mt7988a-rfb-spim-nand-factory.dtso │ │ │ │ │ ├── mt7988a-rfb-spim-nand.dtso │ │ │ │ │ ├── mt7988a-rfb-spim-nor.dtso │ │ │ │ │ ├── mt7988a-rfb.dts │ │ │ │ │ └── mt7988a.dtsi │ │ │ └── drivers │ │ │ │ └── pinctrl │ │ │ │ └── mediatek │ │ │ │ └── pinctrl-mt7988.c │ │ ├── files │ │ │ ├── block │ │ │ │ └── partitions │ │ │ │ │ └── fit.c │ │ │ ├── drivers │ │ │ │ ├── leds │ │ │ │ │ └── leds-smartrg-system.c │ │ │ │ ├── mfd │ │ │ │ │ └── airoha-an8855.c │ │ │ │ ├── net │ │ │ │ │ ├── dsa │ │ │ │ │ │ ├── an8855.c │ │ │ │ │ │ └── an8855.h │ │ │ │ │ ├── mdio │ │ │ │ │ │ └── mdio-an8855.c │ │ │ │ │ └── phy │ │ │ │ │ │ ├── air_an8855.c │ │ │ │ │ │ ├── en8801sc.c │ │ │ │ │ │ ├── en8801sc.h │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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_mii_mgr.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 │ │ │ │ └── nvmem │ │ │ │ │ └── an8855-efuse.c │ │ │ └── include │ │ │ │ └── linux │ │ │ │ └── mfd │ │ │ │ └── airoha-an8855-mfd.h │ │ ├── filogic │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ ├── 03_gpio_switches │ │ │ │ │ │ └── 05_compat-version │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ ├── firmware │ │ │ │ │ │ │ └── 11-mt76-caldata │ │ │ │ │ │ └── ieee80211 │ │ │ │ │ │ │ └── 11_fix_wifi_mac │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── 05_fix-compat-version │ │ │ │ └── lib │ │ │ │ │ ├── preinit │ │ │ │ │ ├── 10_fix_eth_mac.sh │ │ │ │ │ └── 81_fix_eeprom │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-5.15 │ │ │ ├── config-6.1 │ │ │ ├── config-6.12 │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── filogic.mk │ │ │ ├── gen_scatterfile.sh │ │ │ ├── mt7622.mk │ │ │ ├── mt7623.mk │ │ │ └── mt7629.mk │ │ ├── modules.mk │ │ ├── mt7622 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ └── 05_compat-version │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ └── ieee80211 │ │ │ │ │ │ │ └── 11_fix_wifi_mac │ │ │ │ │ ├── init.d │ │ │ │ │ │ └── bootcount │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ ├── 05_fix-compat-version │ │ │ │ │ │ └── 09_fix_crc │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ ├── buffalo.sh │ │ │ │ │ └── platform.sh │ │ │ ├── config-5.15 │ │ │ ├── config-6.1 │ │ │ ├── config-6.12 │ │ │ ├── config-6.6 │ │ │ └── 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 │ │ │ ├── config-6.1 │ │ │ ├── config-6.12 │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ ├── mt7629 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-5.15 │ │ │ ├── config-6.1 │ │ │ ├── config-6.12 │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ ├── patches-5.15 │ │ │ ├── 041-block-fit-partition-parser.patch │ │ │ ├── 100-dts-update-mt7622-rfb1.patch │ │ │ ├── 101-dts-update-mt7629-rfb.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-v5.19-mtd-nand-make-mtk_ecc.c-a-separated-module.patch │ │ │ ├── 120-12-v5.19-spi-add-driver-for-MTK-SPI-NAND-Flash-Interface.patch │ │ │ ├── 120-13-v5.19-mtd-nand-mtk-ecc-also-parse-nand-ecc-engine-if-avail.patch │ │ │ ├── 120-14-v5.19-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-v5.19-arm64-dts-mt7622-specify-the-L2-cache-topology.patch │ │ │ ├── 192-v5.19-arm64-dts-mt7622-specify-the-number-of-DMA-requests.patch │ │ │ ├── 193-dts-mt7623-thermal_zone_fix.patch │ │ │ ├── 194-dts-mt7968a-add-ramoops.patch │ │ │ ├── 195-dts-mt7986a-bpi-r3-leds-port-names-and-wifi-eeprom.patch │ │ │ ├── 200-phy-phy-mtk-tphy-Add-hifsys-support.patch │ │ │ ├── 210-v6.1-pinctrl-mediatek-add-support-for-MT7986-SoC.patch │ │ │ ├── 211-v5.16-clk-mediatek-Add-API-for-clock-resource-recycle.patch │ │ │ ├── 212-v5.17-clk-mediatek-add-mt7986-clock-support.patch │ │ │ ├── 213-spi-mediatek-add-mt7986-spi-support.patch │ │ │ ├── 214-v6.3-clk-mediatek-add-mt7981-clock-support.patch │ │ │ ├── 215-mtdblock-revert-warn-if-opened-on-NAND.patch │ │ │ ├── 215-v6.3-pinctrl-mediatek-add-support-for-MT7981-SoC.patch │ │ │ ├── 240-pinctrl-mediatek-add-support-for-MT7988-SoC.patch │ │ │ ├── 241-clk-mediatek-Add-pcw-chg-shift-control.patch │ │ │ ├── 242-clk-mediatek-add-mt7988-clock-support.patch │ │ │ ├── 320-mmc-mediatek-add-support-for-MT7986-SoC.patch │ │ │ ├── 330-snand-mtk-bmt-support.patch │ │ │ ├── 331-mt7622-rfb1-enable-bmt.patch │ │ │ ├── 340-mtd-spinand-Add-support-for-the-Fidelix-FM35X1GA.patch │ │ │ ├── 350-01-cpufreq-mediatek-Cleanup-variables-and-error-handlin.patch │ │ │ ├── 350-02-cpufreq-mediatek-Remove-unused-headers.patch │ │ │ ├── 350-03-cpufreq-mediatek-Enable-clocks-and-regulators.patch │ │ │ ├── 350-04-cpufreq-mediatek-Use-device-print-to-show-logs.patch │ │ │ ├── 350-05-cpufreq-mediatek-Replace-old_-with-pre_.patch │ │ │ ├── 350-06-cpufreq-mediatek-Record-previous-target-vproc-value.patch │ │ │ ├── 350-07-cpufreq-mediatek-Make-sram-regulator-optional.patch │ │ │ ├── 350-08-cpufreq-mediatek-Fix-NULL-pointer-dereference-in-med.patch │ │ │ ├── 350-09-cpufreq-mediatek-Move-voltage-limits-to-platform-dat.patch │ │ │ ├── 350-10-cpufreq-mediatek-Refine-mtk_cpufreq_voltage_tracking.patch │ │ │ ├── 350-11-cpufreq-mediatek-Add-opp-notification-support.patch │ │ │ ├── 350-12-cpufreq-mediatek-Fix-potential-deadlock-problem-in-m.patch │ │ │ ├── 350-13-cpufreq-mediatek-Link-CCI-device-to-CPU.patch │ │ │ ├── 350-14-cpufreq-mediatek-Add-support-for-MT8186.patch │ │ │ ├── 350-15-cpufreq-mediatek-Handle-sram-regulator-probe-deferra.patch │ │ │ ├── 350-16-cpufreq-mediatek-fix-error-return-code-in-mtk_cpu_dv.patch │ │ │ ├── 350-17-cpufreq-mediatek-fix-passing-zero-to-PTR_ERR.patch │ │ │ ├── 350-18-cpufreq-mediatek-fix-KP-caused-by-handler-usage-afte.patch │ │ │ ├── 350-19-cpufreq-mediatek-raise-proc-sram-max-voltage-for-MT8.patch │ │ │ ├── 350-20-cpufreq-mediatek-Raise-proc-and-sram-max-voltage-for.patch │ │ │ ├── 350-21-cpufreq-mediatek-Add-support-for-MT7988.patch │ │ │ ├── 351-cpufreq-mediatek-correct-voltages-for-MT7622-and-MT7.patch │ │ │ ├── 400-crypto-add-eip97-inside-secure-support.patch │ │ │ ├── 401-crypto-fix-eip97-cache-incoherent.patch │ │ │ ├── 405-mt7986-trng-add-rng-support.patch │ │ │ ├── 410-bt-mtk-serial-fix.patch │ │ │ ├── 420-mtd-spi-nor-add-support-for-Winbond-W25Q512JV.patch │ │ │ ├── 431-drivers-spi-mt65xx-Move-chip_config-to-driver-s-priv.patch │ │ │ ├── 432-drivers-spi-Add-support-for-dynamic-calibration.patch │ │ │ ├── 433-drivers-spi-mem-Add-spi-calibration-hook.patch │ │ │ ├── 434-drivers-spi-mt65xx-Add-controller-s-calibration-para.patch │ │ │ ├── 435-drivers-mtd-spinand-Add-calibration-support-for-spin.patch │ │ │ ├── 436-drivers-mtd-spi-nor-Add-calibration-support-for-spi-.patch │ │ │ ├── 500-gsw-rtl8367s-mt7622-support.patch │ │ │ ├── 600-v5.16-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-v5.16-ARM-dts-mediatek-Update-mt7629-PCIe-node.patch │ │ │ ├── 610-pcie-mediatek-fix-clearing-interrupt-status.patch │ │ │ ├── 611-pcie-mediatek-gen3-PERST-for-100ms.patch │ │ │ ├── 703-v5.17-net-ethernet-mtk_eth_soc-implement-Clause-45-MDIO-ac.patch │ │ │ ├── 710-pci-pcie-mediatek-add-support-for-coherent-DMA.patch │ │ │ ├── 721-dts-mt7622-mediatek-fix-300mhz.patch │ │ │ ├── 722-remove-300Hz-to-prevent-freeze.patch │ │ │ ├── 730-v6.5-net-phy-add-driver-for-MediaTek-SoC-built-in-GE-PHYs.patch │ │ │ ├── 731-net-phy-mediatek-ge-soc-initialize-MT7988-PHY-LEDs-d.patch │ │ │ ├── 732-net-phy-mxl-gpy-don-t-use-SGMII-AN-if-using-phylink.patch │ │ │ ├── 733-net-phy-add-driver-for-MediaTek-2.5G-PHY.patch │ │ │ ├── 800-v5.17-nvmem-mtk-efuse-support-minimum-one-byte-access-stri.patch │ │ │ ├── 801-phy-phy-mtk-tphy-Add-PCIe-2-lane-efuse-support.patch │ │ │ ├── 802-phy-phy-mtk-tphy-add-auto-load-valid-check-mechanism.patch │ │ │ ├── 804-pwm-add-mt7986-support.patch │ │ │ ├── 805-v6.2-thermal-drivers-mtk-use-function-pointer-for-raw_to_.patch │ │ │ ├── 806-v6.2-thermal-mediatek-add-support-for-MT7986-and-MT7981.patch │ │ │ ├── 811-pwm-mediatek-Add-support-for-MT7981.patch │ │ │ ├── 820-v5.16-dt-bindings-pinctrl-mt8195-add-rsel-define.patch │ │ │ ├── 821-v5.16-pinctrl-mediatek-moore-check-if-pin_desc-is-valid-be.patch │ │ │ ├── 822-v5.16-pinctrl-mediatek-support-rsel-feature.patch │ │ │ ├── 823-v5.17-pinctrl-mediatek-add-a-check-for-error-in-mtk_pincon.patch │ │ │ ├── 824-v6.1-pinctrl-mediatek-Fix-EINT-pins-input-debounce-time-c.patch │ │ │ ├── 825-v6.1-pinctrl-mediatek-Export-debounce-time-tables.patch │ │ │ ├── 826-v6.2-pinctrl-mediatek-extend-pinctrl-moore-to-support-new.patch │ │ │ ├── 830-v5.18-regulator-Add-bindings-for-Richtek-RT5190A-PMIC.patch │ │ │ ├── 831-v5.18-regulator-rt5190a-Add-support-for-Richtek-RT5190A-PM.patch │ │ │ ├── 840-v5.16-i2c-mediatek-Reset-the-handshake-signal-between-i2c-.patch │ │ │ ├── 841-v5.16-i2c-mediatek-Dump-i2c-dma-register-when-a-timeout-oc.patch │ │ │ ├── 842-v5.18-i2c-mediatek-Add-i2c-compatible-for-Mediatek-MT8186.patch │ │ │ ├── 843-v5.18-i2c-mediatek-modify-bus-speed-calculation-formula.patch │ │ │ ├── 844-v5.18-i2c-mediatek-remove-redundant-null-check.patch │ │ │ ├── 845-v5.18-i2c-mt65xx-Simplify-with-clk-bulk.patch │ │ │ ├── 846-v5.18-i2c-mediatek-Add-i2c-compatible-for-Mediatek-MT8168.patch │ │ │ ├── 847-v5.19-i2c-mediatek-Optimize-master_xfer-and-avoid-circular.patch │ │ │ ├── 848-v5.19-i2c-mediatek-Fix-an-error-handling-path-in-mtk_i2c_p.patch │ │ │ ├── 849-v6.0-i2c-mediatek-add-i2c-compatible-for-MT8188.patch │ │ │ ├── 850-v6.0-i2c-move-drivers-from-strlcpy-to-strscpy.patch │ │ │ ├── 851-v6.2-i2c-mediatek-add-mt7986-support.patch │ │ │ ├── 852-v6.3-i2c-mt65xx-Use-devm_platform_get_and_ioremap_resourc.patch │ │ │ ├── 853-v6.3-i2c-mt65xx-drop-of_match_ptr-for-ID-table.patch │ │ │ ├── 854-v6.4-i2c-mediatek-add-support-for-MT7981-SoC.patch │ │ │ ├── 900-dts-mt7622-bpi-r64-aliases-for-dtoverlay.patch │ │ │ ├── 901-arm-add-cmdline-override.patch │ │ │ ├── 910-dts-mt7622-bpi-r64-wifi-eeprom.patch │ │ │ ├── 920-v5.16-watchdog-mtk-add-disable_wdt_extrst-support.patch │ │ │ ├── 921-v5.19-watchdog-mtk_wdt-mt7986-Add-toprgu-reset-controller.patch │ │ │ ├── 922-v6.1-PCI-mediatek-gen3-change-driver-name-to-mtk-pcie-gen.patch │ │ │ ├── 930-spi-mt65xx-enable-sel-clk.patch │ │ │ ├── 940-net-ethernet-mtk_wed-rename-mtk_wed_get_memory_regio.patch │ │ │ ├── 941-arm64-dts-mt7986-move-cpuboot-in-a-dedicated-node.patch │ │ │ ├── 942-net-ethernet-mtk_wed-move-cpuboot-in-a-dedicated-dts.patch │ │ │ ├── 943-net-ethernet-mtk_wed-move-ilm-a-dedicated-dts-node.patch │ │ │ ├── 944-net-ethernet-mtk_wed-move-dlm-a-dedicated-dts-node.patch │ │ │ ├── 945-arm64-dts-mt7986-move-ilm-in-a-dedicated-node.patch │ │ │ └── 946-arm64-dts-mt7986-move-dlm-in-a-dedicated-node.patch │ │ ├── patches-6.1 │ │ │ ├── 000-v6.2-kbuild-Allow-DTB-overlays-to-built-from-.dtso-named-.patch │ │ │ ├── 001-v6.2-arm64-dts-mediatek-mt7986-add-support-for-RX-Wireles.patch │ │ │ ├── 002-v6.2-arm64-dts-mt7986-harmonize-device-node-order.patch │ │ │ ├── 003-v6.2-arm64-dts-mt7986-add-crypto-related-device-nodes.patch │ │ │ ├── 004-v6.2-arm64-dts-mt7986-add-i2c-node.patch │ │ │ ├── 005-v6.2-arm64-dts-mediatek-mt7986-Add-SoC-compatible.patch │ │ │ ├── 006-v6.2-arm64-dts-mt7986-add-spi-related-device-nodes.patch │ │ │ ├── 007-v6.3-arm64-dts-mt7986-add-usb-related-device-nodes.patch │ │ │ ├── 008-v6.3-arm64-dts-mt7986-add-mmc-related-device-nodes.patch │ │ │ ├── 009-v6.3-arm64-dts-mt7986-add-pcie-related-device-nodes.patch │ │ │ ├── 010-v6.3-arm64-dts-mt7986-add-Bananapi-R3.patch │ │ │ ├── 011-v6.5-arm64-mediatek-Propagate-chassis-type-where-possible.patch │ │ │ ├── 012-v6.5-arm64-dts-mt7986-add-PWM.patch │ │ │ ├── 013-v6.5-arm64-dts-mt7986-add-PWM-to-BPI-R3.patch │ │ │ ├── 014-v6.5-arm64-dts-mt7986-set-Wifi-Leds-low-active-for-BPI-R3.patch │ │ │ ├── 015-v6.5-arm64-dts-mt7986-use-size-of-reserved-partition-for-.patch │ │ │ ├── 016-v6.5-arm64-dts-mt7986-add-thermal-and-efuse.patch │ │ │ ├── 017-v6.5-arm64-dts-mt7986-add-thermal-zones.patch │ │ │ ├── 018-v6.5-arm64-dts-mt7986-add-pwm-fan-and-cooling-maps-to-BPI.patch │ │ │ ├── 019-v6.5-arm64-dts-mt7986-increase-bl2-partition-on-NAND-of-B.patch │ │ │ ├── 020-v6.7-arm64-dts-mt7986-define-3W-max-power-to-both-SFP-on-.patch │ │ │ ├── 021-v6.7-arm64-dts-mt7986-change-cooling-trips.patch │ │ │ ├── 022-v6.7-arm64-dts-mt7986-change-thermal-trips-on-BPI-R3.patch │ │ │ ├── 041-block-fit-partition-parser.patch │ │ │ ├── 100-dts-update-mt7622-rfb1.patch │ │ │ ├── 101-dts-update-mt7629-rfb.patch │ │ │ ├── 103-mt7623-enable-arch-timer.patch │ │ │ ├── 104-mt7622-add-snor-irq.patch │ │ │ ├── 105-dts-mt7622-enable-pstore.patch │ │ │ ├── 106-dts-mt7622-disable_btif.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-v6.5-arm64-dts-mt7622-declare-SPI-NAND-present-on-BPI-R64.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 │ │ │ ├── 164-dts-mt7623-bpi-r2-rootdisk-for-fitblk.patch │ │ │ ├── 180-v6.5-arm64-dts-mt7622-handle-interrupts-from-MT7531-switc.patch │ │ │ ├── 181-mt7622_fix_dts_mt7531_reg.patch │ │ │ ├── 190-arm64-dts-mediatek-mt7622-fix-GICv2-range.patch │ │ │ ├── 193-dts-mt7623-thermal_zone_fix.patch │ │ │ ├── 194-dts-mt7968a-add-ramoops.patch │ │ │ ├── 195-dts-mt7986a-bpi-r3-leds-port-names-and-wifi-eeprom.patch │ │ │ ├── 196-dts-mt7986a-bpi-r3-use-all-ubi-nand-layout.patch │ │ │ ├── 197-dts-mt7986a-bpi-r3-mini-wifi-eeprom.patch │ │ │ ├── 200-phy-phy-mtk-tphy-Add-hifsys-support.patch │ │ │ ├── 210-v6.2-pinctrl-mt7986-allow-configuring-uart-rx-tx-and-rts-.patch │ │ │ ├── 211-v6.2-pinctrl-mediatek-add-pull_type-attribute-for-mediate.patch │ │ │ ├── 215-v6.3-pinctrl-add-mt7981-pinctrl-driver.patch │ │ │ ├── 216-v6.3-pinctrl-mediatek-add-missing-options-to-PINCTRL_MT79.patch │ │ │ ├── 217-v6.5-pinctrl-mediatek-fix-pull_type-data-for-MT7981.patch │ │ │ ├── 218-pinctrl-mediatek-mt7981-add-additional-uart-groups.patch │ │ │ ├── 219-v6.6-pinctrl-mediatek-assign-functions-to-configure-pin-b.patch │ │ │ ├── 221-v6.3-clk-mediatek-cpumux-Propagate-struct-device-where-po.patch │ │ │ ├── 225-v6.3-clk-mediatek-Switch-to-mtk_clk_simple_probe-where-po.patch │ │ │ ├── 227-v6.3-clk-mediatek-clk-mt7986-topckgen-Properly-keep-some-.patch │ │ │ ├── 228-v6.3-clk-mediatek-clk-mt7986-topckgen-Migrate-to-mtk_clk_.patch │ │ │ ├── 229-v6.4-clk-mediatek-mt7986-apmixed-Use-PLL_AO-flag-to-set-c.patch │ │ │ ├── 230-v6.4-dt-bindings-clock-mediatek-add-mt7981-clock-IDs.patch │ │ │ ├── 231-v6.4-clk-mediatek-add-MT7981-clock-support.patch │ │ │ ├── 232-clk-mediatek-mt7981-topckgen-flag-SGM_REG_SEL-as-cri.patch │ │ │ ├── 240-pinctrl-mediatek-add-support-for-MT7988-SoC.patch │ │ │ ├── 241-v6.3-dt-bindings-clock-Add-compatibles-for-MT7981.patch │ │ │ ├── 242-v6.4-dt-bindings-arm-mediatek-sgmiisys-Convert-to-DT-sche.patch │ │ │ ├── 243-v6.4-dt-bindings-net-pcs-mediatek-sgmiisys-add-MT7981-SoC.patch │ │ │ ├── 244-v6.8-dt-bindings-arm-mediatek-move-ethsys-controller-conv.patch │ │ │ ├── 245-v6.8-dt-bindings-reset-mediatek-add-MT7988-ethwarp-reset-.patch │ │ │ ├── 246-v6.8-dt-bindings-clock-mediatek-add-MT7988-clock-IDs.patch │ │ │ ├── 247-v6.8-dt-bindings-clock-mediatek-add-clock-controllers-of-.patch │ │ │ ├── 248-v6.8-clk-mediatek-add-pcw_chg_bit-control-for-PLLs-of-MT7.patch │ │ │ ├── 249-v6.8-clk-mediatek-add-drivers-for-MT7988-SoC.patch │ │ │ ├── 250-clk-mediatek-add-infracfg-reset-controller-for-mt798.patch │ │ │ ├── 250-dt-bindings-reset-mediatek-add-MT7988-reset-IDs.patch │ │ │ ├── 251-v6.8-watchdog-mediatek-mt7988-add-wdt-support.patch │ │ │ ├── 252-clk-mediatek-mt7988-infracfg-fix-clocks-for-2nd-PCIe.patch │ │ │ ├── 253-pinctrl-mediatek-mt7981-add-additional-uart-group.patch │ │ │ ├── 254-pinctrl-mediatek-mt7981-add-additional-emmc-group.patch │ │ │ ├── 320-v6.2-mmc-mediatek-add-support-for-MT7986-SoC.patch │ │ │ ├── 321-v6.2-mmc-mtk-sd-add-Inline-Crypto-Engine-clock-control.patch │ │ │ ├── 322-v6.2-mmc-mtk-sd-fix-two-spelling-mistakes-in-comment.patch │ │ │ ├── 330-snand-mtk-bmt-support.patch │ │ │ ├── 331-mt7622-rfb1-enable-bmt.patch │ │ │ ├── 340-mtd-spinand-Add-support-for-the-Fidelix-FM35X1GA.patch │ │ │ ├── 341-mtd-spinand-Add-support-fudanmicro-fm25s01b.patch │ │ │ ├── 350-21-cpufreq-mediatek-Add-support-for-MT7988.patch │ │ │ ├── 351-pinctrl-add-mt7988-pd-pulltype-support.patch │ │ │ ├── 400-crypto-add-eip97-inside-secure-support.patch │ │ │ ├── 401-crypto-fix-eip97-cache-incoherent.patch │ │ │ ├── 405-v6.2-mt7986-trng-add-rng-support.patch │ │ │ ├── 410-bt-mtk-serial-fix.patch │ │ │ ├── 431-drivers-spi-mt65xx-Move-chip_config-to-driver-s-priv.patch │ │ │ ├── 432-drivers-spi-Add-support-for-dynamic-calibration.patch │ │ │ ├── 433-drivers-spi-mem-Add-spi-calibration-hook.patch │ │ │ ├── 434-drivers-spi-mt65xx-Add-controller-s-calibration-para.patch │ │ │ ├── 435-drivers-mtd-spinand-Add-calibration-support-for-spin.patch │ │ │ ├── 436-drivers-mtd-spi-nor-Add-calibration-support-for-spi-.patch │ │ │ ├── 500-gsw-rtl8367s-mt7622-support.patch │ │ │ ├── 601-PCI-mediatek-Assert-PERST-for-100ms-for-power-and-cl.patch │ │ │ ├── 602-arm64-dts-mediatek-add-mt7622-pcie-slot-node.patch │ │ │ ├── 610-pcie-mediatek-fix-clearing-interrupt-status.patch │ │ │ ├── 611-pcie-mediatek-gen3-PERST-for-100ms.patch │ │ │ ├── 615-phy-phy-mtk-xsphy-support-type-switch-by-pericfg.patch │ │ │ ├── 710-pci-pcie-mediatek-add-support-for-coherent-DMA.patch │ │ │ ├── 721-dts-mt7622-mediatek-fix-300mhz.patch │ │ │ ├── 722-remove-300Hz-to-prevent-freeze.patch │ │ │ ├── 730-v6.5-net-phy-add-driver-for-MediaTek-SoC-built-in-GE-PHYs.patch │ │ │ ├── 731-v6.5-net-phy-mediatek-ge-soc-support-PHY-LEDs.patch │ │ │ ├── 732-net-phy-mxl-gpy-don-t-use-SGMII-AN-if-using-phylink.patch │ │ │ ├── 733-net-phy-add-driver-for-MediaTek-2.5G-PHY.patch │ │ │ ├── 734-v6.8-net-phy-mediatek-ge-soc-sync-driver-with-MediaTek-SD.patch │ │ │ ├── 735-net-phy-add-Airoha-EN8801SC-PHY.patch │ │ │ ├── 804-v6.2-pwm-add-mt7986-support.patch │ │ │ ├── 805-v6.5-pwm-mediatek-Add-support-for-MT7981.patch │ │ │ ├── 806-v6.9-pwm-mediatek-add-support-for-MT7988.patch │ │ │ ├── 826-v6.2-pinctrl-mediatek-extend-pinctrl-moore-to-support-new.patch │ │ │ ├── 830-v6.3-01-thermal-drivers-mtk_thermal-Fix-kernel-doc-function-.patch │ │ │ ├── 830-v6.3-02-thermal-drivers-mtk_thermal-Use-devm_platform_get_an.patch │ │ │ ├── 830-v6.3-03-thermal-drivers-mtk-Use-function-pointer-for-raw_to_.patch │ │ │ ├── 830-v6.3-04-thermal-drivers-mtk-Add-support-for-MT7986-and-MT798.patch │ │ │ ├── 830-v6.3-05-thermal-drivers-mediatek-Relocate-driver-to-mediatek.patch │ │ │ ├── 830-v6.3-06-thermal-drivers-mediatek-Add-the-Low-Voltage-Thermal.patch │ │ │ ├── 830-v6.4-07-dt-bindings-thermal-mediatek-Add-LVTS-thermal-contro.patch │ │ │ ├── 830-v6.4-08-dt-bindings-thermal-mediatek-Add-AP-domain-to-LVTS-t.patch │ │ │ ├── 830-v6.4-09-thermal-core-Add-a-thermal-zone-devdata-accessor.patch │ │ │ ├── 830-v6.4-10-thermal-core-Add-thermal_zone_device-structure-type-.patch │ │ │ ├── 830-v6.4-11-thermal-core-Use-the-thermal-zone-devdata-accessor-i.patch │ │ │ ├── 830-v6.4-12-thermal-hwmon-Use-the-right-device-for-devm_thermal_.patch │ │ │ ├── 830-v6.4-13-thermal-Don-t-use-device-internal-thermal-zone-struc.patch │ │ │ ├── 830-v6.4-14-thermal-Use-thermal_zone_device_type-accessor.patch │ │ │ ├── 830-v6.4-15-thermal-drivers-mediatek-Control-buffer-enablement-t.patch │ │ │ ├── 830-v6.4-16-thermal-drivers-mediatek-Add-support-for-MT8365-SoC.patch │ │ │ ├── 830-v6.4-17-thermal-drivers-mediatek-Add-delay-after-thermal-ban.patch │ │ │ ├── 830-v6.4-18-thermal-drivers-mediatek-lvts_thermal-Fix-sensor-1-i.patch │ │ │ ├── 830-v6.4-19-thermal-drivers-mediatek-lvts_thermal-Add-AP-domain-.patch │ │ │ ├── 830-v6.4-20-Revert-thermal-drivers-mediatek-Add-delay-after-ther.patch │ │ │ ├── 830-v6.4-21-thermal-drivers-mediatek-Add-temperature-constraints.patch │ │ │ ├── 830-v6.4-22-thermal-drivers-mediatek-Use-devm_of_iomap-to-avoid-.patch │ │ │ ├── 830-v6.4-23-thermal-drivers-mediatek-Change-clk_prepare_enable-t.patch │ │ │ ├── 830-v6.4-24-thermal-drivers-mediatek-Use-of_address_to_resource.patch │ │ │ ├── 830-v6.4-25-Revert-thermal-drivers-mediatek-Use-devm_of_iomap-to.patch │ │ │ ├── 830-v6.4-26-thermal-drivers-mediatek-lvts_thermal-Register-therm.patch │ │ │ ├── 830-v6.4-27-thermal-drivers-mediatek-lvts_thermal-Remove-redunda.patch │ │ │ ├── 830-v6.4-29-thermal-drivers-mediatek-lvts_thermal-Handle-IRQ-on-.patch │ │ │ ├── 830-v6.4-30-thermal-drivers-mediatek-lvts_thermal-Honor-sensors-.patch │ │ │ ├── 830-v6.4-31-thermal-drivers-mediatek-lvts_thermal-Use-offset-thr.patch │ │ │ ├── 830-v6.4-32-thermal-drivers-mediatek-lvts_thermal-Disable-undesi.patch │ │ │ ├── 830-v6.4-33-thermal-drivers-mediatek-lvts_thermal-Don-t-leave-th.patch │ │ │ ├── 830-v6.4-34-thermal-drivers-mediatek-lvts_thermal-Manage-thresho.patch │ │ │ ├── 830-v6.4-35-thermal-drivers-mediatek-lvts-Fix-parameter-check-in.patch │ │ │ ├── 830-v6.4-36-thermal-drivers-mediatek-Clean-up-redundant-dev_err_.patch │ │ │ ├── 830-v6.4-37-thermal-drivers-mediatek-lvts_thermal-Make-readings-.patch │ │ │ ├── 830-v6.6-38-thermal-drivers-mediatek-auxadc_thermal-Removed-call.patch │ │ │ ├── 830-v6.7-39-thermal-lvts-Convert-to-platform-remove-callback-ret.patch │ │ │ ├── 830-v6.7-40-thermal-drivers-mediatek-lvts_thermal-Make-coeff-con.patch │ │ │ ├── 830-v6.7-41-dt-bindings-thermal-mediatek-Add-LVTS-thermal-sensor.patch │ │ │ ├── 830-v6.7-42-thermal-drivers-mediatek-lvts_thermal-Add-mt7988-sup.patch │ │ │ ├── 830-v6.7-43-thermal-drivers-mediatek-lvts_thermal-Fix-error-chec.patch │ │ │ ├── 830-v6.7-44-thermal-drivers-mediatek-Fix-probe-for-THERMAL_V2.patch │ │ │ ├── 830-v6.7-45-thermal-drivers-mediatek-lvts_thermal-Add-suspend-an.patch │ │ │ ├── 830-v6.7-46-dt-bindings-thermal-mediatek-Add-LVTS-thermal-contro.patch │ │ │ ├── 830-v6.7-47-thermal-drivers-mediatek-lvts_thermal-Add-mt8192-sup.patch │ │ │ ├── 830-v6.7-48-thermal-drivers-mediatek-lvts_thermal-Update-calibra.patch │ │ │ ├── 831-thermal-drivers-mediatek-Fix-control-buffer-enablement-on-MT7896.patch │ │ │ ├── 851-v6.2-i2c-mediatek-add-mt7986-support.patch │ │ │ ├── 852-v6.3-i2c-mt65xx-Use-devm_platform_get_and_ioremap_resourc.patch │ │ │ ├── 853-v6.3-i2c-mt65xx-drop-of_match_ptr-for-ID-table.patch │ │ │ ├── 854-v6.4-i2c-mediatek-add-support-for-MT7981-SoC.patch │ │ │ ├── 855-i2c-mt65xx-allow-optional-pmic-clock.patch │ │ │ ├── 860-v6.6-01-ASoC-mediatek-mt7986-add-common-header.patch │ │ │ ├── 860-v6.6-02-ASoC-mediatek-mt7986-support-etdm-in-platform-driver.patch │ │ │ ├── 860-v6.6-03-ASoC-mediatek-mt7986-add-platform-driver.patch │ │ │ ├── 860-v6.6-04-ASoC-mediatek-mt7986-add-machine-driver-with-wm8960.patch │ │ │ ├── 860-v6.6-05-ASoC-dt-bindings-mediatek-mt7986-wm8960-add-mt7986-w.patch │ │ │ ├── 860-v6.6-06-ASoC-dt-bindings-mediatek-mt7986-afe-add-audio-afe-d.patch │ │ │ ├── 860-v6.7-07-ASoC-mediatek-mt7986-drop-the-remove-callback-of-mt7.patch │ │ │ ├── 860-v6.7-08-ASoC-mediatek-mt7986-remove-the-mt7986_wm8960_priv-s.patch │ │ │ ├── 860-v6.7-09-ASoC-mediatek-mt7986-add-sample-rate-checker.patch │ │ │ ├── 861-pending-10-ASoC-mediatek-mt7986-silence-error-in-case-of-EPROBE.patch │ │ │ ├── 862-arm64-dts-mt7986-add-afe.patch │ │ │ ├── 863-arm64-dts-mt7986-add-sound-wm8960.patch │ │ │ ├── 864-arm64-dts-mt7986-add-sound-overlay-for-bpi-r3.patch │ │ │ ├── 900-dts-mt7622-bpi-r64-aliases-for-dtoverlay.patch │ │ │ ├── 901-arm-add-cmdline-override.patch │ │ │ ├── 910-dts-mt7622-bpi-r64-wifi-eeprom.patch │ │ │ ├── 911-dts-mt7622-bpi-r64-add-rootdisk.patch │ │ │ ├── 930-spi-mt65xx-enable-sel-clk.patch │ │ │ ├── 940-net-ethernet-mtk_wed-rename-mtk_wed_get_memory_regio.patch │ │ │ ├── 941-arm64-dts-mt7986-move-cpuboot-in-a-dedicated-node.patch │ │ │ ├── 942-net-ethernet-mtk_wed-move-cpuboot-in-a-dedicated-dts.patch │ │ │ ├── 943-net-ethernet-mtk_wed-move-ilm-a-dedicated-dts-node.patch │ │ │ ├── 944-net-ethernet-mtk_wed-move-dlm-a-dedicated-dts-node.patch │ │ │ ├── 945-arm64-dts-mt7986-move-ilm-in-a-dedicated-node.patch │ │ │ ├── 946-arm64-dts-mt7986-move-dlm-in-a-dedicated-node.patch │ │ │ ├── 950-smartrg-i2c-led-driver.patch │ │ │ ├── 961-net-ethernet-mediatek-split-tx-and-rx-fields-in-mtk_.patch │ │ │ ├── 962-net-ethernet-mediatek-use-QDMA-instead-of-ADMAv2-on-.patch │ │ │ └── 963-net-ethernet-mtk_eth_soc-fix-WED-wifi-reset.patch │ │ ├── patches-6.12 │ │ │ ├── 010-v6.14-pinctrl-mediatek-add-support-for-MTK_PULL_PD_TYPE.patch │ │ │ ├── 011-v6.14-pinctrl-mediatek-add-MT7988-pinctrl-driver.patch │ │ │ ├── 012-v6.14-pinctrl-mediatek-Drop-mtk_pinconf_bias_set_pd.patch │ │ │ ├── 020-v6.13-arm64-dts-mediatek-mt7988-add-UART-controllers.patch │ │ │ ├── 021-v6.13-arm64-dts-mediatek-mt7988-add-efuse-block.patch │ │ │ ├── 022-v6.14-arm64-dts-mediatek-mt7988-Add-pinctrl-support.patch │ │ │ ├── 023-v6.14-arm64-dts-mediatek-mt7988-Add-reserved-memory.patch │ │ │ ├── 024-v6.14-arm64-dts-mediatek-mt7988-Add-mmc-support.patch │ │ │ ├── 025-v6.14-arm64-dts-mediatek-mt7988-Add-lvts-node.patch │ │ │ ├── 026-v6.14-arm64-dts-mediatek-mt7988-Add-thermal-zone.patch │ │ │ ├── 027-v6.14-arm64-dts-mediatek-mt7988-Add-mcu-sys-node-for-cpu.patch │ │ │ ├── 028-v6.14-arm64-dts-mediatek-mt7988-Add-CPU-OPP-table-for-cloc.patch │ │ │ ├── 029-v6.14-arm64-dts-mediatek-mt7988-Disable-usb-controllers-by.patch │ │ │ ├── 030-v6.14-arm64-dts-mediatek-mt7988-Add-t-phy-for-ssusb1.patch │ │ │ ├── 031-v6.14-arm64-dts-mediatek-mt7988-Add-pcie-nodes.patch │ │ │ ├── 032-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Add-pinctrl-subnod.patch │ │ │ ├── 033-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Enable-watchdog.patch │ │ │ ├── 034-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Add-fixed-regulato.patch │ │ │ ├── 035-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Add-thermal-config.patch │ │ │ ├── 036-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Enable-serial0-deb.patch │ │ │ ├── 037-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Add-default-UART-s.patch │ │ │ ├── 038-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Enable-I2C-control.patch │ │ │ ├── 039-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Add-PCA9545-I2C-Mu.patch │ │ │ ├── 040-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Enable-t-phy-for-s.patch │ │ │ ├── 041-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Enable-ssusb1-on-b.patch │ │ │ ├── 042-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Enable-pwm.patch │ │ │ ├── 043-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Enable-pcie.patch │ │ │ ├── 044-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Add-MediaTek-MT668.patch │ │ │ ├── 045-v6.14-arm64-dts-mediatek-mt7988a-bpi-r4-Add-proc-supply-fo.patch │ │ │ ├── 050-v6.16-phy-mediatek-xsphy-support-type-switch-by-pericfg.patch │ │ │ ├── 060-v6.13-mmc-mtk-sd-add-support-for-mt7988.patch │ │ │ ├── 100-dts-update-mt7622-rfb1.patch │ │ │ ├── 101-dts-update-mt7629-rfb.patch │ │ │ ├── 103-mt7623-enable-arch-timer.patch │ │ │ ├── 104-mt7622-add-snor-irq.patch │ │ │ ├── 105-dts-mt7622-enable-pstore.patch │ │ │ ├── 106-dts-mt7622-disable_btif.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-Revert-arm64-dts-mediatek-fix-t-phy-unit-name.patch │ │ │ ├── 116-arm64-dts-mediatek-mt7622-readd-syscon-to-pciesys-no.patch │ │ │ ├── 117-complete-mt7981b-dtsi.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 │ │ │ ├── 164-dts-mt7623-bpi-r2-rootdisk-for-fitblk.patch │ │ │ ├── 170-arm64-dts-mediatek-mt7988a-bpi-r4-allow-hw-variants-.patch │ │ │ ├── 171-arm64-dts-mediatek-mt7988a-Add-xsphy-for-ssusb0-pcie2.patch │ │ │ ├── 172-arm64-dts-mediatek-mt7988a-bpi-r4-enable-xsphy.patch │ │ │ ├── 173-dts-mt7988a-Add-built-in-ethernet-phy-firmware-node.patch │ │ │ ├── 174-arm64-dts-mediatek-mt7988-add-spi-controllers.patch │ │ │ ├── 175-arm64-dts-mediatek-mt7988-move-uart0-and-spi1-pins-to-soc-dtsi.patch │ │ │ ├── 176-arm64-dts-mediatek-mt7988-add-cci-node.patch │ │ │ ├── 177-arm64-dts-mediatek-mt7988-add-phy-calibration-efuse-subnodes.patch │ │ │ ├── 178-arm64-dts-mediatek-mt7988-add-basic-ethernet-nodes.patch │ │ │ ├── 179-arm64-dts-mediatek-mt7988-add-switch-node.patch │ │ │ ├── 180-arm64-dts-mediatek-mt7988a-bpi-r4-Add-fan-and-coolingmaps.patch │ │ │ ├── 181-arm64-dts-mediatek-mt7988a-bpi-r4-configure-spi-nodes.patch │ │ │ ├── 182-arm64-dts-mediatek-mt7988a-bpi-r4-add-proc-supply-for-cci.patch │ │ │ ├── 183-arm64-dts-mediatek-mt7988a-bpi-r4-add-sfp-cages-and-link-to-gmac.patch │ │ │ ├── 184-arm64-dts-mediatek-mt7988a-bpi-r4-configure-switch-phys-and-leds.patch │ │ │ ├── 185-arm64-dts-mt7988a-add-serial1-and-serial2-aliases.patch │ │ │ ├── 186-arm64-dts-mt7988a-complete-dtsi.patch │ │ │ ├── 188-arm64-dts-mediatek-add-MT7988A-reference-board-devic.patch │ │ │ ├── 189-arm64-dts-mediatek-mt7988a-complete-bpi-r4.patch │ │ │ ├── 190-arm64-dts-mediatek-mt7622-fix-GICv2-range.patch │ │ │ ├── 193-dts-mt7623-thermal_zone_fix.patch │ │ │ ├── 194-dts-mt7968a-add-ramoops.patch │ │ │ ├── 195-dts-mt7986a-bpi-r3-leds-port-names-and-wifi-eeprom.patch │ │ │ ├── 196-dts-mt7986a-bpi-r3-use-all-ubi-nand-layout.patch │ │ │ ├── 197-dts-mt7986a-bpi-r3-mini-wifi-eeprom.patch │ │ │ ├── 200-phy-phy-mtk-tphy-Add-hifsys-support.patch │ │ │ ├── 255-clk-mediatek-mt7988-infracfg-SPI0-clocks-are-not-critical.patch │ │ │ ├── 320-hwrng-add-driver-for-MediaTek-TRNG-SMC.patch │ │ │ ├── 330-snand-mtk-bmt-support.patch │ │ │ ├── 331-mt7622-rfb1-enable-bmt.patch │ │ │ ├── 340-mtd-spinand-Add-support-for-the-Fidelix-FM35X1GA.patch │ │ │ ├── 350-21-cpufreq-mediatek-Add-support-for-MT7988.patch │ │ │ ├── 360-pinctrl-mediatek-add-mt7987-pinctrl-support.patch │ │ │ ├── 361-clk-mediatek-add-mt7987-clock-drivers-support.patch │ │ │ ├── 400-crypto-add-eip97-inside-secure-support.patch │ │ │ ├── 401-crypto-fix-eip97-cache-incoherent.patch │ │ │ ├── 410-bt-mtk-serial-fix.patch │ │ │ ├── 431-drivers-spi-mt65xx-Move-chip_config-to-driver-s-priv.patch │ │ │ ├── 432-drivers-spi-Add-support-for-dynamic-calibration.patch │ │ │ ├── 433-drivers-spi-mem-Add-spi-calibration-hook.patch │ │ │ ├── 434-drivers-spi-mt65xx-Add-controller-s-calibration-para.patch │ │ │ ├── 435-drivers-mtd-spinand-Add-calibration-support-for-spin.patch │ │ │ ├── 436-drivers-mtd-spi-nor-Add-calibration-support-for-spi-.patch │ │ │ ├── 450-nvmem-add-layout-for-Adtran-devices.patch │ │ │ ├── 500-gsw-rtl8367s-mt7622-support.patch │ │ │ ├── 601-PCI-mediatek-Assert-PERST-for-100ms-for-power-and-cl.patch │ │ │ ├── 602-arm64-dts-mediatek-add-mt7622-pcie-slot-node.patch │ │ │ ├── 610-pcie-mediatek-fix-clearing-interrupt-status.patch │ │ │ ├── 611-pcie-mediatek-gen3-PERST-for-100ms.patch │ │ │ ├── 700-net-phy-mediatek-Add-2.5Gphy-firmware-dt-bindings-an.patch │ │ │ ├── 701-net-phy-mediatek-add-driver-for-built-in-2.5G-ethern.patch │ │ │ ├── 710-pci-pcie-mediatek-add-support-for-coherent-DMA.patch │ │ │ ├── 721-dts-mt7622-mediatek-fix-300mhz.patch │ │ │ ├── 722-remove-300Hz-to-prevent-freeze.patch │ │ │ ├── 732-net-phy-mxl-gpy-don-t-use-SGMII-AN-if-using-phylink.patch │ │ │ ├── 734-net-phy-add-Airoha-EN8801SC-PHY.patch │ │ │ ├── 736-net-pcs-mtk_usxgmii-add-polarity-control.patch │ │ │ ├── 737-net-dsa-add-Airoha-AN8855.patch │ │ │ ├── 739-net-add-negotiation-of-in-band-capabilities.patch │ │ │ ├── 740-net-pcs-mtk_lynxi-add-mt7987-support.patch │ │ │ ├── 741-net-pcs-mtk-lynxi-add-phya-tx-rx-clock-path.patch │ │ │ ├── 750-net-ethernet-mtk_eth_soc-add-mt7987-support.patch │ │ │ ├── 751-net-ethernet-mtk_eth_soc-revise-hardware-configuration-for-mt7987.patch │ │ │ ├── 752-net-phy-mediatek-i2p5g-add-support-for-mt7987.patch │ │ │ ├── 821-add-pwm-feature-for-mt7987.patch │ │ │ ├── 830-thermal-drivers-mediatek-lvts_thermal-Add-irq_enable-support.patch │ │ │ ├── 831-thermal-drivers-mediatek-lvts_thermal-Add-MT7987-support.patch │ │ │ ├── 862-arm64-dts-mt7986-add-afe.patch │ │ │ ├── 863-arm64-dts-mt7986-add-sound-wm8960.patch │ │ │ ├── 864-arm64-dts-mt7986-add-sound-overlay-for-bpi-r3.patch │ │ │ ├── 900-dts-mt7622-bpi-r64-aliases-for-dtoverlay.patch │ │ │ ├── 901-arm-add-cmdline-override.patch │ │ │ ├── 910-dts-mt7622-bpi-r64-wifi-eeprom.patch │ │ │ ├── 911-dts-mt7622-bpi-r64-add-rootdisk.patch │ │ │ ├── 920-block-partitions-msdos-add-OF-node-by-partition-numb.patch │ │ │ ├── 930-spi-mt65xx-enable-sel-clk.patch │ │ │ ├── 940-net-ethernet-mtk_wed-rename-mtk_wed_get_memory_regio.patch │ │ │ ├── 941-arm64-dts-mt7986-move-cpuboot-in-a-dedicated-node.patch │ │ │ ├── 942-net-ethernet-mtk_wed-move-cpuboot-in-a-dedicated-dts.patch │ │ │ ├── 943-net-ethernet-mtk_wed-move-ilm-a-dedicated-dts-node.patch │ │ │ ├── 944-net-ethernet-mtk_wed-move-dlm-a-dedicated-dts-node.patch │ │ │ ├── 945-arm64-dts-mt7986-move-ilm-in-a-dedicated-node.patch │ │ │ ├── 946-arm64-dts-mt7986-move-dlm-in-a-dedicated-node.patch │ │ │ ├── 950-smartrg-i2c-led-driver.patch │ │ │ └── 965-dts-mt7988a-add-trng-support.patch │ │ └── patches-6.6 │ │ │ ├── 041-block-fit-partition-parser.patch │ │ │ ├── 100-dts-update-mt7622-rfb1.patch │ │ │ ├── 101-dts-update-mt7629-rfb.patch │ │ │ ├── 103-mt7623-enable-arch-timer.patch │ │ │ ├── 104-mt7622-add-snor-irq.patch │ │ │ ├── 105-dts-mt7622-enable-pstore.patch │ │ │ ├── 106-dts-mt7622-disable_btif.patch │ │ │ ├── 107-mt7622_fix_dts_mt7531_reg.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-Revert-arm64-dts-mediatek-fix-t-phy-unit-name.patch │ │ │ ├── 116-arm64-dts-mediatek-mt7622-readd-syscon-to-pciesys-no.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 │ │ │ ├── 164-dts-mt7623-bpi-r2-rootdisk-for-fitblk.patch │ │ │ ├── 190-arm64-dts-mediatek-mt7622-fix-GICv2-range.patch │ │ │ ├── 193-dts-mt7623-thermal_zone_fix.patch │ │ │ ├── 194-dts-mt7968a-add-ramoops.patch │ │ │ ├── 195-dts-mt7986a-bpi-r3-leds-port-names-and-wifi-eeprom.patch │ │ │ ├── 196-dts-mt7986a-bpi-r3-use-all-ubi-nand-layout.patch │ │ │ ├── 197-dts-mt7986a-bpi-r3-mini-wifi-eeprom.patch │ │ │ ├── 200-phy-phy-mtk-tphy-Add-hifsys-support.patch │ │ │ ├── 218-pinctrl-mediatek-mt7981-add-additional-uart-groups.patch │ │ │ ├── 240-pinctrl-mediatek-add-support-for-MT7988-SoC.patch │ │ │ ├── 244-v6.8-dt-bindings-arm-mediatek-move-ethsys-controller-conv.patch │ │ │ ├── 245-v6.8-dt-bindings-reset-mediatek-add-MT7988-ethwarp-reset-.patch │ │ │ ├── 246-v6.8-dt-bindings-clock-mediatek-add-MT7988-clock-IDs.patch │ │ │ ├── 247-v6.8-dt-bindings-clock-mediatek-add-clock-controllers-of-.patch │ │ │ ├── 248-v6.8-clk-mediatek-add-pcw_chg_bit-control-for-PLLs-of-MT7.patch │ │ │ ├── 249-v6.8-clk-mediatek-add-drivers-for-MT7988-SoC.patch │ │ │ ├── 250-clk-mediatek-add-infracfg-reset-controller-for-mt798.patch │ │ │ ├── 250-dt-bindings-reset-mediatek-add-MT7988-reset-IDs.patch │ │ │ ├── 251-v6.8-watchdog-mediatek-mt7988-add-wdt-support.patch │ │ │ ├── 252-clk-mediatek-mt7988-infracfg-fix-clocks-for-2nd-PCIe.patch │ │ │ ├── 253-pinctrl-mediatek-mt7981-add-additional-uart-group.patch │ │ │ ├── 254-pinctrl-mediatek-mt7981-add-additional-emmc-group.patch │ │ │ ├── 255-clk-mediatek-mt7988-infracfg-SPI0-clocks-are-not-critical.patch │ │ │ ├── 330-snand-mtk-bmt-support.patch │ │ │ ├── 331-mt7622-rfb1-enable-bmt.patch │ │ │ ├── 340-mtd-spinand-Add-support-for-the-Fidelix-FM35X1GA.patch │ │ │ ├── 350-21-cpufreq-mediatek-Add-support-for-MT7988.patch │ │ │ ├── 351-pinctrl-add-mt7988-pd-pulltype-support.patch │ │ │ ├── 400-crypto-add-eip97-inside-secure-support.patch │ │ │ ├── 401-crypto-fix-eip97-cache-incoherent.patch │ │ │ ├── 410-bt-mtk-serial-fix.patch │ │ │ ├── 431-drivers-spi-mt65xx-Move-chip_config-to-driver-s-priv.patch │ │ │ ├── 432-drivers-spi-Add-support-for-dynamic-calibration.patch │ │ │ ├── 433-drivers-spi-mem-Add-spi-calibration-hook.patch │ │ │ ├── 434-drivers-spi-mt65xx-Add-controller-s-calibration-para.patch │ │ │ ├── 435-drivers-mtd-spinand-Add-calibration-support-for-spin.patch │ │ │ ├── 436-drivers-mtd-spi-nor-Add-calibration-support-for-spi-.patch │ │ │ ├── 500-gsw-rtl8367s-mt7622-support.patch │ │ │ ├── 601-PCI-mediatek-Assert-PERST-for-100ms-for-power-and-cl.patch │ │ │ ├── 602-arm64-dts-mediatek-add-mt7622-pcie-slot-node.patch │ │ │ ├── 610-pcie-mediatek-fix-clearing-interrupt-status.patch │ │ │ ├── 611-pcie-mediatek-gen3-PERST-for-100ms.patch │ │ │ ├── 615-phy-phy-mtk-xsphy-support-type-switch-by-pericfg.patch │ │ │ ├── 710-pci-pcie-mediatek-add-support-for-coherent-DMA.patch │ │ │ ├── 721-dts-mt7622-mediatek-fix-300mhz.patch │ │ │ ├── 722-remove-300Hz-to-prevent-freeze.patch │ │ │ ├── 732-net-phy-mxl-gpy-don-t-use-SGMII-AN-if-using-phylink.patch │ │ │ ├── 733-01-net-phy-mediatek-Re-organize-MediaTek-ethernet-phy-d.patch │ │ │ ├── 733-02-net-phy-mediatek-Fix-spelling-errors-and-rearrange-v.patch │ │ │ ├── 733-03-net-phy-mediatek-Move-LED-helper-functions-into-mtk-.patch │ │ │ ├── 733-04-net-phy-mediatek-Improve-readability-of-mtk-phy-lib..patch │ │ │ ├── 733-05-net-phy-mediatek-Integrate-read-write-page-helper-fu.patch │ │ │ ├── 733-06-net-phy-mediatek-Hook-LED-helper-functions-in-mtk-ge.patch │ │ │ ├── 733-07-net-phy-mediatek-add-MT7530-MT7531-s-PHY-ID-macros.patch │ │ │ ├── 733-08-net-phy-mediatek-Change-mtk-ge-soc.c-line-wrapping.patch │ │ │ ├── 733-09-net-phy-mediatek-Add-token-ring-access-helper-functi.patch │ │ │ ├── 733-11-net-phy-add-driver-for-built-in-2.5G-ethernet-PHY-on.patch │ │ │ ├── 734-net-phy-add-Airoha-EN8801SC-PHY.patch │ │ │ ├── 737-net-dsa-add-Airoha-AN8855.patch │ │ │ ├── 738-net-phylink-move-phylink_pcs_neg_mode.patch │ │ │ ├── 739-net-add-negotiation-of-in-band-capabilities.patch │ │ │ ├── 806-v6.9-pwm-mediatek-add-support-for-MT7988.patch │ │ │ ├── 830-v6.7-39-thermal-lvts-Convert-to-platform-remove-callback-ret.patch │ │ │ ├── 830-v6.7-40-thermal-drivers-mediatek-lvts_thermal-Make-coeff-con.patch │ │ │ ├── 830-v6.7-41-dt-bindings-thermal-mediatek-Add-LVTS-thermal-sensor.patch │ │ │ ├── 830-v6.7-42-thermal-drivers-mediatek-lvts_thermal-Add-mt7988-sup.patch │ │ │ ├── 830-v6.7-43-thermal-drivers-mediatek-lvts_thermal-Fix-error-chec.patch │ │ │ ├── 830-v6.7-45-thermal-drivers-mediatek-lvts_thermal-Add-suspend-an.patch │ │ │ ├── 830-v6.7-46-dt-bindings-thermal-mediatek-Add-LVTS-thermal-contro.patch │ │ │ ├── 830-v6.7-47-thermal-drivers-mediatek-lvts_thermal-Add-mt8192-sup.patch │ │ │ ├── 830-v6.7-48-thermal-drivers-mediatek-lvts_thermal-Update-calibra.patch │ │ │ ├── 855-i2c-mt65xx-allow-optional-pmic-clock.patch │ │ │ ├── 860-v6.7-07-ASoC-mediatek-mt7986-drop-the-remove-callback-of-mt7.patch │ │ │ ├── 860-v6.7-08-ASoC-mediatek-mt7986-remove-the-mt7986_wm8960_priv-s.patch │ │ │ ├── 860-v6.7-09-ASoC-mediatek-mt7986-add-sample-rate-checker.patch │ │ │ ├── 861-pending-10-ASoC-mediatek-mt7986-silence-error-in-case-of-EPROBE.patch │ │ │ ├── 862-arm64-dts-mt7986-add-afe.patch │ │ │ ├── 863-arm64-dts-mt7986-add-sound-wm8960.patch │ │ │ ├── 864-arm64-dts-mt7986-add-sound-overlay-for-bpi-r3.patch │ │ │ ├── 900-dts-mt7622-bpi-r64-aliases-for-dtoverlay.patch │ │ │ ├── 901-arm-add-cmdline-override.patch │ │ │ ├── 910-dts-mt7622-bpi-r64-wifi-eeprom.patch │ │ │ ├── 911-dts-mt7622-bpi-r64-add-rootdisk.patch │ │ │ ├── 930-spi-mt65xx-enable-sel-clk.patch │ │ │ ├── 940-net-ethernet-mtk_wed-rename-mtk_wed_get_memory_regio.patch │ │ │ ├── 941-arm64-dts-mt7986-move-cpuboot-in-a-dedicated-node.patch │ │ │ ├── 942-net-ethernet-mtk_wed-move-cpuboot-in-a-dedicated-dts.patch │ │ │ ├── 943-net-ethernet-mtk_wed-move-ilm-a-dedicated-dts-node.patch │ │ │ ├── 944-net-ethernet-mtk_wed-move-dlm-a-dedicated-dts-node.patch │ │ │ ├── 945-arm64-dts-mt7986-move-ilm-in-a-dedicated-node.patch │ │ │ ├── 946-arm64-dts-mt7986-move-dlm-in-a-dedicated-node.patch │ │ │ └── 950-smartrg-i2c-led-driver.patch │ ├── mpc85xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ └── hotplug.d │ │ │ │ │ ├── firmware │ │ │ │ │ └── 10-ath9k-eeprom │ │ │ │ │ └── ieee80211 │ │ │ │ │ ├── 05-wifi-migrate │ │ │ │ │ └── 10-fix-wifi-mac │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 05_set_preinit_iface_mpc85xx │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-5.10 │ │ ├── config-5.15 │ │ ├── config-5.4 │ │ ├── files │ │ │ └── arch │ │ │ │ └── powerpc │ │ │ │ ├── boot │ │ │ │ └── dts │ │ │ │ │ ├── hiveap-330.dts │ │ │ │ │ ├── panda.dts │ │ │ │ │ ├── red-15w-rev1.dts │ │ │ │ │ ├── tl-wdr4900-v1.dts │ │ │ │ │ └── ws-ap3710i.dts │ │ │ │ └── platforms │ │ │ │ └── 85xx │ │ │ │ ├── hiveap-330.c │ │ │ │ ├── panda.c │ │ │ │ ├── red15w_rev1.c │ │ │ │ ├── tl_wdr4900_v1.c │ │ │ │ └── ws-ap3710i.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 │ │ │ └── 900-powerpc-bootwrapper-disable-uImage-generation.patch │ │ ├── patches-5.15 │ │ │ ├── 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 │ │ └── patches-5.4 │ │ │ ├── 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 │ │ │ └── 900-powerpc-bootwrapper-disable-uImage-generation.patch │ ├── mvebu │ │ ├── Makefile │ │ ├── base-files │ │ │ └── lib │ │ │ │ └── preinit │ │ │ │ └── 79_move_config │ │ ├── config-6.12 │ │ ├── config-6.6 │ │ ├── cortexa53 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ ├── preinit │ │ │ │ │ └── 82_uDPU │ │ │ │ │ └── upgrade │ │ │ │ │ ├── platform.sh │ │ │ │ │ └── uDPU.sh │ │ │ ├── config-6.12 │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ ├── cortexa72 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ ├── emmc-puzzle.sh │ │ │ │ │ └── platform.sh │ │ │ ├── config-6.12 │ │ │ ├── config-6.6 │ │ │ └── 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 │ │ │ │ ├── lib │ │ │ │ │ ├── preinit │ │ │ │ │ │ └── 81_linksys_syscfg │ │ │ │ │ └── upgrade │ │ │ │ │ │ ├── fortinet.sh │ │ │ │ │ │ ├── linksys.sh │ │ │ │ │ │ └── platform.sh │ │ │ │ └── sbin │ │ │ │ │ └── fan_ctrl.sh │ │ │ ├── config-6.12 │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ ├── files-6.12 │ │ │ └── arch │ │ │ │ ├── arm │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ └── marvell │ │ │ │ │ ├── armada-370-buffalo-ls220de.dts │ │ │ │ │ ├── armada-370-buffalo-ls421de.dts │ │ │ │ │ ├── armada-370-c200-v2.dts │ │ │ │ │ ├── armada-380-iij-sa-w2.dts │ │ │ │ │ ├── armada-385-fortinet-fg-30e.dts │ │ │ │ │ ├── armada-385-fortinet-fg-3xe.dtsi │ │ │ │ │ ├── armada-385-fortinet-fg-50e.dts │ │ │ │ │ ├── armada-385-fortinet-fg-51e.dts │ │ │ │ │ ├── armada-385-fortinet-fg-52e.dts │ │ │ │ │ ├── armada-385-fortinet-fg-5xe.dtsi │ │ │ │ │ ├── armada-385-fortinet-fg-xxe.dtsi │ │ │ │ │ ├── armada-385-fortinet-fwf-50e-2r.dts │ │ │ │ │ ├── armada-385-fortinet-fwf-51e.dts │ │ │ │ │ ├── armada-385-linksys-venom.dts │ │ │ │ │ ├── armada-385-nas1dual.dts │ │ │ │ │ └── armada-385-wd_cloud-mirror-gen2.dts │ │ │ │ └── arm64 │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ └── marvell │ │ │ │ ├── armada-3720-eDPU.dts │ │ │ │ ├── armada-3720-espressobin-ultra.dts │ │ │ │ ├── armada-3720-gl-mv1000.dts │ │ │ │ ├── armada-3720-uDPU.dts │ │ │ │ ├── armada-3720-uDPU.dtsi │ │ │ │ ├── armada-7040-mochabin.dts │ │ │ │ ├── armada-7040-rb5009.dts │ │ │ │ ├── cn9130-clearfog-pro.dts │ │ │ │ ├── cn9131-puzzle-m901.dts │ │ │ │ ├── cn9131-qhora-321.dts │ │ │ │ ├── cn9132-puzzle-m902.dts │ │ │ │ ├── cn9132-qhora-322.dts │ │ │ │ └── puzzle-thermal.dtsi │ │ ├── files-6.6 │ │ │ └── arch │ │ │ │ ├── arm │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ └── marvell │ │ │ │ │ ├── armada-370-buffalo-ls220de.dts │ │ │ │ │ ├── armada-370-buffalo-ls421de.dts │ │ │ │ │ ├── armada-370-c200-v2.dts │ │ │ │ │ ├── armada-380-iij-sa-w2.dts │ │ │ │ │ ├── armada-385-fortinet-fg-30e.dts │ │ │ │ │ ├── armada-385-fortinet-fg-3xe.dtsi │ │ │ │ │ ├── armada-385-fortinet-fg-50e.dts │ │ │ │ │ ├── armada-385-fortinet-fg-51e.dts │ │ │ │ │ ├── armada-385-fortinet-fg-52e.dts │ │ │ │ │ ├── armada-385-fortinet-fg-5xe.dtsi │ │ │ │ │ ├── armada-385-fortinet-fg-xxe.dtsi │ │ │ │ │ ├── armada-385-fortinet-fwf-50e-2r.dts │ │ │ │ │ ├── armada-385-fortinet-fwf-51e.dts │ │ │ │ │ ├── armada-385-linksys-venom.dts │ │ │ │ │ ├── armada-385-nas1dual.dts │ │ │ │ │ └── armada-385-wd_cloud-mirror-gen2.dts │ │ │ │ └── arm64 │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ └── marvell │ │ │ │ ├── armada-3720-eDPU.dts │ │ │ │ ├── armada-3720-espressobin-ultra.dts │ │ │ │ ├── armada-3720-gl-mv1000.dts │ │ │ │ ├── armada-3720-uDPU.dts │ │ │ │ ├── armada-3720-uDPU.dtsi │ │ │ │ ├── armada-7040-mochabin.dts │ │ │ │ ├── armada-7040-rb5009.dts │ │ │ │ ├── cn9130-clearfog-pro.dts │ │ │ │ ├── cn9131-puzzle-m901.dts │ │ │ │ ├── cn9131-qhora-321.dts │ │ │ │ ├── cn9132-puzzle-m902.dts │ │ │ │ ├── cn9132-qhora-322.dts │ │ │ │ └── puzzle-thermal.dtsi │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── clearfog-pro.bootscript │ │ │ ├── clearfog.bootscript │ │ │ ├── cortexa53.mk │ │ │ ├── cortexa72.mk │ │ │ ├── cortexa9.mk │ │ │ ├── espressobin.bootscript │ │ │ ├── gen_mvebu_sdcard_img.sh │ │ │ ├── generic-arm64.bootscript │ │ │ ├── gl-mv1000.bootscript │ │ │ ├── turris-omnia.bootscript │ │ │ └── udpu.bootscript │ │ ├── modules.mk │ │ ├── patches-6.12 │ │ │ ├── 0003-v6.16-pinctrl-armada-37xx-propagate-error-from-armada_37xx.patch │ │ │ ├── 100-aardvark-workaround-PCIe.patch │ │ │ ├── 105-power-reset-linkstation-poweroff-add-ls220de.patch │ │ │ ├── 300-mvebu-Mangle-bootloader-s-kernel-arguments.patch │ │ │ ├── 301-mvebu-armada-38x-enable-libata-leds.patch │ │ │ ├── 302-add_powertables.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-marvell-enable-heartbeat-LED-by-default.patch │ │ │ ├── 315-armada-xp-linksys-mamba-resize-kernel.patch │ │ │ ├── 316-armada-370-dts-fix-crypto-engine.patch │ │ │ ├── 320-arm-dts-armada-370-synology-ds213j-mtd-parts.patch │ │ │ ├── 350-drivers-thermal-step_wise-add-support-for-hysteresis.patch │ │ │ ├── 400-find_active_root.patch │ │ │ ├── 700-mvneta-tx-queue-workaround.patch │ │ │ ├── 701-mvpp2-read-mac-address-from-nvmem.patch │ │ │ ├── 800-cpuidle-mvebu-indicate-failure-to-enter-deeper-sleep.patch │ │ │ ├── 801-pci-mvebu-time-out-reset-on-link-up.patch │ │ │ ├── 830-01-i2c-add-init_recovery-callback.patch │ │ │ ├── 830-02-i2c-pxa-prevent-calling-of-the-generic-recovery-init-code.patch │ │ │ ├── 830-03-i2c-pxa-handle-Early-Bus-Busy-condition-on-Armada-3700.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 │ │ │ ├── 911-drivers-leds-wt61p803-puzzle-mcu-retry.patch │ │ │ └── 912-drivers-hwmon-wt61p803-puzzle-thermal-zone.patch │ │ └── patches-6.6 │ │ │ ├── 0003-v6.16-pinctrl-armada-37xx-propagate-error-from-armada_37xx.patch │ │ │ ├── 100-aardvark-workaround-PCIe.patch │ │ │ ├── 105-power-reset-linkstation-poweroff-add-ls220de.patch │ │ │ ├── 300-mvebu-Mangle-bootloader-s-kernel-arguments.patch │ │ │ ├── 301-mvebu-armada-38x-enable-libata-leds.patch │ │ │ ├── 302-add_powertables.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-marvell-enable-heartbeat-LED-by-default.patch │ │ │ ├── 315-armada-xp-linksys-mamba-resize-kernel.patch │ │ │ ├── 316-armada-370-dts-fix-crypto-engine.patch │ │ │ ├── 320-arm-dts-armada-370-synology-ds213j-mtd-parts.patch │ │ │ ├── 350-drivers-thermal-step_wise-add-support-for-hysteresis.patch │ │ │ ├── 400-find_active_root.patch │ │ │ ├── 700-mvneta-tx-queue-workaround.patch │ │ │ ├── 701-mvpp2-read-mac-address-from-nvmem.patch │ │ │ ├── 800-cpuidle-mvebu-indicate-failure-to-enter-deeper-sleep.patch │ │ │ ├── 801-pci-mvebu-time-out-reset-on-link-up.patch │ │ │ ├── 820-v6.11-01-dt-bindings-firmware-add-cznic-turris-omnia-mcu-bind.patch │ │ │ ├── 820-v6.11-02-platform-cznic-Add-preliminary-support-for-Turris-Om.patch │ │ │ ├── 820-v6.11-03-platform-cznic-turris-omnia-mcu-Add-support-for-MCU-.patch │ │ │ ├── 820-v6.11-04-platform-cznic-turris-omnia-mcu-Add-support-for-powe.patch │ │ │ ├── 820-v6.11-05-platform-cznic-turris-omnia-mcu-Add-support-for-MCU-.patch │ │ │ ├── 820-v6.11-06-platform-cznic-turris-omnia-mcu-Add-support-for-MCU-.patch │ │ │ ├── 820-v6.11-07-ARM-dts-turris-omnia-Add-MCU-system-controller-node.patch │ │ │ ├── 820-v6.11-08-ARM-dts-turris-omnia-Add-GPIO-key-node-for-front-but.patch │ │ │ ├── 820-v6.11-09-platform-cznic-turris-omnia-mcu-Depend-on-OF.patch │ │ │ ├── 820-v6.11-10-platform-cznic-turris-omnia-mcu-Depend-on-WATCHDOG.patch │ │ │ ├── 820-v6.11-11-platform-cznic-turris-omnia-mcu-fix-Kconfig-dependen.patch │ │ │ ├── 830-01-i2c-add-init_recovery-callback.patch │ │ │ ├── 830-02-i2c-pxa-prevent-calling-of-the-generic-recovery-init-code.patch │ │ │ ├── 830-03-i2c-pxa-handle-Early-Bus-Busy-condition-on-Armada-3700.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 │ │ │ ├── 911-drivers-leds-wt61p803-puzzle-mcu-retry.patch │ │ │ └── 912-drivers-hwmon-wt61p803-puzzle-thermal-zone.patch │ ├── mxs │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── inittab │ │ ├── config-5.10 │ │ ├── config-5.4 │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_sdcard_ext4_ext4.sh │ │ │ └── gen_sdcard_vfat_ext4.sh │ │ ├── patches-5.4 │ │ │ └── 100-ARM-dts-imx23-introduce-mmc0_sck_cfg.patch │ │ └── 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.4 │ │ ├── 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.4 │ │ │ ├── 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 │ │ └── profiles │ │ │ └── 000-Generic.mk │ ├── octeontx │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ ├── config-5.4 │ │ ├── image │ │ │ └── Makefile │ │ └── patches-5.4 │ │ │ ├── 0001-net-thunderx-use-proper-interface-type-for-RGMII.patch │ │ │ ├── 0002-gpio-thunderx-fix-irq_request_resources.patch │ │ │ ├── 0003-can-mcp251x-convert-to-half-duplex-SPI.patch │ │ │ └── 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.4 │ │ ├── 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 │ │ ├── config-5.4 │ │ ├── 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 │ │ └── patches-5.4 │ │ │ ├── 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 │ ├── phytium │ │ ├── Makefile │ │ ├── README │ │ ├── armv8 │ │ │ ├── config-5.10 │ │ │ └── target.mk │ │ ├── base-files.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_led │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 03_gpio_switches │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 01_sysinfo_acpi │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-5.10 │ │ ├── e2000 │ │ │ ├── base-files │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ └── target.mk │ │ ├── files-5.10 │ │ │ ├── Documentation │ │ │ │ └── devicetree │ │ │ │ │ └── bindings │ │ │ │ │ ├── dma │ │ │ │ │ └── phytium-ddma.yaml │ │ │ │ │ ├── edac │ │ │ │ │ └── phytium-pe220x-edac.txt │ │ │ │ │ ├── gpio │ │ │ │ │ ├── gpio-phytium-sgpio.txt │ │ │ │ │ └── phytium,gpio.yaml │ │ │ │ │ ├── hwlock │ │ │ │ │ └── phytium-hwspinlock.txt │ │ │ │ │ ├── hwmon │ │ │ │ │ └── tacho-phytium.txt │ │ │ │ │ ├── i2c │ │ │ │ │ └── phytium,i2c.yaml │ │ │ │ │ ├── iio │ │ │ │ │ └── adc │ │ │ │ │ │ └── phytium-adc.txt │ │ │ │ │ ├── input │ │ │ │ │ └── phytium-keypad.txt │ │ │ │ │ ├── interrupt-controller │ │ │ │ │ ├── phytium,ixic.txt │ │ │ │ │ └── phytium,ixic.yaml │ │ │ │ │ ├── mailbox │ │ │ │ │ └── phytium,mbox.yaml │ │ │ │ │ ├── media │ │ │ │ │ └── phytium-jpeg.txt │ │ │ │ │ ├── mmc │ │ │ │ │ ├── phytium,sdci.yaml │ │ │ │ │ └── phytium-mci.txt │ │ │ │ │ ├── net │ │ │ │ │ ├── can │ │ │ │ │ │ └── phytium-can.txt │ │ │ │ │ └── phytium,gmac.yaml │ │ │ │ │ ├── pwm │ │ │ │ │ └── pwm-phytium.txt │ │ │ │ │ ├── remoteproc │ │ │ │ │ └── homo-rproc.txt │ │ │ │ │ ├── rng │ │ │ │ │ └── phytium-rng.txt │ │ │ │ │ ├── spi │ │ │ │ │ └── spi-phytium.txt │ │ │ │ │ └── w1 │ │ │ │ │ └── phytium-w1.txt │ │ │ ├── arch │ │ │ │ └── arm64 │ │ │ │ │ ├── boot │ │ │ │ │ └── dts │ │ │ │ │ │ └── phytium │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── e2000d-chillipi-edu-board.dts │ │ │ │ │ │ ├── e2000d-demo-board.dts │ │ │ │ │ │ ├── e2000d-miniitx-board.dts │ │ │ │ │ │ ├── e2000d-power-board.dts │ │ │ │ │ │ ├── e2000q-come-board.dts │ │ │ │ │ │ ├── e2000q-demo-board.dts │ │ │ │ │ │ ├── e2000q-edu-board.dts │ │ │ │ │ │ ├── e2000q-hanwei-board.dts │ │ │ │ │ │ ├── e2000q-miniitx-board.dts │ │ │ │ │ │ ├── e2000q-vpx-board.dts │ │ │ │ │ │ ├── e2000s-demo-board.dts │ │ │ │ │ │ ├── pe2201.dtsi │ │ │ │ │ │ ├── pe2202.dtsi │ │ │ │ │ │ ├── pe2204.dtsi │ │ │ │ │ │ ├── pe220x.dtsi │ │ │ │ │ │ └── phytiumpi_firefly.dts │ │ │ │ │ └── configs │ │ │ │ │ ├── phytium_defconfig │ │ │ │ │ ├── phytium_optee.config │ │ │ │ │ └── phytiumpi_firefly_defconfig │ │ │ ├── drivers │ │ │ │ ├── char │ │ │ │ │ ├── hw_random │ │ │ │ │ │ └── phytium-rng.c │ │ │ │ │ └── ipmi │ │ │ │ │ │ ├── bt_bmc_phytium.c │ │ │ │ │ │ └── kcs_bmc_phytium.c │ │ │ │ ├── dma │ │ │ │ │ └── phytium │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── phytium-ddmac.c │ │ │ │ │ │ └── phytium-ddmac.h │ │ │ │ ├── edac │ │ │ │ │ └── phytium_edac.c │ │ │ │ ├── gpio │ │ │ │ │ ├── gpio-phytium-core.c │ │ │ │ │ ├── gpio-phytium-core.h │ │ │ │ │ ├── gpio-phytium-pci.c │ │ │ │ │ ├── gpio-phytium-platform.c │ │ │ │ │ └── gpio-phytium-sgpio.c │ │ │ │ ├── gpu │ │ │ │ │ └── drm │ │ │ │ │ │ └── phytium │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── pe220x_dc.c │ │ │ │ │ │ ├── pe220x_dc.h │ │ │ │ │ │ ├── pe220x_dp.c │ │ │ │ │ │ ├── pe220x_dp.h │ │ │ │ │ │ ├── pe220x_reg.h │ │ │ │ │ │ ├── phytium_crtc.c │ │ │ │ │ │ ├── phytium_crtc.h │ │ │ │ │ │ ├── phytium_debugfs.c │ │ │ │ │ │ ├── phytium_debugfs.h │ │ │ │ │ │ ├── phytium_display_drv.c │ │ │ │ │ │ ├── phytium_display_drv.h │ │ │ │ │ │ ├── phytium_dp.c │ │ │ │ │ │ ├── phytium_dp.h │ │ │ │ │ │ ├── phytium_fb.c │ │ │ │ │ │ ├── phytium_fb.h │ │ │ │ │ │ ├── phytium_fbdev.c │ │ │ │ │ │ ├── phytium_fbdev.h │ │ │ │ │ │ ├── phytium_gem.c │ │ │ │ │ │ ├── phytium_gem.h │ │ │ │ │ │ ├── phytium_panel.c │ │ │ │ │ │ ├── phytium_panel.h │ │ │ │ │ │ ├── phytium_pci.c │ │ │ │ │ │ ├── phytium_pci.h │ │ │ │ │ │ ├── phytium_plane.c │ │ │ │ │ │ ├── phytium_plane.h │ │ │ │ │ │ ├── phytium_platform.c │ │ │ │ │ │ ├── phytium_platform.h │ │ │ │ │ │ ├── phytium_reg.h │ │ │ │ │ │ ├── px210_dc.c │ │ │ │ │ │ ├── px210_dc.h │ │ │ │ │ │ ├── px210_dp.c │ │ │ │ │ │ ├── px210_dp.h │ │ │ │ │ │ └── px210_reg.h │ │ │ │ ├── hwmon │ │ │ │ │ └── tacho-phytium.c │ │ │ │ ├── hwspinlock │ │ │ │ │ └── phytium_hwspinlock.c │ │ │ │ ├── i2c │ │ │ │ │ └── busses │ │ │ │ │ │ ├── i2c-phytium-common.c │ │ │ │ │ │ ├── i2c-phytium-core.h │ │ │ │ │ │ ├── i2c-phytium-master.c │ │ │ │ │ │ ├── i2c-phytium-pci.c │ │ │ │ │ │ ├── i2c-phytium-platform.c │ │ │ │ │ │ └── i2c-phytium-slave.c │ │ │ │ ├── iio │ │ │ │ │ └── adc │ │ │ │ │ │ └── phytium-adc.c │ │ │ │ ├── input │ │ │ │ │ ├── keyboard │ │ │ │ │ │ └── phytium-keypad.c │ │ │ │ │ └── serio │ │ │ │ │ │ └── phytium-ps2.c │ │ │ │ ├── irqchip │ │ │ │ │ └── irq-phytium-ixic.c │ │ │ │ ├── mailbox │ │ │ │ │ └── phytium-mailbox.c │ │ │ │ ├── media │ │ │ │ │ └── platform │ │ │ │ │ │ └── phytium-jpeg │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── phytium_jpeg_core.c │ │ │ │ │ │ ├── phytium_jpeg_core.h │ │ │ │ │ │ └── phytium_jpeg_reg.h │ │ │ │ ├── mfd │ │ │ │ │ ├── phytium_px210_i2s_lsd.c │ │ │ │ │ └── phytium_px210_i2s_mmd.c │ │ │ │ ├── mmc │ │ │ │ │ └── host │ │ │ │ │ │ ├── phytium-mci-pci.c │ │ │ │ │ │ ├── phytium-mci-plat.c │ │ │ │ │ │ ├── phytium-mci.c │ │ │ │ │ │ ├── phytium-mci.h │ │ │ │ │ │ ├── phytium-sdci.c │ │ │ │ │ │ └── phytium-sdci.h │ │ │ │ ├── mtd │ │ │ │ │ ├── nand │ │ │ │ │ │ └── raw │ │ │ │ │ │ │ ├── phytium_nand.c │ │ │ │ │ │ │ ├── phytium_nand.h │ │ │ │ │ │ │ ├── phytium_nand_pci.c │ │ │ │ │ │ │ └── phytium_nand_plat.c │ │ │ │ │ └── spi-nor │ │ │ │ │ │ ├── boya.c │ │ │ │ │ │ └── controllers │ │ │ │ │ │ └── phytium-quadspi.c │ │ │ │ ├── net │ │ │ │ │ ├── can │ │ │ │ │ │ └── phytium │ │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── phytium_can.c │ │ │ │ │ │ │ ├── phytium_can.h │ │ │ │ │ │ │ ├── phytium_can_pci.c │ │ │ │ │ │ │ └── phytium_can_platform.c │ │ │ │ │ ├── ethernet │ │ │ │ │ │ └── stmicro │ │ │ │ │ │ │ └── stmmac │ │ │ │ │ │ │ └── dwmac-phytium.c │ │ │ │ │ └── phy │ │ │ │ │ │ └── motorcomm.c │ │ │ │ ├── pwm │ │ │ │ │ └── pwm-phytium.c │ │ │ │ ├── remoteproc │ │ │ │ │ └── homo_remoteproc.c │ │ │ │ ├── rtc │ │ │ │ │ └── rtc-sd3068.c │ │ │ │ ├── spi │ │ │ │ │ ├── spi-phytium-dma.c │ │ │ │ │ ├── spi-phytium-pci.c │ │ │ │ │ ├── spi-phytium-plat.c │ │ │ │ │ ├── spi-phytium-qspi.c │ │ │ │ │ ├── spi-phytium.c │ │ │ │ │ └── spi-phytium.h │ │ │ │ ├── tty │ │ │ │ │ └── serial │ │ │ │ │ │ └── phytium-uart.c │ │ │ │ ├── usb │ │ │ │ │ └── phytium │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── core.c │ │ │ │ │ │ ├── core.h │ │ │ │ │ │ ├── dma.c │ │ │ │ │ │ ├── dma.h │ │ │ │ │ │ ├── gadget.c │ │ │ │ │ │ ├── gadget.h │ │ │ │ │ │ ├── host.c │ │ │ │ │ │ ├── host_api.h │ │ │ │ │ │ ├── hw-regs.h │ │ │ │ │ │ ├── pci.c │ │ │ │ │ │ └── platform.c │ │ │ │ └── w1 │ │ │ │ │ └── masters │ │ │ │ │ └── phytium_w1.c │ │ │ └── sound │ │ │ │ ├── pci │ │ │ │ └── hda │ │ │ │ │ ├── hda_phytium.c │ │ │ │ │ └── hda_phytium.h │ │ │ │ └── soc │ │ │ │ ├── codecs │ │ │ │ ├── es8336.c │ │ │ │ ├── es8336.h │ │ │ │ ├── es8388.c │ │ │ │ └── es8388.h │ │ │ │ └── phytium │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── local.h │ │ │ │ ├── phytium_i2s.c │ │ │ │ ├── pmdk_dp.c │ │ │ │ ├── pmdk_es8336.c │ │ │ │ └── pmdk_es8388.c │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── armv8.mk │ │ │ ├── bin │ │ │ │ ├── e2000_miniitx_uboot.bin │ │ │ │ ├── e2000d_demo_uboot.bin │ │ │ │ ├── e2000q_demo_uboot.bin │ │ │ │ ├── fip-all-2GB.bin │ │ │ │ ├── fip-all-4GB.bin │ │ │ │ └── uboot-env.txt │ │ │ ├── dts_common.mk │ │ │ ├── e2000.mk │ │ │ ├── grub-efi.cfg │ │ │ └── phytiumpi.mk │ │ ├── modules.mk │ │ ├── patches-5.10 │ │ │ ├── 001-add-phytium-support.patch │ │ │ └── 002-fix-build-fail.patch │ │ └── phytiumpi │ │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ └── target.mk │ ├── pistachio │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-5.4 │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-5.4 │ │ │ ├── 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 │ ├── qualcommax │ │ ├── Makefile │ │ ├── base-files │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── mmc.sh │ │ ├── config-6.1 │ │ ├── config-6.12 │ │ ├── config-6.6 │ │ ├── files │ │ │ ├── arch │ │ │ │ └── arm64 │ │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ └── qcom │ │ │ │ │ ├── ipq5018-ax6000.dts │ │ │ │ │ ├── ipq5018-ess.dtsi │ │ │ │ │ ├── ipq5018-gl-b3000.dts │ │ │ │ │ ├── ipq5018-mr5500.dts │ │ │ │ │ ├── ipq5018-mx-base.dtsi │ │ │ │ │ ├── ipq5018-mx2000.dts │ │ │ │ │ ├── ipq5018-mx5500.dts │ │ │ │ │ ├── ipq5018-rax3000q.dts │ │ │ │ │ ├── ipq5018-re-cs-03.dts │ │ │ │ │ ├── ipq5018-spnmx56.dts │ │ │ │ │ ├── ipq6000-360v6.dts │ │ │ │ │ ├── ipq6000-ax18.dts │ │ │ │ │ ├── ipq6000-ax5-jdcloud.dts │ │ │ │ │ ├── ipq6000-gl-ax1800.dts │ │ │ │ │ ├── ipq6000-gl-axt1800.dts │ │ │ │ │ ├── ipq6000-glinet.dtsi │ │ │ │ │ ├── ipq6000-mr7350.dts │ │ │ │ │ ├── ipq6000-re-ss-01.dts │ │ │ │ │ ├── ipq6000-rm1800.dts │ │ │ │ │ ├── ipq6000-xiaomi.dtsi │ │ │ │ │ ├── ipq6010-re-cs-02.dts │ │ │ │ │ ├── ipq6010-re-cs-07.dts │ │ │ │ │ ├── ipq6018-256m.dtsi │ │ │ │ │ ├── ipq6018-512m.dtsi │ │ │ │ │ ├── ipq6018-ess.dtsi │ │ │ │ │ ├── ipq6018-nss.dtsi │ │ │ │ │ ├── ipq8070-cax1800.dts │ │ │ │ │ ├── ipq8070-rm2-6.dts │ │ │ │ │ ├── ipq8071-ap8220.dts │ │ │ │ │ ├── ipq8071-ax3600.dts │ │ │ │ │ ├── ipq8071-ax3600.dtsi │ │ │ │ │ ├── ipq8071-ax6.dts │ │ │ │ │ ├── ipq8071-eap102.dts │ │ │ │ │ ├── ipq8071-mf269.dts │ │ │ │ │ ├── ipq8072-301w.dts │ │ │ │ │ ├── ipq8072-aw1000.dts │ │ │ │ │ ├── ipq8072-ax9000.dts │ │ │ │ │ ├── ipq8072-dl-wrx36.dts │ │ │ │ │ ├── ipq8072-haze.dts │ │ │ │ │ ├── ipq8072-wax218.dts │ │ │ │ │ ├── ipq8072-wax620.dts │ │ │ │ │ ├── ipq8072-wpq873.dts │ │ │ │ │ ├── ipq8074-512m.dtsi │ │ │ │ │ ├── ipq8074-ac-cpu.dtsi │ │ │ │ │ ├── ipq8074-cpr-regulator.dtsi │ │ │ │ │ ├── ipq8074-ess.dtsi │ │ │ │ │ ├── ipq8074-hk-cpu.dtsi │ │ │ │ │ ├── ipq8074-nbg7815.dts │ │ │ │ │ ├── ipq8074-nss.dtsi │ │ │ │ │ ├── ipq8074-rax120v2.dts │ │ │ │ │ ├── ipq8074-wax630.dts │ │ │ │ │ ├── ipq8074-wxr-5950ax12.dts │ │ │ │ │ └── ipq8074-zbt-z800ax.dts │ │ │ ├── include │ │ │ │ ├── dt-bindings │ │ │ │ │ ├── clock │ │ │ │ │ │ └── qcom,gcc-ipq5018.h │ │ │ │ │ ├── net │ │ │ │ │ │ └── qcom-ipq-ess.h │ │ │ │ │ └── reset │ │ │ │ │ │ └── qcom,gcc-ipq5018.h │ │ │ │ ├── net │ │ │ │ │ └── netfilter │ │ │ │ │ │ └── nf_conntrack_dscpremark_ext.h │ │ │ │ └── uapi │ │ │ │ │ └── linux │ │ │ │ │ └── tc_act │ │ │ │ │ └── tc_nss_mirred.h │ │ │ └── net │ │ │ │ └── netfilter │ │ │ │ └── nf_conntrack_dscpremark_ext.c │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── ipq50xx.mk │ │ │ ├── ipq60xx.mk │ │ │ └── ipq807x.mk │ │ ├── ipq50xx │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ └── firmware │ │ │ │ │ │ │ └── 11-ath11k-caldata │ │ │ │ │ └── init.d │ │ │ │ │ │ └── bootcount │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ ├── linksys.sh │ │ │ │ │ └── platform.sh │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── ipq60xx │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ ├── firmware │ │ │ │ │ │ │ └── 11-ath11k-caldata │ │ │ │ │ │ └── ieee80211 │ │ │ │ │ │ │ └── 11_fix_wifi_mac │ │ │ │ │ └── init.d │ │ │ │ │ │ └── bootcount │ │ │ │ └── lib │ │ │ │ │ ├── preinit │ │ │ │ │ └── 81_fix_eeprom │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── ipq807x │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ ├── firmware │ │ │ │ │ │ │ └── 11-ath11k-caldata │ │ │ │ │ │ └── ieee80211 │ │ │ │ │ │ │ └── 11_fix_wifi_mac │ │ │ │ │ └── init.d │ │ │ │ │ │ └── bootcount │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ ├── buffalo.sh │ │ │ │ │ └── platform.sh │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── patches-6.1 │ │ │ ├── 0001-v6.2-arm64-dts-qcom-ipq8074-add-A53-PLL-node.patch │ │ │ ├── 0002-v6.2-thermal-drivers-tsens-Add-support-for-combined-inter.patch │ │ │ ├── 0003-v6.2-thermal-drivers-tsens-Allow-configuring-min-and-max-.patch │ │ │ ├── 0004-v6.2-thermal-drivers-tsens-Add-IPQ8074-support.patch │ │ │ ├── 0005-v6.2-arm64-dts-qcom-ipq8074-add-thermal-nodes.patch │ │ │ ├── 0006-v6.2-arm64-dts-qcom-ipq8074-add-clocks-to-APCS.patch │ │ │ ├── 0007-v6.2-clk-qcom-ipq8074-convert-to-parent-data.patch │ │ │ ├── 0008-v6.2-arm64-dts-qcom-ipq6018-fix-NAND-node-name.patch │ │ │ ├── 0009-v6.2-dt-bindings-clock-qcom-ipq8074-add-missing-networkin.patch │ │ │ ├── 0010-v6.2-clk-qcom-ipq8074-add-missing-networking-resets.patch │ │ │ ├── 0011-v6.2-clk-qcom-ipq8074-populate-fw_name-for-all-parents.patch │ │ │ ├── 0012-v6.2-arm64-dts-qcom-ipq8074-pass-XO-and-sleep-clocks-to-G.patch │ │ │ ├── 0013-v6.2-arm64-dts-qcom-add-PMP8074-DTSI.patch │ │ │ ├── 0014-v6.2-arm64-dts-qcom-ipq8074-hk01-add-VQMMC-supply.patch │ │ │ ├── 0015-v6.2-arm64-dts-qcom-hk01-use-GPIO-flags-for-tlmm.patch │ │ │ ├── 0016-v6.2-arm64-dts-qcom-ipq8074-Fix-up-comments.patch │ │ │ ├── 0017-v6.2-arm64-dts-qcom-ipq8074-align-TLMM-pin-configuration-.patch │ │ │ ├── 0018-v6.2-arm64-dts-qcom-ipq6018-align-TLMM-pin-configuration-.patch │ │ │ ├── 0019-v6.3-arm64-dts-qcom-ipq8074-set-Gen2-PCIe-pcie-max-link-s.patch │ │ │ ├── 0020-v6.3-PCI-qcom-Add-support-for-IPQ8074-Gen3-port.patch │ │ │ ├── 0021-v6.3-clk-qcom-ipq8074-populate-fw_name-for-usb3phy-s.patch │ │ │ ├── 0022-v6.4-arm64-dts-qcom-ipq8074-add-compatible-fallback-to.patch │ │ │ ├── 0023-v6.5-arm64-dts-qcom-ipq8074-add-critical-thermal-trips.patch │ │ │ ├── 0024-v6.7-dt-bindings-arm-qcom-ids-Add-IDs-for-IPQ8174-family.patch │ │ │ ├── 0025-v6.7-cpufreq-qcom-nvmem-add-support-for-IPQ6018.patch │ │ │ ├── 0026-v6.7-cpufreq-qcom-nvmem-add-support-for-IPQ8074.patch │ │ │ ├── 0027-v6.7-clk-qcom-apss-ipq6018-add-the-GPLL0-clock-also-as-cl.patch │ │ │ ├── 0028-v6.7-arm64-dts-qcom-ipq8074-include-the-GPLL0-as-clock-pr.patch │ │ │ ├── 0029-v6.12-dt-bindings-arm-qcom-ids-Add-missing-IDs-for-IPQ-family.patch │ │ │ ├── 0030-v6.6-arm64-dts-Add-ipq5018-SoC-and-rdp432-c2-board-suppo.patch │ │ │ ├── 0033-v6.2-arm64-dts-qcom-ipq6018-move-ARMv8-timer-out-of-SoC.patch │ │ │ ├── 0034-v6.3-arm64-dts-qcom-ipq6018-Sort-nodes-properly.patch │ │ │ ├── 0035-v6.3-arm64-dts-qcom-ipq6018-Add-remove-some-newlines.patch │ │ │ ├── 0036-v6.3-arm64-dts-qcom-ipq6018-Use-lowercase-hex.patch │ │ │ ├── 0037-v6.3-arm64-dts-qcom-ipq6018-align-RPM-G-Link-node-with.patch │ │ │ ├── 0038-v6.4-arm64-dts-qcom-ipq6018-cp01-c1-drop-SPI-cs-select.patch │ │ │ ├── 0039-v6.5-arm64-dts-qcom-add-few-more-reserved-memory-region.patch │ │ │ ├── 0040-v6.5-arm64-dts-qcom-enable-the-download-mode-support.patch │ │ │ ├── 0041-v6.5-arm64-dts-qcom-ipq6018-correct-qrng-unit-address.patch │ │ │ ├── 0042-v6.5-arm64-dts-qcom-ipq6018-add-unit-address-to-soc-node.patch │ │ │ ├── 0043-v6.5-arm64-dts-qcom-ipq6018-add-QFPROM-node.patch │ │ │ ├── 0044-v6.5-arm64-dts-qcom-ipq6018-drop-incorrect-SPI-bus.patch │ │ │ ├── 0045-v6.5-arm64-dts-qcom-ipq8074-drop-incorrect-SPI-bus.patch │ │ │ ├── 0046-v6.6-clk-qcom-gcc-ipq6018-Use-floor-ops-for-sdcc-clocks.patch │ │ │ ├── 0047-v6.6-clk-qcom-gcc-ipq6018-drop-redundant-F-define.patch │ │ │ ├── 0048-v6.6-clk-qcom-gcc-ipq6018-update-UBI32-PLL.patch │ │ │ ├── 0049-v6.6-clk-qcom-gcc-ipq6018-remove-duplicate-initializers.patch │ │ │ ├── 0050-v6.6-soc-qcom-Add-RPM-processor-subsystem-driver.patch │ │ │ ├── 0051-v6.6-arm64-dts-qcom-Add-rpm-proc-node-for-GLINK.patch │ │ │ ├── 0052-v6.7-arm64-dts-qcom-ipq6018-include-the-GPLL0-as.patch │ │ │ ├── 0053-v6.7-clk-qcom-gcc-ipq6018-add-QUP6-I2C-clock.patch │ │ │ ├── 0054-v6.8-arm64-dts-qcom-ipq6018-use-CPUFreq-NVMEM.patch │ │ │ ├── 0055-v6.13-arm64-dts-qcom-ipq-change-labels-to-lower-case.patch │ │ │ ├── 0100-clk-qcom-clk-rcg2-introduce-support-for-multiple-con.patch │ │ │ ├── 0101-clk-qcom-gcc-ipq8074-rework-nss_port5-6-clock-to-mul.patch │ │ │ ├── 0102-arm64-dts-ipq8074-add-reserved-memory-nodes.patch │ │ │ ├── 0103-hwspinlock-qcom-Remove-IPQ6018-SOC-specific-.patch │ │ │ ├── 0104-pwm-driver-for-qualcomm-ipq6018-pwm-block.patch │ │ │ ├── 0105-arm64-dts-qcom-ipq6018-add-pwm-node.patch │ │ │ ├── 0109-arm64-dts-ipq6018-Add-remaining-QUP-UART-node.patch │ │ │ ├── 0110-arm64-dts-qcom-ipq8074-pass-QMP-PCI-PHY-PIPE-clocks-.patch │ │ │ ├── 0111-arm64-dts-qcom-ipq8074-use-msi-parent-for-PCIe.patch │ │ │ ├── 0112-remoteproc-qcom-Add-PRNG-proxy-clock.patch │ │ │ ├── 0113-remoteproc-qcom-Add-secure-PIL-support.patch │ │ │ ├── 0114-remoteproc-qcom-Add-support-for-split-q6-m3-wlan-fir.patch │ │ │ ├── 0115-remoteproc-qcom-Add-ssr-subdevice-identifier.patch │ │ │ ├── 0116-remoteproc-qcom-Update-regmap-offsets-for-halt-regis.patch │ │ │ ├── 0117-dt-bindings-clock-qcom-Add-reset-for-WCSSAON.patch │ │ │ ├── 0118-clk-qcom-Add-WCSSAON-reset.patch │ │ │ ├── 0119-remoteproc-wcss-disable-auto-boot-for-IPQ8074.patch │ │ │ ├── 0120-arm64-dts-qcom-Enable-Q6v5-WCSS-for-ipq8074-SoC.patch │ │ │ ├── 0121-arm64-dts-ipq8074-Add-WLAN-node.patch │ │ │ ├── 0122-arm64-dts-ipq8074-add-CPU-clock.patch │ │ │ ├── 0123-arm64-dts-ipq8074-add-cooling-cells-to-CPU-nodes.patch │ │ │ ├── 0129-arm64-dts-qcom-ipq8074-add-QFPROM-fuses.patch │ │ │ ├── 0130-arm64-dts-qcom-ipq8074-add-CPU-OPP-table.patch │ │ │ ├── 0131-remoteproc-wcss-Add-ipq6018-support-in-remoteproc.patch │ │ │ ├── 0132-ipq6018-rproc-Add-non-secure-Q6-bringup-sequence.patch │ │ │ ├── 0133-arm64-dts-ipq6018-Add-WLAN-node.patch │ │ │ ├── 0133-arm64-dts-ipq6018-add-reserved-memory-nodes.patch │ │ │ ├── 0135-arm64-dts-qcom-ipq6018-enable-sdhci-node.patch │ │ │ ├── 0136-arm64-dts-qcom-ipq6018-add-thermal-nodes.patch │ │ │ ├── 0137-arm64-dts-qcom-ipq6018-rework-cpufreq.patch │ │ │ ├── 0138-clk-qcom-gcc-ipq6018-workaround-ssdk.patch │ │ │ ├── 0139-clk-ipq6018-Add-missing-clocks.patch │ │ │ ├── 0400-mtd-rawnand-add-support-for-TH58NYG3S0HBAI4.patch │ │ │ ├── 0600-1-qca-nss-ecm-support-CORE.patch │ │ │ ├── 0600-2-qca-nss-ecm-support-PPPOE-offload.patch │ │ │ ├── 0600-3-qca-nss-ecm-support-net-bonding.patch │ │ │ ├── 0600-4-qca-nss-ecm-support-net-bonding-over-LAG.patch │ │ │ ├── 0600-5-qca-nss-ecm-support-macvlan.patch │ │ │ ├── 0600-6-qca-nss-ecm-support-netfilter-DSCPREMARK.patch │ │ │ ├── 0600-7-qca-nss-ecm-add-missing-net-defines.patch │ │ │ ├── 0600-8-qca-nss-ecm-support-MLO-bonding.patch │ │ │ ├── 0601-qca-add-nss-bridge-mgr-support.patch │ │ │ ├── 0602-qca-nss-drv-add-qdisc-support.patch │ │ │ ├── 0603-1-qca-nss-clients-add-qdisc-support.patch │ │ │ ├── 0603-2-qca-nss-clients-add-l2tp-support.patch │ │ │ ├── 0603-3-qca-nss-clients-add-PPTP-support.patch │ │ │ ├── 0603-4-qca-nss-clients-add-iptunnel-support.patch │ │ │ ├── 0603-5-qca-nss-clients-add-vxlan-support.patch │ │ │ ├── 0603-6-qca-nss-clients-add-l2tp-offloading-support.patch │ │ │ ├── 0603-7-qca-nss-clients-iptunnel-lock-this-cpu.patch │ │ │ ├── 0603-8-qca-nss-clients-add-tls-mgr-support.patch │ │ │ ├── 0604-qca-add-mcs-support.patch │ │ │ ├── 0605-qca-nss-cfi-support.patch │ │ │ ├── 0611-ipv6-Fix-null-pointer-dereference-in-ipv6-output.patch │ │ │ ├── 0900-power-Add-Qualcomm-APM.patch │ │ │ ├── 0901-regulator-add-Qualcomm-CPR-regulators.patch │ │ │ ├── 0902-arm64-dts-ipq8074-add-label-to-clocks.patch │ │ │ ├── 0903-arm64-dts-ipq6018-add-label-to-clocks.patch │ │ │ └── 0910-psci-dont-advertise-OSI-support-for-IPQ6018.patch │ │ ├── patches-6.12 │ │ │ ├── 0036-v6.13-arm64-dts-qcom-ipq-change-labels-to-lower-case.patch │ │ │ ├── 0037-v6.16-arm64-dts-qcom-ipq6018-add-1.2GHz-CPU-Frequency.patch │ │ │ ├── 0038-v6.16-arm64-dts-qcom-ipq6018-add-1.5GHz-CPU-Frequency.patch │ │ │ ├── 0039-v6.16-arm64-dts-qcom-ipq6018-move-mp5496-regulator-out-of-.patch │ │ │ ├── 0040-v6.16-arm64-dts-qcom-ipq6018-rename-labels-of-mp5496-regul.patch │ │ │ ├── 0041-v6.16-arm64-dts-qcom-ipq6018-add-LDOA2-regulator.patch │ │ │ ├── 0045-v6.16-phy-qcom-Introduce-PCIe-UNIPHY-28LP-driver.patch │ │ │ ├── 0046-v6.16-phy-qualcomm-qcom-uniphy-pcie-28LP-add-support-for-I.patch │ │ │ ├── 0047-v6.16-PCI-qcom-Add-support-for-IPQ5018.patch │ │ │ ├── 0048-v6.16-arm64-dts-qcom-ipq5018-Add-PCIe-related-nodes.patch │ │ │ ├── 0049-v6.16-arm64-dts-qcom-ipq5018-enable-the-download-mode-supp.patch │ │ │ ├── 0050-v6.15-thermal-drivers-tsens-Add-TSENS-enable-and-calibrati.patch │ │ │ ├── 0051-v6.16-thermal-drivers-qcom-tsens-Update-conditions-to-stri.patch │ │ │ ├── 0052-v6.16-thermal-drivers-qcom-tsens-Add-support-for-tsens-v1-.patch │ │ │ ├── 0053-v6.16-thermal-drivers-qcom-tsens-Add-support-for-IPQ5018-t.patch │ │ │ ├── 0055-v6.16-mtd-spinand-esmt-fix-id-code-for-F50D1G41LB.patch │ │ │ ├── 0102-arm64-dts-ipq8074-add-reserved-memory-nodes.patch │ │ │ ├── 0111-arm64-dts-qcom-ipq8074-use-msi-parent-for-PCIe.patch │ │ │ ├── 0112-remoteproc-qcom-Add-PRNG-proxy-clock.patch │ │ │ ├── 0113-remoteproc-qcom-Add-secure-PIL-support.patch │ │ │ ├── 0114-remoteproc-qcom-Add-support-for-split-q6-m3-wlan-fir.patch │ │ │ ├── 0115-remoteproc-qcom-Add-ssr-subdevice-identifier.patch │ │ │ ├── 0116-remoteproc-qcom-Update-regmap-offsets-for-halt-regis.patch │ │ │ ├── 0117-dt-bindings-clock-qcom-Add-reset-for-WCSSAON.patch │ │ │ ├── 0118-clk-qcom-Add-WCSSAON-reset.patch │ │ │ ├── 0119-remoteproc-wcss-disable-auto-boot-for-IPQ8074.patch │ │ │ ├── 0120-arm64-dts-qcom-Enable-Q6v5-WCSS-for-ipq8074-SoC.patch │ │ │ ├── 0121-arm64-dts-ipq8074-Add-WLAN-node.patch │ │ │ ├── 0122-arm64-dts-ipq8074-add-CPU-clock.patch │ │ │ ├── 0123-arm64-dts-ipq8074-add-cooling-cells-to-CPU-nodes.patch │ │ │ ├── 0129-arm64-dts-qcom-ipq8074-add-QFPROM-fuses.patch │ │ │ ├── 0130-arm64-dts-qcom-ipq8074-add-CPU-OPP-table.patch │ │ │ ├── 0135-arm64-dts-qcom-ipq6018-add-NSS-reserved-memory.patch │ │ │ ├── 0136-remoteproc-qcom-wcss-populate-driver-data-for-IPQ601.patch │ │ │ ├── 0138-arm64-dts-qcom-ipq6018-add-pwm-node.patch │ │ │ ├── 0140-dt-bindings-pwm-add-IPQ6018-binding.patch │ │ │ ├── 0141-pwm-driver-for-qualcomm-ipq6018-pwm-block.patch │ │ │ ├── 0150-arm64-dts-qcom-ipq5018-Add-tsens-node.patch │ │ │ ├── 0304-dt-bindings-pwm-add-IPQ5018-compatible.patch │ │ │ ├── 0305-pinctrl-qcom-IPQ5018-update-pwm-groups.patch │ │ │ ├── 0306-arm64-dts-qcom-ipq5018-Add-PWM-node.patch │ │ │ ├── 0324-arm64-dts-qcom-ipq5018-Add-crypto-nodes.patch │ │ │ ├── 0337-arm64-dts-qcom-ipq5018-Add-PRNG-node.patch │ │ │ ├── 0339-arm64-dts-qcom-ipq5018-Add-QUP1-UART2-node.patch │ │ │ ├── 0340-arm64-dts-qcom-ipq5018-Add-QUP3-I2C-node.patch │ │ │ ├── 0400-mtd-rawnand-add-support-for-TH58NYG3S0HBAI4.patch │ │ │ ├── 0401-spi-spi-qpic-snand-default-to-4-bit-ECC.patch │ │ │ ├── 0421-arm64-dts-qcom-ipq5018-Add-SPI-nand-node.patch │ │ │ ├── 0600-1-qca-nss-ecm-support-CORE.patch │ │ │ ├── 0600-2-qca-nss-ecm-support-PPPOE-offload.patch │ │ │ ├── 0600-3-qca-nss-ecm-support-net-bonding.patch │ │ │ ├── 0600-4-qca-nss-ecm-support-net-bonding-over-LAG-interface.patch │ │ │ ├── 0600-5-qca-nss-ecm-support-macvlan.patch │ │ │ ├── 0600-6-qca-nss-ecm-support-netfilter-DSCPREMARK.patch │ │ │ ├── 0600-7-qca-nss-ecm-fix-IPv6-user-route-change-event-calls.patch │ │ │ ├── 0601-1-qca-add-nss-bridge-mgr-support.patch │ │ │ ├── 0602-1-qca-nss-drv-add-qdisc-support.patch │ │ │ ├── 0603-1-qca-nss-clients-add-qdisc-support.patch │ │ │ ├── 0603-2-qca-nss-clients-add-l2tp-support.patch │ │ │ ├── 0603-3-qca-nss-clients-add-PPTP-support.patch │ │ │ ├── 0603-4-qca-nss-clients-add-iptunnel-support.patch │ │ │ ├── 0603-5-qca-nss-clients-add-vxlan-support.patch │ │ │ ├── 0603-6-qca-nss-clients-add-l2tp-offloading-support.patch │ │ │ ├── 0603-7-qca-nss-clients-iptunnel-lock-this-cpu.patch │ │ │ ├── 0603-8-qca-nss-clients-add-tls-mgr-support.patch │ │ │ ├── 0604-1-qca-add-mcs-support.patch │ │ │ ├── 0605-1-qca-nss-cfi-support.patch │ │ │ ├── 0606-1-qca-nss-ecm-bridge-Fixes-for-Bridge-VLAN-Filtering.patch │ │ │ ├── 0701-dt-bindings-clock-qcom-Add-CMN-PLL-clock-controller-.patch │ │ │ ├── 0702-clk-qcom-Add-CMN-PLL-clock-controller-driver-for-IPQ.patch │ │ │ ├── 0703-clk-qcom-cmn-pll-add-IPQ5018-support.patch │ │ │ ├── 0704-arm64-dts-qcom-ipq5018-Add-ethernet-cmn-node.patch │ │ │ ├── 0711-clk-qcom-gcc-ipq5018-fix-ge-phy-reset.patch │ │ │ ├── 0712-net-phy-qcom-at803x-add-qualcomm-ipq5018-internal-phy-support.patch │ │ │ ├── 0713-arm64-dts-qcom-ipq5018-add-mdio-buses.patch │ │ │ ├── 0714-arm64-dts-qcom-ipq5018-add-ge-phy-to-internal-mdio-bus.patch │ │ │ ├── 0715-arm64-dts-qcom-ipq5018-add-vendor-compatible-to-mdio-node.patch │ │ │ ├── 0721-clk-gcc-ipq5018-remove-the-unsupported-clk-combinati.patch │ │ │ ├── 0722-clk-qcom-gcc-ipq5018-refer-to-uniphy-rx-and-tx-clk-providers-by-name.patch │ │ │ ├── 0751-net-dsa-qca8k-always-enable-SGMII-auto-negotiation.patch │ │ │ ├── 0752-net-dsa-qca8k-support-PHY-to-PHY-CPU-link.patch │ │ │ ├── 0801-dt-bindings-remoteproc-qcom-Add-support-for-multipd-model.patch │ │ │ ├── 0802-firmware-qcom_scm-ipq5332-add-support-to-pass-metada.patch │ │ │ ├── 0803-firmware-qcom_scm-ipq5332-add-msa-lock-unlock-suppor.patch │ │ │ ├── 0804-remoteproc-qcom-q6v5-Add-multipd-interrupts-support.patch │ │ │ ├── 0805-remoteproc-qcom-Add-Hexagon-based-multipd-rproc-driv.patch │ │ │ ├── 0806-rproc-qcom_q6v5_mpd-split-q6_wcss-to-rootpd-and-user.patch │ │ │ ├── 0807-remoteproc-qcom_q6v5_mpd-fix-incorrent-use-of-rproc-.patch │ │ │ ├── 0811-firmware-qcom_scm-support-MPD.patch │ │ │ ├── 0812-soc-qcom-mdt_loader-support-MPD.patch │ │ │ ├── 0813-remoteproc-qcom_q6v5_mpd-enable-clocks.patch │ │ │ ├── 0814-remoteproc-qcom_q6v5_mpd-support-ipq5018.patch │ │ │ ├── 0815-remoteproc-qcom_q6v5_mpd-add-support-for-passing-v1-bootargs.patch │ │ │ ├── 0816-arm64-dts-qcom-ipq5018-add-wifi-support.patch │ │ │ ├── 0817-arm64-dts-qcom-ipq5018-add-tz_apps-reserved-memory-region.patch │ │ │ ├── 0820-dt-bindings-net-wireless-ath11k-add-bindings-for-QCN6122.patch │ │ │ ├── 0900-power-Add-Qualcomm-APM.patch │ │ │ ├── 0901-regulator-add-Qualcomm-CPR-regulators.patch │ │ │ ├── 0902-arm64-dts-ipq8074-add-label-to-clocks.patch │ │ │ ├── 0903-psci-dont-advertise-OSI-support-for-IPQ6018.patch │ │ │ ├── 0904-clk-qcom-ipq6018-workaround-networking-clock-parenti.patch │ │ │ ├── 0905-remoteproc-q6v5_wcss-change-ssr-name-for-ipq6018-wif.patch │ │ │ ├── 0906-arm64-dts-qcom-ipq6018-add-wifi-node.patch │ │ │ ├── 0907-soc-qcom-fix-smp2p-ack-on-ipq6018.patch │ │ │ ├── 0908-remoteproc-qcom_q6v5_wcss-add-optional-qdss_at-clock.patch │ │ │ ├── 0909-arm64-dts-qcom-ipq6018-assign-QDSS_AT-clock-to-wifi-.patch │ │ │ ├── 0910-arm64-dts-ipq6018-add-label-to-clocks.patch │ │ │ └── 0911-arm64-cmdline-replacement.patch │ │ └── patches-6.6 │ │ │ ├── 0001-v6.7-dt-bindings-arm-qcom-ids-Add-IDs-for-IPQ8174-family.patch │ │ │ ├── 0002-v6.7-cpufreq-qcom-nvmem-add-support-for-IPQ6018.patch │ │ │ ├── 0003-v6.7-cpufreq-qcom-nvmem-add-support-for-IPQ8074.patch │ │ │ ├── 0004-v6.7-clk-qcom-apss-ipq6018-add-the-GPLL0-clock-also-as-cl.patch │ │ │ ├── 0005-v6.7-arm64-dts-qcom-ipq8074-include-the-GPLL0-as-clock-pr.patch │ │ │ ├── 0006-v6.7-arm64-dts-qcom-ipq6018-include-the-GPLL0-as.patch │ │ │ ├── 0007-v6.7-clk-qcom-gcc-ipq6018-add-QUP6-I2C-clock.patch │ │ │ ├── 0008-v6.8-arm64-dts-qcom-ipq6018-use-CPUFreq-NVMEM.patch │ │ │ ├── 0009-v6.8-arm64-dts-ipq6018-Add-remaining-QUP-UART-node.patch │ │ │ ├── 0010-v6.9-arm64-dts-qcom-Fix-hs_phy_irq-for-QUSB2-targets.patch │ │ │ ├── 0011-v6.8-hwspinlock-qcom-Remove-IPQ6018-SOC-specific-.patch │ │ │ ├── 0012-v6.9-arm64-dts-qcom-ipq6018-add-tsens-node.patch │ │ │ ├── 0013-v6.9-arm64-dts-qcom-ipq6018-add-thermal-zones.patch │ │ │ ├── 0014-v6.9-clk-qcom-gcc-ipq6018-add-qdss_at-clock-needed-for-wi.patch │ │ │ ├── 0015-v6.8-phy-qcom-qmp-usb-fix-serdes-init-sequence-for-IPQ6018.patch │ │ │ ├── 0016-v6.8-arm64-dts-qcom-ipq8074-Add-QUP4-SPI-node.patch │ │ │ ├── 0017-v6.9-arm64-dts-qcom-ipq8074-Remove-unused-gpio-from-QPIC-.patch │ │ │ ├── 0018-v6.7-arm64-dts-qcom-ipq5018-add-watchdog.patch │ │ │ ├── 0019-v6.7-dt-bindings-firmware-qcom-scm-support-indicating-SDI-default-state.patch │ │ │ ├── 0020-v6.7-firmware-qcom-scm-disable-SDI-if-required.patch │ │ │ ├── 0021-v6.7-dt-bindings-qcom-scm-document-IPQ5018-compatible.patch │ │ │ ├── 0022-v6.7-arm64-dts-qcom-IPQ5018-indicate-that-SDI-shoud-be-disabled.patch │ │ │ ├── 0023-v6.7-dt-bindings-phy-qcom-m31-Add-IPQ5018-compatible.patch │ │ │ ├── 0024-v6.7-phy-qcom-m31-Add-compatible-phy-init-sequence-for-IPQ5018.patch │ │ │ ├── 0025-v6.7-dt-bindings-usb-dwc3-Add-IPQ5018-compatible.patch │ │ │ ├── 0026-v6.8-arm64-dts-qcom-ipq5018-Add-USB-related-nodes.patch │ │ │ ├── 0027-v6.8-arm64-dts-qcom-ipq5018-add-QUP1-SPI-controller.patch │ │ │ ├── 0028-v6.8-dt-bindings-clock-qcom-a53pll-add-IPQ5018-compatible.patch │ │ │ ├── 0029-v6.8-clk-qcom-apss-ipq-pll-add-support-for-IPQ5018.patch │ │ │ ├── 0030-v6.8-arm64-dts-qcom-ipq5018-enable-the-CPUFreq-support.patch │ │ │ ├── 0031-v6.8-arm64-dts-qcom-ipq5018-add-few-more-reserved-memory-regions.patch │ │ │ ├── 0032-v6.10-clk-qcom-apss-ipq-pll-use-stromer-ops-for-IPQ5018-to-fix-boot-failure.patch │ │ │ ├── 0033-v6.10-clk-qcom-apss-ipq-pll-fix-PLL-rate-for-IPQ5018.patch │ │ │ ├── 0034-v6.11-clk-qcom-gcc-ipq6018-update-sdcc-max-clock-frequency.patch │ │ │ ├── 0035-v6.11-arm64-dts-qcom-ipq6018-add-sdhci-node.patch │ │ │ ├── 0036-v6.13-arm64-dts-qcom-ipq-change-labels-to-lower-case.patch │ │ │ ├── 0037-v6.16-arm64-dts-qcom-ipq6018-add-1.2GHz-CPU-Frequency.patch │ │ │ ├── 0038-v6.16-arm64-dts-qcom-ipq6018-add-1.5GHz-CPU-Frequency.patch │ │ │ ├── 0039-v6.16-arm64-dts-qcom-ipq6018-move-mp5496-regulator-out-of-.patch │ │ │ ├── 0040-v6.16-arm64-dts-qcom-ipq6018-rename-labels-of-mp5496-regul.patch │ │ │ ├── 0042-v6.10-clk-qcom-clk-rcg-introduce-support-for-multiple-conf.patch │ │ │ ├── 0043-v6.10-clk-qcom-clk-rcg2-add-support-for-rcg2-freq-multi-op.patch │ │ │ ├── 0044-v6.10-clk-qcom-gcc-ipq8074-rework-nss_port5-6-clock-to-mul.patch │ │ │ ├── 0045-v6.7-arm64-dts-qcom-ipq8074-switch-PCIe-QMP-PHY-to-new-st.patch │ │ │ ├── 0046-v6.8-arm64-dts-qcom-ipq8074-pass-QMP-PCI-PHY-PIPE-clocks-.patch │ │ │ ├── 0047-v6.11-PCI-qcom-Use-devm_clk_bulk_get_all-API.patch │ │ │ ├── 0048-v6.16-PCI-qcom-Add-support-for-IPQ5018.patch │ │ │ ├── 0102-arm64-dts-ipq8074-add-reserved-memory-nodes.patch │ │ │ ├── 0111-arm64-dts-qcom-ipq8074-use-msi-parent-for-PCIe.patch │ │ │ ├── 0112-remoteproc-qcom-Add-PRNG-proxy-clock.patch │ │ │ ├── 0113-remoteproc-qcom-Add-secure-PIL-support.patch │ │ │ ├── 0114-remoteproc-qcom-Add-support-for-split-q6-m3-wlan-fir.patch │ │ │ ├── 0115-remoteproc-qcom-Add-ssr-subdevice-identifier.patch │ │ │ ├── 0116-remoteproc-qcom-Update-regmap-offsets-for-halt-regis.patch │ │ │ ├── 0117-dt-bindings-clock-qcom-Add-reset-for-WCSSAON.patch │ │ │ ├── 0118-clk-qcom-Add-WCSSAON-reset.patch │ │ │ ├── 0119-remoteproc-wcss-disable-auto-boot-for-IPQ8074.patch │ │ │ ├── 0120-arm64-dts-qcom-Enable-Q6v5-WCSS-for-ipq8074-SoC.patch │ │ │ ├── 0121-arm64-dts-ipq8074-Add-WLAN-node.patch │ │ │ ├── 0122-arm64-dts-ipq8074-add-CPU-clock.patch │ │ │ ├── 0123-arm64-dts-ipq8074-add-cooling-cells-to-CPU-nodes.patch │ │ │ ├── 0129-arm64-dts-qcom-ipq8074-add-QFPROM-fuses.patch │ │ │ ├── 0130-arm64-dts-qcom-ipq8074-add-CPU-OPP-table.patch │ │ │ ├── 0135-arm64-dts-qcom-ipq6018-add-NSS-reserved-memory.patch │ │ │ ├── 0136-remoteproc-qcom-wcss-populate-driver-data-for-IPQ601.patch │ │ │ ├── 0138-arm64-dts-qcom-ipq6018-add-pwm-node.patch │ │ │ ├── 0140-dt-bindings-pwm-add-IPQ6018-binding.patch │ │ │ ├── 0141-pwm-driver-for-qualcomm-ipq6018-pwm-block.patch │ │ │ ├── 0142-dt-bindings-mfd-qcom-tcsr-Add-simple-mfd-support-for-IPQ6018.patch │ │ │ ├── 0150-dt-bindings-nvmem-add-IPQ5018-compatible.patch │ │ │ ├── 0151-dt-bindings-thermal-qcom-tsens-Add-ipq5018-compatible.patch │ │ │ ├── 0152-thermal-qcom-add-new-feat-for-soc-without-rpm.patch │ │ │ ├── 0153-thermal-qcom-tsens-add-support-for-IPQ5018-tsens.patch │ │ │ ├── 0154-dts-qcom-IPQ5018-add-tsens-node.patch │ │ │ ├── 0155-dt-bindings-phy-qcom-uniphy-pcie-Document-PCIe-uniphy.patch │ │ │ ├── 0156-phy-qcom-Introduce-PCIe-UNIPHY-28LP-driver.patch │ │ │ ├── 0157-dt-bindings-phy-qcom-uniphy-pcie-add-IPQ5018-compatible.patch │ │ │ ├── 0158-phy-qcom-uniphy-pcie-28lp-add-support-for-IPQ5018.patch │ │ │ ├── 0162-arm64-dts-qcom-ipq5018-Add-PCIe-related-nodes.patch │ │ │ ├── 0301-dt-bindings-mfd-qcom-tcsr-add-IPQ5018-compatible.patch │ │ │ ├── 0302-arm64-dts-qcom-IPQ5018-add-TCSR-node.patch │ │ │ ├── 0303-arm64-dts-qcom-IPQ5018-enable-the-download-mode-support.patch │ │ │ ├── 0304-dt-bindings-pwm-add-IPQ5018-compatible.patch │ │ │ ├── 0305-pinctrl-qcom-IPQ5018-update-pwm-groups.patch │ │ │ ├── 0306-arm64-dts-qcom-ipq5018-Add-PWM-node.patch │ │ │ ├── 0324-arm64-dts-qcom-ipq5018-Add-crypto-nodes.patch │ │ │ ├── 0337-arm64-dts-qcom-ipq5018-Add-PRNG-node.patch │ │ │ ├── 0339-arm64-dts-qcom-ipq5018-Add-QUP1-UART2-node.patch │ │ │ ├── 0340-arm64-dts-qcom-ipq5018-Add-QUP3-I2C-node.patch │ │ │ ├── 0400-mtd-rawnand-add-support-for-TH58NYG3S0HBAI4.patch │ │ │ ├── 0401-spi-spi-qpic-snand-default-to-4-bit-ECC.patch │ │ │ ├── 0421-arm64-dts-qcom-ipq5018-Add-SPI-nand-node.patch │ │ │ ├── 0600-1-qca-nss-ecm-support-CORE.patch │ │ │ ├── 0600-2-qca-nss-ecm-support-PPPOE-offload.patch │ │ │ ├── 0600-3-qca-nss-ecm-support-net-bonding.patch │ │ │ ├── 0600-4-qca-nss-ecm-support-net-bonding-over-LAG-interface.patch │ │ │ ├── 0600-5-qca-nss-ecm-support-macvlan.patch │ │ │ ├── 0600-6-qca-nss-ecm-support-netfilter-DSCPREMARK.patch │ │ │ ├── 0600-7-qca-nss-ecm-fix-IPv6-user-route-change-event-calls.patch │ │ │ ├── 0601-1-qca-add-nss-bridge-mgr-support.patch │ │ │ ├── 0602-1-qca-nss-drv-add-qdisc-support.patch │ │ │ ├── 0603-1-qca-nss-clients-add-qdisc-support.patch │ │ │ ├── 0603-2-qca-nss-clients-add-l2tp-support.patch │ │ │ ├── 0603-3-qca-nss-clients-add-PPTP-support.patch │ │ │ ├── 0603-4-qca-nss-clients-add-iptunnel-support.patch │ │ │ ├── 0603-5-qca-nss-clients-add-vxlan-support.patch │ │ │ ├── 0603-6-qca-nss-clients-add-l2tp-offloading-support.patch │ │ │ ├── 0603-7-qca-nss-clients-iptunnel-lock-this-cpu.patch │ │ │ ├── 0603-8-qca-nss-clients-add-tls-mgr-support.patch │ │ │ ├── 0604-1-qca-add-mcs-support.patch │ │ │ ├── 0605-1-qca-nss-cfi-support.patch │ │ │ ├── 0606-1-qca-nss-ecm-bridge-Fixes-for-Bridge-VLAN-Filtering.patch │ │ │ ├── 0701-dt-bindings-clock-qcom-Add-CMN-PLL-clock-controller-.patch │ │ │ ├── 0702-clk-qcom-Add-CMN-PLL-clock-controller-driver-for-IPQ.patch │ │ │ ├── 0703-clk-qcom-cmn-pll-add-IPQ5018-support.patch │ │ │ ├── 0704-arm64-dts-qcom-ipq5018-Add-ethernet-cmn-node.patch │ │ │ ├── 0711-net-phy-qcom-Introduce-IPQ5018-internal-PHY-driver.patch │ │ │ ├── 0712-arm64-dts-qcom-ipq5018-add-mdio-node.patch │ │ │ ├── 0713-arm64-dts-qcom-ipq5018-add-ge_phy-node.patch │ │ │ ├── 0714-net-phy-qcom-IPQ5018-enable-configuration-of-DAC-settings.patch │ │ │ ├── 0715-net-phy-qcom-add-IPQ5018-initvals-and-CDT-feature.patch │ │ │ ├── 0721-clk-gcc-ipq5018-remove-the-unsupported-clk-combinati.patch │ │ │ ├── 0722-clk-gcc-ipq5018-refer-to-ge-phy-rx-and-tx-clk-providers-by-name.patch │ │ │ ├── 0751-net-dsa-qca8k-always-enable-SGMII-auto-negotiation.patch │ │ │ ├── 0752-net-dsa-qca8k-support-PHY-to-PHY-CPU-link.patch │ │ │ ├── 0801-dt-bindings-remoteproc-qcom-Add-support-for-multipd-model.patch │ │ │ ├── 0802-firmware-qcom_scm-ipq5332-add-support-to-pass-metada.patch │ │ │ ├── 0803-firmware-qcom_scm-ipq5332-add-msa-lock-unlock-suppor.patch │ │ │ ├── 0804-remoteproc-qcom-q6v5-Add-multipd-interrupts-support.patch │ │ │ ├── 0805-remoteproc-qcom-Add-Hexagon-based-multipd-rproc-driv.patch │ │ │ ├── 0806-rproc-qcom_q6v5_mpd-split-q6_wcss-to-rootpd-and-user.patch │ │ │ ├── 0807-remoteproc-qcom_q6v5_mpd-fix-incorrent-use-of-rproc-.patch │ │ │ ├── 0811-firmware-qcom_scm-support-MPD.patch │ │ │ ├── 0812-soc-qcom-mdt_loader-support-MPD.patch │ │ │ ├── 0813-remoteproc-qcom_q6v5_mpd-enable-clocks.patch │ │ │ ├── 0814-remoteproc-qcom_q6v5_mpd-support-ipq5018.patch │ │ │ ├── 0815-remoteproc-qcom_q6v5_mpd-add-support-for-passing-v1-bootargs.patch │ │ │ ├── 0816-arm64-dts-qcom-ipq5018-add-wifi-support.patch │ │ │ ├── 0817-arm64-dts-qcom-ipq5018-add-tz_apps-reserved-memory-region.patch │ │ │ ├── 0820-dt-bindings-net-wireless-ath11k-add-bindings-for-QCN6122.patch │ │ │ ├── 0900-power-Add-Qualcomm-APM.patch │ │ │ ├── 0901-regulator-add-Qualcomm-CPR-regulators.patch │ │ │ ├── 0902-arm64-dts-ipq8074-add-label-to-clocks.patch │ │ │ ├── 0903-psci-dont-advertise-OSI-support-for-IPQ6018.patch │ │ │ ├── 0904-clk-qcom-ipq6018-workaround-networking-clock-parenti.patch │ │ │ ├── 0905-remoteproc-q6v5_wcss-change-ssr-name-for-ipq6018-wif.patch │ │ │ ├── 0906-arm64-dts-qcom-ipq6018-add-wifi-node.patch │ │ │ ├── 0907-soc-qcom-fix-smp2p-ack-on-ipq6018.patch │ │ │ ├── 0908-remoteproc-qcom_q6v5_wcss-add-optional-qdss_at-clock.patch │ │ │ ├── 0909-arm64-dts-qcom-ipq6018-assign-QDSS_AT-clock-to-wifi-.patch │ │ │ ├── 0910-arm64-dts-ipq6018-add-label-to-clocks.patch │ │ │ └── 0911-arm64-cmdline-replacement.patch │ ├── qualcommbe │ │ ├── Makefile │ │ ├── config-6.12 │ │ ├── image │ │ │ ├── Makefile │ │ │ └── ipq95xx.mk │ │ ├── ipq95xx │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-default │ │ │ └── target.mk │ │ └── patches-6.12 │ │ │ ├── 0002-v6.13-dt-bindings-PCI-qcom-Document-the-IPQ9574-PCIe.patch │ │ │ ├── 0004-v6.14-arm64-dts-qcom-ipq9574-Add-PCIe-PHYs-and-contr.patch │ │ │ ├── 0005-v6.14-arm64-dts-qcom-ipq9574-Enable-PCIe-PHYs-and-co.patch │ │ │ ├── 0006-v6.14-dt-bindings-clock-qcom-Add-CMN-PLL-clock-contr.patch │ │ │ ├── 0007-v6.14-clk-qcom-Add-CMN-PLL-clock-controller-driver-f.patch │ │ │ ├── 0008-v6.14-arm64-dts-qcom-ipq9574-Add-CMN-PLL-node.patch │ │ │ ├── 0009-v6.14-arm64-dts-qcom-ipq9574-Update-xo_board_clk-to-.patch │ │ │ ├── 0016-v6.15-spi-dt-bindings-Introduce-qcom-spi-qpic-snand.patch │ │ │ ├── 0018-v6.15-dt-bindings-clock-gcc-ipq9574-Add-definition-f.patch │ │ │ ├── 0019-v6.15-dt-bindings-clock-Add-ipq9574-NSSCC-clock-and-.patch │ │ │ ├── 0020-v6.15-clk-qcom-gcc-ipq9574-Add-support-for-gpll0_out.patch │ │ │ ├── 0021-v6.15-clk-qcom-Add-NSS-clock-Controller-driver-for-I.patch │ │ │ ├── 0022-v6.15-arm64-defconfig-Build-NSS-Clock-Controller-dri.patch │ │ │ ├── 0100-arm64-dts-qcom-ipq9574-Add-nsscc-node.patch │ │ │ ├── 0101-arm64-dts-qcom-ipq9574-fix-the-msi-interrupt-numbers.patch │ │ │ ├── 0103-arm64-dts-qcom-ipq9574-Add-SPI-nand-support.patch │ │ │ ├── 0104-arm64-dts-qcom-ipq9574-Enable-SPI-NAND-for-ipq9574.patch │ │ │ ├── 0105-arm64-dts-qcom-ipq9574-Remove-eMMC-node.patch │ │ │ ├── 0301-arm64-dts-qcom-Add-IPQ9574-MDIO-device-node.patch │ │ │ ├── 0302-arm64-dts-qcom-ipq9574-Use-usb-phy-for-node-names.patch │ │ │ ├── 0304-arm64-dts-qcom-ipq9574-add-QPIC-SPI-NAND-default-par.patch │ │ │ ├── 0305-arm64-dts-qcom-add-partition-table-for-ipq9574-rdp-c.patch │ │ │ ├── 0306-dt-bindings-net-Document-Qualcomm-QCA8084-PHY-packag.patch │ │ │ ├── 0307-net-phy-qca808x-Add-QCA8084-ethernet-phy-support.patch │ │ │ ├── 0308-net-phy-qca808x-Add-config_init-function-for-QCA8084.patch │ │ │ ├── 0309-net-phy-qca808x-Add-link_change_notify-function-for-.patch │ │ │ ├── 0310-net-phy-qca808x-Add-register-access-support-routines.patch │ │ │ ├── 0311-net-phy-qca808x-Add-QCA8084-probe-function.patch │ │ │ ├── 0312-net-phy-qca808x-Add-package-clocks-and-resets-for-QC.patch │ │ │ ├── 0313-net-phy-qca808x-Add-QCA8084-package-init-function.patch │ │ │ ├── 0314-dt-bindings-net-pcs-Add-Ethernet-PCS-for-Qualcomm-IP.patch │ │ │ ├── 0315-net-pcs-Add-PCS-driver-for-Qualcomm-IPQ9574-SoC.patch │ │ │ ├── 0316-net-pcs-qcom-ipq9574-Add-PCS-instantiation-and-phyli.patch │ │ │ ├── 0317-net-pcs-qcom-ipq9574-Add-USXGMII-interface-mode-supp.patch │ │ │ ├── 0318-MAINTAINERS-Add-maintainer-for-Qualcomm-IPQ9574-PCS-.patch │ │ │ ├── 0319-net-pcs-qcom-ipq9574-remove-neg_mode-argument-from-i.patch │ │ │ ├── 0320-net-pcs-qcom-ipq9574-delay-mii-clock-probing-until-i.patch │ │ │ ├── 0321-net-pcs-qcom-ipq9574-add-changes-not-submitted-upstr.patch │ │ │ ├── 0322-arm64-dts-qcom-ipq9574-add-PCS-uniphy-nodes.patch │ │ │ ├── 0323-dt-bindings-net-Add-PPE-for-Qualcomm-IPQ9574-SoC.patch │ │ │ ├── 0324-docs-networking-Add-PPE-driver-documentation-for-Qua.patch │ │ │ ├── 0325-net-ethernet-qualcomm-Add-PPE-driver-for-IPQ9574-SoC.patch │ │ │ ├── 0326-net-ethernet-qualcomm-Initialize-PPE-buffer-manageme.patch │ │ │ ├── 0327-net-ethernet-qualcomm-Initialize-PPE-queue-managemen.patch │ │ │ ├── 0328-net-ethernet-qualcomm-Initialize-the-PPE-scheduler-s.patch │ │ │ ├── 0329-net-ethernet-qualcomm-Initialize-PPE-queue-settings.patch │ │ │ ├── 0330-net-ethernet-qualcomm-Initialize-PPE-service-code-se.patch │ │ │ ├── 0331-net-ethernet-qualcomm-Initialize-PPE-port-control-se.patch │ │ │ ├── 0332-net-ethernet-qualcomm-Initialize-PPE-RSS-hash-settin.patch │ │ │ ├── 0333-net-ethernet-qualcomm-Initialize-PPE-queue-to-Ethern.patch │ │ │ ├── 0334-net-ethernet-qualcomm-Initialize-PPE-L2-bridge-setti.patch │ │ │ ├── 0335-net-ethernet-qualcomm-Add-PPE-debugfs-support-for-PP.patch │ │ │ ├── 0336-MAINTAINERS-Add-maintainer-for-Qualcomm-PPE-driver.patch │ │ │ ├── 0337-net-ethernet-qualcomm-Add-PPE-scheduler-config.patch │ │ │ ├── 0338-net-ethernet-qualcomm-Add-phylink-support-for-PPE-MA.patch │ │ │ ├── 0339-net-ethernet-qualcomm-Add-PPE-port-MAC-MIB-statistic.patch │ │ │ ├── 0340-net-ethernet-qualcomm-Add-PPE-port-MAC-address-and-E.patch │ │ │ ├── 0341-net-ethernet-qualcomm-Add-API-to-configure-PPE-port-.patch │ │ │ ├── 0342-net-ethernet-qualcomm-Add-EDMA-support-for-QCOM-IPQ9.patch │ │ │ ├── 0343-net-ethernet-qualcomm-Add-netdevice-support-for-QCOM.patch │ │ │ ├── 0344-net-ethernet-qualcomm-Add-Rx-Ethernet-DMA-support.patch │ │ │ ├── 0345-net-ethernet-qualcomm-Add-Tx-Ethernet-DMA-support.patch │ │ │ ├── 0346-net-ethernet-qualcomm-Add-miscellaneous-error-interr.patch │ │ │ ├── 0347-net-ethernet-qualcomm-Add-ethtool-support-for-EDMA.patch │ │ │ ├── 0348-net-ethernet-qualcomm-Add-module-parameters-for-driv.patch │ │ │ ├── 0349-net-ethernet-qualcomm-Add-sysctl-for-RPS-bitmap.patch │ │ │ ├── 0350-net-ethernet-qualcomm-Add-support-for-label-property.patch │ │ │ ├── 0351-net-ethernet-qualcomm-ppe-Fix-unmet-dependency-with-.patch │ │ │ ├── 0352-net-ethernet-qualcomm-ppe-select-correct-PCS-depende.patch │ │ │ ├── 0353-arm64-dts-qcom-Add-IPQ9574-PPE-base-device-node.patch │ │ │ ├── 0354-arm64-dts-qcom-Add-EDMA-node-for-IPQ9574.patch │ │ │ ├── 0355-arm64-dts-qcom-Add-IPQ9574-RDP433-port-node.patch │ │ │ ├── 0356-arm64-dts-qcom-add-AQR-NVMEM-node-for-IPQ9574-RDP433.patch │ │ │ ├── 0357-arm64-dts-qcom-Add-label-to-EDMA-port-for-IPQ9574-RD.patch │ │ │ ├── 0358-clk-qcom-nsscc-Attach-required-NSSNOC-clock-to-PM-do.patch │ │ │ ├── 0359-arm64-dts-qcom-ipq9574-add-NSSNOC-clock-to-nss-node.patch │ │ │ ├── 0360-clk-qcom-nsscc-ipq9574-fix-port5-clock-config.patch │ │ │ ├── 0361-net-pcs-Add-10GBASER-interface-mode-support-to-IPQ-U.patch │ │ │ ├── 0362-net-pcs-Add-2500BASEX-interface-mode-support-to-IPQ-.patch │ │ │ ├── 0363-net-pcs-Add-1000BASEX-interface-mode-support-to-IPQ-.patch │ │ │ ├── 0364-net-pcs-Add-10G_QXGMII-interface-mode-support-to-IPQ.patch │ │ │ ├── 0365-net-pcs-ipq-uniphy-control-MISC2-register-for-2.5G-s.patch │ │ │ ├── 0366-net-pcs-ipq-uniphy-keep-autoneg-enabled-in-SGMII-mod.patch │ │ │ └── 0367-net-pcs-ipq-uniphy-fix-USXGMII-link-up-failure.patch │ ├── ramips │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── hotplug.d │ │ │ │ │ └── usb │ │ │ │ │ │ └── 10-motion │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 04_led_migration │ │ │ │ │ └── 09_fix-checksum │ │ │ └── sbin │ │ │ │ ├── getmac │ │ │ │ └── setmac │ │ ├── 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_bolt_bl201.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_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_hiwifi_r33.dts │ │ │ ├── mt7620a_hnet_c108.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_ex2700_wn3000rp-v3.dtsi │ │ │ ├── mt7620a_netgear_ex3700.dts │ │ │ ├── mt7620a_netgear_ex3x00_ex61xx.dtsi │ │ │ ├── mt7620a_netgear_ex6120.dts │ │ │ ├── mt7620a_netgear_ex6130.dts │ │ │ ├── mt7620a_netgear_wn3000rp-v3.dts │ │ │ ├── mt7620a_netis_wf2770.dts │ │ │ ├── mt7620a_ohyeah_oy-0001.dts │ │ │ ├── mt7620a_phicomm_k2g.dts │ │ │ ├── mt7620a_phicomm_k2x.dtsi │ │ │ ├── mt7620a_phicomm_psg1208.dts │ │ │ ├── mt7620a_phicomm_psg1218a.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_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-wn579x3.dts │ │ │ ├── mt7620a_xiaomi_miwifi-mini.dts │ │ │ ├── mt7620a_xiaomi_miwifi-r3.dts │ │ │ ├── mt7620a_youku_x2.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-turbo-plus.dts │ │ │ ├── mt7621_buffalo_wsr-1166dhp.dts │ │ │ ├── mt7621_buffalo_wsr-2533dhpl.dts │ │ │ ├── mt7621_buffalo_wsr-600dhp.dts │ │ │ ├── mt7621_c-life_xg1.dts │ │ │ ├── mt7621_cudy_wr1300.dts │ │ │ ├── mt7621_cudy_wr2100.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-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_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-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_fcj_g-ax1800-f.dts │ │ │ ├── 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_h3c_tx1800-plus.dts │ │ │ ├── mt7621_h3c_tx1801-plus.dts │ │ │ ├── mt7621_h3c_tx1806.dts │ │ │ ├── mt7621_h3c_tx180x.dtsi │ │ │ ├── mt7621_hatlab_gateboard-one.dts │ │ │ ├── mt7621_hilink_hlk-7621a.dts │ │ │ ├── mt7621_hiwifi_hc5962.dts │ │ │ ├── mt7621_ht-jsh_0211.dts │ │ │ ├── mt7621_huasifei_mt7621dtu.dts │ │ │ ├── mt7621_huasifei_ws1208v2.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-gx300gr.dts │ │ │ ├── mt7621_iodata_wn-xx-xr.dtsi │ │ │ ├── mt7621_iodata_wnpr2600g.dts │ │ │ ├── mt7621_iptime_a6ns-m.dts │ │ │ ├── mt7621_iptime_a8004t.dts │ │ │ ├── mt7621_jcg_jhr-ac876m.dts │ │ │ ├── mt7621_jcg_jhr-ac945m.dts │ │ │ ├── mt7621_jcg_q20.dts │ │ │ ├── mt7621_jcg_y2.dts │ │ │ ├── mt7621_jdcloud_re-cp-02.dts │ │ │ ├── mt7621_jdcloud_re-sp-01b.dts │ │ │ ├── mt7621_leigod_a7000.dts │ │ │ ├── mt7621_lenovo_newifi-d1.dts │ │ │ ├── mt7621_linksys_e5600.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_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_openfi_5pro.dts │ │ │ ├── mt7621_oraybox_x3a.dts │ │ │ ├── mt7621_phicomm_k2p.dts │ │ │ ├── mt7621_planex_vr500.dts │ │ │ ├── mt7621_raisecom_msg1500-x-00.dts │ │ │ ├── mt7621_raisecom_msg1500-z-00.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_re350-v1.dts │ │ │ ├── mt7621_tplink_re500-v1.dts │ │ │ ├── mt7621_tplink_re650-v1.dts │ │ │ ├── mt7621_tplink_rexx0-v1.dtsi │ │ │ ├── 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_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_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-cr660x.dts │ │ │ ├── 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_zbtlink_zbt-we1326.dts │ │ │ ├── mt7621_zbtlink_zbt-we3526.dts │ │ │ ├── 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_zte_e8820s.dts │ │ │ ├── mt7621_zyxel_nr7101.dts │ │ │ ├── mt7621_zyxel_wap6805.dts │ │ │ ├── mt7628an.dtsi │ │ │ ├── mt7628an_alfa-network_awusfree1.dts │ │ │ ├── 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_cudy_wr1000.dts │ │ │ ├── mt7628an_d-team_pbr-d1.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_hc5611.dts │ │ │ ├── mt7628an_hiwifi_hc5661a.dts │ │ │ ├── mt7628an_hiwifi_hc5761a.dts │ │ │ ├── mt7628an_hiwifi_hc5861b.dts │ │ │ ├── mt7628an_hiwifi_hc5x61a.dtsi │ │ │ ├── mt7628an_huasifei_shf283.dts │ │ │ ├── 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_netgear_r6020.dts │ │ │ ├── mt7628an_netgear_r6080.dts │ │ │ ├── mt7628an_netgear_r6120.dts │ │ │ ├── mt7628an_netgear_r6xxx.dtsi │ │ │ ├── mt7628an_nradio_wt6285.dts │ │ │ ├── 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_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-wn570ha1.dts │ │ │ ├── mt7628an_wavlink_wl-wn575a3.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-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 │ │ │ │ │ │ ├── mtk │ │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── mtk_eth_dbg.c │ │ │ │ │ │ │ ├── mtk_eth_dbg.h │ │ │ │ │ │ │ ├── mtk_eth_path.c │ │ │ │ │ │ │ ├── mtk_eth_reset.c │ │ │ │ │ │ │ ├── mtk_eth_reset.h │ │ │ │ │ │ │ ├── mtk_eth_soc.c │ │ │ │ │ │ │ ├── mtk_eth_soc.h │ │ │ │ │ │ │ ├── mtk_hnat │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── hnat.c │ │ │ │ │ │ │ │ ├── hnat.h │ │ │ │ │ │ │ │ ├── hnat_debugfs.c │ │ │ │ │ │ │ │ ├── hnat_mcast.c │ │ │ │ │ │ │ │ ├── hnat_mcast.h │ │ │ │ │ │ │ │ ├── hnat_nf_hook.c │ │ │ │ │ │ │ │ ├── hnat_stag.c │ │ │ │ │ │ │ │ └── nf_hnat_mtk.h │ │ │ │ │ │ │ └── mtk_sgmii.c │ │ │ │ │ │ └── ralink │ │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── esw_rt3050.c │ │ │ │ │ │ │ ├── esw_rt3050.h │ │ │ │ │ │ │ ├── ethtool.c │ │ │ │ │ │ │ ├── ethtool.h │ │ │ │ │ │ │ ├── gsw_mt7620.c │ │ │ │ │ │ │ ├── gsw_mt7620.h │ │ │ │ │ │ │ ├── gsw_mt7621.c │ │ │ │ │ │ │ ├── mdio.c │ │ │ │ │ │ │ ├── mdio.h │ │ │ │ │ │ │ ├── mdio_mt7620.c │ │ │ │ │ │ │ ├── mdio_rt2880.c │ │ │ │ │ │ │ ├── mdio_rt2880.h │ │ │ │ │ │ │ ├── mt7530.c │ │ │ │ │ │ │ ├── mt7530.h │ │ │ │ │ │ │ ├── mtk_debugfs.c │ │ │ │ │ │ │ ├── mtk_eth_soc.c │ │ │ │ │ │ │ ├── mtk_eth_soc.h │ │ │ │ │ │ │ ├── mtk_offload.c │ │ │ │ │ │ │ ├── mtk_offload.h │ │ │ │ │ │ │ ├── soc_mt7620.c │ │ │ │ │ │ │ ├── soc_mt7621.c │ │ │ │ │ │ │ ├── soc_rt2880.c │ │ │ │ │ │ │ ├── soc_rt3050.c │ │ │ │ │ │ │ └── soc_rt3883.c │ │ │ │ │ └── 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 │ │ │ │ └── pinctrl │ │ │ │ │ └── pinctrl-aw9523.c │ │ │ └── include │ │ │ │ └── net │ │ │ │ └── ra_nat.h │ │ ├── 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 │ │ │ ├── config-5.4 │ │ │ └── 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 │ │ │ │ │ │ └── set-model-name │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── 01_enable_packet_steering │ │ │ │ ├── lib │ │ │ │ │ ├── preinit │ │ │ │ │ │ └── 07_mt7621_bringup_dsa_master │ │ │ │ │ └── upgrade │ │ │ │ │ │ ├── hatlab.sh │ │ │ │ │ │ ├── iodata.sh │ │ │ │ │ │ ├── platform.sh │ │ │ │ │ │ └── ubnt.sh │ │ │ │ └── sbin │ │ │ │ │ └── fixup-mac-address │ │ │ ├── config-5.10 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── mt76x8 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── init.d │ │ │ │ │ │ └── bootcount │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── patches-5.10 │ │ │ ├── 0038-mtd-ralink-add-mt7620-nand-driver.patch │ │ │ ├── 020-mips-ralink-manage-low-reset-lines.patch │ │ │ ├── 108-PCI-mt7621-Delay-phy-ports-initialization.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 │ │ │ ├── 901-add-mtk-vendor-ethernet-drivers.patch │ │ │ ├── 902-mtkhnat-fix-pskb-expand-head-limitation.patch │ │ │ └── 903-mtkhnat-add-support-for-interface-acceleration.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 │ │ │ ├── 107-PCI-mt7621-Add-sentinel-to-quirks-table.patch │ │ │ ├── 108-PCI-mt7621-Delay-phy-ports-initialization.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 │ │ │ └── 999-crypto-eip93-fix.patch │ │ ├── patches-5.4 │ │ │ ├── 0001-MIPS-cmdline-Clean-up-boot_command_line-initializati.patch │ │ │ ├── 0002-MIPS-Always-define-builtin_cmdline.patch │ │ │ ├── 0003-MIPS-Fix-memory-reservation-in-bootmem_init-for-cert.patch │ │ │ ├── 0005-MIPS-use-set_mode-to-enable-disable-the-cevt-r4k-irq.patch │ │ │ ├── 0006-MIPS-ralink-add-cpu-frequency-scaling.patch │ │ │ ├── 0007-MIPS-ralink-copy-the-commandline-from-the-devicetree.patch │ │ │ ├── 0010-MIPS-add-bootargs-override-property.patch │ │ │ ├── 0013-owrt-hack-fix-mt7688-cache-issue.patch │ │ │ ├── 0015-arch-mips-do-not-select-illegal-access-driver-by-def.patch │ │ │ ├── 0024-GPIO-add-named-gpio-exports.patch │ │ │ ├── 0026-DT-Add-documentation-for-gpio-ralink.patch │ │ │ ├── 0027-GPIO-MIPS-ralink-add-gpio-driver-for-ralink-SoC.patch │ │ │ ├── 0029-gpio-ralink-Add-support-for-GPIO-as-interrupt-contro.patch │ │ │ ├── 0031-uvc-add-iPassion-iP2970-support.patch │ │ │ ├── 0037-mtd-cfi-cmdset-0002-force-word-write.patch │ │ │ ├── 0038-mtd-ralink-add-mt7620-nand-driver.patch │ │ │ ├── 0041-DT-Add-documentation-for-spi-rt2880.patch │ │ │ ├── 0042-SPI-ralink-add-Ralink-SoC-spi-driver.patch │ │ │ ├── 0044-i2c-MIPS-adds-ralink-I2C-driver.patch │ │ │ ├── 0046-mmc-MIPS-ralink-add-sdhci-for-mt7620a-SoC.patch │ │ │ ├── 0048-asoc-add-mt7620-support.patch │ │ │ ├── 0051-serial-add-ugly-custom-baud-rate-hack.patch │ │ │ ├── 0052-pwm-add-mediatek-support.patch │ │ │ ├── 0069-awake-rt305x-dwc2-controller.patch │ │ │ ├── 0070-weak_reordering.patch │ │ │ ├── 0098-disable_cm.patch │ │ │ ├── 0100-staging-mt7621-pci-simplify-mt7621_pcie_init_virtual.patch │ │ │ ├── 0101-staging-mt7621-pci-enable-clock-bit-for-each-port.patch │ │ │ ├── 0102-staging-mt7621-pci-use-gpios-for-properly-reset.patch │ │ │ ├── 0103-staging-mt7621-pci-change-value-for-PERST_DELAY_MS.patch │ │ │ ├── 0104-staging-mt7621-pci-release-gpios-after-pci-initializ.patch │ │ │ ├── 0105-staging-mt7621-pci-delete-no-more-needed-mt7621_rese.patch │ │ │ ├── 0106-staging-mt7621-pci-phy-add-mt7621_phy_rmw-to-simplif.patch │ │ │ ├── 0107-staging-mt7621-pci-fix-io-space-and-properly-set-res.patch │ │ │ ├── 0108-staging-mt7621-pci-fix-register-to-set-up-virtual-br.patch │ │ │ ├── 0109-staging-mt7621-pci-don-t-return-if-get-gpio-fails.patch │ │ │ ├── 0110-staging-mt7621-pci-phy-avoid-to-create-to-different-.patch │ │ │ ├── 0111-staging-mt7621-pci-use-only-two-phys-from-device-tre.patch │ │ │ ├── 0112-staging-mt7621-pci-change-variable-to-print-for-slot.patch │ │ │ ├── 0113-staging-mt7621-pci-be-sure-gpio-descriptor-is-null-o.patch │ │ │ ├── 0114-staging-mt7621-pci-avoid-to-poweroff-the-phy-for-slo.patch │ │ │ ├── 0115-staging-mt7621-pci-delete-release-gpios-related-code.patch │ │ │ ├── 0116-staging-mt7621-pci-use-builtin_platform_driver.patch │ │ │ ├── 0117-staging-mt7621-pci-phy-use-builtin_platform_driver.patch │ │ │ ├── 0118-staging-mt7621-pci-phy-re-do-xtal_mode-detection.patch │ │ │ ├── 0119-staging-mt7621-pci-avoid-to-set-iomem_resource-addre.patch │ │ │ ├── 0120-staging-mt7621-pci-properly-power-off-dual-ported-pc.patch │ │ │ ├── 0121-staging-mt7621-pci-fix-PCIe-interrupt-mapping.patch │ │ │ ├── 0122-mips-ralink-enable-zboot-support.patch │ │ │ ├── 0123-mips-ralink-manage-low-reset-lines.patch │ │ │ ├── 0200-linkit_bootstrap.patch │ │ │ ├── 0300-mtd-rawnand-add-driver-support-for-MT7621-nand-flash.patch │ │ │ ├── 0301-dt-bindings-add-documentation-for-mt7621-nand-driver.patch │ │ │ ├── 100-mt7621-core-detect-hack.patch │ │ │ ├── 101-mt7621-timer.patch │ │ │ ├── 102-mt7621-fix-cpu-clk-add-clkdev.patch │ │ │ ├── 105-mt7621-memory-detect.patch │ │ │ ├── 110-mt7621-perfctr-fix.patch │ │ │ ├── 111-gpio-mmio-introduce-BGPIOF_NO_SET_ON_INPUT.patch │ │ │ ├── 112-gpio-mt7621-add-BGPIOF_NO_SET_ON_INPUT-flag.patch │ │ │ ├── 200-add-ralink-eth.patch │ │ │ ├── 300-mt7620-export-chip-version-and-pkg.patch │ │ │ ├── 301-MIPS-ralink-mt7621-introduce-soc_device-initializati.patch │ │ │ ├── 302-spi-nor-add-gd25q512.patch │ │ │ ├── 304-spi-nor-add-p25d40h.patch │ │ │ ├── 401-net-ethernet-mediatek-support-net-labels.patch │ │ │ ├── 405-mtd-spi-nor-Add-support-for-BoHong-bh25q128as.patch │ │ │ ├── 804-staging-mt7621-pinctrl-use-ngpios-not-num-gpios.patch │ │ │ ├── 805-pinctrl-AW9523.patch │ │ │ ├── 901-mtkhnat-ipv6-fix-pskb-expand-head-limitation.patch │ │ │ ├── 902-mtkhnat-add-support-for-virtual-interface-acceleration.patch │ │ │ ├── 903-net-ethernet-mtk_eth_soc-add-mtk-dsa-tag-rx-offload.patch │ │ │ ├── 980-add-mtk-vendor-ethernet-drivers.patch │ │ │ ├── 990-NET-no-auto-carrier-off-support.patch │ │ │ ├── 991-at803x.patch │ │ │ ├── 992-rtl8211x.patch │ │ │ └── 993-spi-nor-w25q512jv.patch │ │ ├── rt288x │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── rt305x │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ ├── preinit │ │ │ │ │ └── 04_handle_checksumming │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ └── rt3883 │ │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 04_handle_checksumming │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ ├── realtek │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 05_compat-version │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ └── 04_dlinkfan │ │ │ ├── lib │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ └── sbin │ │ │ │ └── fan_ctrl.sh │ │ ├── dts │ │ │ ├── rtl8380_d-link_dgs-1210-10mp-f.dts │ │ │ ├── rtl8380_engenius_ews2910p.dts │ │ │ ├── rtl8380_hpe_1920-8g-poe-180w.dts │ │ │ ├── rtl8380_hpe_1920-8g-poe-65w.dts │ │ │ ├── rtl8380_hpe_1920-8g.dts │ │ │ ├── rtl8380_hpe_1920-8g.dtsi │ │ │ ├── rtl8380_linksys_lgs310c.dts │ │ │ ├── rtl8380_netgear_gigabit.dtsi │ │ │ ├── rtl8380_netgear_gs108t-v3.dts │ │ │ ├── rtl8380_netgear_gs110tpp-v1.dts │ │ │ ├── rtl8380_netgear_gs110tup-v1.dts │ │ │ ├── rtl8380_netgear_gs308t-v1.dts │ │ │ ├── rtl8380_netgear_gs310tp-v1.dts │ │ │ ├── rtl8380_panasonic_m8eg-pn28080k.dts │ │ │ ├── rtl8380_tplink_sg2008p-v1.dts │ │ │ ├── rtl8380_tplink_sg2210p-v3.dts │ │ │ ├── rtl8380_tplink_sg2xxx.dtsi │ │ │ ├── rtl8380_zyxel_gs1900-10hp.dts │ │ │ ├── rtl8380_zyxel_gs1900-8-v1.dts │ │ │ ├── rtl8380_zyxel_gs1900-8-v2.dts │ │ │ ├── rtl8380_zyxel_gs1900-8hp-v1.dts │ │ │ ├── rtl8380_zyxel_gs1900-8hp-v2.dts │ │ │ ├── rtl8380_zyxel_gs1900.dtsi │ │ │ ├── rtl8380_zyxel_gs1900_gpio.dtsi │ │ │ ├── rtl8380_zyxel_gs1900_gpio_emulated.dtsi │ │ │ ├── rtl8382_allnet_all-sg8208m.dts │ │ │ ├── rtl8382_apresia_aplgs120gtss.dts │ │ │ ├── rtl8382_d-link_dgs-1210-10p.dts │ │ │ ├── rtl8382_d-link_dgs-1210-16.dts │ │ │ ├── rtl8382_d-link_dgs-1210-20.dts │ │ │ ├── rtl8382_d-link_dgs-1210-28.dts │ │ │ ├── rtl8382_d-link_dgs-1210-28_common.dtsi │ │ │ ├── rtl8382_d-link_dgs-1210-28mp-f.dts │ │ │ ├── rtl8382_d-link_dgs-1210-28p-f.dts │ │ │ ├── rtl8382_d-link_dgs-1210-28p_common.dtsi │ │ │ ├── rtl8382_hpe_1920-16g.dts │ │ │ ├── rtl8382_hpe_1920-24g-poe-180w.dts │ │ │ ├── rtl8382_hpe_1920-24g-poe-370w.dts │ │ │ ├── rtl8382_hpe_1920-24g.dts │ │ │ ├── rtl8382_hpe_1920-24g.dtsi │ │ │ ├── rtl8382_hpe_1920.dtsi │ │ │ ├── rtl8382_inaba_aml2-17gp.dts │ │ │ ├── rtl8382_iodata_bsh-g24mb.dts │ │ │ ├── rtl8382_panasonic_m16eg-pn28160k.dts │ │ │ ├── rtl8382_panasonic_m24eg-pn28240k.dts │ │ │ ├── rtl8382_tplink_t1600g-28ts-v3.dts │ │ │ ├── rtl8382_zyxel_gs1900-16.dts │ │ │ ├── rtl8382_zyxel_gs1900-24-v1.dts │ │ │ ├── rtl8382_zyxel_gs1900-24e.dts │ │ │ ├── rtl8382_zyxel_gs1900-24ep.dts │ │ │ ├── rtl8382_zyxel_gs1900-24hp-v1.dts │ │ │ ├── rtl8382_zyxel_gs1900-24hp-v2.dts │ │ │ ├── rtl838x.dtsi │ │ │ ├── rtl8393_d-link_dgs-1210-52.dts │ │ │ ├── rtl8393_hpe_1920-48g-poe.dts │ │ │ ├── rtl8393_hpe_1920-48g.dts │ │ │ ├── rtl8393_hpe_1920.dtsi │ │ │ ├── rtl8393_netgear_gs750e.dts │ │ │ ├── rtl8393_panasonic_m48eg-pn28480k.dts │ │ │ ├── rtl8393_tplink_sg2452p-v4.dts │ │ │ ├── rtl8393_zyxel_gs1900-48.dts │ │ │ ├── rtl839x.dtsi │ │ │ ├── rtl83xx_d-link_dgs-1210_common.dtsi │ │ │ ├── rtl83xx_d-link_dgs-1210_gpio.dtsi │ │ │ ├── rtl83xx_d-link_dgs-1210_gpio_sfp.dtsi │ │ │ ├── rtl83xx_hpe_1920.dtsi │ │ │ ├── rtl83xx_panasonic_mxxeg-pn28xx0k.dtsi │ │ │ ├── rtl9302_zyxel_xgs1250-12.dts │ │ │ ├── rtl930x.dtsi │ │ │ └── rtl931x.dtsi │ │ ├── files-6.6 │ │ │ ├── Documentation │ │ │ │ └── devicetree │ │ │ │ │ └── bindings │ │ │ │ │ └── realtek,otto-timer.yaml │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ └── mach-rtl838x │ │ │ │ │ │ ├── ioremap.h │ │ │ │ │ │ └── mach-rtl83xx.h │ │ │ │ │ └── rtl838x │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Platform │ │ │ │ │ ├── prom.c │ │ │ │ │ └── setup.c │ │ │ ├── drivers │ │ │ │ ├── clk │ │ │ │ │ └── realtek │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clk-rtl838x-sram.S │ │ │ │ │ │ ├── clk-rtl839x-sram.S │ │ │ │ │ │ ├── clk-rtl83xx.c │ │ │ │ │ │ └── clk-rtl83xx.h │ │ │ │ ├── clocksource │ │ │ │ │ └── timer-rtl-otto.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 │ │ │ └── include │ │ │ │ └── dt-bindings │ │ │ │ └── clock │ │ │ │ └── rtl83xx-clk.h │ │ ├── files │ │ │ └── firmware │ │ │ │ └── rtl838x_phy │ │ │ │ ├── rtl838x_8214fc.fw │ │ │ │ ├── rtl838x_8218b.fw │ │ │ │ └── rtl838x_8380.fw │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── common.mk │ │ │ ├── rtl838x.mk │ │ │ ├── rtl839x.mk │ │ │ ├── rtl930x.mk │ │ │ └── rtl931x.mk │ │ ├── patches-6.6 │ │ │ ├── 300-mips-add-rtl838x-platform.patch │ │ │ ├── 302-clocksource-add-otto-driver.patch │ │ │ ├── 310-add-i2c-rtl9300-support.patch │ │ │ ├── 311-add-i2c-mux-rtl9300-support.patch │ │ │ ├── 314-irqchip-irq-realtek-rtl-add-VPE-support.patch │ │ │ ├── 318-add-rtl83xx-clk-support.patch │ │ │ ├── 320-harden-fw_init_cmdline.patch │ │ │ ├── 700-net-dsa-increase-dsa-max-ports-for-rtl838x.patch │ │ │ ├── 702-include-linux-add-phy-hsgmii-mode.patch │ │ │ ├── 704-include-linux-phy-increase-phy-address-number-for-rtl839x.patch │ │ │ ├── 706-include-linux-add-phy-ops-for-rtl838x.patch │ │ │ ├── 708-drivers-net-phy-eee-support-for-rtl838x.patch │ │ │ ├── 710-net-phy-sfp-re-probe-modules-on-DEV_UP-event.patch │ │ │ ├── 712-net-phy-add-an-MDIO-SMBus-library.patch │ │ │ ├── 714-net-phy-sfp-add-support-for-SMBus.patch │ │ │ ├── 716-net-ethernet-add-support-for-rtl838x-ethernet.patch │ │ │ ├── 718-net-dsa-add-support-for-rtl838x-switch.patch │ │ │ ├── 720-add-rtl-phy.patch │ │ │ ├── 722-net-dsa-add-rtl838x-support-for-tag-trailer.patch │ │ │ ├── 723-net-mdio-Add-Realtek-Otto-auxiliary-controller.patch │ │ │ ├── 800-gpio-regmap-Bypass-cache-for-shadowed-outputs.patch │ │ │ ├── 802-mfd-Add-RTL8231-core-device.patch │ │ │ ├── 803-pinctrl-Add-RTL8231-pin-control-and-GPIO-support.patch │ │ │ └── 804-leds-Add-support-for-RTL8231-LED-scan-matrix.patch │ │ ├── profiles │ │ │ └── 00-default.mk │ │ ├── rtl838x │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ ├── rtl839x │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ ├── rtl930x │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ └── rtl931x │ │ │ ├── config-6.6 │ │ │ └── target.mk │ ├── rockchip │ │ ├── Makefile │ │ ├── armv8 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ └── net │ │ │ │ │ │ │ └── 40-net-smp-affinity │ │ │ │ │ ├── init.d │ │ │ │ │ │ ├── bootcount │ │ │ │ │ │ └── fanctrl │ │ │ │ │ ├── inittab │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── 12_enable-netifd-smp-tune │ │ │ │ └── lib │ │ │ │ │ ├── preinit │ │ │ │ │ ├── 04_reorder_eth │ │ │ │ │ └── 79_move_config │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ ├── config-5.4 │ │ │ ├── config-6.1 │ │ │ ├── config-6.12 │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ ├── files │ │ │ ├── arch │ │ │ │ └── arm64 │ │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ └── rockchip │ │ │ │ │ ├── rk3328-dram-default-timing.dtsi │ │ │ │ │ ├── rk3328-dram-dmc.dtsi │ │ │ │ │ ├── rk3328-nanopi-r2c-plus.dts │ │ │ │ │ ├── rk3328-nanopi-r2s-plus.dts │ │ │ │ │ ├── rk3399-dlfr100.dts │ │ │ │ │ ├── rk3399-fine-3399.dts │ │ │ │ │ ├── rk3399-guangmiao-g4c.dts │ │ │ │ │ ├── rk3399-h3399pc.dts │ │ │ │ │ ├── rk3399-king3399.dts │ │ │ │ │ ├── rk3399-mpc1903.dts │ │ │ │ │ ├── rk3399-nanopi-r4se.dts │ │ │ │ │ ├── rk3399-sv901-eaio.dts │ │ │ │ │ ├── rk3399-xiaobao-nas-v1.dts │ │ │ │ │ ├── rk3528-armsom-sige1.dts │ │ │ │ │ ├── rk3528-mangopi-m28.dtsi │ │ │ │ │ ├── rk3528-mangopi-m28c.dts │ │ │ │ │ ├── rk3528-mangopi-m28k-pro.dts │ │ │ │ │ ├── rk3528-mangopi-m28k.dts │ │ │ │ │ ├── rk3528-opc-h28k.dts │ │ │ │ │ ├── rk3528-opc-h29k.dts │ │ │ │ │ ├── rk3528-opc-ht2.dts │ │ │ │ │ ├── rk3528-pinctrl.dtsi │ │ │ │ │ ├── rk3528-radxa-e20c.dts │ │ │ │ │ ├── rk3528-radxa-e24c.dts │ │ │ │ │ ├── rk3528.dtsi │ │ │ │ │ ├── rk3566-nanopi-r3s.dts │ │ │ │ │ ├── rk3566-panther-x2.dts │ │ │ │ │ ├── rk3566-radxa-zero-3.dtsi │ │ │ │ │ ├── rk3566-radxa-zero-3e.dts │ │ │ │ │ ├── rk3566-radxa-zero-3w.dts │ │ │ │ │ ├── rk3566-rock-3c.dts │ │ │ │ │ ├── rk3568-armsom-sige3.dts │ │ │ │ │ ├── rk3568-fastrhino.dtsi │ │ │ │ │ ├── rk3568-hinlink-opc.dtsi │ │ │ │ │ ├── rk3568-mmbox-anas3035.dts │ │ │ │ │ ├── rk3568-mrkaio-m68s-plus.dts │ │ │ │ │ ├── rk3568-mrkaio-m68s.dts │ │ │ │ │ ├── rk3568-mrkaio-m68s.dtsi │ │ │ │ │ ├── rk3568-nanopi-r5c.dts │ │ │ │ │ ├── rk3568-nanopi-r5s.dts │ │ │ │ │ ├── rk3568-nanopi-r5s.dtsi │ │ │ │ │ ├── rk3568-opc-h66k.dts │ │ │ │ │ ├── rk3568-opc-h68k.dts │ │ │ │ │ ├── rk3568-opc-h69k.dts │ │ │ │ │ ├── rk3568-photonicat.dts │ │ │ │ │ ├── rk3568-r66s.dts │ │ │ │ │ ├── rk3568-r68s.dts │ │ │ │ │ ├── rk3568-radxa-cm3i.dtsi │ │ │ │ │ ├── rk3568-radxa-e25.dts │ │ │ │ │ ├── rk3568-roc-pc.dts │ │ │ │ │ ├── rk3568-rock-3a.dts │ │ │ │ │ ├── rk3568-rock-3b.dts │ │ │ │ │ ├── rk3568-rsb4810.dts │ │ │ │ │ ├── rk3568-seewo-sv21.dts │ │ │ │ │ ├── rk3568-t68m.dts │ │ │ │ │ ├── rk3568-xiguapi-v3.dts │ │ │ │ │ ├── rk3576-armsom-sige5.dts │ │ │ │ │ ├── rk3576-nanopi-m5.dts │ │ │ │ │ ├── rk3576-nanopi-r76s.dts │ │ │ │ │ ├── rk3576-photonicat2.dts │ │ │ │ │ ├── rk3582-radxa-e52c.dts │ │ │ │ │ ├── rk3582-radxa-e54c.dts │ │ │ │ │ ├── rk3588-armsom-sige7.dts │ │ │ │ │ ├── rk3588-nanopc-t6.dts │ │ │ │ │ ├── rk3588-nanopc-t6.dtsi │ │ │ │ │ ├── rk3588-orangepi-5-compact.dtsi │ │ │ │ │ ├── rk3588-orangepi-5-max.dts │ │ │ │ │ ├── rk3588-orangepi-5-plus.dts │ │ │ │ │ ├── rk3588-orangepi-5-ultra.dts │ │ │ │ │ ├── rk3588-orangepi-5.dtsi │ │ │ │ │ ├── rk3588-rock-5b.dts │ │ │ │ │ ├── rk3588-srcm3588-io.dts │ │ │ │ │ ├── rk3588-srcm3588-sw.dts │ │ │ │ │ ├── rk3588s-nanopi-r6.dtsi │ │ │ │ │ ├── rk3588s-nanopi-r6c.dts │ │ │ │ │ ├── rk3588s-nanopi-r6s.dts │ │ │ │ │ ├── rk3588s-orangepi-5.dts │ │ │ │ │ ├── rk3588s-rock-5a.dts │ │ │ │ │ └── rk3588s-rock-5c.dts │ │ │ ├── drivers │ │ │ │ ├── char │ │ │ │ │ └── hw_random │ │ │ │ │ │ └── rockchip-rng.c │ │ │ │ ├── clk │ │ │ │ │ └── rockchip │ │ │ │ │ │ └── clk-rk3528.c │ │ │ │ └── devfreq │ │ │ │ │ └── rk3328_dmc.c │ │ │ └── include │ │ │ │ └── dt-bindings │ │ │ │ ├── clock │ │ │ │ ├── rk3528-cru.h │ │ │ │ └── rockchip-ddr.h │ │ │ │ ├── memory │ │ │ │ └── rk3328-dram.h │ │ │ │ └── power │ │ │ │ └── rk3528-power.h │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── armv8.mk │ │ │ ├── mmc.bootscript │ │ │ ├── rk3528.bootscript │ │ │ ├── rk3576.bootscript │ │ │ └── vop.bootscript │ │ ├── modules.mk │ │ ├── patches-5.10 │ │ │ ├── 002-net-usb-r8152-add-LED-configuration-from-OF.patch │ │ │ ├── 003-dt-bindings-net-add-RTL8152-binding-documentation.patch │ │ │ ├── 005-rockchip-rk3328-add-compatible-to-NanoPi-R2S-etherne.patch │ │ │ ├── 006-rockchip-rk3399-Add-support-for-FriendlyARM-NanoPi-R.patch │ │ │ ├── 007-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 │ │ │ ├── 105-rockchip-rock-pi-4.patch │ │ │ ├── 106-arm64-rockchip-add-OF-node-for-pcie-eth-on-NanoPi-R4S.patch │ │ │ ├── 107-mmc-core-set-initial-signal-voltage-on-power-off.patch │ │ │ ├── 108-nanopi-r4s-sd-signalling.patch │ │ │ ├── 201-rockchip-rk3328-add-i2c0-controller-for-nanopi-r2s.patch │ │ │ ├── 202-rockchip-rk3328-Add-support-for-OrangePi-R1-Plus.patch │ │ │ ├── 203-rockchip-rk3328-Add-support-for-OrangePi-R1-Plus-LTS.patch │ │ │ ├── 204-rockchip-rk3328-Add-support-for-FriendlyARM-NanoPi-R.patch │ │ │ ├── 205-rockchip-rk3328-add-support-for-FriendlyARM-NanoPi-Neo3.patch │ │ │ ├── 206-rockchip-rk3399-add-support-more-devices.patch │ │ │ ├── 600-net-phy-Add-driver-for-Motorcomm-YT85xx-PHYs.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 │ │ │ ├── 991-arm64-dts-rockchip-add-more-cpu-operating-points-for.patch │ │ │ └── 992-rockchip-rk3399-overclock-to-2.2-1.8-GHz.patch │ │ ├── patches-5.15 │ │ │ ├── 005-rockchip-rk3328-add-compatible-to-NanoPi-R2S-etherne.patch │ │ │ ├── 007-arm64-dts-rockchip-add-EEPROM-node-for-NanoPi-R4S.patch │ │ │ ├── 009-v5.16-drivers-rockchip-thermal-Allow-more-resets-for-tsadc.patch │ │ │ ├── 010-v5.16-net-stmmac-Add-GFP_DMA32-for-rx-buffers-if-no-64.patch │ │ │ ├── 011-v5.16-arm64-dts-rockchip-add-pmu-and-qos-nodes-for-rk3568.patch │ │ │ ├── 012-v5.16-arm64-dts-rockchip-add-saradc-node-for-rk3568.patch │ │ │ ├── 013-v5.16-arm64-dts-rockchip-move-rk3568-dtsi-to-rk356x-dtsi.patch │ │ │ ├── 014-v5.16-arm64-dts-rockchip-split-rk3568-device-tree.patch │ │ │ ├── 015-v5.16-arm64-dts-rockchip-add-rk3566-dtsi.patch │ │ │ ├── 016-v5.16-arm64-dts-rockchip-add-watchdog-to-rk3568.patch │ │ │ ├── 017-v5.16-arm64-dts-rockchip-fix-rk3568-mbi-alias.patch │ │ │ ├── 018-v5.16-arm64-dts-rockchip-add-rk356x-gmac1-node.patch │ │ │ ├── 019-v5.16-arm64-dts-rockchip-adjust-rk3568-pll-clocks.patch │ │ │ ├── 020-v5.16-arm64-dts-rockchip-add-gmac0-node-to-rk3568.patch │ │ │ ├── 021-v5.16-arm64-dts-rockchip-add-core-io-domains-node-for-rk356x.patch │ │ │ ├── 022-v5.16-arm64-dts-rockchip-add-rk356x-gpio-debounce-clocks.patch │ │ │ ├── 023-v5.16-arm64-dts-rockchip-add-rk3568-tsadc-nodes.patch │ │ │ ├── 024-v5.16-arm64-dts-rockchip-add-missing-grf-property-to-rk356x.patch │ │ │ ├── 025-v5.16-arm64-dts-rockchip-add-pwm-nodes-for-rk3568.patch │ │ │ ├── 026-v5.16-arm64-dts-rockchip-add-spdif-node-to-rk356x.patch │ │ │ ├── 027-v5.16-arm64-dts-rockchip-Add-i2s1-on-rk356x.patch │ │ │ ├── 028-v5.16-arm64-dts-rockchip-fix-resets-in-tsadc-node-for-rk356x.patch │ │ │ ├── 029-v5.17-arm64-dts-rockchip-Add-spi-nodes-on-rk356x.patch │ │ │ ├── 030-v5.17-arm64-dts-rockchip-add-usb2-nodes-to-rk3568-device-tree.patch │ │ │ ├── 031-v5.17-arm64-dts-rockchip-drop-pclk_xpcs-from-gmac0-on.patch │ │ │ ├── 032-v5.17-phy-rockchip-inno-usb2-support-address-cells.patch │ │ │ ├── 033-v5.17-phy-rockchip-inno-usb2-support-standalone-phy-nodes.patch │ │ │ ├── 034-v5.17-phy-rockchip-inno-usb2-support-muxed-interrupts.patch │ │ │ ├── 035-v5.17-phy-rockchip-inno-usb2-add-rk3568-support.patch │ │ │ ├── 036-v5.18-arm64-dts-rockchip-rename-and-sort-the-rk356x-usb2-phy.patch │ │ │ ├── 037-v5.18-phy-rockchip-add-naneng-combo-phy-for-RK3568.patch │ │ │ ├── 038-v5.18-arm64-dts-rockchip-add-naneng-combo-phy-nodes-for.patch │ │ │ ├── 039-v5.18-arm64-dts-rockchip-Add-sata-nodes-to-rk356x.patch │ │ │ ├── 040-v5.18-usb-dwc3-core-do-not-use-3.0-clock-when-operating-in-2.0.patch │ │ │ ├── 050-v5.18-mmc-dw_mmc-Support-setting-f_min-from-host-drivers.patch │ │ │ ├── 051-v5.18-mmc-dw-mmc-rockchip-Fix-handling-invalid-clock-rates.patch │ │ │ ├── 052-v5.16-mfd-rk808-Add-support-for-power-off-on-RK817.patch │ │ │ ├── 053-v5.18-mfd-rk808-Add-reboot-support-to-rk808.c.patch │ │ │ ├── 054-v5.19-soc-rockchip-set-dwc3-clock-for-rk3566.patch │ │ │ ├── 055-v5.19-arm64-dts-rockchip-add-rk356x-dwc3-usb3-nodes.patch │ │ │ ├── 056-v5.19-PCI-rockchip-dwc-Reset-core-at-driver-probe.patch │ │ │ ├── 057-v5.19-PCI-rockchip-dwc-Add-legacy-interrupt-support.patch │ │ │ ├── 058-v5.19-arm64-dts-rockchip-add-rk356x-sfc-support.patch │ │ │ ├── 059-v5.19-arm64-dts-rockchip-add-clocks-to-rk356x-cru.patch │ │ │ ├── 060-v6.0-arm64-dts-rockchip-Add-rk3568-PCIe2x1-controller.patch │ │ │ ├── 061-v6.2-arm64-dts-rockchip-add-missing-interrupt-cells.patch │ │ │ ├── 062-v6.3-arm64-dts-rockchip-assign-rate-to-clk_rtc_32k.patch │ │ │ ├── 063-v6.0-mmc-sdhci-of-dwcmshc-add-support-for-rk3588.patch │ │ │ ├── 069-v5.19-drm-rockchip-Add-VOP2-driver.patch │ │ │ ├── 070-v6.1-phy-rockchip-Support-PCIe-v3.patch │ │ │ ├── 071-v6.1-arm64-dts-rockchip-Add-PCIe-v3-nodes-to-rk3568.patch │ │ │ ├── 080-v6.3-mmc-sdhci-of-dwcmshc-Update-DLL-and-pre.patch │ │ │ ├── 081-v6.4-mmc-sdhci-of-dwcmshc-properly-determine.patch │ │ │ ├── 100-rockchip-use-system-LED-for-OpenWrt.patch │ │ │ ├── 101-net-realtek-r8169-add-LED-configuration-from-OF.patch │ │ │ ├── 102-net-phy-realtek-RTL8211-add-LED-configuration-from-OF.patch │ │ │ ├── 103-arm64-rockchip-add-OF-node-for-USB-eth-on-NanoPi-R2S.patch │ │ │ ├── 105-rockchip-rock-pi-4.patch │ │ │ ├── 106-arm64-rockchip-add-OF-node-for-pcie-eth-on-NanoPi-R4S.patch │ │ │ ├── 107-mmc-core-set-initial-signal-voltage-on-power-off.patch │ │ │ ├── 110-arm64-rk3568-update-gicv3-its-and-pci-msi-map.patch │ │ │ ├── 111-irqchip-gic-v3-add-hackaround-for-rk3568-its.patch │ │ │ ├── 112-arm64-dts-rockchip-rk3568-Add-xpcs-support.patch │ │ │ ├── 113-ethernet-stmicro-stmmac-Add-SGMII-QSGMII-support.patch │ │ │ ├── 114-rfkill-gpio-add-of_match_table-support.patch │ │ │ ├── 201-rockchip-rk3328-add-i2c0-controller-for-nanopi-r2s.patch │ │ │ ├── 202-rockchip-rk3328-Add-support-for-OrangePi-R1-Plus.patch │ │ │ ├── 203-rockchip-rk3328-Add-support-for-OrangePi-R1-Plus-LTS.patch │ │ │ ├── 204-rockchip-rk3328-Add-support-for-FriendlyARM-NanoPi-R.patch │ │ │ ├── 205-rockchip-rk3328-add-support-for-FriendlyARM-NanoPi-Neo3.patch │ │ │ ├── 210-rockchip-rk356x-add-support-for-new-boards.patch │ │ │ ├── 211-rockchip-rk3399-add-support-more-devices.patch │ │ │ ├── 603-net-ethernet-stmmac-add-devname-configuration-from-OF.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 │ │ │ ├── 991-arm64-dts-rockchip-add-more-cpu-operating-points-for.patch │ │ │ └── 992-rockchip-rk3399-overclock-to-2.2-1.8-GHz.patch │ │ ├── patches-5.4 │ │ │ ├── 001-rockchip-rk3328-Add-support-for-FriendlyARM-NanoPi-R.patch │ │ │ ├── 002-net-usb-r8152-add-LED-configuration-from-OF.patch │ │ │ ├── 003-dt-bindings-net-add-RTL8152-binding-documentation.patch │ │ │ ├── 004-arm64-dts-rockchip-Add-txpbl-node-for-RK3399-RK3328.patch │ │ │ ├── 005-rockchip-rk3328-add-compatible-to-NanoPi-R2S-etherne.patch │ │ │ ├── 006-rockchip-rk3328-fix-NanoPi-R2S-GMAC-clock-name.patch │ │ │ ├── 007-arm64-dts-rockchip-Add-RK3328-idle-state.patch │ │ │ ├── 008-rockchip-add-hwmon-support-for-SoCs-and-GPUs.patch │ │ │ ├── 009-rockchip-rk3399-Add-support-for-FriendlyARM-NanoPi-R.patch │ │ │ ├── 010-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-mmc-core-set-initial-signal-voltage-on-power-off.patch │ │ │ ├── 106-arm64-rockchip-add-OF-node-for-pcie-eth-on-NanoPi-R4S.patch │ │ │ ├── 107-nanopi-r4s-sd-signalling.patch │ │ │ ├── 201-rockchip-rk3328-add-i2c0-controller-for-nanopi-r2s.patch │ │ │ ├── 202-rockchip-rk3328-Add-support-for-OrangePi-R1-Plus.patch │ │ │ ├── 203-rockchip-rk3328-Add-support-for-OrangePi-R1-Plus-LTS.patch │ │ │ ├── 204-rockchip-rk3328-Add-support-for-FriendlyARM-NanoPi-R.patch │ │ │ ├── 205-rockchip-rk3328-add-support-for-FriendlyARM-NanoPi-Neo3.patch │ │ │ ├── 206-rockchip-rk3399-add-support-more-devices.patch │ │ │ ├── 208--phy-rockchip-add-driver-for-Rockchip-USB-3.0-PHY.patch │ │ │ ├── 209-arm64-dts-rk3328-add-usb3phy-nodes-for-rk3328.patch │ │ │ ├── 600-net-phy-Add-driver-for-Motorcomm-YT85xx-PHYs.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 │ │ │ ├── 991-arm64-dts-rockchip-add-more-cpu-operating-points-for.patch │ │ │ └── 992-rockchip-rk3399-overclock-to-2.2-1.8-GHz.patch │ │ ├── patches-6.1 │ │ │ ├── 005-arm64-dts-rockchip-add-EEPROM-node-for-NanoPi-R4S.patch │ │ │ ├── 006-v6.3-arm64-dts-rockchip-assign-rate-to-clk_rtc_32k.patch │ │ │ ├── 007-v6.3-mmc-sdhci-of-dwcmshc-Update-DLL-and-pre.patch │ │ │ ├── 008-v6.4-mmc-sdhci-of-dwcmshc-properly-determine.patch │ │ │ ├── 012-v6.4-net-rfkill-gpio-Add-explicit-include-for-of.h.patch │ │ │ ├── 014-v6.11-arm64-dts-rockchip-Add-GPU-OPP-voltage-ranges.patch │ │ │ ├── 015-v6.11-arm64-dts-rockchip-Update-GPU-OPP-voltages-in.patch │ │ │ ├── 100-rockchip-use-system-LED-for-OpenWrt.patch │ │ │ ├── 101-net-realtek-r8169-add-LED-configuration-from-OF.patch │ │ │ ├── 102-net-phy-realtek-RTL8211-add-LED-configuration-from-OF.patch │ │ │ ├── 103-arm64-rockchip-add-OF-node-for-USB-eth-on-NanoPi-R2S.patch │ │ │ ├── 105-nanopi-r4s-sd-signalling.patch │ │ │ ├── 106-rockchip-rock-pi-4.patch │ │ │ ├── 107-mmc-core-set-initial-signal-voltage-on-power-off.patch │ │ │ ├── 110-arm64-rk3568-update-gicv3-its-and-pci-msi-map.patch │ │ │ ├── 111-irqchip-gic-v3-add-hackaround-for-rk3568-its.patch │ │ │ ├── 112-arm64-dts-rockchip-rk3568-Add-xpcs-support.patch │ │ │ ├── 113-ethernet-stmicro-stmmac-Add-SGMII-QSGMII-support.patch │ │ │ ├── 201-rockchip-rk3328-add-i2c0-controller-for-nanopi-r2s.patch │ │ │ ├── 202-rockchip-rk3328-Add-support-for-OrangePi-R1-Plus.patch │ │ │ ├── 203-rockchip-rk3328-Add-support-for-OrangePi-R1-Plus-LTS.patch │ │ │ ├── 204-rockchip-rk3328-Add-support-for-FriendlyARM-NanoPi-R.patch │ │ │ ├── 205-rockchip-rk3328-add-support-for-FriendlyARM-NanoPi-Neo3.patch │ │ │ ├── 210-rockchip-rk356x-add-support-for-new-boards.patch │ │ │ ├── 211-rockchip-rk3399-add-support-more-devices.patch │ │ │ ├── 212-rockchip-rk3528-add-support-for-new-boards.patch │ │ │ ├── 220-phy-rockchip-naneng-combphy-fix-phy-reset.patch │ │ │ ├── 301-pinctrl-rockchip-add-rk3528-support.patch │ │ │ ├── 302-thermal-rockchip-add-support-for-rk3528.patch │ │ │ ├── 303-soc-rockchip-power-domain-Add-always-on.patch │ │ │ ├── 304-soc-rockchip-power-domain-add-rk3528-support.patch │ │ │ ├── 305-clk-rockchip-add-clock-controller-for-the-RK3528.patch │ │ │ ├── 306-ethernet-stmmac-dwmac-rk3528-add-GMAC-support.patch │ │ │ ├── 307-phy-rockchip-inno-usb2-add-phy-support-for-rk3528.patch │ │ │ ├── 308-phy-rockchip-naneng-combphy-add-support-rk3528.patch │ │ │ ├── 310-mmc-dw_mmc-rockchip-add-v2-tuning-support.patch │ │ │ ├── 603-net-ethernet-stmmac-add-devname-configuration-from-OF.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-rockchip-rk3328-devices-add-dmc.patch │ │ │ ├── 991-arm64-dts-rockchip-add-more-cpu-operating-points-for.patch │ │ │ └── 992-rockchip-rk3399-overclock-to-2.2-1.8-GHz.patch │ │ ├── patches-6.12 │ │ │ ├── 002-clk-rockchip-mark-hclk-vi-as-critical-on-rk3568.patch │ │ │ ├── 005-arm64-dts-rockchip-add-EEPROM-node-for-NanoPi-R4S.patch │ │ │ ├── 010-v6.13-arm64-dts-rockchip-Add-rk3576-SoC-base-DT.patch │ │ │ ├── 011-v6.13-phy-rockchip-inno-usb2-convert-clock-management-to-bulk.patch │ │ │ ├── 012-v6.13-phy-rockchip-inno-usb2-Add-usb2-phys-support-for-rk3576.patch │ │ │ ├── 013-v6.13-phy-rockchip-usbdp-add-rk3576-device-match-data.patch │ │ │ ├── 014-v6.13-gpio-rockchip-explan-the-format-of-the-GPIO-version-ID.patch │ │ │ ├── 015-v6.13-gpio-rockchip-change-the-GPIO-version-judgment-logic.patch │ │ │ ├── 016-v6.13-gpio-rockchip-support-new-version-GPIO.patch │ │ │ ├── 020-v6.13-irqchip-gic-v3-its-Share-ITS-tables-with-a-non-trust.patch │ │ │ ├── 021-v6.13-irqchip-gic-v3-its-Fix-over-allocation-in-itt_alloc.patch │ │ │ ├── 022-v6.15-irqchip-gic-v3-Add-Rockchip-3568002-erratum-workaround.patch │ │ │ ├── 023-01-v6.15-arm64-dts-rockchip-rk356x-Add-MSI-controller-node.patch │ │ │ ├── 023-02-v6.15-arm64-dts-rockchip-rk356x-Move-PCIe-MSI-to-use-GIC.patch │ │ │ ├── 024-v6.14-arm64-dts-rockchip-Add-rk3576-naneng-combphy-nodes.patch │ │ │ ├── 025-v6.14-arm64-dts-rockchip-add-usb-related-nodes-for-rk3576.patch │ │ │ ├── 026-v6.15-arm64-dts-rockchip-add-rk3576-otp-node.patch │ │ │ ├── 027-01-v6.15-arm64-dts-rockchip-Add-vop-for-rk3576.patch │ │ │ ├── 027-02-v6.15-arm64-dts-rockchip-Add-hdmi-for-rk3576.patch │ │ │ ├── 028-v6.15-arm64-dts-rockchip-Add-SFC-nodes-for-rk3576.patch │ │ │ ├── 029-01-v6.15-dt-bindings-clock-rk3576-add-SCMI-clocks.patch │ │ │ ├── 029-02-v6.15-arm64-dts-rockchip-fix-RK3576-SCMI-clock-IDs.patch │ │ │ ├── 030-v6.16-arm64-dts-rockchip-Add-rk3576-pcie-nodes.patch │ │ │ ├── 031-01-v6.16-arm64-dts-rockchip-Add-RK3576-SAI-nodes.patch │ │ │ ├── 031-02-v6.16-arm64-dts-rockchip-Add-RK3576-HDMI-audio.patch │ │ │ ├── 032-v6.16-arm64-dts-rockchip-fix-rk3576-pcie-unit-addresses.patch │ │ │ ├── 033-v6.16-arm64-dts-rockchip-fix-rk3576-pcie1-linux-pci-domain.patch │ │ │ ├── 034-v6.17-arm64-dts-rockchip-add-SDIO-controller-on-RK3576.patch │ │ │ ├── 036-v6.17-phy-rockchip-pcie-Enable-all-four-lanes-if-required.patch │ │ │ ├── 040-01-v6.13-phy-phy-rockchip-samsung-hdptx-Don-t-request.patch │ │ │ ├── 040-02-v6.15-phy-phy-rockchip-samsung-hdptx-annotate-regmap.patch │ │ │ ├── 040-03-v6.15-phy-phy-rockchip-samsung-hdptx-Supplement-some-register.patch │ │ │ ├── 040-04-v6.15-phy-phy-rockchip-samsung-hdptx-Add-the-_MASK-suffix-to.patch │ │ │ ├── 040-05-v6.15-phy-phy-rockchip-samsung-hdptx-Add-eDP-mode-support-for.patch │ │ │ ├── 040-06-v6.15-phy-phy-rockchip-samsung-hdptx-Add-support-for-RK3576.patch │ │ │ ├── 040-07-v6.16-phy-Add-HDMI-configuration-options.patch │ │ │ ├── 040-08-v6.16-phy-hdmi-Add-color-depth-configuration.patch │ │ │ ├── 040-09-v6.16-phy-rockchip-samsung-hdptx-Drop-unused-struct-lcpll_confi.patch │ │ │ ├── 040-10-v6.16-phy-rockchip-samsung-hdptx-Drop-unused-phy_cfg-driver-dat.patch │ │ │ ├── 040-11-v6.16-phy-rockchip-samsung-hdptx-Drop-superfluous-cfgs-driver.patch │ │ │ ├── 040-12-v6.16-phy-rockchip-samsung-hdptx-Avoid-Hz-hHz-unit-conversion.patch │ │ │ ├── 040-13-v6.16-phy-rockchip-samsung-hdptx-Setup-TMDS-char-rate-via.patch │ │ │ ├── 040-14-v6.16-phy-rockchip-samsung-hdptx-Provide-config-params.patch │ │ │ ├── 040-15-v6.16-phy-rockchip-samsung-hdptx-Restrict-altering-TMDS-char.patch │ │ │ ├── 040-16-v6.16-phy-rockchip-samsung-hdptx-Rename-ambiguous.patch │ │ │ ├── 040-17-v6.16-phy-rockchip-samsung-hdptx-Optimize-internal-rate-handlin.patch │ │ │ ├── 040-18-v6.16-phy-rockchip-samsung-hdptx-Add-high-color-depth-managemen.patch │ │ │ ├── 040-55-v6.16-dt-bindings-display-rockchip-analogix-dp-Add-support-for.patch │ │ │ ├── 041-01-v6.13-drm-rockchip-dw_hdmi-Filter-modes-based-on-hdmiphy_clk.patch │ │ │ ├── 041-02-v6.13-drm-rockchip-dw_hdmi-Adjust-cklvl-txlvl-for-RF-EMI.patch │ │ │ ├── 041-03-v6.13-drm-rockchip-dw_hdmi-Add-phy_config-for-594Mhz-pixel-cloc.patch │ │ │ ├── 041-04-v6.13-drm-rockchip-dw_hdmi-Set-cur_ctr-to-0-always.patch │ │ │ ├── 041-05-v6.13-drm-rockchip-dw_hdmi-Use-auto-generated-tables.patch │ │ │ ├── 041-06-v6.13-drm-rockchip-dw_hdmi-Enable-4K-60Hz-mode-on-RK3399-and.patch │ │ │ ├── 041-07-v6.13-drm-rockchip-Load-crtc-devices-in-preferred-order.patch │ │ │ ├── 041-08-v6.13-drm-rockchip-Run-DRM-default-client-setup.patch │ │ │ ├── 041-09-v6.13-drm-bridge-synopsys-Add-DW-HDMI-QP-TX-Controller-support.patch │ │ │ ├── 041-10-v6.13-drm-rockchip-Add-basic-RK3588-HDMI-output-support.patch │ │ │ ├── 041-11-v6.14-rockchip-drm-vop2-add-support-for-gamma-LUT.patch │ │ │ ├── 041-12-v6.14-drm-rockchip-analogix_dp-allow-to-work-without-panel.patch │ │ │ ├── 041-13-v6.14-drm-rockchip-avoid-64-bit-division.patch │ │ │ ├── 041-14-v6.14-drm-bridge-synopsys-Add-MIPI-DSI2-host-controller-bridge.patch │ │ │ ├── 041-16-v6.14-drm-rockchip-Add-MIPI-DSI2-glue-driver-for-RK3588.patch │ │ │ ├── 041-17-v6.14-drm-rockchip-dw_hdmi_qp-Add-support-for-RK3588-HDMI1-outp.patch │ │ │ ├── 041-18-v6.14-drm-rockchip-Remove-unnecessary-checking.patch │ │ │ ├── 041-19-v6.14-drm-rockchip-vop2-don-t-check-color_mgmt_changed-in.patch │ │ │ ├── 041-20-v6.14-drm-rockchip-dw_hdmi_qp-Simplify-clock-handling.patch │ │ │ ├── 041-21-v6.14-drm-rockchip-vop2-Add-debugfs-support.patch │ │ │ ├── 041-22-v6.14-drm-rockchip-vop2-Support-32x8-superblock-afbc.patch │ │ │ ├── 041-23-v6.15-drm-rockchip-dw_hdmi_qp-Add-platform-ctrl-callback.patch │ │ │ ├── 041-24-v6.15-drm-rockchip-dw_hdmi_qp-Add-basic-RK3576-HDMI-output.patch │ │ │ ├── 041-25-v6.15-drm-rockchip-Don-t-change-hdmi-reference-clock-rate.patch │ │ │ ├── 041-26-v6.15-drm-rockchip-vop2-Drop-unnecessary-if_pixclk_rate.patch │ │ │ ├── 041-27-v6.15-drm-rockchip-analogix_dp-Use-formalized-struct-definition.patch │ │ │ ├── 041-28-v6.15-drm-rockchip-analogix_dp-Expand-device-data-to-support.patch │ │ │ ├── 041-29-v6.15-drm-rockchip-vop2-Improve-display-modes-handling-on-RK358.patch │ │ │ ├── 041-30-v6.15-drm-rockchip-vop2-Consistently-use-dev_err_probe.patch │ │ │ ├── 041-31-v6.15-drm-rockchip-Fix-shutdown-when-no-drm-device-is-set-up.patch │ │ │ ├── 041-32-v6.15-drm-rockchip-vop2-use-devm_regmap_field_alloc-for.patch │ │ │ ├── 041-33-v6.15-drm-rockchip-vop2-Remove-AFBC-from-TRANSFORM_OFFSET.patch │ │ │ ├── 041-34-v6.15-drm-rockchip-vop2-Add-platform-specific-callback.patch │ │ │ ├── 041-35-v6.15-drm-rockchip-vop2-Merge-vop2_cluster-esmart_init-function.patch │ │ │ ├── 041-36-v6.15-drm-rockchip-vop2-Support-for-different-layer-select.patch │ │ │ ├── 041-37-v6.15-drm-rockchip-vop2-Introduce-vop-hardware-version.patch │ │ │ ├── 041-38-v6.15-drm-rockchip-vop2-Register-the-primary-plane-and-overlay.patch │ │ │ ├── 041-39-v6.15-drm-rockchip-vop2-Set-plane-possible-crtcs-by-possible-vp.patch │ │ │ ├── 041-40-v6.15-drm-rockchip-vop2-Add-support-for-rk3576.patch │ │ │ ├── 041-41-v6.15-drm-rockchip-vop2-add-missing-bitfield-h-include.patch │ │ │ ├── 041-42-v6.15-drm-rockchip-stop-passing-non-struct-drm_device-to-drm_er.patch │ │ │ ├── 041-43-v6.15-drm-rockchip-lvds-move-pclk-preparation-in-with-clk_get.patch │ │ │ ├── 041-44-v6.15-drm-rockchip-lvds-Hide-scary-error-messages-on-probe.patch │ │ │ ├── 041-45-v6.15-drm-rockchip-lvds-lower-log-severity-for-missing-pinctrl.patch │ │ │ ├── 041-46-v6.16-drm-rockchip-vop-remove-redundant-condition-check.patch │ │ │ ├── 041-47-v6.16-drm-rockchip-vop2-Make-overlay-layer-select-register.patch │ │ │ ├── 041-48-v6.15-drm-rockchip-vop2-Fix-interface-enable-mux-setting-of-DP1.patch │ │ │ ├── 041-49-v6.15-drm-rockchip-dw_hdmi_qp-Fix-io-init-for.patch │ │ │ ├── 041-50-v6.16-drm-bridge-analogix_dp-Add-irq-flag-IRQF_NO_AUTOEN-instea.patch │ │ │ ├── 041-51-v6.16-drm-bridge-analogix_dp-Remove-CONFIG_PM-related-check-in.patch │ │ │ ├── 041-52-v6.16-drm-bridge-analogix_dp-Add-support-for-phy-configuration.patch │ │ │ ├── 041-53-v6.16-drm-bridge-analogix_dp-Support-to-get-analogix_dp_device.patch │ │ │ ├── 041-54-v6.16-drm-bridge-analogix_dp-Add-support-to-get-panel-from-the-.patch │ │ │ ├── 041-55-v6.16-drm-bridge-analogix_dp-Add-support-for.patch │ │ │ ├── 041-56-v6.16-drm-rockchip-analogix_dp-Add-support-to-get-panel-from-th.patch │ │ │ ├── 041-57-v6.16-drm-bridge-analogix_dp-Add-support-for-RK3588.patch │ │ │ ├── 041-58-v6.16-drm-rockchip-analogix_dp-Add-support-for-RK3588.patch │ │ │ ├── 041-59-v6.16-drm-rockchip-add-CONFIG_OF-dependency.patch │ │ │ ├── 041-60-v6.17-drm-rockchip-vop2-Fix-the-update-of-LAYER-PORT-select.patch │ │ │ ├── 041-61-v6.17-drm-rockchip-vop2-make-vp-registers-nonvolatile.patch │ │ │ ├── 041-62-v6.17-drm-rockchip-dsi2-add-support-rk3576.patch │ │ │ ├── 042-01-v6.13-pwm-Add-more-locking.patch │ │ │ ├── 042-02-v6.13-pwm-New-abstraction-for-PWM-waveforms.patch │ │ │ ├── 042-03-v6.13-pwm-Provide-new-consumer-API-functions-for-waveforms.patch │ │ │ ├── 042-04-v6.13-pwm-Add-tracing-for-waveform-callbacks.patch │ │ │ ├── 042-05-v6.13-pwm-Reorder-symbols-in-core.c.patch │ │ │ ├── 042-06-v6.14-compiler-h-add-const_true.patch │ │ │ ├── 042-07-v6.14-pwm-Ensure-callbacks-exist-before-calling-them.patch │ │ │ ├── 042-08-v6.15-pwm-Add-upgrade-path-to-pwm-cells-3-for-users-of.patch │ │ │ ├── 042-09-v6.15-pwm-Let-pwm_set_waveform-succeed-even-if-lowlevel-driver.patch │ │ │ ├── 042-10-v6.16-pwm-Do-stricter-return-value-checking-for.patch │ │ │ ├── 042-11-v6.16-pwm-Better-document-return-value-of.patch │ │ │ ├── 042-12-v6.16-pwm-Fix-various-formatting-issues-in-kernel-doc.patch │ │ │ ├── 042-13-v6.16-pwm-Let-pwm_set_waveform_might_sleep-fail-for-exact-but.patch │ │ │ ├── 042-14-v6.16-pwm-Let-pwm_set_waveform_might_sleep-return-0-instead-of-.patch │ │ │ ├── 042-15-v6.16-pwm-Formally-describe-the-procedure-used-to-pick-a-hardwa.patch │ │ │ ├── 043-v6.18-bitmap-introduce-hardware-specific-bitfield-operations.patch │ │ │ ├── 100-rockchip-use-system-LED-for-OpenWrt.patch │ │ │ ├── 101-net-realtek-r8169-add-LED-configuration-from-OF.patch │ │ │ ├── 103-arm64-rockchip-add-OF-node-for-USB-eth-on-NanoPi-R2S.patch │ │ │ ├── 104-net-dsa-realtek-fixes-reset-controller.patch │ │ │ ├── 105-nanopi-r4s-sd-signalling.patch │ │ │ ├── 106-r4s-openwrt-leds.patch │ │ │ ├── 107-mmc-core-set-initial-signal-voltage-on-power-off.patch │ │ │ ├── 110-arm64-rk3568-update-gicv3-its-and-pci-msi-map.patch │ │ │ ├── 112-arm64-dts-rockchip-rk3568-Add-xpcs-support.patch │ │ │ ├── 113-ethernet-stmicro-stmmac-Add-SGMII-QSGMII-support.patch │ │ │ ├── 114-arm64-dts-rockchip-Update-LED-properties-for-Orange-.patch │ │ │ ├── 115-arm64-dts-rockchip-add-LED-configuration-to-Orange-P.patch │ │ │ ├── 120-phy-rockchip-naneng-combo-add-rk3576-support.patch │ │ │ ├── 162-01-mfd-Add-Rockchip-mfpwm-driver.patch │ │ │ ├── 162-02-pwm-Add-rockchip-PWMv4-driver.patch │ │ │ ├── 162-03-counter-Add-rockchip-pwm-capture-driver.patch │ │ │ ├── 201-rockchip-rk3328-add-i2c0-controller-for-nanopi-r2s.patch │ │ │ ├── 205-rockchip-rk3328-add-support-for-FriendlyARM-NanoPi-Neo3.patch │ │ │ ├── 210-rockchip-rk3399-add-support-more-devices.patch │ │ │ ├── 301-pinctrl-rockchip-add-rk3528-support.patch │ │ │ ├── 302-thermal-rockchip-add-support-for-rk3528.patch │ │ │ ├── 303-soc-rockchip-power-domain-Add-always-on.patch │ │ │ ├── 304-soc-rockchip-power-domain-add-rk3528-support.patch │ │ │ ├── 305-clk-rockchip-add-clock-controller-for-the-RK3528.patch │ │ │ ├── 306-ethernet-stmmac-dwmac-rk3528-add-GMAC-support.patch │ │ │ ├── 307-phy-rockchip-inno-usb2-add-phy-support-for-rk3528.patch │ │ │ ├── 308-phy-rockchip-naneng-combphy-add-support-rk3528.patch │ │ │ ├── 310-mmc-dw_mmc-rockchip-add-v2-tuning-support.patch │ │ │ ├── 311-02-v6.13-initial-support-for-rk3576-ufs-controller.patch │ │ │ ├── 311-04-v6.13-initial-support-for-rk3576-ufs-controller.patch │ │ │ ├── 311-05-v6.13-initial-support-for-rk3576-ufs-controller.patch │ │ │ ├── 311-06-v6.13-initial-support-for-rk3576-ufs-controller.patch │ │ │ ├── 311-07-v6.13-initial-support-for-rk3576-ufs-controller.patch │ │ │ ├── 312-01-v6.13-rk3576-otp-support.patch │ │ │ ├── 350-arm64-dts-rockchip-add-PWM-nodes-to-RK3576-SoC.patch │ │ │ ├── 700-ethernet-stmmac-Add-property-to-disable-VLAN-hw-filter.patch │ │ │ ├── 800-thermal-rockchip-Support-RK3576-SoC-in-the-thermal-d.patch │ │ │ ├── 801-arm64-dts-rockchip-Add-thermal-nodes-to-RK3576.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-rockchip-rk3328-devices-add-dmc.patch │ │ │ ├── 991-arm64-dts-rockchip-add-more-cpu-operating-points-for.patch │ │ │ ├── 992-rockchip-rk3399-overclock-to-2.2-1.8-GHz.patch │ │ │ └── 997-rockchip-naneng-combo-phy-add-sgmii-mac-sel.patch │ │ └── patches-6.6 │ │ │ ├── 005-arm64-dts-rockchip-add-EEPROM-node-for-NanoPi-R4S.patch │ │ │ ├── 011-v6.11-arm64-dts-rockchip-Add-GPU-OPP-voltage-ranges.patch │ │ │ ├── 012-v6.11-arm64-dts-rockchip-Update-GPU-OPP-voltages-in.patch │ │ │ ├── 030-01-v6.9-clk-rockchip-rk3588-fix-CLK_NR_CLKS-usage.patch │ │ │ ├── 030-02-v6.9-dt-bindings-clock-rk3588-drop-CLK_NR_CLKS.patch │ │ │ ├── 030-03-v6.9-dt-bindings-clock-rk3588-add-missing-PCLK_VO1GRF.patch │ │ │ ├── 030-04-v6.9-clk-rockchip-rk3588-fix-pclk_vo0grf-and-pclk_vo1grf.patch │ │ │ ├── 030-05-v6.9-clk-rockchip-rk3588-fix-indent.patch │ │ │ ├── 030-06-v6.9-clk-rockchip-rk3588-use-linked-clock-ID-for-GATE_LINK.patch │ │ │ ├── 030-07-v6.10-dt-bindings-reset-Define-reset-id-used-for-HDMI-Receiver.patch │ │ │ ├── 030-08-v6.10-clk-rockchip-rk3588-Add-reset-line-for-HDMI-Receiver.patch │ │ │ ├── 030-09-v6.12-soc-rockchip-grf-Add-rk3576-default-GRF-values.patch │ │ │ ├── 030-10-v6.12-pinctrl-rockchip-Add-rk3576-pinctrl-support.patch │ │ │ ├── 030-11-v6.12-dt-bindings-clock-reset-Add-support-for-rk3576.patch │ │ │ ├── 030-12-v6.12-clk-rockchip-Add-new-pll-type-pll_rk3588_ddr.patch │ │ │ ├── 030-13-v6.12-clk-rockchip-Add-clock-controller-for-the-RK3576.patch │ │ │ ├── 030-14-v6.12-dt-bindings-clock-reset-fix-top-comment-indentation-rk357.patch │ │ │ ├── 030-15-v6.12-clk-rockchip-fix-finding-of-maximum-clock-ID.patch │ │ │ ├── 031-01-v6.7-mfd-rk8xx-Add-support-for-standard-system-power-controlle.patch │ │ │ ├── 031-02-v6.7-mfd-rk8xx-Add-support-for-RK806-power-off.patch │ │ │ ├── 031-03-v6.12-dt-bindings-power-Add-support-for-RK3576-SoC.patch │ │ │ ├── 031-04-v6.12-pmdomain-rockchip-Add-support-for-RK3576-SoC.patch │ │ │ ├── 031-05-v6.12-pmdomain-rockchip-Add-gating-support.patch │ │ │ ├── 031-06-v6.12-pmdomain-rockchip-Add-gating-masks-for-rk3576.patch │ │ │ ├── 032-01-v6.10-phy-rockchip-add-usbdp-combo-phy-driver.patch │ │ │ ├── 032-02-v6.10-phy-rockchip-usbdp-fix-uninitialized-variable.patch │ │ │ ├── 032-03-v6.10-phy-rockchip-fix-CONFIG_TYPEC-dependency.patch │ │ │ ├── 032-04-v6.10-phy-rockchip-Fix-typo-in-function-names.patch │ │ │ ├── 032-05-v6.10-phy-rockchip-snps-pcie3-add-support-for.patch │ │ │ ├── 032-06-v6.13-phy-rockchip-inno-usb2-convert-clock-management-to-bulk.patch │ │ │ ├── 032-07-v6.13-phy-rockchip-inno-usb2-Add-usb2-phys-support-for-rk3576.patch │ │ │ ├── 032-08-v6.13-phy-rockchip-usbdp-add-rk3576-device-match-data.patch │ │ │ ├── 033-01-v6.13-gpio-rockchip-explan-the-format-of-the-GPIO-version-ID.patch │ │ │ ├── 033-02-v6.13-gpio-rockchip-change-the-GPIO-version-judgment-logic.patch │ │ │ ├── 033-03-v6.13-gpio-rockchip-support-new-version-GPIO.patch │ │ │ ├── 034-v6.7-usb-dwc3-add-optional-PHY-interface-clocks.patch │ │ │ ├── 035-01-v6.12-mmc-dw_mmc-rockchip-Add-internal-phase-support.patch │ │ │ ├── 035-02-v6.12-mmc-dw_mmc-rockchip-Add-support-for-rk3576-SoCs.patch │ │ │ ├── 036-01-v6.12-ethernet-stmmac-dwmac-rk-Fix-typo-for-RK3588-code.patch │ │ │ ├── 036-02-v6.12-ethernet-stmmac-dwmac-rk-Add-GMAC-support-for-RK3576.patch │ │ │ ├── 037-v6.13-irqchip-gic-v3-its-Share-ITS-tables-with-a-non-trust.patch │ │ │ ├── 038-v6.13-irqchip-gic-v3-its-Fix-over-allocation-in-itt_alloc.patch │ │ │ ├── 039-v6.15-irqchip-gic-v3-Add-Rockchip-3568002-erratum-workaround.patch │ │ │ ├── 040-01-v6.15-arm64-dts-rockchip-rk356x-Add-MSI-controller-node.patch │ │ │ ├── 040-02-v6.15-arm64-dts-rockchip-rk356x-Move-PCIe-MSI-to-use-GIC.patch │ │ │ ├── 050-01-v6.8-arm64-dts-rockchip-Add-sfc-node-to-rk3588s.patch │ │ │ ├── 050-02-v6.8-arm64-dts-rockchip-Add-I2S2-M0-pin-definitions-to-rk3588s.patch │ │ │ ├── 050-03-v6.8-arm64-dts-rockchip-Add-UART9-M0-pin-definitions-to-rk3588.patch │ │ │ ├── 050-04-v6.8-arm64-dts-rockchip-Add-AV1-decoder-node-to-rk3588s.patch │ │ │ ├── 050-05-v6.8-arm64-dts-rockchip-Add-DFI-to-rk3588s.patch │ │ │ ├── 050-06-v6.8-arm64-dts-rockchip-rk3588s-Add-USB3-host-controller.patch │ │ │ ├── 050-07-v6.7-arm64-dts-rockchip-drop-interrupt-names-property-from.patch │ │ │ ├── 050-08-v6.8-arm64-dts-rockchip-move-rk3588-serial-aliases-to-soc-dtsi.patch │ │ │ ├── 050-09-v6.8-arm64-dts-rockchip-add-rk3588-i2c-aliases-to-soc-dtsi.patch │ │ │ ├── 050-10-v6.8-arm64-dts-rockchip-add-rk3588-gpio-aliases-to-soc-dtsi.patch │ │ │ ├── 050-11-v6.8-arm64-dts-rockchip-add-rk3588-spi-aliases-to-soc-dtsi.patch │ │ │ ├── 050-12-v6.8-arm64-dts-rockchip-Add-vop-on-rk3588.patch │ │ │ ├── 050-13-v6.9-arm64-dts-rockchip-Add-HDMI0-PHY-to-rk3588.patch │ │ │ ├── 050-14-v6.9-arm64-dts-rockchip-add-clock-to-vo1-grf-syscon-on-rk3588.patch │ │ │ ├── 050-15-v6.10-arm64-dts-rockchip-Add-rk3588-GPU-node.patch │ │ │ ├── 050-16-v6.10-arm64-dts-rockchip-Fix-ordering-of-nodes-on-rk3588s.patch │ │ │ ├── 050-17-v6.10-arm64-dts-rockchip-fix-usb2phy-nodename-for-rk3588.patch │ │ │ ├── 050-18-v6.10-arm64-dts-rockchip-reorder-usb2phy-properties-for-rk3588.patch │ │ │ ├── 050-19-v6.10-arm64-dts-rockchip-add-USBDP-phys-on-rk3588.patch │ │ │ ├── 050-20-v6.10-arm64-dts-rockchip-add-USB3-DRD-controllers-on-rk3588.patch │ │ │ ├── 050-21-v6.10-arm64-dts-rockchip-add-rk3588-pcie-and-php-IOMMUs.patch │ │ │ ├── 050-22-v6.11-arm64-dts-rockchip-Prepare-RK3588-SoC-dtsi-files-for.patch │ │ │ ├── 050-23-v6.11-arm64-dts-rockchip-add-thermal-zones-information-on-RK358.patch │ │ │ ├── 050-24-v6.11-arm64-dts-rockchip-add-passive-GPU-cooling-on-RK3588.patch │ │ │ ├── 050-25-v6.11-arm64-dts-rockchip-Add-OPP-data-for-CPU-cores-on-RK3588.patch │ │ │ ├── 050-26-v6.11-arm64-dts-rockchip-Add-OPP-data-for-CPU-cores-on-RK3588j.patch │ │ │ ├── 050-27-v6.11-arm64-dts-rockchip-Split-GPU-OPPs-of-RK3588-and-RK3588j.patch │ │ │ ├── 060-v6.13-arm64-dts-rockchip-Add-rk3576-SoC-base-DT.patch │ │ │ ├── 061-v6.14-arm64-dts-rockchip-Add-rk3576-naneng-combphy-nodes.patch │ │ │ ├── 062-v6.14-arm64-dts-rockchip-add-usb-related-nodes-for-rk3576.patch │ │ │ ├── 063-v6.15-arm64-dts-rockchip-add-rk3576-otp-node.patch │ │ │ ├── 064-01-v6.15-arm64-dts-rockchip-Add-vop-for-rk3576.patch │ │ │ ├── 064-02-v6.15-arm64-dts-rockchip-Add-hdmi-for-rk3576.patch │ │ │ ├── 065-v6.15-arm64-dts-rockchip-Add-SFC-nodes-for-rk3576.patch │ │ │ ├── 066-01-v6.15-dt-bindings-clock-rk3576-add-SCMI-clocks.patch │ │ │ ├── 066-02-v6.15-arm64-dts-rockchip-fix-RK3576-SCMI-clock-IDs.patch │ │ │ ├── 067-v6.16-arm64-dts-rockchip-Add-rk3576-pcie-nodes.patch │ │ │ ├── 068-01-v6.16-arm64-dts-rockchip-Add-RK3576-SAI-nodes.patch │ │ │ ├── 068-02-v6.16-arm64-dts-rockchip-Add-RK3576-HDMI-audio.patch │ │ │ ├── 069-v6.16-arm64-dts-rockchip-fix-rk3576-pcie-unit-addresses.patch │ │ │ ├── 069-v6.16-arm64-dts-rockchip-fix-rk3576-pcie1-linux-pci-domain.patch │ │ │ ├── 070-v6.17-arm64-dts-rockchip-add-SDIO-controller-on-RK3576.patch │ │ │ ├── 071-v6.17-phy-rockchip-pcie-Enable-all-four-lanes-if-required.patch │ │ │ ├── 100-rockchip-use-system-LED-for-OpenWrt.patch │ │ │ ├── 101-net-realtek-r8169-add-LED-configuration-from-OF.patch │ │ │ ├── 103-arm64-rockchip-add-OF-node-for-USB-eth-on-NanoPi-R2S.patch │ │ │ ├── 105-nanopi-r4s-sd-signalling.patch │ │ │ ├── 106-r4s-openwrt-leds.patch │ │ │ ├── 106-rockchip-rock-pi-4.patch │ │ │ ├── 107-mmc-core-set-initial-signal-voltage-on-power-off.patch │ │ │ ├── 110-arm64-rk3568-update-gicv3-its-and-pci-msi-map.patch │ │ │ ├── 112-arm64-dts-rockchip-rk3568-Add-xpcs-support.patch │ │ │ ├── 113-ethernet-stmicro-stmmac-Add-SGMII-QSGMII-support.patch │ │ │ ├── 114-arm64-dts-rockchip-Update-LED-properties-for-Orange-.patch │ │ │ ├── 115-arm64-dts-rockchip-add-LED-configuration-to-Orange-P.patch │ │ │ ├── 120-phy-rockchip-naneng-combo-add-rk3576-support.patch │ │ │ ├── 201-rockchip-rk3328-add-i2c0-controller-for-nanopi-r2s.patch │ │ │ ├── 205-rockchip-rk3328-add-support-for-FriendlyARM-NanoPi-Neo3.patch │ │ │ ├── 210-rockchip-rk356x-add-support-for-new-boards.patch │ │ │ ├── 211-rockchip-rk3399-add-support-more-devices.patch │ │ │ ├── 212-rockchip-rk3528-add-support-for-new-boards.patch │ │ │ ├── 220-phy-rockchip-naneng-combphy-fix-phy-reset.patch │ │ │ ├── 301-pinctrl-rockchip-add-rk3528-support.patch │ │ │ ├── 302-thermal-rockchip-add-support-for-rk3528.patch │ │ │ ├── 303-soc-rockchip-power-domain-Add-always-on.patch │ │ │ ├── 304-soc-rockchip-power-domain-add-rk3528-support.patch │ │ │ ├── 305-clk-rockchip-add-clock-controller-for-the-RK3528.patch │ │ │ ├── 306-ethernet-stmmac-dwmac-rk3528-add-GMAC-support.patch │ │ │ ├── 307-phy-rockchip-inno-usb2-add-phy-support-for-rk3528.patch │ │ │ ├── 308-phy-rockchip-naneng-combphy-add-support-rk3528.patch │ │ │ ├── 310-mmc-dw_mmc-rockchip-add-v2-tuning-support.patch │ │ │ ├── 350-arm64-dts-rockchip-add-PWM-nodes-to-RK3576-SoC.patch │ │ │ ├── 700-ethernet-stmmac-Add-property-to-disable-VLAN-hw-filter.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-rockchip-rk3328-devices-add-dmc.patch │ │ │ ├── 991-arm64-dts-rockchip-add-more-cpu-operating-points-for.patch │ │ │ └── 992-rockchip-rk3399-overclock-to-2.2-1.8-GHz.patch │ ├── sifiveu │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-6.12 │ │ ├── config-6.6 │ │ ├── generic │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ └── gen_sifiveu_sdcard_img.sh │ │ ├── patches-6.12 │ │ │ └── 0001-riscv-sifive-fu740-cpu-1-2-3-4-set-compatible-to-sif.patch │ │ └── patches-6.6 │ │ │ ├── 0001-riscv-sifive-fu740-cpu-1-2-3-4-set-compatible-to-sif.patch │ │ │ ├── 0004-riscv-sifive-unmatched-add-gpio-poweroff-node.patch │ │ │ └── 0005-riscv-sifive-unleashed-define-opp-table-cpufreq.patch │ ├── siflower │ │ ├── Makefile │ │ ├── dts │ │ │ ├── sf19a2890.dtsi │ │ │ └── sf19a2890_evb.dts │ │ ├── files-6.6 │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ └── include │ │ │ │ │ └── asm │ │ │ │ │ └── mach-siflower │ │ │ │ │ └── kmalloc.h │ │ │ ├── drivers │ │ │ │ ├── clk │ │ │ │ │ └── siflower │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── clk-sf19a2890-periph.c │ │ │ │ │ │ └── clk-sf19a2890.c │ │ │ │ ├── gpio │ │ │ │ │ └── gpio-siflower.c │ │ │ │ ├── net │ │ │ │ │ └── ethernet │ │ │ │ │ │ └── stmicro │ │ │ │ │ │ └── stmmac │ │ │ │ │ │ └── dwmac-sf19a2890.c │ │ │ │ ├── phy │ │ │ │ │ └── siflower │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── phy-sf19a2890-usb.c │ │ │ │ ├── pinctrl │ │ │ │ │ └── pinctrl-sf19a2890.c │ │ │ │ └── reset │ │ │ │ │ └── reset-sf19a2890-periph.c │ │ │ └── include │ │ │ │ └── dt-bindings │ │ │ │ └── clock │ │ │ │ └── siflower,sf19a2890-clk.h │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ ├── patches-6.6 │ │ │ ├── 001-mips-add-support-for-Siflower-SF19A2890.patch │ │ │ ├── 002-clk-add-drivers-for-sf19a2890.patch │ │ │ ├── 003-reset-add-support-for-sf19a2890.patch │ │ │ ├── 004-gpio-add-support-for-siflower-socs.patch │ │ │ ├── 005-pinctrl-add-driver-for-siflower-sf19a2890.patch │ │ │ ├── 006-stmmac-add-support-for-sf19a2890.patch │ │ │ ├── 007-phy-add-support-for-SF19A2890-USB-PHY.patch │ │ │ ├── 008-usb-dwc2-add-support-for-Siflower-SF19A2890.patch │ │ │ └── 009-usb-dwc2-handle-OTG-interrupt-regardless-of-GINTSTS.patch │ │ └── sf19a2890 │ │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ │ ├── config-6.6 │ │ │ └── target.mk │ ├── silicon │ │ ├── Makefile │ │ └── image │ │ │ ├── Makefile │ │ │ └── armv8.mk │ ├── starfive │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ └── firmware │ │ │ │ └── brcm │ │ │ │ ├── brcmfmac43430-sdio.txt │ │ │ │ └── brcmfmac43430a0-sdio.txt │ │ ├── config-6.12 │ │ ├── generic │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_starfive_sdcard_img.sh │ │ │ ├── mmc.bootscript.jh7100 │ │ │ └── mmc.bootscript.jh7110 │ │ └── patches-6.12 │ │ │ ├── 0001-riscv-dts-starfive-Add-full-support-except-VIN-and-V.patch │ │ │ ├── 0002-clocksource-Add-JH7110-timer-driver.patch │ │ │ ├── 0003-pwm-opencores-Add-PWM-driver-support.patch │ │ │ ├── 0004-spi-spl022-Get-and-deassert-reset-in-probe.patch │ │ │ ├── 0005-i2c-designware-Delete-SMBus-functionalities.patch │ │ │ ├── 0006-drivers-mtd-gigadevice-add-gd25lq256d-32M-flash-supp.patch │ │ │ ├── 0007-driver-mailbox-Add-mailbox-driver.patch │ │ │ ├── 0008-driver-rtc-Add-StarFive-JH7110-rtc-driver.patch │ │ │ ├── 0009-uart-8250-Add-dw-auto-flow-ctrl-support.patch │ │ │ ├── 0010-uart-8250-add-reset-operation-in-runtime-PM.patch │ │ │ ├── 0011-CAN-starfive-Add-CAN-engine-support.patch │ │ │ ├── 0012-ipms-CAN-Solve-CAN-packet-leakage-problem.patch │ │ │ ├── 0013-drivers-nvme-Add-precheck-and-delay-for-CQE-pending-.patch │ │ │ ├── 0014-riscv-Optimize-memcpy-with-aligned-version.patch │ │ │ ├── 0015-riscv-purgatory-Change-memcpy-to-the-aligned-version.patch │ │ │ ├── 0016-riscv-Fix-__memcpy_aligned-alias.patch │ │ │ ├── 0017-plic-irq-Set-IRQCHIP_EOI_THREADED-in-PREEMPT_RT-case.patch │ │ │ ├── 0018-driver-e24-add-e24-driver.patch │ │ │ ├── 0019-net-stmmac-Extend-waiting-time-of-dma-reset.patch │ │ │ ├── 0020-spi-pl022-starfive-Add-platform-bus-register-to-adap.patch │ │ │ ├── 0021-spi-pl022-starfive-Avoid-power-device-error-when-CON.patch │ │ │ ├── 0022-spi-pl022-starfive-fix-the-problem-of-spi-overlay-re.patch │ │ │ ├── 0023-spi-pl022-starfive-Enable-spi-to-be-compiled-into-mo.patch │ │ │ ├── 0024-spi-pl022-Prompt-warning-when-frequency-does-not-sup.patch │ │ │ ├── 0025-spi-pl022-Fix-spi-overlay-falut.patch │ │ │ ├── 0026-RISC-V-Added-generic-pmu-events-mapfile.patch │ │ │ ├── 0027-RISC-V-Create-unique-identification-for-SoC-PMU.patch │ │ │ ├── 0028-RISC-V-Support-CPUID-for-risc-v-in-perf.patch │ │ │ ├── 0029-dmaengine-dw-axi-dmac-Drop-unused-print-message.patch │ │ │ ├── 0030-riscv-dts-starfive-vf2-add-reserved-memory-for-E24.patch │ │ │ ├── 1000-riscv-dts-starfive-Add-JH7100-high-speed-UARTs.patch │ │ │ ├── 1001-riscv-dts-starfive-Enable-Bluetooth-on-JH7100-boards.patch │ │ │ ├── 1002-serial-8250_dw-Add-starfive-jh7100-hsuart-compatible.patch │ │ │ ├── 1003-drivers-tty-serial-8250-update-driver-for-JH7100.patch │ │ │ ├── 1004-power-reset-tps65086-Allow-building-as-a-module.patch │ │ │ ├── 1005-riscv-dts-starfive-Add-StarFive-JH7100-audio-clock-n.patch │ │ │ ├── 1006-dt-bindings-reset-Add-StarFive-JH7100-audio-reset-de.patch │ │ │ ├── 1007-reset-starfive-Add-JH7100-audio-reset-driver.patch │ │ │ ├── 1008-riscv-dts-starfive-Add-StarFive-JH7100-audio-reset-n.patch │ │ │ ├── 1009-clk-starfive-jh7100-Keep-more-clocks-alive.patch │ │ │ ├── 1010-pinctrl-starfive-Reset-pinmux-settings.patch │ │ │ ├── 1011-net-stmmac-use-GFP_DMA32.patch │ │ │ ├── 1012-dt-bindings-dma-dw-axi-dmac-Increase-DMA-channel-lim.patch │ │ │ ├── 1013-dmaengine-dw-axi-dmac-Handle-xfer-start-while-non-id.patch │ │ │ ├── 1014-dmaengine-dw-axi-dmac-Add-StarFive-JH7100-support.patch │ │ │ ├── 1015-hwrng-Add-StarFive-JH7100-Random-Number-Generator-dr.patch │ │ │ ├── 1016-usb-cdns3-starfive-Simplify-mode-init.patch │ │ │ ├── 1017-usb-cdns3-starfive-Don-t-store-device-backpointer.patch │ │ │ ├── 1018-usb-cdns3-starfive-Add-StarFive-JH7100-support.patch │ │ │ ├── 1019-riscv-dts-starfive-Add-JH7100-USB-node.patch │ │ │ ├── 1020-usb-cdns3-starfive-Initialize-JH7100-host-mode.patch │ │ │ ├── 1021-riscv-dts-Add-full-JH7100-Starlight-and-VisionFive-s.patch │ │ │ └── 1022-riscv-dts-starfive-vf1-add-LED-aliases-and-stop-hear.patch │ ├── stm32 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── extlinux.conf │ │ │ └── gen_stm32_sdcard_img.sh │ │ ├── modules.mk │ │ ├── patches-6.12 │ │ │ ├── 032-ARM-dts-stm32-rtc-add-pin-to-provide-LSCO-on-stm32mp.patch │ │ │ ├── 033-ARM-dts-stm32-rtc-add-LSCO-to-WLAN-BT-module-on-stm3.patch │ │ │ ├── 034-ARM-dts-stm32-add-support-of-WLAN-BT-on-stm32mp135f-.patch │ │ │ ├── 035-ARM-dts-stm32-rtc-add-pin-to-provide-LSCO-on-stm32mp.patch │ │ │ ├── 036-ARM-dts-stm32-rtc-add-LSCO-to-WLAN-BT-module-on-stm3.patch │ │ │ ├── 037-ARM-dts-stm32-add-support-of-WLAN-BT-on-stm32mp157c-.patch │ │ │ ├── 700-net-stmmac-dwmac-stm32-add-support-of-phy-supply-pro.patch │ │ │ ├── 900-ARM-dts-stm32-add-ethernet2-for-STM32MP135F-DK-board.patch │ │ │ └── 910-ARM-dts-stm32-add-missing-eth_wake_irq-interrupt-for.patch │ │ └── stm32mp1 │ │ │ ├── config-6.12 │ │ │ └── target.mk │ ├── sunxi │ │ ├── Makefile │ │ ├── arm926ejs │ │ │ ├── config-6.12 │ │ │ └── target.mk │ │ ├── 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 │ │ │ │ │ └── brcmfmac43430a0-sdio.txt │ │ │ │ ├── preinit │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-6.12 │ │ ├── config-6.6 │ │ ├── cortexa53 │ │ │ ├── config-6.12 │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ ├── cortexa7 │ │ │ ├── config-6.12 │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ ├── cortexa8 │ │ │ ├── config-6.12 │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── arm926ejs.mk │ │ │ ├── cortexa53.mk │ │ │ ├── cortexa7.mk │ │ │ ├── cortexa8.mk │ │ │ └── gen_sunxi_sdcard_img.sh │ │ ├── modules.mk │ │ ├── patches-6.12 │ │ │ ├── 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 │ │ │ ├── 410-sunxi-add-bananapi-p2-zero.patch │ │ │ ├── 430-arm64-dts-allwinner-a64-olinuxino-add-status-LED-ali.patch │ │ │ ├── 431-arm64-dts-allwinner-nanopi-r1s-h5-add-status-LED.patch │ │ │ ├── 440-arm64-dts-allwinner-h616-fix-cpu-max-freq.patch │ │ │ ├── 442-arm64-dts-orangepi-one-plus-enable-PWM.patch │ │ │ ├── 450-arm64-dts-enable-wifi-on-pine64-boards.patch │ │ │ ├── 451-sunxi-add-csi-video-support-for-nanopi-neo-air.patch │ │ │ ├── 460-f1c100s-sram-driver.patch │ │ │ └── 461-f1c100s-watchdog-compat.patch │ │ ├── patches-6.6 │ │ │ ├── 008-v6.7-arm64-dts-allwinner-h616-Add-SID-controller-node.patch │ │ │ ├── 009-v6.9-soc-sunxi-sram-export-register-0-for-THS-on-H616.patch │ │ │ ├── 010-v6.8-thermal-drivers-sun8i-Add-D1-T113s-THS-controller-support.patch │ │ │ ├── 011-v6.9-thermal-drivers-sun8i-Explain-unknown-H6-register-value.patch │ │ │ ├── 012-v6.9-thermal-drivers-sun8i-Extend-H6-calibration-to-support-4.patch │ │ │ ├── 013-v6.9-thermal-drivers-sun8i-Add-SRAM-register-access-code.patch │ │ │ ├── 014-v6.9-thermal-drivers-sun8i-Add-support-for-H616-THS-controller.patch │ │ │ ├── 015-v6.9-thermal-drivers-sun8i-Dont-fail-probe-due-to-zone-registra.patch │ │ │ ├── 016-v6.9-arm64-dts-allwinner-h616-Add-thermal-sensor-and-zones.patch │ │ │ ├── 017-v6.10-firmware-smccc-Export-revision-soc_id-function.patch │ │ │ ├── 018-v6.10-cpufreq-dt-platdev-Blocklist-Allwinner-H616-618-SoCs.patch │ │ │ ├── 019-v6.10-cpufreq-sun50i-Refactor-speed-bin-decoding.patch │ │ │ ├── 020-v6.10-cpufreq-sun50i-Add-support-for-opp_supported_hw.patch │ │ │ ├── 021-v6.10-cpufreq-sun50i-Add-H616-support.patch │ │ │ ├── 022-v6.10-arm64-dts-allwinner-h616-Add-CPU-OPPs-table.patch │ │ │ ├── 023-v6.10-arm64-dts-allwinner-h616-enable-DVFS-for-all-boards.patch │ │ │ ├── 024-v6.10-cpufreq-sun50i-Fix-build-warning-around-snprint.patch │ │ │ ├── 025-v6.10-cpufreq-sun50i-fix-error-returns-in-dt_has_supported_hw.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 │ │ │ ├── 410-sunxi-add-bananapi-p2-zero.patch │ │ │ ├── 430-arm64-dts-allwinner-a64-olinuxino-add-status-LED-ali.patch │ │ │ ├── 440-arm64-dts-allwinner-h616-fix-cpu-max-freq.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 │ │ ├── config-5.4 │ │ ├── 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 │ │ └── patches-5.4 │ │ │ ├── 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 │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── inittab │ │ ├── config-6.6 │ │ ├── config │ │ │ ├── i386 │ │ │ └── x86_64 │ │ ├── files │ │ │ └── arch │ │ │ │ └── um │ │ │ │ └── include │ │ │ │ └── uapi │ │ │ │ └── asm │ │ │ │ └── Kbuild │ │ ├── image │ │ │ └── Makefile │ │ └── patches-6.6 │ │ │ ├── 101-mconsole-exec.patch │ │ │ └── 102-pseudo-random-mac.patch │ ├── x86 │ │ ├── 64 │ │ │ ├── base-files │ │ │ │ └── lib │ │ │ │ │ └── preinit │ │ │ │ │ └── 45_mount_xenfs │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ ├── config-5.4 │ │ │ ├── config-6.1 │ │ │ ├── config-6.12 │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ ├── Makefile │ │ ├── base-files.mk │ │ ├── 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 │ │ ├── config-5.4 │ │ ├── config-6.1 │ │ ├── config-6.12 │ │ ├── config-6.6 │ │ ├── files-5.4 │ │ │ └── drivers │ │ │ │ └── net │ │ │ │ └── ethernet │ │ │ │ └── intel │ │ │ │ └── igc │ │ │ │ ├── Makefile │ │ │ │ ├── igc.h │ │ │ │ ├── igc_base.c │ │ │ │ ├── igc_base.h │ │ │ │ ├── igc_defines.h │ │ │ │ ├── igc_diag.c │ │ │ │ ├── igc_diag.h │ │ │ │ ├── igc_dump.c │ │ │ │ ├── igc_ethtool.c │ │ │ │ ├── igc_hw.h │ │ │ │ ├── igc_i225.c │ │ │ │ ├── igc_i225.h │ │ │ │ ├── igc_mac.c │ │ │ │ ├── igc_mac.h │ │ │ │ ├── igc_main.c │ │ │ │ ├── igc_nvm.c │ │ │ │ ├── igc_nvm.h │ │ │ │ ├── igc_phy.c │ │ │ │ ├── igc_phy.h │ │ │ │ ├── igc_ptp.c │ │ │ │ ├── igc_regs.h │ │ │ │ ├── igc_tsn.c │ │ │ │ └── igc_tsn.h │ │ ├── files │ │ │ └── drivers │ │ │ │ └── staging │ │ │ │ └── rts5139 │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── TODO │ │ │ │ ├── debug.h │ │ │ │ ├── ms.c │ │ │ │ ├── ms.h │ │ │ │ ├── ms_mg.c │ │ │ │ ├── ms_mg.h │ │ │ │ ├── rts51x.c │ │ │ │ ├── rts51x.h │ │ │ │ ├── rts51x_card.c │ │ │ │ ├── rts51x_card.h │ │ │ │ ├── rts51x_chip.c │ │ │ │ ├── rts51x_chip.h │ │ │ │ ├── rts51x_fop.c │ │ │ │ ├── rts51x_fop.h │ │ │ │ ├── rts51x_scsi.c │ │ │ │ ├── rts51x_scsi.h │ │ │ │ ├── rts51x_transport.c │ │ │ │ ├── rts51x_transport.h │ │ │ │ ├── sd.c │ │ │ │ ├── sd.h │ │ │ │ ├── sd_cprm.c │ │ │ │ ├── sd_cprm.h │ │ │ │ ├── trace.h │ │ │ │ ├── xd.c │ │ │ │ └── xd.h │ │ ├── generic │ │ │ ├── base-files │ │ │ │ └── lib │ │ │ │ │ └── preinit │ │ │ │ │ └── 45_mount_xenfs │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ ├── config-5.4 │ │ │ ├── config-6.1 │ │ │ ├── config-6.12 │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ ├── geode │ │ │ ├── config-5.10 │ │ │ ├── config-5.15 │ │ │ ├── config-5.4 │ │ │ ├── config-6.1 │ │ │ ├── config-6.12 │ │ │ ├── config-6.6 │ │ │ └── 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 │ │ │ ├── config-5.4 │ │ │ ├── config-6.1 │ │ │ ├── config-6.12 │ │ │ ├── config-6.6 │ │ │ └── target.mk │ │ ├── modules.mk │ │ ├── patches-5.10 │ │ │ ├── 011-tune_lzma_options.patch │ │ │ ├── 020-x86-Fix-compile-problem.patch │ │ │ ├── 100-fix_cs5535_clockevt.patch │ │ │ ├── 300-pcengines_apu1_led.patch │ │ │ ├── 993-bnx2x_warpcore_8727_2_5g_sgmii_txfault.patch │ │ │ └── 996-intel-igc-i225-i226-disable-eee.patch │ │ ├── patches-5.15 │ │ │ ├── 100-fix_cs5535_clockevt.patch │ │ │ ├── 800-add-rts5139.patch │ │ │ ├── 992-enable-intel-guc.patch │ │ │ ├── 993-bnx2x_warpcore_8727_2_5g_sgmii_txfault.patch │ │ │ ├── 996-intel-igc-i225-i226-disable-eee.patch │ │ │ ├── 998-add-a-sysctl-to-enable-disable-tcp_collapse-logic.patch │ │ │ └── 999-Add-xtsproxy-Crypto-API-module.patch │ │ ├── patches-5.4 │ │ │ ├── 011-tune_lzma_options.patch │ │ │ ├── 012-pcengines-apu2-detect-apuv4-board.patch │ │ │ ├── 100-fix_cs5535_clockevt.patch │ │ │ ├── 300-pcengines_apu1_led.patch │ │ │ ├── 800-hwmon-w83627ehf-dont-claim-nct677x.patch │ │ │ └── 993-bnx2x_warpcore_8727_2_5g_sgmii_txfault.patch │ │ ├── patches-6.1 │ │ │ ├── 100-fix_cs5535_clockevt.patch │ │ │ ├── 800-add-rts5139.patch │ │ │ ├── 900-dg1-guc-and-huc-support.patch │ │ │ ├── 992-enable-intel-guc.patch │ │ │ ├── 993-bnx2x_warpcore_8727_2_5g_sgmii_txfault.patch │ │ │ ├── 996-intel-igc-i225-i226-disable-eee.patch │ │ │ ├── 998-add-a-sysctl-to-enable-disable-tcp_collapse-logic.patch │ │ │ └── 999-Add-xtsproxy-Crypto-API-module.patch │ │ ├── patches-6.12 │ │ │ ├── 100-fix_cs5535_clockevt.patch │ │ │ ├── 103-pcengines_apu6_platform.patch │ │ │ ├── 900-add-CPU-model-number-for-Bartlett-Lake.patch │ │ │ ├── 992-enable-intel-guc.patch │ │ │ ├── 993-bnx2x_warpcore_8727_2_5g_sgmii_txfault.patch │ │ │ ├── 996-intel-igc-i225-i226-disable-eee.patch │ │ │ └── 999-Add-xtsproxy-Crypto-API-module.patch │ │ └── patches-6.6 │ │ │ ├── 100-fix_cs5535_clockevt.patch │ │ │ ├── 900-add-CPU-model-number-for-Bartlett-Lake.patch │ │ │ ├── 992-enable-intel-guc.patch │ │ │ ├── 993-bnx2x_warpcore_8727_2_5g_sgmii_txfault.patch │ │ │ ├── 996-intel-igc-i225-i226-disable-eee.patch │ │ │ └── 999-Add-xtsproxy-Crypto-API-module.patch │ └── zynq │ │ ├── Makefile │ │ ├── base-files │ │ └── etc │ │ │ ├── board.d │ │ │ └── 02_network │ │ │ └── inittab │ │ ├── config-5.4 │ │ └── 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 │ │ ├── 001-PR-30569-always-call-elf_backend_size_dynamic_sectio.patch │ │ ├── 002-PR-30569-delete-_bfd_mips_elf_early_size_sections.patch │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 400-mips_no_dynamic_linking_sym.patch │ │ └── 500-Change-default-emulation-for-mips64-linux.patch │ │ ├── 2.39 │ │ ├── 001-PR-30569-always-call-elf_backend_size_dynamic_sectio.patch │ │ ├── 002-PR-30569-delete-_bfd_mips_elf_early_size_sections.patch │ │ ├── 005-ld-fix-NEWS-typos.patch │ │ ├── 008-gas-Dwarf-properly-skip-zero-size-functions.patch │ │ ├── 009-PR29462-internal-error-in-relocate-at-powerpc.cc-107.patch │ │ ├── 011-PR29466-APP-NO_APP-with-.linefile.patch │ │ ├── 039-LoongArch-ld-Fix-relocation-error-of-pcrel.patch │ │ ├── 043-Re-PR29466-APP-NO_APP-with-linefile.patch │ │ ├── 050-PowerPC64-pcrel-got-relocs-against-local-symbols.patch │ │ ├── 055-Re-PowerPC64-pcrel-got-relocs-against-local-symbols.patch │ │ ├── 058-elf-Reset-alignment-for-each-PT_LOAD-segment.patch │ │ ├── 063-PR29542-PowerPC-gold-internal-error-in-get_output_vi.patch │ │ ├── 116-arm-Use-DWARF-numbering-convention-for-pseudo-regist.patch │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 400-mips_no_dynamic_linking_sym.patch │ │ └── 500-Change-default-emulation-for-mips64-linux.patch │ │ ├── 2.40 │ │ ├── 001-PR-30569-always-call-elf_backend_size_dynamic_sectio.patch │ │ ├── 002-PR-30569-delete-_bfd_mips_elf_early_size_sections.patch │ │ ├── 005-libctf-update-regexp-to-allow-makeinfo-to-build-docu.patch │ │ ├── 007-Fix-version-number-snafu-in-some-configuration-files.patch │ │ ├── 010-toplevel-Makefile.def-add-install-strip-dependency-o.patch │ │ ├── 018-gprofng-PR29521-docs-man-pages-are-not-in-the-releas.patch │ │ ├── 020-gprofng-PR30043-libgprofng.so.-are-installed-to-a-wr.patch │ │ ├── 026-RISC-V-make-C-extension-JAL-available-again-for-32-b.patch │ │ ├── 034-bpf-fix-error-conversion-from-long-unsigned-int-to-u.patch │ │ ├── 035-Pass-JANSSON_LIBS-and-ZSTD_LIBS-to-ld-bootstrap-boot.patch │ │ ├── 036-Regen-config-files.patch │ │ ├── 040-configure-remove-dependencies-on-gmp-and-mpfr-when-g.patch │ │ ├── 046-gas-correct-symbol-name-comparison-in-.startof.-.siz.patch │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 400-mips_no_dynamic_linking_sym.patch │ │ └── 500-Change-default-emulation-for-mips64-linux.patch │ │ ├── 2.41 │ │ ├── 001-PR-30569-always-call-elf_backend_size_dynamic_sectio.patch │ │ ├── 002-PR-30569-delete-_bfd_mips_elf_early_size_sections.patch │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 400-mips_no_dynamic_linking_sym.patch │ │ └── 500-Change-default-emulation-for-mips64-linux.patch │ │ └── 2.42 │ │ ├── 001-PR-30569-always-call-elf_backend_size_dynamic_sectio.patch │ │ ├── 002-PR-30569-delete-_bfd_mips_elf_early_size_sections.patch │ │ ├── 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-11.x │ │ ├── 002-case_insensitive.patch │ │ ├── 010-documentation.patch │ │ ├── 011-v12-configure-define-TARGET_LIBC_GNUSTACK-on-musl.patch │ │ ├── 020-Include-safe-ctype.h-after-C-standard-headers-to-avo.patch │ │ ├── 110-Fix-MIPS-PR-84790.patch │ │ ├── 230-musl_libssp.patch │ │ ├── 300-mips_Os_cpu_rtx_cost_model.patch │ │ ├── 400-libsanitizer-cherry-pick-9cf13067cb5088626ba7-from-u.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 │ │ └── 980-libiberty-set_32 call.patch │ ├── patches-12.x │ │ ├── 002-case_insensitive.patch │ │ ├── 010-documentation.patch │ │ ├── 020-Include-safe-ctype.h-after-C-standard-headers-to-avo.patch │ │ ├── 021-libcc1-fix-vector-include.patch │ │ ├── 110-Fix-MIPS-PR-84790.patch │ │ ├── 230-musl_libssp.patch │ │ ├── 300-mips_Os_cpu_rtx_cost_model.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 881-no_tm_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 960-gotools-fix-compilation-when-making-cross-compiler.patch │ │ └── 970-macos_arm64-building-fix.patch │ ├── patches-13.x │ │ ├── 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 │ │ ├── 960-gotools-fix-compilation-when-making-cross-compiler.patch │ │ └── 970-macos_arm64-building-fix.patch │ ├── patches-14.x │ │ ├── 002-case_insensitive.patch │ │ ├── 003-dont-choke-when-building-32bit-on-64bit.patch │ │ ├── 010-documentation.patch │ │ ├── 230-musl_libssp.patch │ │ ├── 300-mips_Os_cpu_rtx_cost_model.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 830-aarch64-libatomic.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 881-no_tm_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 960-gotools-fix-compilation-when-making-cross-compiler.patch │ │ ├── 970-macos_arm64-building-fix.patch │ │ └── 980-fix-build-error-with-Xcode-16.3.patch │ └── patches-8.x │ │ ├── 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 │ │ └── 999-fix-apple-silicon-support.patch ├── gdb │ ├── Makefile │ └── patches │ │ ├── 120-fix-compile-flag-mismatch.patch │ │ └── 130-fix-build-error-with-Xcode-16.3.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 │ │ ├── 400-fix-loongarch64-ldso-file-name.patch │ │ ├── 600-nftw-support-common-gnu-extension.patch │ │ ├── 610-add-renameat2-linux-syscall-wrapper.patch │ │ ├── 900-iconv_size_hack.patch │ │ └── 901-crypt_size_hack.patch ├── nasm │ └── Makefile └── wrapper │ └── Makefile └── tools ├── 7z ├── Makefile └── patches │ ├── 7-zip-flags.patch │ └── 7-zip-musl.patch ├── Makefile ├── autoconf-archive └── Makefile ├── autoconf ├── Makefile └── patches │ └── 000-relocatable.patch ├── automake ├── Makefile ├── files │ └── aclocal └── patches │ ├── 000-relocatable.patch │ ├── 100-aclocal-skip-not-existing-directories.patch │ ├── 101-do-not-require-files.patch │ └── 200-other-V-values-for-verbosity.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 │ └── 002-fix-libmath.patch ├── bison ├── Makefile ├── patches │ └── 000-relocatable.patch └── scripts │ └── yacc ├── bzip2 ├── Makefile └── patches │ ├── 020-no-utime.patch │ └── 100-cmake.patch ├── cbootimage-configs └── Makefile ├── cbootimage └── Makefile ├── ccache ├── Makefile └── patches │ └── 100-honour-copts.patch ├── cmake ├── Makefile └── patches │ ├── 100-no-testing.patch │ ├── 110-liblzma.patch │ ├── 120-curl-fix-libressl-linking.patch │ ├── 130-bootstrap_parallel_make_flag.patch │ ├── 140-zlib.patch │ ├── 150-zstd-libarchive.patch │ └── 160-disable_xcode_generator.patch ├── coreutils ├── Makefile └── patches │ └── 000-bootstrap.patch ├── cpio ├── Makefile └── patches │ └── cpio-c23.patch ├── dosfstools ├── Makefile └── patches │ ├── 100-source-date-epoch.patch │ └── 101-config-switch-to-AC_CHECK_LIB.patch ├── dwarves ├── Makefile └── patches │ └── 100-reproducible-builds.patch ├── e2fsprogs └── Makefile ├── elftosb ├── Makefile └── patches │ ├── 001-libm.patch │ ├── 002-fix-header-path.patch │ └── 003-use-ldflags.patch ├── elfutils ├── Makefile └── patches │ ├── 011-backport-mips-support-strip.patch │ ├── 012-backport-mips-support-readelf.patch │ └── 013-backport-mips-support-elflint.patch ├── erofs-utils └── Makefile ├── expat └── Makefile ├── fakeroot ├── Makefile └── patches │ ├── 000-relocatable.patch │ ├── 200-disable-doc.patch │ ├── 300-time64-hack.patch │ ├── 400-alpine-libc.musl-fix.patch │ └── 600-macOS.patch ├── findutils └── Makefile ├── firmware-utils └── Makefile ├── flex ├── Makefile └── patches │ ├── 200-build-AC_USE_SYSTEM_EXTENSIONS-in-configure.ac.patch │ └── 300-m4-path.patch ├── flock ├── Makefile └── src │ └── flock.c ├── genext2fs └── Makefile ├── gengetopt ├── Makefile └── patches │ ├── 001-gm_utils.cpp-Call-clear-instead-of-empty.patch │ └── 002-gm_utils.h-Drop-std-unary_function.patch ├── gmp ├── Makefile └── patches │ ├── 001-acinclude-m4-fix-std23.patch │ └── 002-acinclude-m4-add-parameter-names.patch ├── gnulib ├── Makefile └── patches │ ├── 000-bootstrap.patch │ ├── 010-autoconf-version.patch │ ├── 120-unmangle-darwin-fts-h.patch │ ├── 150-portable-tdestroy.patch │ ├── 160-flag-reallocarray.patch │ ├── 200-force-disable-after-configure.patch │ └── 320-modules-fallocate-posix.patch ├── include ├── asm │ ├── bitsperlong.h │ ├── byteorder.h │ ├── errno-base.h │ ├── errno.h │ ├── posix_types.h │ ├── swab.h │ └── types.h ├── byteswap.h ├── elf.h ├── endian.h ├── linux │ ├── big_endian.h │ ├── errno.h │ ├── little_endian.h │ ├── stddef.h │ └── swab.h └── sys │ └── sysmacros.h ├── isl └── Makefile ├── libdeflate └── Makefile ├── liblzo ├── Makefile └── patches │ └── 001-add-cmake-ENABLE-configurables.patch ├── 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 │ ├── 130-trailingslash.patch │ ├── 140-don-t-quote-SHELL-in-Makefile.am.patch │ └── 200-openwrt-branding.patch ├── llvm-bpf └── Makefile ├── lz4 └── Makefile ├── lzma-old ├── Makefile └── patches │ ├── 100-lzma_zlib.patch │ ├── 110-ranlib.patch │ └── 120-add-cflags.patch ├── 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 ├── lzop ├── Makefile └── patches │ └── 001-add-cmake-ENABLE_DOCS-configurable.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 │ ├── mfx_acc.m4 │ ├── mfx_cppflags.m4 │ ├── mfx_limits.m4 │ ├── uintmax_t.m4 │ └── va_copy.m4 ├── mkimage ├── Makefile └── patches │ ├── 030-allow-to-use-different-magic.patch │ ├── 050-Add-compatibility-with-non-Linux-hosts.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 ├── mold └── Makefile ├── 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 │ ├── 001-backport-gtest.patch │ ├── 010-bootstrap-configure-only.patch │ └── 100-make_jobserver_support.patch ├── padjffs2 ├── Makefile └── src │ ├── Makefile │ └── padjffs2.c ├── patch-image ├── Makefile └── src │ ├── patch-cmdline.c │ └── patch-dtb.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 │ └── 070-don-t-fail-hard-on-EACCES-when-copying-xattrs.patch ├── 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 └── patches │ └── 001-sed-fix-handling-of-symlinks-pointing-to-path-with-1.patch ├── sparse ├── Makefile └── patches │ └── 010-llvm15.patch ├── squashfs3-lzma ├── 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 │ └── 150-fix-unitialized-memory.patch ├── squashfs4 ├── Makefile └── patches │ ├── 001-xz_wrapper-support-multiple-lzma-configuration-optio.patch │ └── 002-xz_wrapper-make-new-OpenWrt-extended-options-non-def.patch ├── sstrip ├── Makefile └── patches │ └── 001-disable-elftoc-compilation.patch ├── tar ├── Makefile └── patches │ ├── 0001-Fix-savannah-bug-64441.patch │ ├── 100-symlink-force-root-name.patch │ └── 110-symlink-force-permissions.patch ├── util-linux ├── Makefile └── patches │ └── 100-fix_include_order.patch ├── xxhash └── Makefile ├── xz └── Makefile ├── yafut ├── Makefile └── patches │ └── 100-portability.patch ├── 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 /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/openwrt-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/.github/workflows/openwrt-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/COPYING -------------------------------------------------------------------------------- /Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/Config.in -------------------------------------------------------------------------------- /LICENSES/BSD-2-Clause: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/LICENSES/BSD-2-Clause -------------------------------------------------------------------------------- /LICENSES/BSD-3-Clause: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/LICENSES/BSD-3-Clause -------------------------------------------------------------------------------- /LICENSES/GPL-1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/LICENSES/GPL-1.0 -------------------------------------------------------------------------------- /LICENSES/GPL-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/LICENSES/GPL-2.0 -------------------------------------------------------------------------------- /LICENSES/ISC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/LICENSES/ISC -------------------------------------------------------------------------------- /LICENSES/Linux-syscall-note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/LICENSES/Linux-syscall-note -------------------------------------------------------------------------------- /LICENSES/MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/LICENSES/MIT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/README_EN.md -------------------------------------------------------------------------------- /README_JA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/README_JA.md -------------------------------------------------------------------------------- /config/Config-build.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/config/Config-build.in -------------------------------------------------------------------------------- /config/Config-devel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/config/Config-devel.in -------------------------------------------------------------------------------- /config/Config-images.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/config/Config-images.in -------------------------------------------------------------------------------- /config/Config-kernel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/config/Config-kernel.in -------------------------------------------------------------------------------- /config/check-hostcxx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/config/check-hostcxx.sh -------------------------------------------------------------------------------- /config/check-uname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/config/check-uname.sh -------------------------------------------------------------------------------- /doc/cw-zh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/doc/cw-zh.jpg -------------------------------------------------------------------------------- /doc/h68k.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/doc/h68k.jpg -------------------------------------------------------------------------------- /doc/r1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/doc/r1.jpg -------------------------------------------------------------------------------- /doc/sige-en.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/doc/sige-en.jpg -------------------------------------------------------------------------------- /doc/sige-zh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/doc/sige-zh.jpg -------------------------------------------------------------------------------- /doc/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/doc/star.png -------------------------------------------------------------------------------- /feeds.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/feeds.conf.default -------------------------------------------------------------------------------- /include/autotools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/autotools.mk -------------------------------------------------------------------------------- /include/bpf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/bpf.mk -------------------------------------------------------------------------------- /include/cmake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/cmake.mk -------------------------------------------------------------------------------- /include/debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/debug.mk -------------------------------------------------------------------------------- /include/depends.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/depends.mk -------------------------------------------------------------------------------- /include/device_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/device_table.txt -------------------------------------------------------------------------------- /include/download.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/download.mk -------------------------------------------------------------------------------- /include/feeds.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/feeds.mk -------------------------------------------------------------------------------- /include/hardened-ld-pie.specs: -------------------------------------------------------------------------------- 1 | *self_spec: 2 | + %{no-pie|static|r|shared:;:-pie} 3 | -------------------------------------------------------------------------------- /include/hardening.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/hardening.mk -------------------------------------------------------------------------------- /include/host-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/host-build.mk -------------------------------------------------------------------------------- /include/image-commands.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/image-commands.mk -------------------------------------------------------------------------------- /include/image.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/image.mk -------------------------------------------------------------------------------- /include/kernel-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/kernel-5.10 -------------------------------------------------------------------------------- /include/kernel-5.15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/kernel-5.15 -------------------------------------------------------------------------------- /include/kernel-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/kernel-5.4 -------------------------------------------------------------------------------- /include/kernel-6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/kernel-6.1 -------------------------------------------------------------------------------- /include/kernel-6.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/kernel-6.12 -------------------------------------------------------------------------------- /include/kernel-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/kernel-6.6 -------------------------------------------------------------------------------- /include/kernel-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/kernel-build.mk -------------------------------------------------------------------------------- /include/kernel-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/kernel-defaults.mk -------------------------------------------------------------------------------- /include/kernel-version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/kernel-version.mk -------------------------------------------------------------------------------- /include/kernel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/kernel.mk -------------------------------------------------------------------------------- /include/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/logo.png -------------------------------------------------------------------------------- /include/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/logo.svg -------------------------------------------------------------------------------- /include/meson.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/meson.mk -------------------------------------------------------------------------------- /include/netfilter.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/netfilter.mk -------------------------------------------------------------------------------- /include/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/nls.mk -------------------------------------------------------------------------------- /include/openssl-module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/openssl-module.mk -------------------------------------------------------------------------------- /include/optee-os.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/optee-os.mk -------------------------------------------------------------------------------- /include/package-bin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/package-bin.mk -------------------------------------------------------------------------------- /include/package-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/package-defaults.mk -------------------------------------------------------------------------------- /include/package-dumpinfo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/package-dumpinfo.mk -------------------------------------------------------------------------------- /include/package-ipkg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/package-ipkg.mk -------------------------------------------------------------------------------- /include/package-seccomp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/package-seccomp.mk -------------------------------------------------------------------------------- /include/package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/package.mk -------------------------------------------------------------------------------- /include/prereq-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/prereq-build.mk -------------------------------------------------------------------------------- /include/prereq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/prereq.mk -------------------------------------------------------------------------------- /include/quilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/quilt.mk -------------------------------------------------------------------------------- /include/rootfs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/rootfs.mk -------------------------------------------------------------------------------- /include/scan.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/scan.awk -------------------------------------------------------------------------------- /include/scan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/scan.mk -------------------------------------------------------------------------------- /include/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/shell.sh -------------------------------------------------------------------------------- /include/site/aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/aarch64 -------------------------------------------------------------------------------- /include/site/aarch64_be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/aarch64_be -------------------------------------------------------------------------------- /include/site/arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/arc -------------------------------------------------------------------------------- /include/site/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/arm -------------------------------------------------------------------------------- /include/site/armeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/armeb -------------------------------------------------------------------------------- /include/site/darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/darwin -------------------------------------------------------------------------------- /include/site/i386: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . $TOPDIR/include/site/i486 3 | 4 | -------------------------------------------------------------------------------- /include/site/i486: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/i486 -------------------------------------------------------------------------------- /include/site/i686: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . $TOPDIR/include/site/i486 3 | 4 | -------------------------------------------------------------------------------- /include/site/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/linux -------------------------------------------------------------------------------- /include/site/loongarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/loongarch64 -------------------------------------------------------------------------------- /include/site/m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/m68k -------------------------------------------------------------------------------- /include/site/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/mips -------------------------------------------------------------------------------- /include/site/mips64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/mips64 -------------------------------------------------------------------------------- /include/site/mips64el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/mips64el -------------------------------------------------------------------------------- /include/site/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/mipsel -------------------------------------------------------------------------------- /include/site/powerpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/powerpc -------------------------------------------------------------------------------- /include/site/powerpc64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/powerpc64 -------------------------------------------------------------------------------- /include/site/riscv64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/riscv64 -------------------------------------------------------------------------------- /include/site/sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/sparc -------------------------------------------------------------------------------- /include/site/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/site/x86_64 -------------------------------------------------------------------------------- /include/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/subdir.mk -------------------------------------------------------------------------------- /include/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/target.mk -------------------------------------------------------------------------------- /include/toolchain-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/toolchain-build.mk -------------------------------------------------------------------------------- /include/toplevel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/toplevel.mk -------------------------------------------------------------------------------- /include/trusted-firmware-a.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/trusted-firmware-a.mk -------------------------------------------------------------------------------- /include/u-boot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/u-boot.mk -------------------------------------------------------------------------------- /include/uclibc++.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/uclibc++.mk -------------------------------------------------------------------------------- /include/unpack.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/unpack.mk -------------------------------------------------------------------------------- /include/verbose.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/verbose.mk -------------------------------------------------------------------------------- /include/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/include/version.mk -------------------------------------------------------------------------------- /package/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/Makefile -------------------------------------------------------------------------------- /package/base-files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/base-files/Makefile -------------------------------------------------------------------------------- /package/base-files/files/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/base-files/files/etc/fstab -------------------------------------------------------------------------------- /package/base-files/files/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/base-files/files/etc/group -------------------------------------------------------------------------------- /package/base-files/files/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/base-files/files/etc/hosts -------------------------------------------------------------------------------- /package/base-files/files/etc/hotplug.d/leds/00-init: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | [ "$ACTION" = "add" ] && /etc/init.d/led start "$DEVICENAME" 4 | -------------------------------------------------------------------------------- /package/base-files/files/etc/openwrt_version: -------------------------------------------------------------------------------- 1 | %C 2 | -------------------------------------------------------------------------------- /package/base-files/files/etc/os-release: -------------------------------------------------------------------------------- 1 | ../usr/lib/os-release -------------------------------------------------------------------------------- /package/base-files/files/etc/shells: -------------------------------------------------------------------------------- 1 | /bin/ash 2 | -------------------------------------------------------------------------------- /package/base-files/files/rom/note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/base-files/files/rom/note -------------------------------------------------------------------------------- /package/base-files/files/sbin/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/base-files/files/sbin/wifi -------------------------------------------------------------------------------- /package/base-files/image-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/base-files/image-config.in -------------------------------------------------------------------------------- /package/boot/fconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/fconfig/Makefile -------------------------------------------------------------------------------- /package/boot/grub2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/grub2/Makefile -------------------------------------------------------------------------------- /package/boot/imx-bootlets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/imx-bootlets/Makefile -------------------------------------------------------------------------------- /package/boot/kexec-tools/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/kexec-tools/Config.in -------------------------------------------------------------------------------- /package/boot/kexec-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/kexec-tools/Makefile -------------------------------------------------------------------------------- /package/boot/kobs-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/kobs-ng/Makefile -------------------------------------------------------------------------------- /package/boot/opensbi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/opensbi/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-armsr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/uboot-armsr/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-at91/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/uboot-at91/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-imx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/uboot-imx/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-lantiq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/uboot-lantiq/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-lantiq/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/uboot-lantiq/README -------------------------------------------------------------------------------- /package/boot/uboot-mvebu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/uboot-mvebu/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-mxs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/uboot-mxs/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-omap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/uboot-omap/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-oxnas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/uboot-oxnas/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-ramips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/uboot-ramips/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-stm32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/uboot-stm32/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/uboot-sunxi/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-tegra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/uboot-tegra/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-zynq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/boot/uboot-zynq/Makefile -------------------------------------------------------------------------------- /package/devel/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/devel/binutils/Makefile -------------------------------------------------------------------------------- /package/devel/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/devel/gdb/Makefile -------------------------------------------------------------------------------- /package/devel/perf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/devel/perf/Makefile -------------------------------------------------------------------------------- /package/devel/strace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/devel/strace/Makefile -------------------------------------------------------------------------------- /package/devel/tmon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/devel/tmon/Makefile -------------------------------------------------------------------------------- /package/devel/trace-cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/devel/trace-cmd/Makefile -------------------------------------------------------------------------------- /package/devel/valgrind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/devel/valgrind/Makefile -------------------------------------------------------------------------------- /package/firmware/ipq-wifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/firmware/ipq-wifi/Makefile -------------------------------------------------------------------------------- /package/firmware/quantenna/src/drivers/pcie2/include/qdpc_version.h: -------------------------------------------------------------------------------- 1 | #define DRV_VERSION "v37.3.2.44" 2 | -------------------------------------------------------------------------------- /package/kernel/ath10k-ct/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/ath10k-ct/Makefile -------------------------------------------------------------------------------- /package/kernel/button-hotplug/src/Kconfig: -------------------------------------------------------------------------------- 1 | config BUTTON_HOTPLUG 2 | tristate "Button Hotplug driver" 3 | -------------------------------------------------------------------------------- /package/kernel/button-hotplug/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_BUTTON_HOTPLUG} += button-hotplug.o -------------------------------------------------------------------------------- /package/kernel/gpio-button-hotplug/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m += gpio-button-hotplug.o 2 | -------------------------------------------------------------------------------- /package/kernel/gpio-nxp-74hc153/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m += gpio-nxp-74hc153.o 2 | -------------------------------------------------------------------------------- /package/kernel/ksmbd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/ksmbd/Makefile -------------------------------------------------------------------------------- /package/kernel/leds-ws2812b/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m := leds-ws2812b.o 2 | -------------------------------------------------------------------------------- /package/kernel/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/linux/Makefile -------------------------------------------------------------------------------- /package/kernel/linux/modules/fs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/linux/modules/fs.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/w1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/linux/modules/w1.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/mac80211/Makefile -------------------------------------------------------------------------------- /package/kernel/mac80211/ath.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/mac80211/ath.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/files/mac80211.hotplug: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | [ "${ACTION}" = "add" ] && { 4 | /sbin/wifi config 5 | } 6 | -------------------------------------------------------------------------------- /package/kernel/mac80211/intel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/mac80211/intel.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/marvell.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/mac80211/marvell.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/ralink.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/mac80211/ralink.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/realtek.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/mac80211/realtek.mk -------------------------------------------------------------------------------- /package/kernel/mt76/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/mt76/Makefile -------------------------------------------------------------------------------- /package/kernel/mt7621-qtn-rgmii/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m += mt7621-qtn-rgmii.o 2 | -------------------------------------------------------------------------------- /package/kernel/mtk-eip93/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/mtk-eip93/Config.in -------------------------------------------------------------------------------- /package/kernel/mtk-eip93/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/mtk-eip93/Makefile -------------------------------------------------------------------------------- /package/kernel/mwlwifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/mwlwifi/Makefile -------------------------------------------------------------------------------- /package/kernel/nat46/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/nat46/Makefile -------------------------------------------------------------------------------- /package/kernel/r8101/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/r8101/Makefile -------------------------------------------------------------------------------- /package/kernel/r8125/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/r8125/Makefile -------------------------------------------------------------------------------- /package/kernel/r8126/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/r8126/Makefile -------------------------------------------------------------------------------- /package/kernel/r8127/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/r8127/Makefile -------------------------------------------------------------------------------- /package/kernel/r8168/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/r8168/Makefile -------------------------------------------------------------------------------- /package/kernel/rtw88-usb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/rtw88-usb/Makefile -------------------------------------------------------------------------------- /package/kernel/trelay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/trelay/Makefile -------------------------------------------------------------------------------- /package/kernel/trelay/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m := trelay.o 2 | -------------------------------------------------------------------------------- /package/kernel/trelay/src/trelay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/trelay/src/trelay.c -------------------------------------------------------------------------------- /package/kernel/ubnt-ledbar/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m := leds-ubnt-ledbar.o 2 | -------------------------------------------------------------------------------- /package/kernel/yt6801/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/yt6801/Makefile -------------------------------------------------------------------------------- /package/kernel/yt6801/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/kernel/yt6801/src/Makefile -------------------------------------------------------------------------------- /package/lean/adbyby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/adbyby/Makefile -------------------------------------------------------------------------------- /package/lean/adbyby/files/data/user.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/lean/adbyby/files/user.action: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/lean/aic8800/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/aic8800/Makefile -------------------------------------------------------------------------------- /package/lean/autocore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/autocore/Makefile -------------------------------------------------------------------------------- /package/lean/autocore/files/60-autocore-reload-rpcd: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | /etc/init.d/rpcd restart 4 | 5 | exit 0 6 | -------------------------------------------------------------------------------- /package/lean/automount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/automount/Makefile -------------------------------------------------------------------------------- /package/lean/autosamba/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/autosamba/Makefile -------------------------------------------------------------------------------- /package/lean/cpufreq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/cpufreq/Makefile -------------------------------------------------------------------------------- /package/lean/dsmboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/dsmboot/Makefile -------------------------------------------------------------------------------- /package/lean/dsmboot/files/dsm.iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/dsmboot/files/dsm.iso -------------------------------------------------------------------------------- /package/lean/dsmboot/files/dsmboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/dsmboot/files/dsmboot -------------------------------------------------------------------------------- /package/lean/fogvdn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/fogvdn/Makefile -------------------------------------------------------------------------------- /package/lean/ipv6-helper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/ipv6-helper/Makefile -------------------------------------------------------------------------------- /package/lean/k3-firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/k3-firmware/Makefile -------------------------------------------------------------------------------- /package/lean/k3screenctrl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/k3screenctrl/Makefile -------------------------------------------------------------------------------- /package/lean/leigod-acc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/leigod-acc/Makefile -------------------------------------------------------------------------------- /package/lean/leigod-acc/files/version: -------------------------------------------------------------------------------- 1 | version=1.3.0.30 2 | -------------------------------------------------------------------------------- /package/lean/libcryptopp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/libcryptopp/Makefile -------------------------------------------------------------------------------- /package/lean/luci-app-leigod-acc/po/zh-cn: -------------------------------------------------------------------------------- 1 | zh_Hans -------------------------------------------------------------------------------- /package/lean/mentohust/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/mentohust/Makefile -------------------------------------------------------------------------------- /package/lean/mt/drivers/mt7603e/src/mt7603_wifi/include/phy/mt_phy.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /package/lean/mt/drivers/mt7603e/src/mt7603_wifi/os/linux/monitor_mode.c: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | */ 4 | #include "rt_os_util.h" 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /package/lean/mt/drivers/mt7603e/src/mt7603_wifi/os/linux/unload: -------------------------------------------------------------------------------- 1 | ifconfig ra0 down 2 | rmmod rt2860ap 3 | -------------------------------------------------------------------------------- /package/lean/mt/drivers/mt7603e/src/mt7603_wifi/tools/r.sh: -------------------------------------------------------------------------------- 1 | ifconfig ra0 down 2 | rmmod mt7603e_ap 3 | -------------------------------------------------------------------------------- /package/lean/mt/drivers/mt7615d/src/mt_wifi/embedded/tools/r.sh: -------------------------------------------------------------------------------- 1 | ifconfig ra0 down 2 | rmmod mt7603e_ap 3 | -------------------------------------------------------------------------------- /package/lean/mt/drivers/mt7615d/src/mt_wifi/embedded/unload: -------------------------------------------------------------------------------- 1 | ifconfig ra0 down 2 | rmmod mt7603_ap 3 | 4 | -------------------------------------------------------------------------------- /package/lean/mt/drivers/mt7615d/src/mt_wifi/include/phy/mt_phy.h: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /package/lean/mt/drivers/mt7615d/src/mt_wifi/os/linux/unload: -------------------------------------------------------------------------------- 1 | ifconfig ra0 down 2 | rmmod rt2860ap 3 | -------------------------------------------------------------------------------- /package/lean/mt/luci-app-mtwifi/root/lib/upgrade/keep.d/mtwifi: -------------------------------------------------------------------------------- 1 | /etc/wireless/mt7615/ 2 | 3 | -------------------------------------------------------------------------------- /package/lean/mt/mtk_apcli/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/mt/mtk_apcli/Makefile -------------------------------------------------------------------------------- /package/lean/mt/mtkiappd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/mt/mtkiappd/Makefile -------------------------------------------------------------------------------- /package/lean/ntfs3-mount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/ntfs3-mount/Makefile -------------------------------------------------------------------------------- /package/lean/ntfs3-mount/files/mount.ntfs: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | mount -t ntfs3 -o iocharset=utf8 "$@" 3 | -------------------------------------------------------------------------------- /package/lean/ntfs3-oot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/ntfs3-oot/Makefile -------------------------------------------------------------------------------- /package/lean/pcat-manager/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/pcat-manager/Makefile -------------------------------------------------------------------------------- /package/lean/polarssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/polarssl/Makefile -------------------------------------------------------------------------------- /package/lean/ps3netsrv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/ps3netsrv/Makefile -------------------------------------------------------------------------------- /package/lean/r8152/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/r8152/Makefile -------------------------------------------------------------------------------- /package/lean/srelay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/srelay/Makefile -------------------------------------------------------------------------------- /package/lean/ucl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/ucl/Makefile -------------------------------------------------------------------------------- /package/lean/upx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/upx/Makefile -------------------------------------------------------------------------------- /package/lean/vsftpd-alt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/vsftpd-alt/Makefile -------------------------------------------------------------------------------- /package/lean/wol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/lean/wol/Makefile -------------------------------------------------------------------------------- /package/libs/elfutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/elfutils/Makefile -------------------------------------------------------------------------------- /package/libs/gettext-full/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/gettext-full/Makefile -------------------------------------------------------------------------------- /package/libs/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/gmp/Makefile -------------------------------------------------------------------------------- /package/libs/jansson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/jansson/Makefile -------------------------------------------------------------------------------- /package/libs/libaudit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libaudit/Makefile -------------------------------------------------------------------------------- /package/libs/libbpf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libbpf/Makefile -------------------------------------------------------------------------------- /package/libs/libbsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libbsd/Makefile -------------------------------------------------------------------------------- /package/libs/libcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libcap/Makefile -------------------------------------------------------------------------------- /package/libs/libevent2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libevent2/Makefile -------------------------------------------------------------------------------- /package/libs/libjson-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libjson-c/Makefile -------------------------------------------------------------------------------- /package/libs/libmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libmd/Makefile -------------------------------------------------------------------------------- /package/libs/libmnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libmnl/Makefile -------------------------------------------------------------------------------- /package/libs/libnfnetlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libnfnetlink/Makefile -------------------------------------------------------------------------------- /package/libs/libnftnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libnftnl/Makefile -------------------------------------------------------------------------------- /package/libs/libnl-tiny/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libnl-tiny/Makefile -------------------------------------------------------------------------------- /package/libs/libnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libnl/Makefile -------------------------------------------------------------------------------- /package/libs/libpcap/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libpcap/Config.in -------------------------------------------------------------------------------- /package/libs/libpcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libpcap/Makefile -------------------------------------------------------------------------------- /package/libs/libselinux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libselinux/Makefile -------------------------------------------------------------------------------- /package/libs/libsemanage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libsemanage/Makefile -------------------------------------------------------------------------------- /package/libs/libsepol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libsepol/Makefile -------------------------------------------------------------------------------- /package/libs/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libtool/Makefile -------------------------------------------------------------------------------- /package/libs/libtracefs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libtracefs/Makefile -------------------------------------------------------------------------------- /package/libs/libubox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libubox/Makefile -------------------------------------------------------------------------------- /package/libs/libunwind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libunwind/Makefile -------------------------------------------------------------------------------- /package/libs/libusb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/libusb/Makefile -------------------------------------------------------------------------------- /package/libs/mbedtls/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/mbedtls/Config.in -------------------------------------------------------------------------------- /package/libs/mbedtls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/mbedtls/Makefile -------------------------------------------------------------------------------- /package/libs/mpfr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/mpfr/Makefile -------------------------------------------------------------------------------- /package/libs/musl-fts/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/musl-fts/Makefile -------------------------------------------------------------------------------- /package/libs/ncurses/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/ncurses/Makefile -------------------------------------------------------------------------------- /package/libs/nettle/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/nettle/Config.in -------------------------------------------------------------------------------- /package/libs/nettle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/nettle/Makefile -------------------------------------------------------------------------------- /package/libs/openssl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/openssl/Config.in -------------------------------------------------------------------------------- /package/libs/openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/openssl/Makefile -------------------------------------------------------------------------------- /package/libs/openssl/files/afalg.cnf: -------------------------------------------------------------------------------- 1 | [afalg_sect] 2 | default_algorithms = ALL 3 | 4 | -------------------------------------------------------------------------------- /package/libs/openssl/files/legacy.cnf: -------------------------------------------------------------------------------- 1 | [legacy_sect] 2 | activate = 1 3 | 4 | -------------------------------------------------------------------------------- /package/libs/openssl/files/padlock.cnf: -------------------------------------------------------------------------------- 1 | [padlock_sect] 2 | default_algorithms = ALL 3 | 4 | -------------------------------------------------------------------------------- /package/libs/pcre/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/pcre/Config.in -------------------------------------------------------------------------------- /package/libs/pcre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/pcre/Makefile -------------------------------------------------------------------------------- /package/libs/popt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/popt/Makefile -------------------------------------------------------------------------------- /package/libs/readline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/readline/Makefile -------------------------------------------------------------------------------- /package/libs/sysfsutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/sysfsutils/Makefile -------------------------------------------------------------------------------- /package/libs/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/toolchain/Makefile -------------------------------------------------------------------------------- /package/libs/uclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/uclient/Makefile -------------------------------------------------------------------------------- /package/libs/udebug/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/udebug/Makefile -------------------------------------------------------------------------------- /package/libs/ustream-ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/ustream-ssl/Makefile -------------------------------------------------------------------------------- /package/libs/wolfssl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/wolfssl/Config.in -------------------------------------------------------------------------------- /package/libs/wolfssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/wolfssl/Makefile -------------------------------------------------------------------------------- /package/libs/zlib/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/zlib/Config.in -------------------------------------------------------------------------------- /package/libs/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/libs/zlib/Makefile -------------------------------------------------------------------------------- /package/network/config/netifd/files/sbin/ifdown: -------------------------------------------------------------------------------- 1 | ifup -------------------------------------------------------------------------------- /package/network/config/qos-scripts/files/usr/bin/qos-start: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | qos-stop 4 | /usr/lib/qos/generate.sh all | sh 5 | -------------------------------------------------------------------------------- /package/network/config/qosify/files/qosify.hotplug: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ubus call qosify check_devices 3 | -------------------------------------------------------------------------------- /package/network/ipv6/6in4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/network/ipv6/6in4/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6rd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/network/ipv6/6rd/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6to4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/network/ipv6/6to4/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/map/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/network/ipv6/map/Makefile -------------------------------------------------------------------------------- /package/network/services/ead/src/tinysrp/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /package/network/services/hostapd/files/dhcp-get-server.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | [ "$1" = bound ] && echo "$serverid" 3 | -------------------------------------------------------------------------------- /package/network/services/ppp/files/etc/ppp/chap-secrets: -------------------------------------------------------------------------------- 1 | #USERNAME PROVIDER PASSWORD IPADDRESS 2 | -------------------------------------------------------------------------------- /package/network/services/ppp/files/etc/ppp/radius/servers: -------------------------------------------------------------------------------- 1 | # SERVER SECRET 2 | localhost secret 3 | -------------------------------------------------------------------------------- /package/network/services/umdns/files/umdns.config: -------------------------------------------------------------------------------- 1 | config umdns 2 | option jail 1 3 | list network lan 4 | -------------------------------------------------------------------------------- /package/network/utils/iw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/network/utils/iw/Makefile -------------------------------------------------------------------------------- /package/qca/nss-firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/qca/nss-firmware/Makefile -------------------------------------------------------------------------------- /package/qca/qca-mcs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/qca/qca-mcs/Makefile -------------------------------------------------------------------------------- /package/qca/qca-nss-cfi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/qca/qca-nss-cfi/Makefile -------------------------------------------------------------------------------- /package/qca/qca-nss-dp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/qca/qca-nss-dp/Makefile -------------------------------------------------------------------------------- /package/qca/qca-nss-drv/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/qca/qca-nss-drv/Config.in -------------------------------------------------------------------------------- /package/qca/qca-nss-drv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/qca/qca-nss-drv/Makefile -------------------------------------------------------------------------------- /package/qca/qca-nss-ecm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/qca/qca-nss-ecm/Makefile -------------------------------------------------------------------------------- /package/qca/qca-nss-ecm/files/qca-nss-ecm.sysctl: -------------------------------------------------------------------------------- 1 | net.netfilter.nf_conntrack_max=65536 2 | -------------------------------------------------------------------------------- /package/qca/qca-ssdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/qca/qca-ssdk/Makefile -------------------------------------------------------------------------------- /package/system/apk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/apk/Makefile -------------------------------------------------------------------------------- /package/system/fstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/fstools/Makefile -------------------------------------------------------------------------------- /package/system/fwtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/fwtool/Makefile -------------------------------------------------------------------------------- /package/system/mtd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/Makefile -------------------------------------------------------------------------------- /package/system/mtd/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/src/Makefile -------------------------------------------------------------------------------- /package/system/mtd/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/src/crc32.c -------------------------------------------------------------------------------- /package/system/mtd/src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/src/crc32.h -------------------------------------------------------------------------------- /package/system/mtd/src/fis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/src/fis.c -------------------------------------------------------------------------------- /package/system/mtd/src/fis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/src/fis.h -------------------------------------------------------------------------------- /package/system/mtd/src/imagetag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/src/imagetag.c -------------------------------------------------------------------------------- /package/system/mtd/src/jffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/src/jffs2.c -------------------------------------------------------------------------------- /package/system/mtd/src/jffs2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/src/jffs2.h -------------------------------------------------------------------------------- /package/system/mtd/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/src/md5.c -------------------------------------------------------------------------------- /package/system/mtd/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/src/md5.h -------------------------------------------------------------------------------- /package/system/mtd/src/mtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/src/mtd.c -------------------------------------------------------------------------------- /package/system/mtd/src/mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/src/mtd.h -------------------------------------------------------------------------------- /package/system/mtd/src/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/src/seama.c -------------------------------------------------------------------------------- /package/system/mtd/src/seama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/src/seama.h -------------------------------------------------------------------------------- /package/system/mtd/src/trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/src/trx.c -------------------------------------------------------------------------------- /package/system/mtd/src/wrg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/src/wrg.c -------------------------------------------------------------------------------- /package/system/mtd/src/wrgg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/src/wrgg.c -------------------------------------------------------------------------------- /package/system/mtd/src/wrgg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/mtd/src/wrgg.h -------------------------------------------------------------------------------- /package/system/opkg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/opkg/Makefile -------------------------------------------------------------------------------- /package/system/opkg/files/opkg-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/opkg/files/opkg-key -------------------------------------------------------------------------------- /package/system/procd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/procd/Makefile -------------------------------------------------------------------------------- /package/system/procd/files/service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/procd/files/service -------------------------------------------------------------------------------- /package/system/rdloader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/rdloader/Makefile -------------------------------------------------------------------------------- /package/system/rdloader/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/rdloader/src/main.c -------------------------------------------------------------------------------- /package/system/refpolicy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/refpolicy/Makefile -------------------------------------------------------------------------------- /package/system/rpcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/rpcd/Makefile -------------------------------------------------------------------------------- /package/system/ubox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/ubox/Makefile -------------------------------------------------------------------------------- /package/system/ubox/files/log.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/ubox/files/log.init -------------------------------------------------------------------------------- /package/system/ubus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/ubus/Makefile -------------------------------------------------------------------------------- /package/system/ucert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/ucert/Makefile -------------------------------------------------------------------------------- /package/system/uci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/uci/Makefile -------------------------------------------------------------------------------- /package/system/urngd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/urngd/Makefile -------------------------------------------------------------------------------- /package/system/usign/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/usign/Makefile -------------------------------------------------------------------------------- /package/system/zram-swap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/system/zram-swap/Makefile -------------------------------------------------------------------------------- /package/utils/adb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/adb/Makefile -------------------------------------------------------------------------------- /package/utils/bcm4908img/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/bcm4908img/Makefile -------------------------------------------------------------------------------- /package/utils/bsdiff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/bsdiff/Makefile -------------------------------------------------------------------------------- /package/utils/busybox/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/busybox/Config.in -------------------------------------------------------------------------------- /package/utils/busybox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/busybox/Makefile -------------------------------------------------------------------------------- /package/utils/busybox/files/cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/busybox/files/cron -------------------------------------------------------------------------------- /package/utils/bzip2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/bzip2/Makefile -------------------------------------------------------------------------------- /package/utils/checkpolicy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/checkpolicy/Makefile -------------------------------------------------------------------------------- /package/utils/ct-bugcheck/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/ct-bugcheck/Makefile -------------------------------------------------------------------------------- /package/utils/dtc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/dtc/Makefile -------------------------------------------------------------------------------- /package/utils/e2fsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/e2fsprogs/Makefile -------------------------------------------------------------------------------- /package/utils/e2fsprogs/files/e2fsck.conf: -------------------------------------------------------------------------------- 1 | [options] 2 | broken_system_clock = true 3 | 4 | -------------------------------------------------------------------------------- /package/utils/f2fs-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/f2fs-tools/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/fbtest/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/fbtest/src/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/src/fbtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/fbtest/src/fbtest.c -------------------------------------------------------------------------------- /package/utils/fitblk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/fitblk/Makefile -------------------------------------------------------------------------------- /package/utils/fitblk/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/fitblk/src/Makefile -------------------------------------------------------------------------------- /package/utils/fitblk/src/fitblk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/fitblk/src/fitblk.c -------------------------------------------------------------------------------- /package/utils/fritz-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/fritz-tools/Makefile -------------------------------------------------------------------------------- /package/utils/jboot-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/jboot-tools/Makefile -------------------------------------------------------------------------------- /package/utils/jsonfilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/jsonfilter/Makefile -------------------------------------------------------------------------------- /package/utils/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/lua/Makefile -------------------------------------------------------------------------------- /package/utils/lua5.3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/lua5.3/Makefile -------------------------------------------------------------------------------- /package/utils/mdadm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/mdadm/Makefile -------------------------------------------------------------------------------- /package/utils/mtd-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/mtd-utils/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/nvram/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/nvram/src/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/src/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/nvram/src/cli.c -------------------------------------------------------------------------------- /package/utils/nvram/src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/nvram/src/crc.c -------------------------------------------------------------------------------- /package/utils/nvram/src/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/nvram/src/nvram.c -------------------------------------------------------------------------------- /package/utils/nvram/src/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/nvram/src/nvram.h -------------------------------------------------------------------------------- /package/utils/osafeloader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/osafeloader/Makefile -------------------------------------------------------------------------------- /package/utils/oseama/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/oseama/Makefile -------------------------------------------------------------------------------- /package/utils/oseama/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/oseama/src/Makefile -------------------------------------------------------------------------------- /package/utils/oseama/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/oseama/src/md5.c -------------------------------------------------------------------------------- /package/utils/oseama/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/oseama/src/md5.h -------------------------------------------------------------------------------- /package/utils/oseama/src/oseama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/oseama/src/oseama.c -------------------------------------------------------------------------------- /package/utils/otrx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/otrx/Makefile -------------------------------------------------------------------------------- /package/utils/secilc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/secilc/Makefile -------------------------------------------------------------------------------- /package/utils/spidev_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/spidev_test/Makefile -------------------------------------------------------------------------------- /package/utils/ucode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/ucode/Makefile -------------------------------------------------------------------------------- /package/utils/uencrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/uencrypt/Makefile -------------------------------------------------------------------------------- /package/utils/ugps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/ugps/Makefile -------------------------------------------------------------------------------- /package/utils/ugps/files/ugps.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/ugps/files/ugps.init -------------------------------------------------------------------------------- /package/utils/usbgadget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/usbgadget/Makefile -------------------------------------------------------------------------------- /package/utils/usbmode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/usbmode/Makefile -------------------------------------------------------------------------------- /package/utils/usbmode/data/12d1-1f16: -------------------------------------------------------------------------------- 1 | # Vodafone K5150 2 | MBIM=1 3 | -------------------------------------------------------------------------------- /package/utils/usbmode/files/usbmode.hotplug: -------------------------------------------------------------------------------- 1 | /etc/init.d/usbmode start 2 | -------------------------------------------------------------------------------- /package/utils/util-linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/utils/util-linux/Makefile -------------------------------------------------------------------------------- /package/wwan/app/sendat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/package/wwan/app/sendat/Makefile -------------------------------------------------------------------------------- /rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/rules.mk -------------------------------------------------------------------------------- /scripts/arm-magic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/arm-magic.sh -------------------------------------------------------------------------------- /scripts/brcmImage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/brcmImage.pl -------------------------------------------------------------------------------- /scripts/bundle-libraries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/bundle-libraries.sh -------------------------------------------------------------------------------- /scripts/cameo-imghdr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/cameo-imghdr.py -------------------------------------------------------------------------------- /scripts/cameo-tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/cameo-tag.py -------------------------------------------------------------------------------- /scripts/cfe-bin-header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/cfe-bin-header.py -------------------------------------------------------------------------------- /scripts/cfe-partition-tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/cfe-partition-tag.py -------------------------------------------------------------------------------- /scripts/cfe-wfi-tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/cfe-wfi-tag.py -------------------------------------------------------------------------------- /scripts/check-toolchain-clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/check-toolchain-clean.sh -------------------------------------------------------------------------------- /scripts/checkpatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/checkpatch.pl -------------------------------------------------------------------------------- /scripts/clean-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/clean-package.sh -------------------------------------------------------------------------------- /scripts/cleanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/cleanfile -------------------------------------------------------------------------------- /scripts/cleanpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/cleanpatch -------------------------------------------------------------------------------- /scripts/combined-ext-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/combined-ext-image.sh -------------------------------------------------------------------------------- /scripts/combined-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/combined-image.sh -------------------------------------------------------------------------------- /scripts/command_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/command_all.sh -------------------------------------------------------------------------------- /scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config.guess -------------------------------------------------------------------------------- /scripts/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config.rpath -------------------------------------------------------------------------------- /scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config.sub -------------------------------------------------------------------------------- /scripts/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/.gitignore -------------------------------------------------------------------------------- /scripts/config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/Makefile -------------------------------------------------------------------------------- /scripts/config/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/README -------------------------------------------------------------------------------- /scripts/config/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/conf.c -------------------------------------------------------------------------------- /scripts/config/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/confdata.c -------------------------------------------------------------------------------- /scripts/config/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/expr.c -------------------------------------------------------------------------------- /scripts/config/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/expr.h -------------------------------------------------------------------------------- /scripts/config/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/images.c -------------------------------------------------------------------------------- /scripts/config/images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/images.h -------------------------------------------------------------------------------- /scripts/config/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/internal.h -------------------------------------------------------------------------------- /scripts/config/lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/lexer.l -------------------------------------------------------------------------------- /scripts/config/lexer.lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/lexer.lex.c -------------------------------------------------------------------------------- /scripts/config/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/list.h -------------------------------------------------------------------------------- /scripts/config/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/lkc.h -------------------------------------------------------------------------------- /scripts/config/lkc_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/lkc_proto.h -------------------------------------------------------------------------------- /scripts/config/lxdialog/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/lxdialog/dialog.h -------------------------------------------------------------------------------- /scripts/config/lxdialog/inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/lxdialog/inputbox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/lxdialog/menubox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/lxdialog/textbox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/lxdialog/util.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/lxdialog/yesno.c -------------------------------------------------------------------------------- /scripts/config/mconf-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/mconf-cfg.sh -------------------------------------------------------------------------------- /scripts/config/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/mconf.c -------------------------------------------------------------------------------- /scripts/config/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/menu.c -------------------------------------------------------------------------------- /scripts/config/nconf-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/nconf-cfg.sh -------------------------------------------------------------------------------- /scripts/config/nconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/nconf.c -------------------------------------------------------------------------------- /scripts/config/nconf.gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/nconf.gui.c -------------------------------------------------------------------------------- /scripts/config/nconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/nconf.h -------------------------------------------------------------------------------- /scripts/config/parser.tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/parser.tab.c -------------------------------------------------------------------------------- /scripts/config/parser.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/parser.tab.h -------------------------------------------------------------------------------- /scripts/config/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/parser.y -------------------------------------------------------------------------------- /scripts/config/preprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/preprocess.c -------------------------------------------------------------------------------- /scripts/config/qconf-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/qconf-cfg.sh -------------------------------------------------------------------------------- /scripts/config/qconf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/qconf.cc -------------------------------------------------------------------------------- /scripts/config/qconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/qconf.h -------------------------------------------------------------------------------- /scripts/config/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/symbol.c -------------------------------------------------------------------------------- /scripts/config/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/config/util.c -------------------------------------------------------------------------------- /scripts/const_structs.checkpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/const_structs.checkpatch -------------------------------------------------------------------------------- /scripts/deptest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/deptest.sh -------------------------------------------------------------------------------- /scripts/diffconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/diffconfig.sh -------------------------------------------------------------------------------- /scripts/dl_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/dl_cleanup.py -------------------------------------------------------------------------------- /scripts/dl_github_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/dl_github_archive.py -------------------------------------------------------------------------------- /scripts/download.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/download.pl -------------------------------------------------------------------------------- /scripts/dump-target-info.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/dump-target-info.pl -------------------------------------------------------------------------------- /scripts/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/env -------------------------------------------------------------------------------- /scripts/ext-toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/ext-toolchain.sh -------------------------------------------------------------------------------- /scripts/ext-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/ext-tools.sh -------------------------------------------------------------------------------- /scripts/feeds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/feeds -------------------------------------------------------------------------------- /scripts/fixup-makefile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/fixup-makefile.pl -------------------------------------------------------------------------------- /scripts/flashing/adam2flash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/flashing/adam2flash.pl -------------------------------------------------------------------------------- /scripts/flashing/adsl2mue_flash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/flashing/adsl2mue_flash.pl -------------------------------------------------------------------------------- /scripts/flashing/eva_ramboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/flashing/eva_ramboot.py -------------------------------------------------------------------------------- /scripts/flashing/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/flashing/flash.sh -------------------------------------------------------------------------------- /scripts/flashing/jungo-image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/flashing/jungo-image.py -------------------------------------------------------------------------------- /scripts/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/functions.sh -------------------------------------------------------------------------------- /scripts/gen-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/gen-dependencies.sh -------------------------------------------------------------------------------- /scripts/gen-rddependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/gen-rddependencies.sh -------------------------------------------------------------------------------- /scripts/gen_image_generic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/gen_image_generic.sh -------------------------------------------------------------------------------- /scripts/get_source_date_epoch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/get_source_date_epoch.sh -------------------------------------------------------------------------------- /scripts/getver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/getver.sh -------------------------------------------------------------------------------- /scripts/ipkg-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/ipkg-build -------------------------------------------------------------------------------- /scripts/ipkg-make-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/ipkg-make-index.sh -------------------------------------------------------------------------------- /scripts/ipkg-remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/ipkg-remove -------------------------------------------------------------------------------- /scripts/json_add_image_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/json_add_image_info.py -------------------------------------------------------------------------------- /scripts/kconfig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/kconfig.pl -------------------------------------------------------------------------------- /scripts/linksys-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/linksys-image.sh -------------------------------------------------------------------------------- /scripts/make-ipkg-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/make-ipkg-dir.sh -------------------------------------------------------------------------------- /scripts/md5sum: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat "$@" | md5 3 | -------------------------------------------------------------------------------- /scripts/metadata.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/metadata.pm -------------------------------------------------------------------------------- /scripts/mkhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/mkhash.c -------------------------------------------------------------------------------- /scripts/mkits-qsdk-ipq-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/mkits-qsdk-ipq-image.sh -------------------------------------------------------------------------------- /scripts/mkits-zyxel-fit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/mkits-zyxel-fit.sh -------------------------------------------------------------------------------- /scripts/mkits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/mkits.sh -------------------------------------------------------------------------------- /scripts/noop.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # This script does nothing, intentionally. 3 | -------------------------------------------------------------------------------- /scripts/om-fwupgradecfg-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/om-fwupgradecfg-gen.sh -------------------------------------------------------------------------------- /scripts/package-metadata.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/package-metadata.pl -------------------------------------------------------------------------------- /scripts/pad_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/pad_image -------------------------------------------------------------------------------- /scripts/patch-kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/patch-kernel.sh -------------------------------------------------------------------------------- /scripts/patch-specs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/patch-specs.sh -------------------------------------------------------------------------------- /scripts/portable_date.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/portable_date.sh -------------------------------------------------------------------------------- /scripts/qemustart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/qemustart -------------------------------------------------------------------------------- /scripts/redboot-script.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/redboot-script.pl -------------------------------------------------------------------------------- /scripts/relink-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/relink-lib.sh -------------------------------------------------------------------------------- /scripts/remote-gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/remote-gdb -------------------------------------------------------------------------------- /scripts/rstrip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/rstrip.sh -------------------------------------------------------------------------------- /scripts/sercomm-crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/sercomm-crypto.py -------------------------------------------------------------------------------- /scripts/sercomm-kernel-header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/sercomm-kernel-header.py -------------------------------------------------------------------------------- /scripts/sercomm-kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/sercomm-kernel.sh -------------------------------------------------------------------------------- /scripts/sercomm-partition-tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/sercomm-partition-tag.py -------------------------------------------------------------------------------- /scripts/sercomm-payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/sercomm-payload.py -------------------------------------------------------------------------------- /scripts/sercomm-pid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/sercomm-pid.py -------------------------------------------------------------------------------- /scripts/sign_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/sign_images.sh -------------------------------------------------------------------------------- /scripts/size_compare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/size_compare.sh -------------------------------------------------------------------------------- /scripts/slugimage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/slugimage.pl -------------------------------------------------------------------------------- /scripts/spelling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/spelling.txt -------------------------------------------------------------------------------- /scripts/srecimage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/srecimage.pl -------------------------------------------------------------------------------- /scripts/strip-kmod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/strip-kmod.sh -------------------------------------------------------------------------------- /scripts/symlink-tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/symlink-tree.sh -------------------------------------------------------------------------------- /scripts/sysupgrade-tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/sysupgrade-tar.sh -------------------------------------------------------------------------------- /scripts/target-metadata.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/target-metadata.pl -------------------------------------------------------------------------------- /scripts/time.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/time.pl -------------------------------------------------------------------------------- /scripts/timestamp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/timestamp.pl -------------------------------------------------------------------------------- /scripts/ubinize-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/ubinize-image.sh -------------------------------------------------------------------------------- /scripts/xxdi.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/scripts/xxdi.pl -------------------------------------------------------------------------------- /target/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/Config.in -------------------------------------------------------------------------------- /target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/Makefile -------------------------------------------------------------------------------- /target/imagebuilder/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/imagebuilder/Config.in -------------------------------------------------------------------------------- /target/imagebuilder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/imagebuilder/Makefile -------------------------------------------------------------------------------- /target/imagebuilder/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/imagebuilder/files/Makefile -------------------------------------------------------------------------------- /target/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/Makefile -------------------------------------------------------------------------------- /target/linux/airoha/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/airoha/Makefile -------------------------------------------------------------------------------- /target/linux/airoha/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/airoha/image/Makefile -------------------------------------------------------------------------------- /target/linux/airoha/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/airoha/modules.mk -------------------------------------------------------------------------------- /target/linux/allwinner/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/allwinner/Makefile -------------------------------------------------------------------------------- /target/linux/allwinner/config-6.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/allwinner/config-6.12 -------------------------------------------------------------------------------- /target/linux/allwinner/generic/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=Generic 2 | -------------------------------------------------------------------------------- /target/linux/amlogic/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/amlogic/Makefile -------------------------------------------------------------------------------- /target/linux/amlogic/config-5.15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/amlogic/config-5.15 -------------------------------------------------------------------------------- /target/linux/amlogic/config-6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/amlogic/config-6.1 -------------------------------------------------------------------------------- /target/linux/amlogic/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/amlogic/modules.mk -------------------------------------------------------------------------------- /target/linux/apm821xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/apm821xx/Makefile -------------------------------------------------------------------------------- /target/linux/apm821xx/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/apm821xx/config-5.10 -------------------------------------------------------------------------------- /target/linux/apm821xx/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/apm821xx/config-5.4 -------------------------------------------------------------------------------- /target/linux/arc770/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/arc770/Makefile -------------------------------------------------------------------------------- /target/linux/arc770/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/arc770/config-5.4 -------------------------------------------------------------------------------- /target/linux/arc770/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/arc770/image/Makefile -------------------------------------------------------------------------------- /target/linux/arc770/image/uEnv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/arc770/image/uEnv.txt -------------------------------------------------------------------------------- /target/linux/archs38/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/archs38/Makefile -------------------------------------------------------------------------------- /target/linux/archs38/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/archs38/config-5.4 -------------------------------------------------------------------------------- /target/linux/armsr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/armsr/Makefile -------------------------------------------------------------------------------- /target/linux/armsr/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/armsr/README -------------------------------------------------------------------------------- /target/linux/armsr/armv7/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/armsr/armv7/target.mk -------------------------------------------------------------------------------- /target/linux/armsr/armv8/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/armsr/armv8/target.mk -------------------------------------------------------------------------------- /target/linux/armsr/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/armsr/base-files.mk -------------------------------------------------------------------------------- /target/linux/armsr/config-6.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/armsr/config-6.12 -------------------------------------------------------------------------------- /target/linux/armsr/config-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/armsr/config-6.6 -------------------------------------------------------------------------------- /target/linux/armsr/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/armsr/image/Makefile -------------------------------------------------------------------------------- /target/linux/armsr/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/armsr/modules.mk -------------------------------------------------------------------------------- /target/linux/at91/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/at91/Makefile -------------------------------------------------------------------------------- /target/linux/at91/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/at91/image/Config.in -------------------------------------------------------------------------------- /target/linux/at91/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/at91/image/Makefile -------------------------------------------------------------------------------- /target/linux/at91/image/sam9x.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/at91/image/sam9x.mk -------------------------------------------------------------------------------- /target/linux/at91/image/sama5.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/at91/image/sama5.mk -------------------------------------------------------------------------------- /target/linux/at91/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/at91/modules.mk -------------------------------------------------------------------------------- /target/linux/at91/sam9x/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/at91/sam9x/target.mk -------------------------------------------------------------------------------- /target/linux/at91/sama5/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/at91/sama5/target.mk -------------------------------------------------------------------------------- /target/linux/ath25/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ath25/Makefile -------------------------------------------------------------------------------- /target/linux/ath25/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ath25/config-5.4 -------------------------------------------------------------------------------- /target/linux/ath25/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ath25/image/Makefile -------------------------------------------------------------------------------- /target/linux/ath79/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ath79/Makefile -------------------------------------------------------------------------------- /target/linux/ath79/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ath79/config-5.4 -------------------------------------------------------------------------------- /target/linux/ath79/config-6.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ath79/config-6.12 -------------------------------------------------------------------------------- /target/linux/ath79/config-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ath79/config-6.6 -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar7100.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ath79/dts/ar7100.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar7240.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ath79/dts/ar7240.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar7241.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ath79/dts/ar7241.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar7242.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ath79/dts/ar7242.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/image/nand.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ath79/image/nand.mk -------------------------------------------------------------------------------- /target/linux/ath79/image/tiny.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ath79/image/tiny.mk -------------------------------------------------------------------------------- /target/linux/ath79/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ath79/modules.mk -------------------------------------------------------------------------------- /target/linux/bcm27xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bcm27xx/Makefile -------------------------------------------------------------------------------- /target/linux/bcm27xx/config-6.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bcm27xx/config-6.12 -------------------------------------------------------------------------------- /target/linux/bcm27xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bcm27xx/modules.mk -------------------------------------------------------------------------------- /target/linux/bcm47xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bcm47xx/Makefile -------------------------------------------------------------------------------- /target/linux/bcm47xx/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bcm47xx/config-5.4 -------------------------------------------------------------------------------- /target/linux/bcm47xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bcm47xx/modules.mk -------------------------------------------------------------------------------- /target/linux/bcm4908/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bcm4908/Makefile -------------------------------------------------------------------------------- /target/linux/bcm4908/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bcm4908/config-5.4 -------------------------------------------------------------------------------- /target/linux/bcm4908/generic/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=Generic 2 | -------------------------------------------------------------------------------- /target/linux/bcm4908/image/asus_gt-ac5300/rom/etc/image_version: -------------------------------------------------------------------------------- 1 | HND1731918 2 | -------------------------------------------------------------------------------- /target/linux/bcm4908/image/netgear_r8000p/etc/image_version: -------------------------------------------------------------------------------- 1 | 5024HNDrc11R8000P2602103 2 | -------------------------------------------------------------------------------- /target/linux/bcm4908/image/tplink_archer-c2300-v1/etc/image_version: -------------------------------------------------------------------------------- 1 | 5022HNDrc7HND2221446 2 | -------------------------------------------------------------------------------- /target/linux/bcm53xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bcm53xx/Makefile -------------------------------------------------------------------------------- /target/linux/bcm53xx/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bcm53xx/config-5.10 -------------------------------------------------------------------------------- /target/linux/bcm53xx/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bcm53xx/config-5.4 -------------------------------------------------------------------------------- /target/linux/bcm53xx/config-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bcm53xx/config-6.6 -------------------------------------------------------------------------------- /target/linux/bcm53xx/generic/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=Generic 2 | -------------------------------------------------------------------------------- /target/linux/bcm53xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bcm53xx/modules.mk -------------------------------------------------------------------------------- /target/linux/bcm63xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bcm63xx/Makefile -------------------------------------------------------------------------------- /target/linux/bcm63xx/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bcm63xx/config-5.10 -------------------------------------------------------------------------------- /target/linux/bcm63xx/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bcm63xx/config-5.4 -------------------------------------------------------------------------------- /target/linux/bcm63xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bcm63xx/modules.mk -------------------------------------------------------------------------------- /target/linux/bmips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bmips/Makefile -------------------------------------------------------------------------------- /target/linux/bmips/config-5.15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/bmips/config-5.15 -------------------------------------------------------------------------------- /target/linux/gemini/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/gemini/Makefile -------------------------------------------------------------------------------- /target/linux/gemini/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/gemini/config-5.10 -------------------------------------------------------------------------------- /target/linux/gemini/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/gemini/config-5.4 -------------------------------------------------------------------------------- /target/linux/gemini/image/copy-kernel/.gitignore: -------------------------------------------------------------------------------- 1 | copy-kernel.bin 2 | -------------------------------------------------------------------------------- /target/linux/generic/PATCHES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/generic/PATCHES -------------------------------------------------------------------------------- /target/linux/generic/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/generic/config-5.10 -------------------------------------------------------------------------------- /target/linux/generic/config-5.15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/generic/config-5.15 -------------------------------------------------------------------------------- /target/linux/generic/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/generic/config-5.4 -------------------------------------------------------------------------------- /target/linux/generic/config-6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/generic/config-6.1 -------------------------------------------------------------------------------- /target/linux/generic/config-6.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/generic/config-6.12 -------------------------------------------------------------------------------- /target/linux/generic/config-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/generic/config-6.6 -------------------------------------------------------------------------------- /target/linux/imx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/imx/Makefile -------------------------------------------------------------------------------- /target/linux/imx/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/imx/config-5.10 -------------------------------------------------------------------------------- /target/linux/imx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/imx/image/Makefile -------------------------------------------------------------------------------- /target/linux/ipq40xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ipq40xx/Makefile -------------------------------------------------------------------------------- /target/linux/ipq40xx/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ipq40xx/config-5.10 -------------------------------------------------------------------------------- /target/linux/ipq40xx/generic/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=Generic 2 | FEATURES+=emmc 3 | DEFAULT_PACKAGES += ath10k-board-qca4019 4 | -------------------------------------------------------------------------------- /target/linux/ipq806x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ipq806x/Makefile -------------------------------------------------------------------------------- /target/linux/ipq806x/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ipq806x/config-5.10 -------------------------------------------------------------------------------- /target/linux/ipq806x/generic/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=Generic 2 | -------------------------------------------------------------------------------- /target/linux/ipq806x/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ipq806x/modules.mk -------------------------------------------------------------------------------- /target/linux/kirkwood/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/kirkwood/Makefile -------------------------------------------------------------------------------- /target/linux/kirkwood/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/kirkwood/config-5.4 -------------------------------------------------------------------------------- /target/linux/kirkwood/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/kirkwood/modules.mk -------------------------------------------------------------------------------- /target/linux/lantiq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/lantiq/Makefile -------------------------------------------------------------------------------- /target/linux/lantiq/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/lantiq/config-5.10 -------------------------------------------------------------------------------- /target/linux/lantiq/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/lantiq/config-5.4 -------------------------------------------------------------------------------- /target/linux/lantiq/image/ar9.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/lantiq/image/ar9.mk -------------------------------------------------------------------------------- /target/linux/lantiq/image/vr9.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/lantiq/image/vr9.mk -------------------------------------------------------------------------------- /target/linux/lantiq/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/lantiq/modules.mk -------------------------------------------------------------------------------- /target/linux/layerscape/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/layerscape/Makefile -------------------------------------------------------------------------------- /target/linux/layerscape/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/layerscape/README -------------------------------------------------------------------------------- /target/linux/loongarch64/generic/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=Generic 2 | -------------------------------------------------------------------------------- /target/linux/malta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/malta/Makefile -------------------------------------------------------------------------------- /target/linux/malta/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/malta/README -------------------------------------------------------------------------------- /target/linux/malta/be/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/malta/be/target.mk -------------------------------------------------------------------------------- /target/linux/malta/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/malta/config-5.10 -------------------------------------------------------------------------------- /target/linux/malta/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/malta/config-5.4 -------------------------------------------------------------------------------- /target/linux/malta/le/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/malta/le/target.mk -------------------------------------------------------------------------------- /target/linux/mediatek/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/mediatek/Makefile -------------------------------------------------------------------------------- /target/linux/mediatek/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/mediatek/modules.mk -------------------------------------------------------------------------------- /target/linux/mpc85xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/mpc85xx/Makefile -------------------------------------------------------------------------------- /target/linux/mpc85xx/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/mpc85xx/config-5.10 -------------------------------------------------------------------------------- /target/linux/mpc85xx/config-5.15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/mpc85xx/config-5.15 -------------------------------------------------------------------------------- /target/linux/mpc85xx/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/mpc85xx/config-5.4 -------------------------------------------------------------------------------- /target/linux/mvebu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/mvebu/Makefile -------------------------------------------------------------------------------- /target/linux/mvebu/config-6.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/mvebu/config-6.12 -------------------------------------------------------------------------------- /target/linux/mvebu/config-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/mvebu/config-6.6 -------------------------------------------------------------------------------- /target/linux/mvebu/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/mvebu/modules.mk -------------------------------------------------------------------------------- /target/linux/mxs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/mxs/Makefile -------------------------------------------------------------------------------- /target/linux/mxs/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/mxs/config-5.10 -------------------------------------------------------------------------------- /target/linux/mxs/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/mxs/config-5.4 -------------------------------------------------------------------------------- /target/linux/mxs/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/mxs/image/Config.in -------------------------------------------------------------------------------- /target/linux/mxs/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/mxs/image/Makefile -------------------------------------------------------------------------------- /target/linux/octeon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/octeon/Makefile -------------------------------------------------------------------------------- /target/linux/octeon/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/octeon/config-5.10 -------------------------------------------------------------------------------- /target/linux/octeon/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/octeon/config-5.4 -------------------------------------------------------------------------------- /target/linux/octeontx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/octeontx/Makefile -------------------------------------------------------------------------------- /target/linux/octeontx/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/octeontx/config-5.4 -------------------------------------------------------------------------------- /target/linux/omap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/omap/Makefile -------------------------------------------------------------------------------- /target/linux/omap/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/omap/config-5.4 -------------------------------------------------------------------------------- /target/linux/omap/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/omap/image/Makefile -------------------------------------------------------------------------------- /target/linux/oxnas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/oxnas/Makefile -------------------------------------------------------------------------------- /target/linux/oxnas/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/oxnas/config-5.10 -------------------------------------------------------------------------------- /target/linux/oxnas/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/oxnas/config-5.4 -------------------------------------------------------------------------------- /target/linux/oxnas/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/oxnas/modules.mk -------------------------------------------------------------------------------- /target/linux/phytium/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/phytium/Makefile -------------------------------------------------------------------------------- /target/linux/phytium/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/phytium/README -------------------------------------------------------------------------------- /target/linux/phytium/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/phytium/config-5.10 -------------------------------------------------------------------------------- /target/linux/phytium/files-5.10/drivers/dma/phytium/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_PHYTIUM_DDMA) += phytium-ddmac.o 2 | -------------------------------------------------------------------------------- /target/linux/phytium/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/phytium/modules.mk -------------------------------------------------------------------------------- /target/linux/pistachio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/pistachio/Makefile -------------------------------------------------------------------------------- /target/linux/qualcommax/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/qualcommax/Makefile -------------------------------------------------------------------------------- /target/linux/qualcommbe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/qualcommbe/Makefile -------------------------------------------------------------------------------- /target/linux/ramips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ramips/Makefile -------------------------------------------------------------------------------- /target/linux/ramips/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/ramips/modules.mk -------------------------------------------------------------------------------- /target/linux/realtek/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/realtek/Makefile -------------------------------------------------------------------------------- /target/linux/realtek/image/rtl931x.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | -------------------------------------------------------------------------------- /target/linux/rockchip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/rockchip/Makefile -------------------------------------------------------------------------------- /target/linux/rockchip/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/rockchip/modules.mk -------------------------------------------------------------------------------- /target/linux/sifiveu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/sifiveu/Makefile -------------------------------------------------------------------------------- /target/linux/sifiveu/config-6.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/sifiveu/config-6.12 -------------------------------------------------------------------------------- /target/linux/sifiveu/config-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/sifiveu/config-6.6 -------------------------------------------------------------------------------- /target/linux/sifiveu/generic/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=Generic 2 | -------------------------------------------------------------------------------- /target/linux/siflower/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/siflower/Makefile -------------------------------------------------------------------------------- /target/linux/siflower/files-6.6/drivers/phy/siflower/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_PHY_SF19A2890_USB) += phy-sf19a2890-usb.o 2 | 3 | -------------------------------------------------------------------------------- /target/linux/siflower/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/siflower/modules.mk -------------------------------------------------------------------------------- /target/linux/silicon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/silicon/Makefile -------------------------------------------------------------------------------- /target/linux/silicon/image/armv8.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0-only 2 | # 3 | -------------------------------------------------------------------------------- /target/linux/starfive/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/starfive/Makefile -------------------------------------------------------------------------------- /target/linux/starfive/base-files/lib/firmware/brcm/brcmfmac43430a0-sdio.txt: -------------------------------------------------------------------------------- 1 | brcmfmac43430-sdio.txt -------------------------------------------------------------------------------- /target/linux/starfive/generic/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=Generic 2 | -------------------------------------------------------------------------------- /target/linux/stm32/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/stm32/Makefile -------------------------------------------------------------------------------- /target/linux/stm32/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/stm32/modules.mk -------------------------------------------------------------------------------- /target/linux/sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/sunxi/Makefile -------------------------------------------------------------------------------- /target/linux/sunxi/base-files/lib/firmware/brcm/brcmfmac43430a0-sdio.txt: -------------------------------------------------------------------------------- 1 | brcmfmac43430-sdio.txt -------------------------------------------------------------------------------- /target/linux/sunxi/config-6.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/sunxi/config-6.12 -------------------------------------------------------------------------------- /target/linux/sunxi/config-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/sunxi/config-6.6 -------------------------------------------------------------------------------- /target/linux/sunxi/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/sunxi/modules.mk -------------------------------------------------------------------------------- /target/linux/tegra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/tegra/Makefile -------------------------------------------------------------------------------- /target/linux/tegra/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/tegra/config-5.10 -------------------------------------------------------------------------------- /target/linux/tegra/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/tegra/config-5.4 -------------------------------------------------------------------------------- /target/linux/uml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/uml/Makefile -------------------------------------------------------------------------------- /target/linux/uml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/uml/README -------------------------------------------------------------------------------- /target/linux/uml/config-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/uml/config-6.6 -------------------------------------------------------------------------------- /target/linux/uml/config/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/uml/config/i386 -------------------------------------------------------------------------------- /target/linux/uml/config/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/uml/config/x86_64 -------------------------------------------------------------------------------- /target/linux/uml/files/arch/um/include/uapi/asm/Kbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target/linux/uml/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/uml/image/Makefile -------------------------------------------------------------------------------- /target/linux/x86/64/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/64/config-5.10 -------------------------------------------------------------------------------- /target/linux/x86/64/config-5.15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/64/config-5.15 -------------------------------------------------------------------------------- /target/linux/x86/64/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/64/config-5.4 -------------------------------------------------------------------------------- /target/linux/x86/64/config-6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/64/config-6.1 -------------------------------------------------------------------------------- /target/linux/x86/64/config-6.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/64/config-6.12 -------------------------------------------------------------------------------- /target/linux/x86/64/config-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/64/config-6.6 -------------------------------------------------------------------------------- /target/linux/x86/64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/64/target.mk -------------------------------------------------------------------------------- /target/linux/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/Makefile -------------------------------------------------------------------------------- /target/linux/x86/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/base-files.mk -------------------------------------------------------------------------------- /target/linux/x86/config-5.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/config-5.10 -------------------------------------------------------------------------------- /target/linux/x86/config-5.15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/config-5.15 -------------------------------------------------------------------------------- /target/linux/x86/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/config-5.4 -------------------------------------------------------------------------------- /target/linux/x86/config-6.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/config-6.1 -------------------------------------------------------------------------------- /target/linux/x86/config-6.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/config-6.12 -------------------------------------------------------------------------------- /target/linux/x86/config-6.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/config-6.6 -------------------------------------------------------------------------------- /target/linux/x86/geode/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/geode/target.mk -------------------------------------------------------------------------------- /target/linux/x86/image/64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/image/64.mk -------------------------------------------------------------------------------- /target/linux/x86/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/image/Makefile -------------------------------------------------------------------------------- /target/linux/x86/image/geode.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/image/geode.mk -------------------------------------------------------------------------------- /target/linux/x86/image/legacy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/image/legacy.mk -------------------------------------------------------------------------------- /target/linux/x86/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/x86/modules.mk -------------------------------------------------------------------------------- /target/linux/zynq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/zynq/Makefile -------------------------------------------------------------------------------- /target/linux/zynq/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/zynq/config-5.4 -------------------------------------------------------------------------------- /target/linux/zynq/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/linux/zynq/image/Makefile -------------------------------------------------------------------------------- /target/llvm-bpf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/llvm-bpf/Makefile -------------------------------------------------------------------------------- /target/sdk/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/sdk/Config.in -------------------------------------------------------------------------------- /target/sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/sdk/Makefile -------------------------------------------------------------------------------- /target/sdk/convert-config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/sdk/convert-config.pl -------------------------------------------------------------------------------- /target/sdk/files/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/sdk/files/Config.in -------------------------------------------------------------------------------- /target/sdk/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/sdk/files/Makefile -------------------------------------------------------------------------------- /target/sdk/files/README.SDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/sdk/files/README.SDK -------------------------------------------------------------------------------- /target/toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/toolchain/Config.in -------------------------------------------------------------------------------- /target/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/target/toolchain/Makefile -------------------------------------------------------------------------------- /toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/Config.in -------------------------------------------------------------------------------- /toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/Makefile -------------------------------------------------------------------------------- /toolchain/binutils/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/binutils/Config.in -------------------------------------------------------------------------------- /toolchain/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/binutils/Makefile -------------------------------------------------------------------------------- /toolchain/build_version: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /toolchain/gcc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/gcc/Config.in -------------------------------------------------------------------------------- /toolchain/gcc/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/gcc/Config.version -------------------------------------------------------------------------------- /toolchain/gcc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/gcc/common.mk -------------------------------------------------------------------------------- /toolchain/gcc/exclude-testsuite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/gcc/exclude-testsuite -------------------------------------------------------------------------------- /toolchain/gcc/files/alternate-arch-cc.in: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec @CC_BASE@ @EXTRA_ARCH_OPTS@ "$@" 4 | -------------------------------------------------------------------------------- /toolchain/gcc/final/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/gcc/final/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/initial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/gcc/initial/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/gcc/minimal/Makefile -------------------------------------------------------------------------------- /toolchain/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/gdb/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/glibc/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/glibc/common.mk -------------------------------------------------------------------------------- /toolchain/glibc/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/glibc/headers/Makefile -------------------------------------------------------------------------------- /toolchain/info.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/info.mk -------------------------------------------------------------------------------- /toolchain/musl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/musl/Config.in -------------------------------------------------------------------------------- /toolchain/musl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/musl/Makefile -------------------------------------------------------------------------------- /toolchain/musl/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/musl/common.mk -------------------------------------------------------------------------------- /toolchain/nasm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/nasm/Makefile -------------------------------------------------------------------------------- /toolchain/wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/toolchain/wrapper/Makefile -------------------------------------------------------------------------------- /tools/7z/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/7z/Makefile -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/autoconf-archive/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/autoconf-archive/Makefile -------------------------------------------------------------------------------- /tools/autoconf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/autoconf/Makefile -------------------------------------------------------------------------------- /tools/automake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/automake/Makefile -------------------------------------------------------------------------------- /tools/automake/files/aclocal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/automake/files/aclocal -------------------------------------------------------------------------------- /tools/b43-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/b43-tools/Makefile -------------------------------------------------------------------------------- /tools/bash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/bash/Makefile -------------------------------------------------------------------------------- /tools/bc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/bc/Makefile -------------------------------------------------------------------------------- /tools/bison/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/bison/Makefile -------------------------------------------------------------------------------- /tools/bison/scripts/yacc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec bison -y "$@" 3 | -------------------------------------------------------------------------------- /tools/bzip2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/bzip2/Makefile -------------------------------------------------------------------------------- /tools/cbootimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/cbootimage/Makefile -------------------------------------------------------------------------------- /tools/ccache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/ccache/Makefile -------------------------------------------------------------------------------- /tools/cmake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/cmake/Makefile -------------------------------------------------------------------------------- /tools/coreutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/coreutils/Makefile -------------------------------------------------------------------------------- /tools/cpio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/cpio/Makefile -------------------------------------------------------------------------------- /tools/dosfstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/dosfstools/Makefile -------------------------------------------------------------------------------- /tools/dwarves/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/dwarves/Makefile -------------------------------------------------------------------------------- /tools/e2fsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/e2fsprogs/Makefile -------------------------------------------------------------------------------- /tools/elftosb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/elftosb/Makefile -------------------------------------------------------------------------------- /tools/elfutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/elfutils/Makefile -------------------------------------------------------------------------------- /tools/erofs-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/erofs-utils/Makefile -------------------------------------------------------------------------------- /tools/expat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/expat/Makefile -------------------------------------------------------------------------------- /tools/fakeroot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/fakeroot/Makefile -------------------------------------------------------------------------------- /tools/findutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/findutils/Makefile -------------------------------------------------------------------------------- /tools/firmware-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/firmware-utils/Makefile -------------------------------------------------------------------------------- /tools/flex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/flex/Makefile -------------------------------------------------------------------------------- /tools/flock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/flock/Makefile -------------------------------------------------------------------------------- /tools/flock/src/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/flock/src/flock.c -------------------------------------------------------------------------------- /tools/genext2fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/genext2fs/Makefile -------------------------------------------------------------------------------- /tools/gengetopt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/gengetopt/Makefile -------------------------------------------------------------------------------- /tools/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/gmp/Makefile -------------------------------------------------------------------------------- /tools/gnulib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/gnulib/Makefile -------------------------------------------------------------------------------- /tools/include/asm/bitsperlong.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/include/asm/bitsperlong.h -------------------------------------------------------------------------------- /tools/include/asm/byteorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/include/asm/byteorder.h -------------------------------------------------------------------------------- /tools/include/asm/errno-base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/include/asm/errno-base.h -------------------------------------------------------------------------------- /tools/include/asm/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/include/asm/errno.h -------------------------------------------------------------------------------- /tools/include/asm/posix_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/include/asm/posix_types.h -------------------------------------------------------------------------------- /tools/include/asm/swab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/include/asm/swab.h -------------------------------------------------------------------------------- /tools/include/asm/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/include/asm/types.h -------------------------------------------------------------------------------- /tools/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/include/byteswap.h -------------------------------------------------------------------------------- /tools/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/include/elf.h -------------------------------------------------------------------------------- /tools/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/include/endian.h -------------------------------------------------------------------------------- /tools/include/linux/big_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/include/linux/big_endian.h -------------------------------------------------------------------------------- /tools/include/linux/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /tools/include/linux/stddef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/include/linux/stddef.h -------------------------------------------------------------------------------- /tools/include/linux/swab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/include/linux/swab.h -------------------------------------------------------------------------------- /tools/include/sys/sysmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/include/sys/sysmacros.h -------------------------------------------------------------------------------- /tools/isl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/isl/Makefile -------------------------------------------------------------------------------- /tools/libdeflate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/libdeflate/Makefile -------------------------------------------------------------------------------- /tools/liblzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/liblzo/Makefile -------------------------------------------------------------------------------- /tools/libressl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/libressl/Makefile -------------------------------------------------------------------------------- /tools/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/libtool/Makefile -------------------------------------------------------------------------------- /tools/llvm-bpf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/llvm-bpf/Makefile -------------------------------------------------------------------------------- /tools/lz4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/lz4/Makefile -------------------------------------------------------------------------------- /tools/lzma-old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/lzma-old/Makefile -------------------------------------------------------------------------------- /tools/lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/lzma/Makefile -------------------------------------------------------------------------------- /tools/lzop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/lzop/Makefile -------------------------------------------------------------------------------- /tools/m4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/m4/Makefile -------------------------------------------------------------------------------- /tools/make-ext4fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/make-ext4fs/Makefile -------------------------------------------------------------------------------- /tools/meson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/meson/Makefile -------------------------------------------------------------------------------- /tools/missing-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/missing-macros/Makefile -------------------------------------------------------------------------------- /tools/missing-macros/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/missing-macros/src/README -------------------------------------------------------------------------------- /tools/mkimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/mkimage/Makefile -------------------------------------------------------------------------------- /tools/mklibs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/mklibs/Makefile -------------------------------------------------------------------------------- /tools/mklibs/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/mklibs/include/elf.h -------------------------------------------------------------------------------- /tools/mold/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/mold/Makefile -------------------------------------------------------------------------------- /tools/mpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/mpc/Makefile -------------------------------------------------------------------------------- /tools/mpfr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/mpfr/Makefile -------------------------------------------------------------------------------- /tools/mtd-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/mtd-utils/Makefile -------------------------------------------------------------------------------- /tools/mtd-utils/include/fls.h: -------------------------------------------------------------------------------- 1 | #include 2 | #define fls local_fls 3 | -------------------------------------------------------------------------------- /tools/mtools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/mtools/Makefile -------------------------------------------------------------------------------- /tools/ninja/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/ninja/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/padjffs2/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/padjffs2/src/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/src/padjffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/padjffs2/src/padjffs2.c -------------------------------------------------------------------------------- /tools/patch-image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/patch-image/Makefile -------------------------------------------------------------------------------- /tools/patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/patch/Makefile -------------------------------------------------------------------------------- /tools/patchelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/patchelf/Makefile -------------------------------------------------------------------------------- /tools/pkgconf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/pkgconf/Makefile -------------------------------------------------------------------------------- /tools/pkgconf/files/pkg-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/pkgconf/files/pkg-config -------------------------------------------------------------------------------- /tools/quilt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/quilt/Makefile -------------------------------------------------------------------------------- /tools/sdimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/sdimage/Makefile -------------------------------------------------------------------------------- /tools/sed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/sed/Makefile -------------------------------------------------------------------------------- /tools/sparse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/sparse/Makefile -------------------------------------------------------------------------------- /tools/squashfs3-lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/squashfs3-lzma/Makefile -------------------------------------------------------------------------------- /tools/squashfs4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/squashfs4/Makefile -------------------------------------------------------------------------------- /tools/sstrip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/sstrip/Makefile -------------------------------------------------------------------------------- /tools/tar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/tar/Makefile -------------------------------------------------------------------------------- /tools/util-linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/util-linux/Makefile -------------------------------------------------------------------------------- /tools/xxhash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/xxhash/Makefile -------------------------------------------------------------------------------- /tools/xz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/xz/Makefile -------------------------------------------------------------------------------- /tools/yafut/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/yafut/Makefile -------------------------------------------------------------------------------- /tools/zip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/zip/Makefile -------------------------------------------------------------------------------- /tools/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/zlib/Makefile -------------------------------------------------------------------------------- /tools/zstd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/immortalwrt-collections/lean-lede/HEAD/tools/zstd/Makefile --------------------------------------------------------------------------------