├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── openwrt-ci.yml ├── .gitignore ├── BSDmakefile ├── Config.in ├── LICENSE ├── Makefile ├── README ├── README.md ├── README_EN.md ├── config ├── Config-build.in ├── Config-devel.in ├── Config-images.in └── Config-kernel.in ├── doc ├── alipay_donate.jpg ├── wechat_donate.jpg ├── xm5.jpg └── xm6.jpg ├── feeds.conf.default ├── include ├── autotools.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-legacy.mk ├── image.mk ├── kernel-build.mk ├── kernel-defaults.mk ├── kernel-version.mk ├── kernel.mk ├── netfilter.mk ├── nls.mk ├── package-bin.mk ├── package-defaults.mk ├── package-dumpinfo.mk ├── package-ipkg.mk ├── package-seccomp.mk ├── package.mk ├── prereq-build.mk ├── prereq.mk ├── quilt.mk ├── rootfs.mk ├── scan.awk ├── scan.mk ├── shell.sh ├── site │ ├── aarch64 │ ├── aarch64_be │ ├── arc │ ├── arm │ ├── armeb │ ├── darwin │ ├── i386 │ ├── i486 │ ├── i686 │ ├── linux │ ├── m68k │ ├── mips │ ├── mips64 │ ├── mips64el │ ├── mipsel │ ├── powerpc │ ├── powerpc64 │ ├── sparc │ └── x86_64 ├── subdir.mk ├── target.mk ├── toolchain-build.mk ├── toplevel.mk ├── u-boot.mk ├── uclibc++.mk ├── unpack.mk ├── verbose.mk └── version.mk ├── package ├── Makefile ├── base-files │ ├── Makefile │ ├── files │ │ ├── bin │ │ │ ├── board_detect │ │ │ ├── config_generate │ │ │ └── ipcalc.sh │ │ ├── etc │ │ │ ├── banner │ │ │ ├── banner.failsafe │ │ │ ├── board.d │ │ │ │ └── 99-default_network │ │ │ ├── device_info │ │ │ ├── diag.sh │ │ │ ├── ethers │ │ │ ├── fstab │ │ │ ├── group │ │ │ ├── hosts │ │ │ ├── hotplug.d │ │ │ │ └── net │ │ │ │ │ └── 00-sysctl │ │ │ ├── init.d │ │ │ │ ├── boot │ │ │ │ ├── done │ │ │ │ ├── gpio_switch │ │ │ │ ├── led │ │ │ │ ├── sysctl │ │ │ │ ├── sysfixtime │ │ │ │ ├── system │ │ │ │ └── umount │ │ │ ├── inittab │ │ │ ├── iproute2 │ │ │ │ ├── ematch_map │ │ │ │ ├── rt_protos │ │ │ │ └── rt_tables │ │ │ ├── openwrt_release │ │ │ ├── openwrt_version │ │ │ ├── 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 │ │ ├── lib │ │ │ ├── functions.sh │ │ │ ├── functions │ │ │ │ ├── caldata.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 │ │ │ │ ├── fwtool.sh │ │ │ │ ├── keep.d │ │ │ │ └── base-files-essential │ │ │ │ ├── nand.sh │ │ │ │ └── stage2 │ │ ├── rom │ │ │ └── note │ │ ├── sbin │ │ │ ├── firstboot │ │ │ ├── hotplug-call │ │ │ ├── led.sh │ │ │ ├── pkg_check │ │ │ ├── sysupgrade │ │ │ └── wifi │ │ └── usr │ │ │ ├── lib │ │ │ └── os-release │ │ │ └── libexec │ │ │ ├── login.sh │ │ │ └── validate_firmware_image │ └── image-config.in ├── boot │ ├── arm-trusted-firmware-mvebu │ │ ├── Makefile │ │ └── patches │ │ │ └── 200-hostssl.patch │ ├── arm-trusted-firmware-rockchip │ │ └── Makefile │ ├── arm-trusted-firmware-sunxi │ │ └── Makefile │ ├── at91bootstrap │ │ ├── Makefile │ │ └── at91bootstrap.mk │ ├── fconfig │ │ └── Makefile │ ├── grub2 │ │ ├── Makefile │ │ ├── files │ │ │ └── grub-early.cfg │ │ └── patches │ │ │ ├── 001-verifiers-Blocklist-fallout-cleanup.patch │ │ │ ├── 100-grub_setup_root.patch │ │ │ └── 300-CVE-2015-8370.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 │ │ │ └── 100-kexec-tools-fix-for-Unhandled-rela-relocation-R_X86_64_PLT32-error.patch │ ├── kobs-ng │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-compile.patch │ │ │ ├── 002-add-init-size-param.patch │ │ │ ├── 003-raw-mode.patch │ │ │ └── 004-fix-cal_nfc_geometry.patch │ ├── mt7623n-preloader │ │ └── Makefile │ ├── tfa-layerscape │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-fiptool-hostbuild-fixes.patch │ │ │ └── 003-plat-nxp-tools-fix-create_pbl-and-byte_swap-host-bui.patch │ ├── uboot-ar71xx │ │ ├── Makefile │ │ ├── patches │ │ │ ├── 0001-upstream-Reproducible-U-Boot-build-support-using-SOURCE_DATE_.patch │ │ │ ├── 0002-upstream-Makefile-Reproducible-U-Boot-build-support.patch │ │ │ ├── 001-ar71xx.patch │ │ │ ├── 002-ar71xx-spi.patch │ │ │ ├── 010-enet-ag71xx.patch │ │ │ ├── 011-switch-rtl8366sr.patch │ │ │ ├── 020-freebsd-compat.patch │ │ │ ├── 021-darwin_compat.patch │ │ │ ├── 022-getline_backport.patch │ │ │ ├── 023-musl-compat.patch │ │ │ ├── 030-no_examples.patch │ │ │ ├── 040-no_extern_inline.patch │ │ │ └── 041-no_weak_alias.patch │ │ └── src │ │ │ ├── board │ │ │ └── zyxel │ │ │ │ └── nbg460n │ │ │ │ ├── Makefile │ │ │ │ ├── config.mk │ │ │ │ ├── lowlevel_init.S │ │ │ │ ├── nbg460n.c │ │ │ │ └── u-boot.lds │ │ │ ├── cpu │ │ │ └── mips │ │ │ │ └── ar71xx_serial.c │ │ │ ├── drivers │ │ │ ├── net │ │ │ │ ├── ag71xx.c │ │ │ │ ├── ag71xx.h │ │ │ │ └── phy │ │ │ │ │ ├── rtl8366.h │ │ │ │ │ └── rtl8366_mii.c │ │ │ └── spi │ │ │ │ └── ar71xx_spi.c │ │ │ └── include │ │ │ ├── asm-mips │ │ │ ├── ar71xx.h │ │ │ └── ar71xx_gpio.h │ │ │ └── configs │ │ │ └── nbg460n.h │ ├── uboot-at91 │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-fix-Wformat-security.patch │ ├── uboot-envtools │ │ ├── Makefile │ │ ├── files │ │ │ ├── apm821xx │ │ │ ├── ar71xx │ │ │ ├── ath79 │ │ │ ├── cns3xxx │ │ │ ├── imx6 │ │ │ ├── ipq40xx │ │ │ ├── ipq806x │ │ │ ├── kirkwood │ │ │ ├── lantiq │ │ │ ├── layerscape │ │ │ ├── mpc85xx │ │ │ ├── mvebu │ │ │ ├── mxs │ │ │ ├── oxnas │ │ │ ├── pistachio │ │ │ ├── ramips │ │ │ └── uboot-envtools.sh │ │ └── patches │ │ │ └── 001-compile.patch │ ├── uboot-fritz4040 │ │ └── Makefile │ ├── uboot-imx6 │ │ ├── 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 │ │ │ ├── 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-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 │ ├── uboot-mediatek │ │ ├── Makefile │ │ └── patches │ │ │ ├── 002-nand-add-spi-nand-driver.patch │ │ │ ├── 003-mt7622-uboot-add-dts-and-config-for-spi-nand.patch │ │ │ ├── 004-configs-enable-mtd-and-mtk_spi_nand-in-defconfig.patch │ │ │ ├── 005-update-bpir2-defconfig.patch │ │ │ ├── 010-no-binman.patch │ │ │ └── 010-update-u7623-defconfig.patch │ ├── uboot-mvebu │ │ ├── Makefile │ │ └── patches │ │ │ ├── 131-arm64-dts-armada-3720-espressobin-use-Linux-model-co.patch │ │ │ ├── 132-arm64-dts-armada-3720-espressobin-split-common-parts.patch │ │ │ ├── 133-arm64-dts-a3720-add-support-for-boards-with-populate.patch │ │ │ └── 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 │ │ │ ├── 001-scripts-remove-dependency-on-swig.patch │ │ │ ├── 002-spl-remove-dtoc-of-pdata-generation.patch │ │ │ ├── 100-rockchip-rk3328-Add-support-for-FriendlyARM-NanoPi-R.patch │ │ │ ├── 101-rock64pro-disable-CONFIG_USE_PREBOOT.patch │ │ │ ├── 200-rockchip-rk3399-split-nanopi-r4-rk3399-out-of-evb_rk.patch │ │ │ ├── 201-ram-rk3399-Add-support-for-multiple-DDR-types.patch │ │ │ └── 202-rockchip-rk3399-Add-support-for-FriendlyARM-NanoPi-R.patch │ │ └── src │ │ │ └── of-platdata │ │ │ └── nanopi-r2s-rk3328 │ │ │ ├── dt-platdata.c │ │ │ └── dt-structs-gen.h │ ├── uboot-sunxi │ │ ├── Makefile │ │ ├── patches │ │ │ ├── 002-add-olimex-a13-som.patch │ │ │ ├── 003-add-theobroma-a31-pangolin.patch │ │ │ ├── 062-A20-improve-gmac-upload.patch │ │ │ ├── 063-fix-lime2-revK-add-micrel-PHY.patch │ │ │ ├── 091-sun6i-sync-PLL1-multdiv-with-Boot1.patch │ │ │ ├── 093-sun6i-fix-PLL-LDO-voltselect.patch │ │ │ ├── 100-sun6i-alternate-on-UART2.patch │ │ │ ├── 101-sun6i-support-console-on-UART2.patch │ │ │ ├── 102-sunxi-make_CONS_INDEX-configurable.patch │ │ │ ├── 200-mkimage-check-environment-for-dtc-binary-location.patch │ │ │ ├── 210-sunxi-deactivate-binman.patch │ │ │ ├── 230-disable-axp209-on-a13-olinuxino.diff │ │ │ ├── 250-sun8i-h3-zeropi-add-device-tree.patch │ │ │ ├── 251-sun8i-h3-zeropi-add-defconfig.patch │ │ │ └── 252-sunxi-h3-add-support-for-nanopi-r1.patch │ │ ├── uEnv-a64.txt │ │ ├── uEnv-default.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 │ │ │ ├── 0001-Do-not-pass-host-compiler-sanitization-flags-on-to-l.patch │ │ │ └── 0002-When-building-target-binaries-ensure-that-the-warnin.patch │ ├── gdb │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-gdb-pr14523-mips-signal-number.patch │ │ │ ├── 010-aarch64-headers.patch │ │ │ ├── 100-musl_fix.patch │ │ │ ├── 110-shared_libgcc.patch │ │ │ ├── 120-sigprocmask-invalid-call.patch │ │ │ └── 130-uclibc-fix.patch │ ├── perf │ │ └── Makefile │ ├── strace │ │ └── Makefile │ ├── trace-cmd │ │ ├── Makefile │ │ └── patches │ │ │ ├── 110-mac80211_tracepoint.patch │ │ │ └── 120-limits.patch │ └── valgrind │ │ ├── Makefile │ │ ├── files │ │ └── default.supp │ │ └── patches │ │ ├── 100-fix_configure_check.patch │ │ └── 130-fix_arm_arch_detection.patch ├── firmware │ ├── amd64-microcode │ │ └── Makefile │ ├── ath10k-ct-firmware │ │ └── Makefile │ ├── b43legacy-firmware │ │ └── Makefile │ ├── cypress-firmware │ │ └── Makefile │ ├── cypress-nvram │ │ └── Makefile │ ├── intel-microcode │ │ └── Makefile │ ├── ipq-wifi │ │ ├── Makefile │ │ ├── board-8dev_habanero-dvk.qca4019 │ │ ├── board-aruba_ap-303.qca4019 │ │ ├── board-asus_rt-acrh17.qca4019 │ │ ├── board-avm_fritzrepeater-1200.qca4019 │ │ ├── board-cellc_rtl30vw.qca4019 │ │ ├── board-century_wr142ac.qca4019 │ │ ├── board-dlink_dap2610.qca4019 │ │ ├── board-engenius_eap2200.qca4019 │ │ ├── board-engenius_eap2200.qca9888 │ │ ├── board-engenius_emd1.qca4019 │ │ ├── board-engenius_emr3500.qca4019 │ │ ├── board-ezviz_cs-w3-wd1200g-eup.qca4019 │ │ ├── board-linksys_ea8300.qca4019 │ │ ├── board-linksys_ea8300.qca9888 │ │ ├── board-mobipromo_cm520-79f.qca4019 │ │ ├── board-p2w_r619ac.qca4019 │ │ └── board-qxwlan_e2600ac.qca4019 │ ├── lantiq │ │ └── dsl-vrx200-firmware-xdsl │ │ │ └── Makefile │ ├── layerscape │ │ ├── fman-ucode │ │ │ └── Makefile │ │ ├── ls-dpl │ │ │ └── Makefile │ │ ├── ls-mc │ │ │ └── Makefile │ │ ├── ls-rcw │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ └── 0001-Remove-tclsh-checking.patch │ │ └── ppfe-firmware │ │ │ └── Makefile │ ├── linux-firmware │ │ ├── Makefile │ │ ├── amdgpu.mk │ │ ├── broadcom.mk │ │ ├── cis.mk │ │ ├── edgeport.mk │ │ ├── intel.mk │ │ ├── marvell.mk │ │ ├── mediatek.mk │ │ ├── misc.mk │ │ ├── qca.mk │ │ ├── qca_ath10k.mk │ │ ├── radeon.mk │ │ ├── realtek.mk │ │ ├── rsi.mk │ │ └── ti.mk │ ├── prism54-firmware │ │ └── Makefile │ ├── vsc73x5-ucode │ │ ├── Makefile │ │ └── files │ │ │ └── Makefile │ └── wireless-regdb │ │ ├── Makefile │ │ └── patches │ │ ├── 500-world-regd-5GHz.patch │ │ └── 600-custom-fix-txpower-and-dfs.patch ├── kernel │ ├── acx-mac80211 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-compat.patch │ │ │ ├── 200-initial-macaddr.patch │ │ │ └── 300-api_sync.patch │ ├── ath10k-ct │ │ ├── Makefile │ │ └── patches │ │ │ ├── 164-ath10k-commit-rates-from-mac80211.patch │ │ │ ├── 201-ath10k-add-LED-and-GPIO-controlling-support-for-various-chipsets.patch │ │ │ ├── 202-ath10k-use-tpt-trigger-by-default.patch │ │ │ ├── 960-0010-ath10k-limit-htt-rx-ring-size.patch │ │ │ └── 960-0011-ath10k-limit-pci-buffer-size.patch │ ├── bcm27xx-gpu-fw │ │ └── Makefile │ ├── bcm63xx-cfe │ │ └── Makefile │ ├── 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 │ │ │ └── 010-Fix-module-loading-with-Linux-v5.0-rc5.patch │ ├── dtc │ │ └── patches │ │ │ └── 0001-scripts-dtc-Update-to-version-with-overlays.patch │ ├── exfat │ │ └── Makefile │ ├── gpio-button-hotplug │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── gpio-button-hotplug.c │ ├── gpio-nct5104d │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── gpio-nct5104d.c │ ├── hwmon-gsc │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── gsc.c │ ├── i2c-gpio-custom │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── i2c-gpio-custom.c │ ├── kmod-sched-cake-oot │ │ └── Makefile │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ ├── linux │ │ ├── Makefile │ │ ├── files │ │ │ ├── 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 │ │ │ ├── hwmon.mk │ │ │ ├── i2c.mk │ │ │ ├── iio.mk │ │ │ ├── input.mk │ │ │ ├── leds.mk │ │ │ ├── lib.mk │ │ │ ├── netdevices.mk │ │ │ ├── netfilter.mk │ │ │ ├── netsupport.mk │ │ │ ├── nls.mk │ │ │ ├── other.mk │ │ │ ├── pcmcia.mk │ │ │ ├── sound.mk │ │ │ ├── spi.mk │ │ │ ├── usb.mk │ │ │ ├── video.mk │ │ │ ├── virt.mk │ │ │ ├── w1.mk │ │ │ ├── wireless.mk │ │ │ └── wpan.mk │ ├── mac80211 │ │ ├── Makefile │ │ ├── ath.mk │ │ ├── broadcom.mk │ │ ├── files │ │ │ ├── lib │ │ │ │ ├── netifd │ │ │ │ │ ├── mac80211.sh │ │ │ │ │ └── wireless │ │ │ │ │ │ └── mac80211.sh │ │ │ │ └── wifi │ │ │ │ │ └── mac80211.sh │ │ │ └── mac80211.hotplug │ │ ├── intel.mk │ │ ├── marvell.mk │ │ ├── patches │ │ │ ├── ath │ │ │ │ ├── 070-ath_common_config.patch │ │ │ │ ├── 080-ath10k_thermal_config.patch │ │ │ │ ├── 120-owl-loader-compat.patch │ │ │ │ ├── 201-ath5k-WAR-for-AR71xx-PCI-bug.patch │ │ │ │ ├── 350-ath9k_hw-reset-AHB-WMAC-interface-on-AR91xx.patch │ │ │ │ ├── 351-ath9k_hw-issue-external-reset-for-QCA955x.patch │ │ │ │ ├── 354-ath9k-force-rx_clear-when-disabling-rx.patch │ │ │ │ ├── 356-Revert-ath9k-interpret-requested-txpower-in-EIRP-dom.patch │ │ │ │ ├── 365-ath9k-adjust-tx-power-reduction-for-US-regulatory-do.patch │ │ │ │ ├── 400-ath_move_debug_code.patch │ │ │ │ ├── 401-ath9k_blink_default.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 │ │ │ │ ├── 410-ath9k_allow_adhoc_and_ap.patch │ │ │ │ ├── 411-ath5k_allow_adhoc_and_ap.patch │ │ │ │ ├── 420-ath5k_disable_fast_cc.patch │ │ │ │ ├── 430-add_ath5k_platform.patch │ │ │ │ ├── 431-add_platform_eeprom_support_to_ath5k.patch │ │ │ │ ├── 432-ath5k_add_pciids.patch │ │ │ │ ├── 440-ath5k_channel_bw_debugfs.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 │ │ │ │ ├── 550-ath9k-disable-bands-via-dt.patch │ │ │ │ ├── 551-ath9k_ubnt_uap_plus_hsr.patch │ │ │ │ ├── 552-ahb_of.patch │ │ │ │ ├── 553-ath9k_of_gpio_mask.patch │ │ │ │ ├── 921-ath10k_init_devices_synchronously.patch │ │ │ │ ├── 922-ath10k-increase-rx-buffer-size-to-2048.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 │ │ │ │ ├── 980-ath10k-fix-max-antenna-gain-unit.patch │ │ │ │ ├── 981-ath10k-adjust-tx-power-reduction-for-US-regulatory-d.patch │ │ │ │ └── 983-ath10k-allow-vht-on-2g.patch │ │ │ ├── brcm │ │ │ │ ├── 040-brcmutil_option.patch │ │ │ │ ├── 810-b43-gpio-mask-module-option.patch │ │ │ │ ├── 811-b43_no_pio.patch │ │ │ │ ├── 812-b43-add-antenna-control.patch │ │ │ │ ├── 813-b43-reduce-number-of-RX-slots.patch │ │ │ │ ├── 814-b43-only-use-gpio-0-1-for-led.patch │ │ │ │ ├── 815-b43-always-take-overlapping-devs.patch │ │ │ │ ├── 850-brcmsmac-remove-extra-regulation-restriction.patch │ │ │ │ ├── 860-brcmfmac-register-wiphy-s-during-module_init.patch │ │ │ │ ├── 861-brcmfmac-workaround-bug-with-some-inconsistent-BSSes.patch │ │ │ │ ├── 862-brcmfmac-Disable-power-management.patch │ │ │ │ ├── 863-brcmfmac-add-in-driver-tables-with-country-codes.patch │ │ │ │ ├── 864-brcmfmac-do-not-use-internal-roaming-engine-by-default.patch │ │ │ │ └── 998-survey.patch │ │ │ ├── build │ │ │ │ ├── 000-fix_kconfig.patch │ │ │ │ ├── 001-fix_build.patch │ │ │ │ ├── 002-change_allconfig.patch │ │ │ │ ├── 003-remove_bogus_modparams.patch │ │ │ │ ├── 004-kconfig_backport_fix.patch │ │ │ │ ├── 010-disable_rfkill.patch │ │ │ │ ├── 012-kernel_build_check.patch │ │ │ │ ├── 015-ipw200-mtu.patch │ │ │ │ ├── 050-lib80211_option.patch │ │ │ │ └── 060-no_local_ssb_bcma.patch │ │ │ ├── mwl │ │ │ │ ├── 700-mwl8k-missing-pci-id-for-WNR854T.patch │ │ │ │ ├── 801-libertas-configure-sysfs-links.patch │ │ │ │ ├── 802-libertas-set-wireless-macaddr.patch │ │ │ │ └── 940-mwl8k_init_devices_synchronously.patch │ │ │ ├── rt2x00 │ │ │ │ ├── 002-rt2x00-define-RF5592-in-init_eeprom-routine.patch │ │ │ │ ├── 100-rt2x00_options.patch │ │ │ │ ├── 501-rt2x00-allow-to-build-rt2800soc-module-for-RT3883.patch │ │ │ │ ├── 601-rt2x00-introduce-rt2x00_platform_h.patch │ │ │ │ ├── 602-rt2x00-introduce-rt2x00eeprom.patch │ │ │ │ ├── 603-rt2x00-of_load_eeprom_filename.patch │ │ │ │ ├── 604-rt2x00-load-eeprom-on-SoC-from-a-mtd-device-defines-.patch │ │ │ │ ├── 606-rt2x00-allow_disabling_bands_through_platform_data.patch │ │ │ │ ├── 607-rt2x00-add_platform_data_mac_addr.patch │ │ │ │ ├── 608-rt2x00-allow_disabling_bands_through_dts.patch │ │ │ │ ├── 609-rt2x00-make-wmac-loadable-via-OF-on-rt288x-305x-SoC.patch │ │ │ │ ├── 610-rt2x00-change-led-polarity-from-OF.patch │ │ │ │ ├── 611-rt2x00-add-AP+STA-support.patch │ │ │ │ ├── 612-rt2x00-led-tpt-trigger-support.patch │ │ │ │ ├── 650-rt2x00-add-support-for-external-PA-on-MT7620.patch │ │ │ │ ├── 982-rt2x00-add-rf-self-txdc-calibration.patch │ │ │ │ ├── 983-rt2x00-add-r-calibration.patch │ │ │ │ ├── 984-rt2x00-add-rxdcoc-calibration.patch │ │ │ │ ├── 985-rt2x00-add-rxiq-calibration.patch │ │ │ │ ├── 986-rt2x00-add-TX-LOFT-calibration.patch │ │ │ │ ├── 990-rt2x00-mt7620-introduce-accessors-for-CHIP_VER-register.patch │ │ │ │ ├── 991-rt2x00-mt7620-differentiate-based-on-SoC-CHIP_VER.patch │ │ │ │ └── 992-rt2x00-save-survey-for-every-channel-visited.patch │ │ │ └── subsys │ │ │ │ ├── 070-backports-add-netif_receive_skb_list.patch │ │ │ │ ├── 071-backports-add-skb_list_del_init.patch │ │ │ │ ├── 072-backports-add-sched_set_fifo_low.patch │ │ │ │ ├── 073-backports-backport-tasklet_setup-from_tasklet.patch │ │ │ │ ├── 100-remove-cryptoapi-dependencies.patch │ │ │ │ ├── 110-mac80211_keep_keys_on_stop_ap.patch │ │ │ │ ├── 120-cfg80211_allow_perm_addr_change.patch │ │ │ │ ├── 130-disable-fils.patch │ │ │ │ ├── 131-Revert-mac80211-aes-cmac-switch-to-shash-CMAC-driver.patch │ │ │ │ ├── 132-mac80211-remove-cmac-dependency.patch │ │ │ │ ├── 150-disable_addr_notifier.patch │ │ │ │ ├── 210-ap_scan.patch │ │ │ │ ├── 300-mac80211-optimize-skb-resizing.patch │ │ │ │ ├── 304-mac80211-sta-randomize-BA-session-dialog-token-alloc.patch │ │ │ │ ├── 305-mac80211-improve-AQL-tx-airtime-estimation.patch │ │ │ │ ├── 307-mac80211-add-a-function-for-running-rx-without-passi.patch │ │ │ │ ├── 308-net-fq_impl-use-skb_get_hash-instead-of-skb_get_hash.patch │ │ │ │ ├── 309-mac80211-calculcate-skb-hash-early-when-using-itxq.patch │ │ │ │ ├── 311-mac80211-use-rate-provided-via-status-rate-on-ieee80.patch │ │ │ │ ├── 312-mac80211-factor-out-code-to-look-up-the-average-pack.patch │ │ │ │ ├── 313-mac80211-improve-AQL-aggregation-estimation-for-low-.patch │ │ │ │ ├── 314-mac80211-add-missing-queue-hash-initialization-to-80.patch │ │ │ │ ├── 315-mac80211-check-and-refresh-aggregation-session-in-en.patch │ │ │ │ ├── 316-mac80211-skip-encap-offload-for-tx-multicast-control.patch │ │ │ │ ├── 317-mac80211-set-info-control.hw_key-for-encap-offload-p.patch │ │ │ │ ├── 318-mac80211-rework-tx-encapsulation-offload-API.patch │ │ │ │ ├── 319-mac80211-reduce-duplication-in-tx-status-functions.patch │ │ │ │ ├── 320-mac80211-remove-tx-status-call-to-ieee80211_sta_regi.patch │ │ │ │ ├── 321-mac80211-optimize-station-connection-monitor.patch │ │ │ │ ├── 322-mac80211-swap-NEED_TXPROCESSING-and-HW_80211_ENCAP-t.patch │ │ │ │ ├── 323-mac80211-unify-802.3-offload-and-802.11-tx-status-co.patch │ │ │ │ ├── 324-mac80211-support-using-ieee80211_tx_status_ext-to-fr.patch │ │ │ │ ├── 325-mac80211-extend-ieee80211_tx_status_ext-to-support-b.patch │ │ │ │ ├── 326-mac80211-notify-the-driver-when-a-sta-uses-4-address.patch │ │ │ │ ├── 327-mac80211-reorganize-code-to-remove-a-forward-declara.patch │ │ │ │ ├── 328-mac80211-extend-AQL-aggregation-estimation-to-HE-and.patch │ │ │ │ ├── 329-mac80211-add-AQL-support-for-VHT160-tx-rates.patch │ │ │ │ ├── 330-mac80211-allow-bigger-A-MSDU-sizes-in-VHT-even-if-HT.patch │ │ │ │ ├── 332-mac80211-fix-regression-in-sta-connection-monitor.patch │ │ │ │ ├── 333-mac80211-fix-memory-leak-on-filtered-powersave-frame.patch │ │ │ │ ├── 334-mac80211-minstrel-remove-deferred-sampling-code.patch │ │ │ │ ├── 335-mac80211-minstrel-fix-tx-status-processing-corner-ca.patch │ │ │ │ ├── 336-mac80211-do-not-drop-tx-nulldata-packets-on-encrypte.patch │ │ │ │ ├── 400-allow-ibss-mixed.patch │ │ │ │ ├── 500-mac80211_configure_antenna_gain.patch │ │ │ │ └── 600-mac80211-allow-vht-on-2g.patch │ │ ├── ralink.mk │ │ ├── realtek.mk │ │ └── scripts │ │ │ └── import-backports.sh │ ├── mt76 │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-tools-Set-mode-for-new-file-tmp-mt76-test-s.patch │ ├── mwlwifi │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-Fix-compile-with-mac80211-backports-5_3+.patch │ │ │ └── 002-disable-AMSDU.patch │ ├── nat46 │ │ └── Makefile │ ├── om-watchdog │ │ ├── Makefile │ │ └── files │ │ │ ├── om-watchdog │ │ │ └── om-watchdog.init │ ├── rtc-rv5c386a │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── rtc.c │ ├── rtl8812au-ct │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-use-kernel-byteorder.patch │ │ │ ├── 002-vendor_command_policy.patch │ │ │ └── 003-wireless-5.8.patch │ ├── spi-gpio-custom │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── spi-gpio-custom.c │ ├── trelay │ │ ├── Makefile │ │ ├── files │ │ │ ├── trelay.config │ │ │ ├── trelay.hotplug │ │ │ └── trelay.init │ │ └── src │ │ │ ├── Makefile │ │ │ └── trelay.c │ └── w1-gpio-custom │ │ ├── Makefile │ │ └── src │ │ ├── Kconfig │ │ ├── Makefile │ │ └── w1-gpio-custom.c ├── lean │ ├── UnblockNeteaseMusic │ │ └── Makefile │ ├── UnblockNeteaseMusicGo │ │ ├── Makefile │ │ └── files │ │ │ ├── ca.crt │ │ │ ├── server.crt │ │ │ └── server.key │ ├── 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 │ ├── amule │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-amule-dlp.patch │ │ │ ├── 003_enable_upnp_cross_compile.patch │ │ │ ├── 004_file_name_conversion.patch │ │ │ ├── 005_best_keyword_kad_search.patch │ │ │ └── 006_update-libupnp.patch │ ├── antileech │ │ ├── Makefile │ │ └── src │ │ │ ├── CString_wx.h │ │ │ ├── Interface.cpp │ │ │ ├── Makefile.am │ │ │ ├── antiLeech.cpp │ │ │ ├── antiLeech.h │ │ │ ├── antiLeech_wx.cpp │ │ │ ├── antiLeech_wx.h │ │ │ ├── autogen.sh │ │ │ ├── configure.ac │ │ │ └── sdc2amule.diff │ ├── autocore │ │ ├── Makefile │ │ └── files │ │ │ ├── arm │ │ │ ├── 090-cover-index_htm │ │ │ ├── index.htm │ │ │ └── sbin │ │ │ │ └── cpuinfo │ │ │ └── x86 │ │ │ ├── autocore │ │ │ ├── index.htm │ │ │ └── sbin │ │ │ ├── cpuinfo │ │ │ ├── ethinfo │ │ │ └── getcpu │ ├── automount │ │ ├── Makefile │ │ └── files │ │ │ ├── 15-automount │ │ │ └── zzz-move-automount │ ├── autosamba │ │ ├── Makefile │ │ └── files │ │ │ └── 20-smb │ ├── baidupcs-web │ │ └── Makefile │ ├── coremark │ │ ├── Makefile │ │ ├── coremark │ │ └── coremark.sh │ ├── csstidy │ │ └── Makefile │ ├── ddns-scripts_aliyun │ │ ├── Makefile │ │ └── update_aliyun_com.sh │ ├── ddns-scripts_dnspod │ │ ├── Makefile │ │ ├── update_dnspod_cn.sh │ │ └── update_dnspod_com.sh │ ├── default-settings │ │ ├── Makefile │ │ ├── files │ │ │ └── zzz-default-settings │ │ └── i18n │ │ │ ├── default.zh-cn.po │ │ │ └── more.zh-cn.po │ ├── dns2socks │ │ └── Makefile │ ├── dnsforwarder │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── dnsforwarder │ │ │ ├── dnsforwarder │ │ │ │ └── gfw.txt │ │ │ └── init.d │ │ │ │ └── dnsforwarder │ │ │ └── usr │ │ │ └── share │ │ │ └── dnsforwarder │ │ │ └── gfwlist.sh │ ├── dsmboot │ │ ├── Makefile │ │ └── files │ │ │ ├── dsm.iso │ │ │ ├── dsmboot │ │ │ ├── menu.lst │ │ │ └── pxelinux.0 │ ├── fast-classifier │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ ├── fast-classifier.c │ │ │ ├── fast-classifier.h │ │ │ ├── nl_classifier_test.c │ │ │ └── userspace_example.c │ ├── frp │ │ └── Makefile │ ├── gmediarender │ │ └── Makefile │ ├── ipt2socks │ │ └── Makefile │ ├── ipv6-helper │ │ ├── Makefile │ │ └── files │ │ │ └── root │ │ │ └── etc │ │ │ └── hotplug.d │ │ │ └── iface │ │ │ └── 60-6in4 │ ├── k3-brcmfmac4366c-firmware │ │ ├── Makefile │ │ └── files │ │ │ └── lib │ │ │ └── firmware │ │ │ └── brcm │ │ │ └── brcmfmac4366c-pcie.bin │ ├── k3screenctrl │ │ ├── Makefile │ │ └── files │ │ │ └── k3screenctrl.init │ ├── kcptun │ │ └── Makefile │ ├── libcryptopp │ │ └── Makefile │ ├── luci-app-accesscontrol │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── mia.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── mia.lua │ │ │ └── view │ │ │ │ └── mia │ │ │ │ └── mia_status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── mia.po │ │ └── root │ │ │ └── etc │ │ │ ├── config │ │ │ └── mia │ │ │ ├── init.d │ │ │ └── mia │ │ │ ├── mia.include │ │ │ └── uci-defaults │ │ │ └── mia │ ├── luci-app-adbyby-plus │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── adbyby.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── adbyby │ │ │ │ │ ├── advanced.lua │ │ │ │ │ ├── base.lua │ │ │ │ │ ├── black.lua │ │ │ │ │ ├── block.lua │ │ │ │ │ ├── esc.lua │ │ │ │ │ ├── help.lua │ │ │ │ │ └── user.lua │ │ │ └── view │ │ │ │ └── adbyby │ │ │ │ ├── adbyby_status.htm │ │ │ │ └── refresh.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── adbyby.po │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── adbyby │ │ │ ├── init.d │ │ │ │ └── adbyby │ │ │ └── uci-defaults │ │ │ │ └── adbyby │ │ │ ├── lib │ │ │ └── upgrade │ │ │ │ └── keep.d │ │ │ │ └── adbyby │ │ │ └── usr │ │ │ └── share │ │ │ └── adbyby │ │ │ ├── ad-update │ │ │ ├── adblack.conf │ │ │ ├── adblock.sh │ │ │ ├── adbybyfirst.sh │ │ │ ├── adbybyupdate.sh │ │ │ ├── adesc.conf │ │ │ ├── adhost.conf │ │ │ ├── admem.sh │ │ │ ├── adupdate.sh │ │ │ ├── blockip.conf │ │ │ ├── dnsmasq.adblock │ │ │ ├── dnsmasq.ads │ │ │ ├── dnsmasq.esc │ │ │ ├── firewall.include │ │ │ ├── rule-count │ │ │ ├── rule-update │ │ │ └── rules.txt │ ├── luci-app-airplay2 │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── shairport-sync.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── shairport-sync.lua │ │ │ └── view │ │ │ │ └── shairport-sync │ │ │ │ └── shairport-sync_status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── shairport-sync.po │ │ └── root │ │ │ └── etc │ │ │ ├── asound.conf │ │ │ ├── config │ │ │ └── shairport-sync │ │ │ ├── init.d │ │ │ └── shairport-sync │ │ │ └── uci-defaults │ │ │ └── shairport-sync │ ├── luci-app-amule │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── amule.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── amule.lua │ │ │ └── view │ │ │ │ └── amule │ │ │ │ ├── detail_logview.htm │ │ │ │ ├── overview_status.htm │ │ │ │ └── webshell.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── amule.po │ │ └── root │ │ │ └── etc │ │ │ ├── amule │ │ │ └── amule.conf.template │ │ │ ├── config │ │ │ └── amule │ │ │ ├── hotplug.d │ │ │ └── iface │ │ │ │ └── 20-amule │ │ │ ├── init.d │ │ │ └── amule │ │ │ └── uci-defaults │ │ │ └── luci-amule │ ├── luci-app-arpbind │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── arpbind.lua │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── arpbind.lua │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── arpbind.po │ │ └── root │ │ │ ├── etc │ │ │ ├── hotplug.d │ │ │ │ └── iface │ │ │ │ │ └── 50-arpbind │ │ │ ├── init.d │ │ │ │ └── arpbind │ │ │ └── uci-defaults │ │ │ │ └── luci-arpbind │ │ │ └── usr │ │ │ └── share │ │ │ └── rpcd │ │ │ └── acl.d │ │ │ └── luci-app-arpbind.json │ ├── luci-app-autoreboot │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── autoreboot.lua │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── autoreboot.lua │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── autoreboot.po │ │ └── root │ │ │ └── etc │ │ │ ├── config │ │ │ └── autoreboot │ │ │ └── init.d │ │ │ └── autoreboot │ ├── luci-app-baidupcs-web │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── baidupcs-web.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── baidupcs-web.lua │ │ │ └── view │ │ │ │ └── baidupcs-web │ │ │ │ └── baidupcs-web_status.htm │ │ └── root │ │ │ └── etc │ │ │ ├── config │ │ │ └── baidupcs-web │ │ │ ├── init.d │ │ │ └── baidupcs-web │ │ │ └── uci-defaults │ │ │ └── luci-baidupcs-web │ ├── luci-app-cifs-mount │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── cifs.lua │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── cifs.lua │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── cifs.po │ │ └── root │ │ │ └── etc │ │ │ ├── config │ │ │ └── cifs │ │ │ ├── init.d │ │ │ └── cifs │ │ │ └── uci-defaults │ │ │ └── cifs │ ├── luci-app-cifsd │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── cifsd.lua │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── cifsd.lua │ │ ├── po │ │ │ ├── ca │ │ │ │ └── cifsd.po │ │ │ ├── cs │ │ │ │ └── cifsd.po │ │ │ ├── de │ │ │ │ └── cifsd.po │ │ │ ├── el │ │ │ │ └── cifsd.po │ │ │ ├── en │ │ │ │ └── cifsd.po │ │ │ ├── es │ │ │ │ └── cifsd.po │ │ │ ├── fr │ │ │ │ └── cifsd.po │ │ │ ├── he │ │ │ │ └── cifsd.po │ │ │ ├── hi │ │ │ │ └── cifsd.po │ │ │ ├── hu │ │ │ │ └── cifsd.po │ │ │ ├── it │ │ │ │ └── cifsd.po │ │ │ ├── ja │ │ │ │ └── cifsd.po │ │ │ ├── ko │ │ │ │ └── cifsd.po │ │ │ ├── ms │ │ │ │ └── cifsd.po │ │ │ ├── nb_NO │ │ │ │ └── cifsd.po │ │ │ ├── pl │ │ │ │ └── cifsd.po │ │ │ ├── pt │ │ │ │ └── cifsd.po │ │ │ ├── pt_BR │ │ │ │ └── cifsd.po │ │ │ ├── ro │ │ │ │ └── cifsd.po │ │ │ ├── ru │ │ │ │ └── cifsd.po │ │ │ ├── sk │ │ │ │ └── cifsd.po │ │ │ ├── sv │ │ │ │ └── cifsd.po │ │ │ ├── templates │ │ │ │ └── cifsd.pot │ │ │ ├── tr │ │ │ │ └── cifsd.po │ │ │ ├── uk │ │ │ │ └── cifsd.po │ │ │ ├── vi │ │ │ │ └── cifsd.po │ │ │ ├── zh-cn │ │ │ │ └── cifsd.po │ │ │ └── zh_Hant │ │ │ │ └── cifsd.po │ │ └── root │ │ │ └── etc │ │ │ ├── modules.d │ │ │ └── ksmbd │ │ │ └── uci-defaults │ │ │ └── cifsd │ ├── luci-app-cpufreq │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── cpufreq.lua │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── cpufreq.lua │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── cpufreq.po │ │ └── root │ │ │ └── etc │ │ │ ├── config │ │ │ └── cpufreq │ │ │ ├── init.d │ │ │ └── cpufreq │ │ │ └── uci-defaults │ │ │ └── cpufreq │ ├── luci-app-diskman │ │ └── Makefile │ ├── luci-app-dnsforwarder │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── dnsforwarder.lua │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── dnsforwarder │ │ │ │ ├── general.lua │ │ │ │ └── log.lua │ │ └── po │ │ │ └── zh-cn │ │ │ └── dnsforwarder.zh-cn.po │ ├── luci-app-docker │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── docker.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── docker.lua │ │ │ └── view │ │ │ │ └── docker │ │ │ │ └── docker_status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── docker.po │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── dockerd │ │ │ ├── docker-init │ │ │ ├── docker-web │ │ │ ├── init.d │ │ │ │ └── dockerd │ │ │ └── uci-defaults │ │ │ │ └── docker │ │ │ └── www │ │ │ └── DockerReadme.pdf │ ├── luci-app-familycloud │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── familycloud.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── familycloud │ │ │ │ │ ├── familycloud.lua │ │ │ │ │ └── familycloudlog.lua │ │ │ └── view │ │ │ │ └── familycloud │ │ │ │ └── familycloud_status.htm │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── familycloud │ │ │ ├── init.d │ │ │ │ └── familycloud │ │ │ ├── ppp │ │ │ │ └── ip-up.d │ │ │ │ │ └── familycloud.sh │ │ │ └── uci-defaults │ │ │ │ └── familycloud │ │ │ └── usr │ │ │ └── share │ │ │ └── familycloud │ │ │ ├── CloudDisk │ │ │ ├── config.ini │ │ │ ├── speedup.sh │ │ │ ├── speedup_router.sh │ │ │ └── utils.sh │ │ │ └── FamilyCloud │ │ │ ├── config.ini │ │ │ ├── config.json │ │ │ ├── speedup.sh │ │ │ ├── speedup_router.sh │ │ │ └── utils.sh │ ├── luci-app-filetransfer │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── filetransfer.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── filetransfer.lua │ │ │ └── view │ │ │ │ └── filetransfer │ │ │ │ ├── other_button.htm │ │ │ │ ├── other_download.htm │ │ │ │ ├── other_dvalue.htm │ │ │ │ └── other_upload.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── filetransfer.po │ │ └── root │ │ │ └── etc │ │ │ └── uci-defaults │ │ │ └── luci-filetransfer │ ├── luci-app-flowoffload │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── flowoffload.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── flowoffload.lua │ │ │ └── view │ │ │ │ └── flow │ │ │ │ └── status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── flowoffload.po │ │ └── root │ │ │ └── etc │ │ │ ├── config │ │ │ └── flowoffload │ │ │ ├── init.d │ │ │ └── flowoffload │ │ │ └── uci-defaults │ │ │ └── flowoffload │ ├── luci-app-frpc │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── frp.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── frp │ │ │ │ │ ├── config.lua │ │ │ │ │ └── frp.lua │ │ │ └── view │ │ │ │ └── frp │ │ │ │ └── frp_status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── frp.po │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── frp │ │ │ ├── init.d │ │ │ │ └── frp │ │ │ └── uci-defaults │ │ │ │ └── luci-frp │ │ │ └── usr │ │ │ └── share │ │ │ └── rpcd │ │ │ └── acl.d │ │ │ └── luci-app-frpc.json │ ├── luci-app-frps │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── frps.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── frps │ │ │ │ │ ├── common.lua │ │ │ │ │ └── server.lua │ │ │ └── view │ │ │ │ └── frps │ │ │ │ └── status_header.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── frps.po │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── frps │ │ │ ├── init.d │ │ │ │ └── frps │ │ │ └── uci-defaults │ │ │ │ └── 40_luci-frps │ │ │ └── usr │ │ │ └── share │ │ │ └── rpcd │ │ │ └── acl.d │ │ │ └── luci-app-frps.json │ ├── luci-app-guest-wifi │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── guest-wifi.lua │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── guest-wifi.lua │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── guest-wifi.po │ │ └── root │ │ │ └── etc │ │ │ ├── config │ │ │ └── guest-wifi │ │ │ ├── init.d │ │ │ └── guest-wifi │ │ │ └── uci-defaults │ │ │ └── luci-app-guest-wifi │ ├── luci-app-haproxy-tcp │ │ ├── Makefile │ │ ├── README.md │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── haproxy.lua │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── haproxy.lua │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── haproxy-tcp.po │ │ └── root │ │ │ └── etc │ │ │ ├── config │ │ │ └── haproxy │ │ │ ├── haproxy_init.sh │ │ │ ├── haproxy_start │ │ │ └── uci-defaults │ │ │ └── z99-haproxy │ ├── luci-app-ipsec-vpnd │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── ipsec-server.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── ipsec-server │ │ │ │ │ └── ipsec-server.lua │ │ │ └── view │ │ │ │ └── ipsec │ │ │ │ └── ipsec_status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── ipsec.po │ │ └── root │ │ │ └── etc │ │ │ ├── config │ │ │ └── ipsec │ │ │ ├── init.d │ │ │ └── ipsec │ │ │ ├── ipsec.include │ │ │ └── uci-defaults │ │ │ └── ipsec │ ├── luci-app-jd-dailybonus │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── jd-dailybonus.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── jd-dailybonus │ │ │ │ │ ├── client.lua │ │ │ │ │ ├── log.lua │ │ │ │ │ └── script.lua │ │ │ └── view │ │ │ │ └── jd-dailybonus │ │ │ │ ├── cookie_tools.htm │ │ │ │ ├── log.htm │ │ │ │ └── update_service.htm │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── jd-dailybonus │ │ │ ├── init.d │ │ │ │ └── jd-dailybonus │ │ │ └── uci-defaults │ │ │ │ └── luci-jd-dailybonus │ │ │ ├── lib │ │ │ └── upgrade │ │ │ │ └── keep.d │ │ │ │ └── jd-dailybonus │ │ │ └── usr │ │ │ ├── lib │ │ │ └── node │ │ │ │ └── request │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ ├── auth.js │ │ │ │ ├── cookies.js │ │ │ │ ├── getProxyFromURI.js │ │ │ │ ├── har.js │ │ │ │ ├── hawk.js │ │ │ │ ├── helpers.js │ │ │ │ ├── multipart.js │ │ │ │ ├── oauth.js │ │ │ │ ├── querystring.js │ │ │ │ ├── redirect.js │ │ │ │ └── tunnel.js │ │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ ├── sshpk-conv │ │ │ │ │ ├── sshpk-sign │ │ │ │ │ ├── sshpk-verify │ │ │ │ │ └── uuid │ │ │ │ ├── ajv │ │ │ │ │ ├── .tonic_example.js │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dist │ │ │ │ │ │ ├── ajv.bundle.js │ │ │ │ │ │ ├── ajv.min.js │ │ │ │ │ │ └── ajv.min.js.map │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── ajv.d.ts │ │ │ │ │ │ ├── ajv.js │ │ │ │ │ │ ├── cache.js │ │ │ │ │ │ ├── compile │ │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ │ ├── equal.js │ │ │ │ │ │ │ ├── error_classes.js │ │ │ │ │ │ │ ├── formats.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── resolve.js │ │ │ │ │ │ │ ├── rules.js │ │ │ │ │ │ │ ├── schema_obj.js │ │ │ │ │ │ │ ├── ucs2length.js │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ ├── data.js │ │ │ │ │ │ ├── definition_schema.js │ │ │ │ │ │ ├── dot │ │ │ │ │ │ │ ├── _limit.jst │ │ │ │ │ │ │ ├── _limitItems.jst │ │ │ │ │ │ │ ├── _limitLength.jst │ │ │ │ │ │ │ ├── _limitProperties.jst │ │ │ │ │ │ │ ├── allOf.jst │ │ │ │ │ │ │ ├── anyOf.jst │ │ │ │ │ │ │ ├── coerce.def │ │ │ │ │ │ │ ├── comment.jst │ │ │ │ │ │ │ ├── const.jst │ │ │ │ │ │ │ ├── contains.jst │ │ │ │ │ │ │ ├── custom.jst │ │ │ │ │ │ │ ├── defaults.def │ │ │ │ │ │ │ ├── definitions.def │ │ │ │ │ │ │ ├── dependencies.jst │ │ │ │ │ │ │ ├── enum.jst │ │ │ │ │ │ │ ├── errors.def │ │ │ │ │ │ │ ├── format.jst │ │ │ │ │ │ │ ├── if.jst │ │ │ │ │ │ │ ├── items.jst │ │ │ │ │ │ │ ├── missing.def │ │ │ │ │ │ │ ├── multipleOf.jst │ │ │ │ │ │ │ ├── not.jst │ │ │ │ │ │ │ ├── oneOf.jst │ │ │ │ │ │ │ ├── pattern.jst │ │ │ │ │ │ │ ├── properties.jst │ │ │ │ │ │ │ ├── propertyNames.jst │ │ │ │ │ │ │ ├── ref.jst │ │ │ │ │ │ │ ├── required.jst │ │ │ │ │ │ │ ├── uniqueItems.jst │ │ │ │ │ │ │ └── validate.jst │ │ │ │ │ │ ├── dotjs │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── _limit.js │ │ │ │ │ │ │ ├── _limitItems.js │ │ │ │ │ │ │ ├── _limitLength.js │ │ │ │ │ │ │ ├── _limitProperties.js │ │ │ │ │ │ │ ├── allOf.js │ │ │ │ │ │ │ ├── anyOf.js │ │ │ │ │ │ │ ├── comment.js │ │ │ │ │ │ │ ├── const.js │ │ │ │ │ │ │ ├── contains.js │ │ │ │ │ │ │ ├── custom.js │ │ │ │ │ │ │ ├── dependencies.js │ │ │ │ │ │ │ ├── enum.js │ │ │ │ │ │ │ ├── format.js │ │ │ │ │ │ │ ├── if.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── items.js │ │ │ │ │ │ │ ├── multipleOf.js │ │ │ │ │ │ │ ├── not.js │ │ │ │ │ │ │ ├── oneOf.js │ │ │ │ │ │ │ ├── pattern.js │ │ │ │ │ │ │ ├── properties.js │ │ │ │ │ │ │ ├── propertyNames.js │ │ │ │ │ │ │ ├── ref.js │ │ │ │ │ │ │ ├── required.js │ │ │ │ │ │ │ ├── uniqueItems.js │ │ │ │ │ │ │ └── validate.js │ │ │ │ │ │ ├── keyword.js │ │ │ │ │ │ └── refs │ │ │ │ │ │ │ ├── data.json │ │ │ │ │ │ │ ├── json-schema-draft-04.json │ │ │ │ │ │ │ ├── json-schema-draft-06.json │ │ │ │ │ │ │ ├── json-schema-draft-07.json │ │ │ │ │ │ │ └── json-schema-secure.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── .eslintrc.yml │ │ │ │ │ │ ├── bundle.js │ │ │ │ │ │ ├── compile-dots.js │ │ │ │ │ │ ├── info │ │ │ │ │ │ ├── prepare-tests │ │ │ │ │ │ ├── publish-built-version │ │ │ │ │ │ └── travis-gh-pages │ │ │ │ ├── asn1 │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── ber │ │ │ │ │ │ │ ├── errors.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── reader.js │ │ │ │ │ │ │ ├── types.js │ │ │ │ │ │ │ └── writer.js │ │ │ │ │ │ └── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── assert-plus │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── assert.js │ │ │ │ │ └── package.json │ │ │ │ ├── asynckit │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bench.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── abort.js │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ ├── defer.js │ │ │ │ │ │ ├── iterate.js │ │ │ │ │ │ ├── readable_asynckit.js │ │ │ │ │ │ ├── readable_parallel.js │ │ │ │ │ │ ├── readable_serial.js │ │ │ │ │ │ ├── readable_serial_ordered.js │ │ │ │ │ │ ├── state.js │ │ │ │ │ │ ├── streamify.js │ │ │ │ │ │ └── terminator.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── parallel.js │ │ │ │ │ ├── serial.js │ │ │ │ │ ├── serialOrdered.js │ │ │ │ │ └── stream.js │ │ │ │ ├── aws-sign2 │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── aws4 │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── aws4.js │ │ │ │ │ ├── lru.js │ │ │ │ │ └── package.json │ │ │ │ ├── bcrypt-pbkdf │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── caseless │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test.js │ │ │ │ ├── combined-stream │ │ │ │ │ ├── License │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── lib │ │ │ │ │ │ └── combined_stream.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── yarn.lock │ │ │ │ ├── core-util-is │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── float.patch │ │ │ │ │ ├── lib │ │ │ │ │ │ └── util.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test.js │ │ │ │ ├── dashdash │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── etc │ │ │ │ │ │ └── dashdash.bash_completion.in │ │ │ │ │ ├── lib │ │ │ │ │ │ └── dashdash.js │ │ │ │ │ └── package.json │ │ │ │ ├── delayed-stream │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── License │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── lib │ │ │ │ │ │ └── delayed_stream.js │ │ │ │ │ └── package.json │ │ │ │ ├── ecc-jsbn │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── LICENSE-jsbn │ │ │ │ │ │ ├── ec.js │ │ │ │ │ │ └── sec.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test.js │ │ │ │ ├── extend │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .eslintrc │ │ │ │ │ ├── .jscs.json │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── component.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── extsprintf │ │ │ │ │ ├── .gitmodules │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.targ │ │ │ │ │ ├── README.md │ │ │ │ │ ├── jsl.node.conf │ │ │ │ │ ├── lib │ │ │ │ │ │ └── extsprintf.js │ │ │ │ │ └── package.json │ │ │ │ ├── fast-deep-equal │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── es6 │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── react.d.ts │ │ │ │ │ │ └── react.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── react.d.ts │ │ │ │ │ └── react.js │ │ │ │ ├── fast-json-stable-stringify │ │ │ │ │ ├── .eslintrc.yml │ │ │ │ │ ├── .github │ │ │ │ │ │ └── FUNDING.yml │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── benchmark │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── test.json │ │ │ │ │ ├── example │ │ │ │ │ │ ├── key_cmp.js │ │ │ │ │ │ ├── nested.js │ │ │ │ │ │ ├── str.js │ │ │ │ │ │ └── value_cmp.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test │ │ │ │ │ │ ├── cmp.js │ │ │ │ │ │ ├── nested.js │ │ │ │ │ │ ├── str.js │ │ │ │ │ │ └── to-json.js │ │ │ │ ├── forever-agent │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── form-data │ │ │ │ │ ├── License │ │ │ │ │ ├── README.md │ │ │ │ │ ├── README.md.bak │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── form_data.js │ │ │ │ │ │ └── populate.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── yarn.lock │ │ │ │ ├── getpass │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lib │ │ │ │ │ │ └── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── har-schema │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── afterRequest.json │ │ │ │ │ │ ├── beforeRequest.json │ │ │ │ │ │ ├── browser.json │ │ │ │ │ │ ├── cache.json │ │ │ │ │ │ ├── content.json │ │ │ │ │ │ ├── cookie.json │ │ │ │ │ │ ├── creator.json │ │ │ │ │ │ ├── entry.json │ │ │ │ │ │ ├── har.json │ │ │ │ │ │ ├── header.json │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── log.json │ │ │ │ │ │ ├── page.json │ │ │ │ │ │ ├── pageTimings.json │ │ │ │ │ │ ├── postData.json │ │ │ │ │ │ ├── query.json │ │ │ │ │ │ ├── request.json │ │ │ │ │ │ ├── response.json │ │ │ │ │ │ └── timings.json │ │ │ │ │ └── package.json │ │ │ │ ├── har-validator │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── async.js │ │ │ │ │ │ ├── error.js │ │ │ │ │ │ └── promise.js │ │ │ │ │ └── package.json │ │ │ │ ├── http-signature │ │ │ │ │ ├── .dir-locals.el │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── http_signing.md │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── parser.js │ │ │ │ │ │ ├── signer.js │ │ │ │ │ │ ├── utils.js │ │ │ │ │ │ └── verify.js │ │ │ │ │ └── package.json │ │ │ │ ├── is-typedarray │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test.js │ │ │ │ ├── isstream │ │ │ │ │ ├── .jshintrc │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── isstream.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test.js │ │ │ │ ├── jsbn │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── example.html │ │ │ │ │ ├── example.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── json-schema-traverse │ │ │ │ │ ├── .eslintrc.yml │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── spec │ │ │ │ │ │ ├── .eslintrc.yml │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ └── schema.js │ │ │ │ │ │ └── index.spec.js │ │ │ │ ├── json-schema │ │ │ │ │ ├── README.md │ │ │ │ │ ├── draft-00 │ │ │ │ │ │ ├── hyper-schema │ │ │ │ │ │ ├── json-ref │ │ │ │ │ │ ├── links │ │ │ │ │ │ └── schema │ │ │ │ │ ├── draft-01 │ │ │ │ │ │ ├── hyper-schema │ │ │ │ │ │ ├── json-ref │ │ │ │ │ │ ├── links │ │ │ │ │ │ └── schema │ │ │ │ │ ├── draft-02 │ │ │ │ │ │ ├── hyper-schema │ │ │ │ │ │ ├── json-ref │ │ │ │ │ │ ├── links │ │ │ │ │ │ └── schema │ │ │ │ │ ├── draft-03 │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── address │ │ │ │ │ │ │ ├── calendar │ │ │ │ │ │ │ ├── card │ │ │ │ │ │ │ ├── geo │ │ │ │ │ │ │ └── interfaces │ │ │ │ │ │ ├── hyper-schema │ │ │ │ │ │ ├── json-ref │ │ │ │ │ │ ├── links │ │ │ │ │ │ └── schema │ │ │ │ │ ├── draft-04 │ │ │ │ │ │ ├── hyper-schema │ │ │ │ │ │ ├── links │ │ │ │ │ │ └── schema │ │ │ │ │ ├── draft-zyp-json-schema-03.xml │ │ │ │ │ ├── draft-zyp-json-schema-04.xml │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── links.js │ │ │ │ │ │ └── validate.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test │ │ │ │ │ │ └── tests.js │ │ │ │ ├── json-stringify-safe │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── package.json │ │ │ │ │ ├── stringify.js │ │ │ │ │ └── test │ │ │ │ │ │ ├── mocha.opts │ │ │ │ │ │ └── stringify_test.js │ │ │ │ ├── jsprim │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lib │ │ │ │ │ │ └── jsprim.js │ │ │ │ │ └── package.json │ │ │ │ ├── mime-db │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── db.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── mime-types │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── oauth-sign │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── performance-now │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .tm_properties │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── performance-now.js │ │ │ │ │ │ └── performance-now.js.map │ │ │ │ │ ├── license.txt │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ └── performance-now.coffee │ │ │ │ │ └── test │ │ │ │ │ │ ├── mocha.opts │ │ │ │ │ │ ├── performance-now.coffee │ │ │ │ │ │ ├── scripts.coffee │ │ │ │ │ │ └── scripts │ │ │ │ │ │ ├── delayed-call.coffee │ │ │ │ │ │ ├── delayed-require.coffee │ │ │ │ │ │ ├── difference.coffee │ │ │ │ │ │ └── initial-value.coffee │ │ │ │ ├── psl │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── browserstack-logo.svg │ │ │ │ │ ├── data │ │ │ │ │ │ └── rules.json │ │ │ │ │ ├── dist │ │ │ │ │ │ ├── psl.js │ │ │ │ │ │ └── psl.min.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── punycode │ │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── package.json │ │ │ │ │ ├── punycode.es6.js │ │ │ │ │ └── punycode.js │ │ │ │ ├── qs │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .eslintignore │ │ │ │ │ ├── .eslintrc │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dist │ │ │ │ │ │ └── qs.js │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── formats.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── parse.js │ │ │ │ │ │ ├── stringify.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test │ │ │ │ │ │ ├── .eslintrc │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── parse.js │ │ │ │ │ │ ├── stringify.js │ │ │ │ │ │ └── utils.js │ │ │ │ ├── safe-buffer │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── safer-buffer │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Porting-Buffer.md │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── dangerous.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── safer.js │ │ │ │ │ └── tests.js │ │ │ │ ├── sshpk │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bin │ │ │ │ │ │ ├── sshpk-conv │ │ │ │ │ │ ├── sshpk-sign │ │ │ │ │ │ └── sshpk-verify │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── algs.js │ │ │ │ │ │ ├── certificate.js │ │ │ │ │ │ ├── dhe.js │ │ │ │ │ │ ├── ed-compat.js │ │ │ │ │ │ ├── errors.js │ │ │ │ │ │ ├── fingerprint.js │ │ │ │ │ │ ├── formats │ │ │ │ │ │ │ ├── auto.js │ │ │ │ │ │ │ ├── dnssec.js │ │ │ │ │ │ │ ├── openssh-cert.js │ │ │ │ │ │ │ ├── pem.js │ │ │ │ │ │ │ ├── pkcs1.js │ │ │ │ │ │ │ ├── pkcs8.js │ │ │ │ │ │ │ ├── putty.js │ │ │ │ │ │ │ ├── rfc4253.js │ │ │ │ │ │ │ ├── ssh-private.js │ │ │ │ │ │ │ ├── ssh.js │ │ │ │ │ │ │ ├── x509-pem.js │ │ │ │ │ │ │ └── x509.js │ │ │ │ │ │ ├── identity.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── key.js │ │ │ │ │ │ ├── private-key.js │ │ │ │ │ │ ├── signature.js │ │ │ │ │ │ ├── ssh-buffer.js │ │ │ │ │ │ └── utils.js │ │ │ │ │ ├── man │ │ │ │ │ │ └── man1 │ │ │ │ │ │ │ ├── sshpk-conv.1 │ │ │ │ │ │ │ ├── sshpk-sign.1 │ │ │ │ │ │ │ └── sshpk-verify.1 │ │ │ │ │ └── package.json │ │ │ │ ├── tough-cookie │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── cookie.js │ │ │ │ │ │ ├── memstore.js │ │ │ │ │ │ ├── pathMatch.js │ │ │ │ │ │ ├── permuteDomain.js │ │ │ │ │ │ ├── pubsuffix-psl.js │ │ │ │ │ │ ├── store.js │ │ │ │ │ │ └── version.js │ │ │ │ │ └── package.json │ │ │ │ ├── tunnel-agent │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── tweetnacl │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── AUTHORS.md │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── nacl-fast.js │ │ │ │ │ ├── nacl-fast.min.js │ │ │ │ │ ├── nacl.d.ts │ │ │ │ │ ├── nacl.js │ │ │ │ │ ├── nacl.min.js │ │ │ │ │ └── package.json │ │ │ │ ├── uri-js │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── dist │ │ │ │ │ │ ├── es5 │ │ │ │ │ │ │ ├── uri.all.d.ts │ │ │ │ │ │ │ ├── uri.all.js │ │ │ │ │ │ │ ├── uri.all.js.map │ │ │ │ │ │ │ ├── uri.all.min.d.ts │ │ │ │ │ │ │ ├── uri.all.min.js │ │ │ │ │ │ │ └── uri.all.min.js.map │ │ │ │ │ │ └── esnext │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── index.js.map │ │ │ │ │ │ │ ├── regexps-iri.d.ts │ │ │ │ │ │ │ ├── regexps-iri.js │ │ │ │ │ │ │ ├── regexps-iri.js.map │ │ │ │ │ │ │ ├── regexps-uri.d.ts │ │ │ │ │ │ │ ├── regexps-uri.js │ │ │ │ │ │ │ ├── regexps-uri.js.map │ │ │ │ │ │ │ ├── schemes │ │ │ │ │ │ │ ├── http.d.ts │ │ │ │ │ │ │ ├── http.js │ │ │ │ │ │ │ ├── http.js.map │ │ │ │ │ │ │ ├── https.d.ts │ │ │ │ │ │ │ ├── https.js │ │ │ │ │ │ │ ├── https.js.map │ │ │ │ │ │ │ ├── mailto.d.ts │ │ │ │ │ │ │ ├── mailto.js │ │ │ │ │ │ │ ├── mailto.js.map │ │ │ │ │ │ │ ├── urn-uuid.d.ts │ │ │ │ │ │ │ ├── urn-uuid.js │ │ │ │ │ │ │ ├── urn-uuid.js.map │ │ │ │ │ │ │ ├── urn.d.ts │ │ │ │ │ │ │ ├── urn.js │ │ │ │ │ │ │ └── urn.js.map │ │ │ │ │ │ │ ├── uri.d.ts │ │ │ │ │ │ │ ├── uri.js │ │ │ │ │ │ │ ├── uri.js.map │ │ │ │ │ │ │ ├── util.d.ts │ │ │ │ │ │ │ ├── util.js │ │ │ │ │ │ │ └── util.js.map │ │ │ │ │ ├── package.json │ │ │ │ │ ├── rollup.config.js │ │ │ │ │ ├── src │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── punycode.d.ts │ │ │ │ │ │ ├── regexps-iri.ts │ │ │ │ │ │ ├── regexps-uri.ts │ │ │ │ │ │ ├── schemes │ │ │ │ │ │ │ ├── http.ts │ │ │ │ │ │ │ ├── https.ts │ │ │ │ │ │ │ ├── mailto.ts │ │ │ │ │ │ │ ├── urn-uuid.ts │ │ │ │ │ │ │ └── urn.ts │ │ │ │ │ │ ├── uri.ts │ │ │ │ │ │ └── util.ts │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── qunit.css │ │ │ │ │ │ ├── qunit.js │ │ │ │ │ │ ├── test-es5-min.html │ │ │ │ │ │ ├── test-es5.html │ │ │ │ │ │ └── tests.js │ │ │ │ │ ├── tsconfig.json │ │ │ │ │ └── yarn.lock │ │ │ │ ├── uuid │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bin │ │ │ │ │ │ └── uuid │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── bytesToUuid.js │ │ │ │ │ │ ├── md5-browser.js │ │ │ │ │ │ ├── md5.js │ │ │ │ │ │ ├── rng-browser.js │ │ │ │ │ │ ├── rng.js │ │ │ │ │ │ ├── sha1-browser.js │ │ │ │ │ │ ├── sha1.js │ │ │ │ │ │ └── v35.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── v1.js │ │ │ │ │ ├── v3.js │ │ │ │ │ ├── v4.js │ │ │ │ │ └── v5.js │ │ │ │ └── verror │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lib │ │ │ │ │ └── verror.js │ │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ └── request.js │ │ │ └── share │ │ │ ├── jd-dailybonus │ │ │ ├── JD_DailyBonus.js │ │ │ ├── gen_cookieset.lua │ │ │ └── newapp.sh │ │ │ └── rpcd │ │ │ └── acl.d │ │ │ └── luci-jd-dailybonus.json │ ├── luci-app-kodexplorer │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── kodexplorer.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── kodexplorer │ │ │ │ │ ├── api.lua │ │ │ │ │ └── settings.lua │ │ │ └── view │ │ │ │ └── kodexplorer │ │ │ │ ├── download.htm │ │ │ │ ├── status.htm │ │ │ │ └── version.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── kodexplorer.po │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── kodexplorer │ │ │ ├── init.d │ │ │ │ └── kodexplorer │ │ │ └── uci-defaults │ │ │ │ └── luci-app-kodexplorer │ │ │ └── usr │ │ │ └── share │ │ │ └── rpcd │ │ │ └── acl.d │ │ │ └── luci-app-kodexplorer.json │ ├── luci-app-music-remote-center │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── forked-daapd.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── forked-daapd.lua │ │ │ └── view │ │ │ │ └── forked-daapd │ │ │ │ └── forked-daapd_status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── forked-daapd.po │ │ └── root │ │ │ └── etc │ │ │ ├── config │ │ │ └── forked-daapd │ │ │ ├── init.d │ │ │ └── forked-daapd │ │ │ └── uci-defaults │ │ │ └── forked-daapd │ ├── luci-app-mwan3helper │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── mwan3helper.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── mwan3helper │ │ │ │ │ ├── client.lua │ │ │ │ │ └── list.lua │ │ │ └── view │ │ │ │ └── mwan3helper │ │ │ │ └── mwan3helper_status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── mwan3helper.po │ │ └── root │ │ │ └── etc │ │ │ ├── config │ │ │ └── mwan3helper │ │ │ ├── init.d │ │ │ └── mwan3helper │ │ │ ├── mwan3helper │ │ │ ├── all_cn.txt │ │ │ ├── cernet.txt │ │ │ ├── chinatelecom.txt │ │ │ ├── cmcc.txt │ │ │ ├── crtc.txt │ │ │ ├── genipset.sh │ │ │ ├── gfw.txt │ │ │ ├── gwbn.txt │ │ │ ├── othernet.txt │ │ │ └── unicom_cnc.txt │ │ │ └── uci-defaults │ │ │ └── mwan3helper │ ├── luci-app-n2n_v2 │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── n2n_v2.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── n2n_v2.lua │ │ │ └── view │ │ │ │ └── n2n_v2 │ │ │ │ └── status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── n2n_v2.po │ │ └── root │ │ │ └── etc │ │ │ └── uci-defaults │ │ │ └── luci-n2n_v2 │ ├── luci-app-netdata │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── netdata.lua │ │ │ └── view │ │ │ │ └── netdata │ │ │ │ └── netdata.htm │ │ └── po │ │ │ └── zh-cn │ │ │ └── netdata.po │ ├── luci-app-nfs │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── nfs.lua │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── nfs.lua │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── nfs.po │ │ └── root │ │ │ └── etc │ │ │ ├── config │ │ │ └── nfs │ │ │ ├── init.d │ │ │ └── nfs │ │ │ └── uci-defaults │ │ │ └── nfs │ ├── luci-app-nft-qos │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── nft-qos.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── nft-qos │ │ │ │ │ └── nft-qos.lua │ │ │ └── view │ │ │ │ └── nft-qos │ │ │ │ └── rate.htm │ │ └── po │ │ │ ├── es │ │ │ └── nft-qos.po │ │ │ ├── templates │ │ │ └── nft-qos.pot │ │ │ ├── zh-cn │ │ │ └── nft-qos.po │ │ │ └── zh-tw │ │ │ └── nft-qos.po │ ├── luci-app-nps │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── nps.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── nps.lua │ │ │ └── view │ │ │ │ └── nps │ │ │ │ └── nps_status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── nps.po │ │ └── root │ │ │ └── etc │ │ │ ├── config │ │ │ └── nps │ │ │ ├── init.d │ │ │ └── nps │ │ │ └── uci-defaults │ │ │ └── luci-nps │ ├── luci-app-openvpn-server │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── openvpn-server.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── openvpn-server │ │ │ │ │ └── openvpn-server.lua │ │ │ └── view │ │ │ │ └── openvpn │ │ │ │ └── openvpn_status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── openvpn-server.po │ │ └── root │ │ │ └── etc │ │ │ ├── config │ │ │ └── openvpn │ │ │ ├── easy-rsa │ │ │ ├── keys │ │ │ │ ├── 01.pem │ │ │ │ ├── 02.pem │ │ │ │ ├── ca.crt │ │ │ │ ├── ca.key │ │ │ │ ├── client1.crt │ │ │ │ ├── client1.csr │ │ │ │ ├── client1.key │ │ │ │ ├── client1.p12 │ │ │ │ ├── dh1024.pem │ │ │ │ ├── index.txt │ │ │ │ ├── index.txt.attr │ │ │ │ ├── index.txt.attr.old │ │ │ │ ├── index.txt.old │ │ │ │ ├── serial │ │ │ │ ├── serial.old │ │ │ │ ├── server.crt │ │ │ │ ├── server.csr │ │ │ │ └── server.key │ │ │ ├── openssl-1.0.0.cnf │ │ │ └── vars │ │ │ ├── genovpn.sh │ │ │ ├── openvpn │ │ │ ├── ca.crt │ │ │ ├── client1.crt │ │ │ ├── client1.key │ │ │ ├── dh.pem │ │ │ ├── server.crt │ │ │ └── server.key │ │ │ ├── openvpncert.sh │ │ │ ├── ovpnadd.conf │ │ │ └── uci-defaults │ │ │ └── openvpn │ ├── luci-app-pppoe-relay │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── pppoe-relay.lua │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── pppoe-relay.lua │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── pppoe-relay.po │ │ └── root │ │ │ └── etc │ │ │ ├── config │ │ │ └── pppoe-relay │ │ │ ├── init.d │ │ │ └── pppoe-relay │ │ │ └── uci-defaults │ │ │ └── luci-app-pppoe-relay │ ├── luci-app-ps3netsrv │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── ps3netsrv.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── ps3netsrv.lua │ │ │ └── view │ │ │ │ └── ps3netsrv │ │ │ │ └── ps3netsrv_status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── ps3netsrv.po │ │ └── root │ │ │ └── etc │ │ │ └── uci-defaults │ │ │ └── ps3netsrv │ ├── luci-app-qbittorrent │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── qbittorrent.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── qbittorrent.lua │ │ │ └── view │ │ │ │ └── qbittorrent │ │ │ │ └── qbittorrent_status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── qbittorrent.po │ │ └── root │ │ │ └── etc │ │ │ ├── config │ │ │ └── qbittorrent │ │ │ ├── init.d │ │ │ └── qbittorrent │ │ │ └── uci-defaults │ │ │ └── luci-qbittorrent │ ├── luci-app-ramfree │ │ ├── Makefile │ │ ├── luasrc │ │ │ └── controller │ │ │ │ └── release_ram.lua │ │ └── po │ │ │ └── zh-cn │ │ │ └── release_ram.po │ ├── luci-app-rclone │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── rclone.lua │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── rclone.lua │ │ ├── po │ │ │ ├── en │ │ │ │ └── rclone.po │ │ │ ├── templates │ │ │ │ └── luci-app-rclone.pot │ │ │ ├── zh-cn │ │ │ │ └── rclone.po │ │ │ └── zh_Hans │ │ │ │ └── luci-app-rclone.po │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── rclone │ │ │ ├── init.d │ │ │ │ └── rclone │ │ │ └── uci-defaults │ │ │ │ └── 100_luci-rclone │ │ │ └── usr │ │ │ └── share │ │ │ └── rpcd │ │ │ └── acl.d │ │ │ └── luci-app-rclone.json │ ├── luci-app-samba4 │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── samba4.lua │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── samba4.lua │ │ └── po │ │ │ ├── ca │ │ │ └── samba4.po │ │ │ ├── cs │ │ │ └── samba4.po │ │ │ ├── de │ │ │ └── samba4.po │ │ │ ├── el │ │ │ └── samba4.po │ │ │ ├── en │ │ │ └── samba4.po │ │ │ ├── es │ │ │ └── samba4.po │ │ │ ├── fr │ │ │ └── samba4.po │ │ │ ├── he │ │ │ └── samba4.po │ │ │ ├── hu │ │ │ └── samba4.po │ │ │ ├── it │ │ │ └── samba4.po │ │ │ ├── ja │ │ │ └── samba4.po │ │ │ ├── ms │ │ │ └── samba4.po │ │ │ ├── no │ │ │ └── samba4.po │ │ │ ├── pl │ │ │ └── samba4.po │ │ │ ├── pt-br │ │ │ └── samba4.po │ │ │ ├── pt │ │ │ └── samba4.po │ │ │ ├── ro │ │ │ └── samba4.po │ │ │ ├── ru │ │ │ └── samba4.po │ │ │ ├── sk │ │ │ └── samba4.po │ │ │ ├── sv │ │ │ └── samba4.po │ │ │ ├── templates │ │ │ └── samba4.pot │ │ │ ├── tr │ │ │ └── samba4.po │ │ │ ├── uk │ │ │ └── samba4.po │ │ │ ├── vi │ │ │ └── samba4.po │ │ │ ├── zh-cn │ │ │ └── samba4.po │ │ │ └── zh-tw │ │ │ └── samba4.po │ ├── luci-app-sfe │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── sfe.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── sfe.lua │ │ │ └── view │ │ │ │ └── sfe │ │ │ │ └── status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── sfe.po │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── sfe │ │ │ ├── init.d │ │ │ │ └── sfe │ │ │ └── uci-defaults │ │ │ │ └── sfe │ │ │ └── usr │ │ │ └── share │ │ │ └── dnscache-watchdog.sh │ ├── luci-app-softethervpn │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── softethervpn.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── softethervpn.lua │ │ │ └── view │ │ │ │ └── softethervpn │ │ │ │ ├── index.htm │ │ │ │ └── status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── softethervpn.po │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── softethervpn │ │ │ ├── init.d │ │ │ │ └── softethervpn │ │ │ └── uci-defaults │ │ │ │ └── luci-app-softethervpn │ │ │ └── usr │ │ │ └── share │ │ │ └── softethervpn │ │ │ └── firewall.include │ ├── luci-app-ssrserver-python │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── ssrs.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── ssrs.lua │ │ │ └── view │ │ │ │ └── ssrs │ │ │ │ └── ssrs_status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── ssrs.po │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── ssrs │ │ │ ├── init.d │ │ │ │ └── ssrs │ │ │ └── uci-defaults │ │ │ │ └── luci-app-ssrs │ │ │ └── usr │ │ │ └── share │ │ │ └── ssr │ │ │ ├── .travis.yml │ │ │ ├── CHANGES │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Dockerfile │ │ │ ├── LICENSE │ │ │ ├── MANIFEST.in │ │ │ ├── README.md │ │ │ ├── README.rst │ │ │ ├── apiconfig.py │ │ │ ├── asyncmgr.py │ │ │ ├── config.json │ │ │ ├── configloader.py │ │ │ ├── db_transfer.py │ │ │ ├── debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── config.json │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── docs │ │ │ ├── init.d │ │ │ ├── install │ │ │ ├── rules │ │ │ ├── shadowsocks.default │ │ │ ├── shadowsocks.manpages │ │ │ ├── source │ │ │ │ └── format │ │ │ ├── sslocal.1 │ │ │ └── ssserver.1 │ │ │ ├── importloader.py │ │ │ ├── initcfg.bat │ │ │ ├── initcfg.sh │ │ │ ├── initmudbjson.sh │ │ │ ├── logrun.sh │ │ │ ├── mudb.json │ │ │ ├── mujson_mgr.py │ │ │ ├── mysql.json │ │ │ ├── run.sh │ │ │ ├── server.py │ │ │ ├── server_pool.py │ │ │ ├── setup.py │ │ │ ├── setup_cymysql.sh │ │ │ ├── shadowsocks │ │ │ ├── __init__.py │ │ │ ├── asyncdns.py │ │ │ ├── common.py │ │ │ ├── crypto │ │ │ │ ├── __init__.py │ │ │ │ ├── ctypes_libsodium.py │ │ │ │ ├── ctypes_openssl.py │ │ │ │ ├── openssl.py │ │ │ │ ├── rc4_md5.py │ │ │ │ ├── sodium.py │ │ │ │ ├── table.py │ │ │ │ └── util.py │ │ │ ├── daemon.py │ │ │ ├── encrypt.py │ │ │ ├── encrypt_test.py │ │ │ ├── eventloop.py │ │ │ ├── local.py │ │ │ ├── logrun.sh │ │ │ ├── lru_cache.py │ │ │ ├── manager.py │ │ │ ├── obfs.py │ │ │ ├── obfsplugin │ │ │ │ ├── __init__.py │ │ │ │ ├── auth.py │ │ │ │ ├── auth_chain.py │ │ │ │ ├── http_simple.py │ │ │ │ ├── obfs_tls.py │ │ │ │ ├── plain.py │ │ │ │ └── verify.py │ │ │ ├── ordereddict.py │ │ │ ├── run.sh │ │ │ ├── server.py │ │ │ ├── shell.py │ │ │ ├── stop.sh │ │ │ ├── tail.sh │ │ │ ├── tcprelay.py │ │ │ ├── udprelay.py │ │ │ └── version.py │ │ │ ├── stop.sh │ │ │ ├── switchrule.py │ │ │ ├── tail.sh │ │ │ ├── tests │ │ │ ├── aes-cfb1.json │ │ │ ├── aes-cfb8.json │ │ │ ├── aes-ctr.json │ │ │ ├── aes.json │ │ │ ├── assert.sh │ │ │ ├── chacha20.json │ │ │ ├── client-multi-server-ip.json │ │ │ ├── coverage_server.py │ │ │ ├── fastopen.json │ │ │ ├── ipv6-client-side.json │ │ │ ├── ipv6.json │ │ │ ├── jenkins.sh │ │ │ ├── libsodium │ │ │ │ └── install.sh │ │ │ ├── nose_plugin.py │ │ │ ├── rc4-md5.json │ │ │ ├── salsa20-ctr.json │ │ │ ├── salsa20.json │ │ │ ├── server-multi-passwd-client-side.json │ │ │ ├── server-multi-passwd-table.json │ │ │ ├── server-multi-passwd.json │ │ │ ├── server-multi-ports.json │ │ │ ├── setup_tc.sh │ │ │ ├── socksify │ │ │ │ ├── install.sh │ │ │ │ └── socks.conf │ │ │ ├── table.json │ │ │ ├── test.py │ │ │ ├── test_command.sh │ │ │ ├── test_daemon.sh │ │ │ ├── test_large_file.sh │ │ │ ├── test_udp_src.py │ │ │ ├── test_udp_src.sh │ │ │ └── workers.json │ │ │ └── utils │ │ │ ├── README.md │ │ │ ├── autoban.py │ │ │ └── fail2ban │ │ │ └── shadowsocks.conf │ ├── luci-app-syncdial │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── syncdial.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── syncdial.lua │ │ │ └── view │ │ │ │ └── syncdial │ │ │ │ └── redial_button.htm │ │ └── root │ │ │ ├── bin │ │ │ └── genwancfg │ │ │ └── etc │ │ │ ├── config │ │ │ └── syncdial │ │ │ ├── hotplug.d │ │ │ └── iface │ │ │ │ ├── 01-dialcheck │ │ │ │ └── 01-mvifcreate │ │ │ └── uci-defaults │ │ │ └── luci-syncdial │ ├── luci-app-ttyd │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── terminal.lua │ │ │ └── view │ │ │ │ └── terminal │ │ │ │ └── terminal.htm │ │ └── po │ │ │ └── zh-cn │ │ │ └── terminal.po │ ├── luci-app-unblockmusic │ │ ├── Config.in │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── unblockmusic.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── unblockmusic │ │ │ │ │ ├── unblockmusic.lua │ │ │ │ │ └── unblockmusiclog.lua │ │ │ └── view │ │ │ │ └── unblockmusic │ │ │ │ └── unblockmusic_status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── unblockmusic.po │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── unblockmusic │ │ │ ├── hotplug.d │ │ │ │ └── iface │ │ │ │ │ └── 099-unblockmusic │ │ │ ├── init.d │ │ │ │ └── unblockmusic │ │ │ └── uci-defaults │ │ │ │ └── unblockmusic │ │ │ ├── lib │ │ │ └── upgrade │ │ │ │ └── keep.d │ │ │ │ └── unblockmusic │ │ │ └── usr │ │ │ ├── bin │ │ │ └── UnblockNeteaseMusicCloud │ │ │ └── share │ │ │ └── UnblockNeteaseMusic │ │ │ ├── getmusicip.sh │ │ │ ├── logcheck.sh │ │ │ └── update_core.sh │ ├── luci-app-usb-printer │ │ ├── Makefile │ │ ├── ipkg │ │ │ └── postinst │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── usb_printer.lua │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── usb_printer.lua │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── usb-printer.po │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── usb_printer │ │ │ ├── hotplug.d │ │ │ │ └── usb │ │ │ │ │ └── 10-usb_printer │ │ │ ├── init.d │ │ │ │ └── usb_printer │ │ │ └── uci-defaults │ │ │ │ └── luci-usb-printer │ │ │ └── usr │ │ │ └── bin │ │ │ ├── detectlp │ │ │ └── usb_printer_hotplug │ ├── luci-app-uugamebooster │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── uuplugin.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── uuplugin │ │ │ │ │ └── uuplugin.lua │ │ │ └── view │ │ │ │ └── uuplugin │ │ │ │ ├── uuplugin_qcode.htm │ │ │ │ └── uuplugin_status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── uuplugin.po │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── uuplugin │ │ │ ├── init.d │ │ │ │ └── uuplugin │ │ │ └── uci-defaults │ │ │ │ └── 45_luci-uuplugin │ │ │ └── www │ │ │ ├── uuandriod.png │ │ │ └── uuios.png │ ├── luci-app-v2ray-server │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── v2ray_server.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── v2ray_server │ │ │ │ │ ├── api │ │ │ │ │ ├── app.lua │ │ │ │ │ ├── gen_config.lua │ │ │ │ │ └── v2ray.lua │ │ │ │ │ ├── index.lua │ │ │ │ │ └── user.lua │ │ │ └── view │ │ │ │ └── v2ray_server │ │ │ │ ├── log.htm │ │ │ │ ├── users_list_status.htm │ │ │ │ └── v2ray.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── v2ray_server.po │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── v2ray_server │ │ │ ├── init.d │ │ │ │ └── v2ray_server │ │ │ └── uci-defaults │ │ │ │ └── luci-app-v2ray-server │ │ │ └── usr │ │ │ └── share │ │ │ └── rpcd │ │ │ └── acl.d │ │ │ └── luci-app-v2ray-server.json │ ├── luci-app-verysync │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── verysync.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── verysync.lua │ │ │ └── view │ │ │ │ └── verysync │ │ │ │ └── verysync_status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── verysync.po │ │ └── root │ │ │ └── etc │ │ │ ├── config │ │ │ └── verysync │ │ │ ├── init.d │ │ │ └── verysync │ │ │ └── uci-defaults │ │ │ └── luci-verysync │ ├── luci-app-vlmcsd │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── vlmcsd.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── vlmcsd.lua │ │ │ └── view │ │ │ │ └── vlmcsd │ │ │ │ └── vlmcsd_status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── vlmcsd.zh-cn.po │ │ └── root │ │ │ └── etc │ │ │ ├── config │ │ │ └── vlmcsd │ │ │ ├── init.d │ │ │ └── kms │ │ │ └── uci-defaults │ │ │ └── luci-app-vlmcsd │ ├── luci-app-vsftpd │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── vsftpd.lua │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── vsftpd │ │ │ │ ├── anonymous.lua │ │ │ │ ├── general.lua │ │ │ │ ├── item.lua │ │ │ │ ├── log.lua │ │ │ │ └── users.lua │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── vsftpd.po │ │ └── root │ │ │ └── etc │ │ │ └── uci-defaults │ │ │ └── luci-vsftpd │ ├── luci-app-webadmin │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── webadmin.lua │ │ │ └── model │ │ │ │ └── cbi │ │ │ │ └── webadmin.lua │ │ └── po │ │ │ └── zh-cn │ │ │ └── webadmin.po │ ├── luci-app-wrtbwmon │ │ ├── Makefile │ │ ├── htdocs │ │ │ └── luci-static │ │ │ │ └── wrtbwmon │ │ │ │ └── wrtbwmon.js │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── wrtbwmon.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── wrtbwmon │ │ │ │ │ ├── config.lua │ │ │ │ │ └── custom.lua │ │ │ └── view │ │ │ │ └── wrtbwmon │ │ │ │ └── wrtbwmon.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── wrtbwmon.po │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── wrtbwmon │ │ │ ├── init.d │ │ │ │ └── wrtbwmon │ │ │ ├── uci-defaults │ │ │ │ └── luci-wrtbwmon │ │ │ └── wrtbwmon.include │ │ │ └── usr │ │ │ ├── sbin │ │ │ ├── readDB.awk │ │ │ └── wrtbwmon │ │ │ └── share │ │ │ └── wrtbwmon │ │ │ ├── usage.htm1 │ │ │ └── usage.htm2 │ ├── luci-app-xlnetacc │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── xlnetacc.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── xlnetacc.lua │ │ │ └── view │ │ │ │ └── xlnetacc │ │ │ │ ├── logview.htm │ │ │ │ └── status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── xlnetacc.po │ │ └── root │ │ │ ├── etc │ │ │ ├── config │ │ │ │ └── xlnetacc │ │ │ ├── hotplug.d │ │ │ │ └── iface │ │ │ │ │ └── 95-xlnetacc │ │ │ ├── init.d │ │ │ │ └── xlnetacc │ │ │ └── uci-defaults │ │ │ │ └── luci-xlnetacc │ │ │ └── usr │ │ │ └── bin │ │ │ └── xlnetacc.sh │ ├── luci-app-zerotier │ │ ├── Makefile │ │ ├── luasrc │ │ │ ├── controller │ │ │ │ └── zerotier.lua │ │ │ ├── model │ │ │ │ └── cbi │ │ │ │ │ └── zerotier │ │ │ │ │ ├── info.lua │ │ │ │ │ └── settings.lua │ │ │ └── view │ │ │ │ └── zerotier │ │ │ │ └── zerotier_status.htm │ │ ├── po │ │ │ └── zh-cn │ │ │ │ └── zerotier.po │ │ └── root │ │ │ ├── etc │ │ │ ├── init.d │ │ │ │ └── zerotier │ │ │ ├── uci-defaults │ │ │ │ └── 40_luci-zerotier │ │ │ ├── zerotier.start │ │ │ ├── zerotier.stop │ │ │ └── zerotier │ │ │ │ └── zerotier.log │ │ │ └── usr │ │ │ └── share │ │ │ └── rpcd │ │ │ └── acl.d │ │ │ └── luci-app-zerotier.json │ ├── luci-lib-docker │ │ ├── Makefile │ │ └── luasrc │ │ │ └── docker.lua │ ├── luci-lib-fs │ │ ├── Makefile │ │ └── files │ │ │ └── fs.lua │ ├── luci-proto-bonding │ │ ├── Makefile │ │ ├── luasrc │ │ │ └── model │ │ │ │ ├── cbi │ │ │ │ └── admin_network │ │ │ │ │ └── proto_bonding.lua │ │ │ │ └── network │ │ │ │ └── proto_bonding.lua │ │ └── po │ │ │ ├── de │ │ │ └── bonding.po │ │ │ ├── en │ │ │ └── bonding.po │ │ │ └── templates │ │ │ └── bonding.pot │ ├── luci-theme-argon │ │ ├── Makefile │ │ ├── htdocs │ │ │ └── luci-static │ │ │ │ └── argon │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── fonts │ │ │ │ ├── font.eot │ │ │ │ ├── font.svg │ │ │ │ ├── font.ttf │ │ │ │ ├── font.woff │ │ │ │ ├── ssr.eot │ │ │ │ ├── ssr.svg │ │ │ │ ├── ssr.ttf │ │ │ │ └── ssr.woff │ │ │ │ ├── js │ │ │ │ ├── jquery.min.js │ │ │ │ └── script.js │ │ │ │ └── logo.png │ │ ├── luasrc │ │ │ └── view │ │ │ │ └── themes │ │ │ │ └── argon │ │ │ │ ├── footer.htm │ │ │ │ └── header.htm │ │ └── root │ │ │ └── etc │ │ │ └── uci-defaults │ │ │ └── 30_luci-theme-argon │ ├── luci-theme-netgear │ │ ├── Makefile │ │ ├── htdocs │ │ │ └── luci-static │ │ │ │ └── netgear │ │ │ │ ├── css │ │ │ │ └── style.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── fonts │ │ │ │ ├── Roboto-Medium-webfont.woff │ │ │ │ ├── Roboto-Regular-webfont.woff │ │ │ │ ├── advancedtomato.eot │ │ │ │ ├── advancedtomato.svg │ │ │ │ ├── advancedtomato.ttf │ │ │ │ ├── advancedtomato.woff │ │ │ │ ├── font.eot │ │ │ │ ├── font.svg │ │ │ │ ├── font.ttf │ │ │ │ └── font.woff │ │ │ │ ├── js │ │ │ │ ├── jquery.min.js │ │ │ │ └── script.js │ │ │ │ ├── logo.png │ │ │ │ └── nlogo.png │ │ ├── luasrc │ │ │ └── view │ │ │ │ └── themes │ │ │ │ └── netgear │ │ │ │ ├── footer.htm │ │ │ │ └── header.htm │ │ └── root │ │ │ └── etc │ │ │ └── uci-defaults │ │ │ └── 30_luci-theme-netgear │ ├── microsocks │ │ └── 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 │ │ │ │ ├── 91_load_wifi.sh │ │ │ │ ├── SingleSKU.dat │ │ │ │ ├── SingleSKU_BF.dat │ │ │ │ ├── dbdc.l1profile.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 │ │ │ │ └── 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 │ ├── n2n_v2 │ │ ├── Makefile │ │ └── files │ │ │ ├── n2n_v2.config │ │ │ └── n2n_v2.init │ ├── nft-qos │ │ ├── Makefile │ │ └── files │ │ │ ├── lib │ │ │ ├── core.sh │ │ │ ├── dynamic.sh │ │ │ ├── monitor.sh │ │ │ ├── priority.sh │ │ │ └── static.sh │ │ │ ├── nft-qos-dynamic.hotplug │ │ │ ├── nft-qos-monitor.hotplug │ │ │ ├── nft-qos.config │ │ │ └── nft-qos.init │ ├── npc │ │ └── Makefile │ ├── openwrt-fullconenat │ │ ├── Makefile │ │ └── files │ │ │ └── Makefile │ ├── parted │ │ └── Makefile │ ├── pdnsd-alt │ │ ├── Makefile │ │ ├── files │ │ │ └── pdnsd.init │ │ └── patches │ │ │ └── 01-musl-compat.patch │ ├── polarssl │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-disable_sslv3.patch │ │ │ └── 200-reduce_config.patch │ ├── proxychains-ng │ │ └── Makefile │ ├── ps3netsrv │ │ ├── Makefile │ │ ├── files │ │ │ ├── ps3netsrv.config │ │ │ └── ps3netsrv.init │ │ └── patches │ │ │ ├── 001-include.common.h.patch │ │ │ ├── 002-include.compat.h.patch │ │ │ └── 003-makefile.patch │ ├── qBittorrent │ │ └── Makefile │ ├── qt5 │ │ ├── Makefile │ │ ├── patches │ │ │ └── 001-fix-symbol-resolving-for-OPENSSL_NO_NEXPROTONEG.patch │ │ └── src │ │ │ └── qtbase │ │ │ └── mkspecs │ │ │ └── linux-openwrt-g++ │ │ │ ├── qmake.conf │ │ │ └── qplatformdefs.h │ ├── r8125 │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ ├── Makefile_linux24x │ │ │ ├── r8125.h │ │ │ ├── r8125_dash.h │ │ │ ├── r8125_n.c │ │ │ ├── r8125_ptp.c │ │ │ ├── r8125_ptp.h │ │ │ ├── r8125_realwow.h │ │ │ ├── r8125_rss.c │ │ │ ├── r8125_rss.h │ │ │ ├── rtl_eeprom.c │ │ │ ├── rtl_eeprom.h │ │ │ ├── rtltool.c │ │ │ └── rtltool.h │ ├── r8152 │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-add-LED-configuration-from-OF.patch │ ├── r8168 │ │ ├── Makefile │ │ ├── README.md │ │ └── src │ │ │ ├── Makefile │ │ │ ├── Makefile_linux24x │ │ │ ├── r8168.h │ │ │ ├── r8168_asf.c │ │ │ ├── r8168_asf.h │ │ │ ├── r8168_dash.h │ │ │ ├── r8168_fiber.h │ │ │ ├── r8168_n.c │ │ │ ├── r8168_realwow.h │ │ │ ├── rtl_eeprom.c │ │ │ ├── rtl_eeprom.h │ │ │ ├── rtltool.c │ │ │ └── rtltool.h │ ├── rblibtorrent │ │ └── Makefile │ ├── rclone-ng │ │ └── Makefile │ ├── rclone-webui-react │ │ └── Makefile │ ├── rclone │ │ ├── Makefile │ │ └── patches │ │ │ ├── 000-disable-plugins.patch │ │ │ └── 010-change-default-config-path.patch │ ├── redsocks2 │ │ └── Makefile │ ├── samba4 │ │ ├── Config.in │ │ ├── Makefile │ │ ├── files │ │ │ ├── samba.config │ │ │ ├── samba.init │ │ │ └── smb.conf.template │ │ ├── patches │ │ │ ├── 001-samba-4.4.0-pam.patch │ │ │ ├── 002-dnsserver-4.7.0.patch │ │ │ ├── 003-getpwent_r.patch │ │ │ ├── 004-missing-headers.patch │ │ │ ├── 005-musl_uintptr.patch │ │ │ ├── 006-netdb-defines.patch │ │ │ ├── 007-libldb-fix-musl-libc-unkown-type-error.patch │ │ │ ├── 008-samba-4.11-add_missing___compar_fn_t.patch │ │ │ ├── 009-samba-4.11-qsort-compar.patch │ │ │ ├── 010-samba-4-11-fix-host-tools-checks.patch.patch │ │ │ ├── 020-source3-msgsock-nvram-fix.patch │ │ │ ├── 021-source4-msgsock-nvram-fix.patch │ │ │ ├── 101-do-not-check-xsltproc-manpages.patch │ │ │ ├── 102-samba-4.11-unbundle-libbsd.patch │ │ │ └── 103-tmsize-overflow-fix.patch │ │ └── waf-cross-answers │ │ │ ├── aarch64.txt │ │ │ ├── arc.txt │ │ │ ├── arm.txt │ │ │ ├── armeb.txt │ │ │ ├── i386.txt │ │ │ ├── mips.txt │ │ │ ├── mips64.txt │ │ │ ├── mips64el.txt │ │ │ ├── mipsel.txt │ │ │ ├── powerpc.txt │ │ │ └── x86_64.txt │ ├── shadowsocksr-libev │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-Add-ss-server-and-ss-check.patch │ │ │ ├── 0002-Revert-verify_simple-and-auth_simple.patch │ │ │ ├── 0003-Refine-Usage.patch │ │ │ ├── 990-not-defined-errors-on-gcc10.patch │ │ │ └── 999-Fix-Werror-sizeof-pointer-memaccess.patch │ ├── shortcut-fe │ │ ├── Makefile │ │ ├── files │ │ │ └── usr │ │ │ │ └── bin │ │ │ │ └── sfe_dump │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ ├── sfe.h │ │ │ ├── sfe_backport.h │ │ │ ├── sfe_cm.c │ │ │ ├── sfe_cm.h │ │ │ ├── sfe_ipv4.c │ │ │ └── sfe_ipv6.c │ ├── simple-obfs │ │ └── Makefile │ ├── softethervpn5 │ │ ├── Makefile │ │ ├── files │ │ │ ├── dummy │ │ │ ├── launcher.sh │ │ │ ├── vpnbridge.init │ │ │ ├── vpnclient.init │ │ │ └── vpnserver.init │ │ └── patches │ │ │ ├── 001-musl-poll-fix.patch │ │ │ ├── 002-iconv-defines-fix.patch │ │ │ ├── 003-iconv-cmake-fix.patch │ │ │ ├── 100-increase-cfg-save-intervall.patch │ │ │ └── 101-add-config-write-syslog.patch │ ├── srelay │ │ ├── Makefile │ │ ├── files │ │ │ ├── srelay.conf │ │ │ └── srelay.init │ │ └── patches │ │ │ └── 001-compile.patch │ ├── tcpping │ │ └── Makefile │ ├── trojan │ │ └── Makefile │ ├── uugamebooster │ │ ├── Makefile │ │ └── files │ │ │ └── uugamebooster-update │ ├── v2ray-plugin │ │ └── Makefile │ ├── verysync │ │ └── Makefile │ ├── vlmcsd │ │ ├── Makefile │ │ └── files │ │ │ ├── vlmcsd.ini │ │ │ └── vlmcsd.init │ ├── 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 │ │ │ ├── 100-add-uci-auth-support.patch │ │ │ ├── 101-enable-chroot-on-writable-dir.patch │ │ │ └── 102-keep-local-user-rights.patch │ ├── wget │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-prefer_ipv4.patch │ ├── wol │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-fix-build-on-x86.patch │ └── wxbase │ │ ├── Makefile │ │ └── patches │ │ └── wxGTK-2.8.12-abicheck.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 │ │ │ ├── 0001-ppc_initreg.c-Incliude-asm-ptrace.h-for-pt_regs-defi.patch │ │ │ ├── 003-libintl-compatibility.patch │ │ │ ├── 005-build_only_libs.patch │ │ │ ├── 006-Fix-build-on-aarch64-musl.patch │ │ │ ├── 100-musl-compat.patch │ │ │ ├── 101-no-fts.patch │ │ │ └── 110-no-cdefs.patch │ ├── gettext-full │ │ ├── Makefile │ │ └── patches │ │ │ ├── 000-relocatable.patch │ │ │ ├── 001-autotools.patch │ │ │ ├── 001-no_examples_and_tests.patch │ │ │ ├── 003-gettext-error_print_progname.patch │ │ │ ├── 100-error_progname.patch │ │ │ ├── 110-error_progname_def.patch │ │ │ ├── 120-uclibc-nolocale.patch │ │ │ ├── 130-format-secuirty.patch │ │ │ └── 150-disable_libxml_iconv.patch │ ├── gettext │ │ ├── Makefile │ │ └── src │ │ │ ├── LICENSE │ │ │ ├── include │ │ │ └── libintl.h │ │ │ └── m4 │ │ │ ├── codeset.m4 │ │ │ ├── gettext.m4 │ │ │ ├── intl.m4 │ │ │ ├── intldir.m4 │ │ │ ├── intlmacosx.m4 │ │ │ ├── lcmessage.m4 │ │ │ ├── nls.m4 │ │ │ └── po.m4 │ ├── gmp │ │ └── Makefile │ ├── jansson │ │ └── Makefile │ ├── libbsd │ │ └── Makefile │ ├── libcxx │ │ ├── Makefile │ │ ├── files │ │ │ └── g++-libcxx │ │ └── patches │ │ │ ├── 010-cxx17.patch │ │ │ └── 020-fixes.patch │ ├── libdouble-conversion │ │ └── Makefile │ ├── libevent2 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-Add-missing-file-Uninstall.cmake.in.patch │ │ │ └── 0002-Add-Uninstall.cmake.in-into-dist-archive.patch │ ├── libiconv-full │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-strip_charsets.patch │ │ │ ├── 101-autotools.patch │ │ │ ├── 103-configure_ac_fix.patch │ │ │ ├── 200-work-with-libtool2.patch │ │ │ └── 300-fortify-source-compat.patch │ ├── libiconv │ │ ├── COPYING │ │ ├── COPYRIGHT │ │ ├── Makefile │ │ └── src │ │ │ ├── LICENSE │ │ │ ├── iconv.c │ │ │ ├── include │ │ │ ├── charmaps.h │ │ │ ├── charmaps │ │ │ │ ├── iso-8859-10.h │ │ │ │ ├── iso-8859-13.h │ │ │ │ ├── iso-8859-14.h │ │ │ │ ├── iso-8859-16.h │ │ │ │ ├── iso-8859-2.h │ │ │ │ ├── iso-8859-3.h │ │ │ │ ├── iso-8859-4.h │ │ │ │ ├── iso-8859-5.h │ │ │ │ ├── iso-8859-6.h │ │ │ │ ├── iso-8859-7.h │ │ │ │ ├── iso-8859-8.h │ │ │ │ ├── iso-8859-9.h │ │ │ │ ├── koi8-r.h │ │ │ │ ├── windows-1250.h │ │ │ │ ├── windows-1251.h │ │ │ │ ├── windows-1252.h │ │ │ │ ├── windows-1253.h │ │ │ │ ├── windows-1254.h │ │ │ │ ├── windows-1255.h │ │ │ │ ├── windows-1256.h │ │ │ │ ├── windows-1257.h │ │ │ │ ├── windows-1258.h │ │ │ │ └── windows-874.h │ │ │ └── iconv.h │ │ │ └── m4 │ │ │ └── iconv.m4 │ ├── libjson-c │ │ ├── Makefile │ │ └── patches │ │ │ ├── 000-libm.patch │ │ │ ├── 001-Protect-array_list_del_idx-against-size_t-overflow.patch │ │ │ ├── 002-Prevent-division-by-zero-in-linkhash.patch │ │ │ ├── 003-Fix-integer-overflows.patch │ │ │ └── 004-Issue-599-Fix-the-backwards-check-in-lh_table_insert.patch │ ├── libmnl │ │ └── Makefile │ ├── libnetfilter-conntrack │ │ └── Makefile │ ├── libnetfilter-cthelper │ │ └── Makefile │ ├── libnetfilter-cttimeout │ │ └── Makefile │ ├── libnetfilter-log │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-build-remove-unnecessary-pkgconfig-config.status-dep.patch │ │ │ ├── 0002-build-remove-unused-lines-in-Makefile.am.patch │ │ │ ├── 0003-build-resolve-automake-1.12-warnings.patch │ │ │ ├── 0004-Add-include-needed-for-integer-type-definition.patch │ │ │ ├── 0005-configure-uclinux-is-also-linux.patch │ │ │ └── 0006-configure-add-without-ipulog-option-to-disable-libip.patch │ ├── libnetfilter-queue │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-checksum_computation.patch │ ├── libnfnetlink │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-missing_include.patch │ ├── libnftnl │ │ └── Makefile │ ├── libnl-tiny │ │ └── Makefile │ ├── libnl │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-build-add-Libs.private-field-in-libnl-pkg-config-file.patch │ ├── libpcap │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 102-skip-manpages.patch │ │ │ ├── 103-makefile_flex_workaround.patch │ │ │ ├── 201-space_optimization.patch │ │ │ ├── 203-undef_iw_mode_monitor.patch │ │ │ └── 204-usb-bus-path.patch │ ├── libroxml │ │ └── Makefile │ ├── libselinux │ │ └── Makefile │ ├── libsepol │ │ └── Makefile │ ├── libtool │ │ └── 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-compat │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-fix-musl-stdint.patch │ ├── libusb │ │ └── Makefile │ ├── lzo │ │ └── Makefile │ ├── mbedtls │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-Implements-AES-and-GCM-with-ARMv8-Crypto-Extensions.patch │ │ │ └── 200-config.patch │ ├── 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 │ ├── nghttp2 │ │ └── Makefile │ ├── openssl │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-Configure-afalg-support.patch │ │ │ ├── 110-openwrt_targets.patch │ │ │ ├── 120-strip-cflags-from-binary.patch │ │ │ ├── 130-dont-build-tests-fuzz.patch │ │ │ ├── 140-allow-prefer-chacha20.patch │ │ │ ├── 150-openssl.cnf-add-engines-conf.patch │ │ │ ├── 400-eng_devcrypto-save-ioctl-if-EVP_MD_.FLAG_ONESHOT.patch │ │ │ ├── 410-eng_devcrypto-add-configuration-options.patch │ │ │ ├── 420-eng_devcrypto-add-command-to-dump-driver-info.patch │ │ │ ├── 430-e_devcrypto-make-the-dev-crypto-engine-dynamic.patch │ │ │ ├── 500-e_devcrypto-default-to-not-use-digests-in-engine.patch │ │ │ └── 510-e_devcrypto-ignore-error-when-closing-session.patch │ ├── pcre │ │ ├── Config.in │ │ └── Makefile │ ├── popt │ │ └── Makefile │ ├── readline │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-curses-link.patch │ ├── sysfsutils │ │ ├── Makefile │ │ ├── files │ │ │ ├── local.conf │ │ │ ├── sysfs.conf │ │ │ └── sysfsutils │ │ └── patches │ │ │ └── 200-mnt_path_check.patch │ ├── toolchain │ │ ├── Makefile │ │ └── glibc-files │ │ │ └── etc │ │ │ └── nsswitch.conf │ ├── uclibc++ │ │ ├── Makefile │ │ ├── files │ │ │ └── config.default │ │ └── patches │ │ │ ├── 001-no-ansi.patch │ │ │ ├── 002-undef-functions.patch │ │ │ ├── 003-no-fPIC.patch │ │ │ ├── 004-uClibc-Make-long-long-available-to-C-11.patch │ │ │ └── 005-istream_helpers-Fix-sscanf-typo.patch │ ├── uclient │ │ └── Makefile │ ├── ustream-ssl │ │ └── Makefile │ ├── wolfssl │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ └── 100-disable-hardening-check.patch │ └── zlib │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ ├── 001-neon-implementation-of-adler32.patch │ │ ├── 002-arm-specific-optimisations-for-inflate.patch │ │ ├── 003-attach-sourcefiles-in-patch-002-to-buildsystem.patch │ │ └── 004-relative-pkg-config-paths.patch ├── network │ ├── config │ │ ├── firewall │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── firewall.config │ │ │ │ ├── firewall.hotplug │ │ │ │ ├── firewall.init │ │ │ │ └── firewall.user │ │ │ └── patches │ │ │ │ └── fullconenat.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 │ │ ├── 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 │ │ ├── netifd │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── etc │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── iface │ │ │ │ │ │ └── 00-netstate │ │ │ │ │ └── net │ │ │ │ │ │ └── 20-smp-packet-steering │ │ │ │ ├── init.d │ │ │ │ │ └── network │ │ │ │ └── uci-defaults │ │ │ │ │ └── 14_migrate-dhcp-release │ │ │ │ ├── lib │ │ │ │ ├── netifd │ │ │ │ │ ├── dhcp.script │ │ │ │ │ └── proto │ │ │ │ │ │ └── dhcp.sh │ │ │ │ └── network │ │ │ │ │ └── config.sh │ │ │ │ ├── sbin │ │ │ │ ├── devstatus │ │ │ │ ├── ifdown │ │ │ │ ├── ifstatus │ │ │ │ └── ifup │ │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── udhcpc │ │ │ │ └── default.script │ │ ├── qos-scripts │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── qos │ │ │ │ ├── hotplug.d │ │ │ │ │ └── iface │ │ │ │ │ │ └── 10-qos │ │ │ │ └── init.d │ │ │ │ │ └── qos │ │ │ │ └── usr │ │ │ │ ├── bin │ │ │ │ ├── qos-start │ │ │ │ ├── qos-stat │ │ │ │ └── qos-stop │ │ │ │ └── lib │ │ │ │ └── qos │ │ │ │ ├── generate.sh │ │ │ │ └── tcrules.awk │ │ ├── soloscli │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── etc │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ └── atm │ │ │ │ │ │ │ └── 15-solos-init │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── solos │ │ │ │ └── solos-log-stats │ │ │ └── patches │ │ │ │ ├── 001-no-driver.patch │ │ │ │ └── 002-cflags.patch │ │ ├── swconfig │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── switch.sh │ │ │ └── src │ │ │ │ ├── Makefile │ │ │ │ ├── cli.c │ │ │ │ ├── swlib.c │ │ │ │ ├── swlib.h │ │ │ │ └── uci.c │ │ ├── vti │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── vti.sh │ │ ├── vxlan │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── vxlan.sh │ │ └── xfrm │ │ │ ├── Makefile │ │ │ └── files │ │ │ └── xfrm.sh │ ├── ipv6 │ │ ├── 464xlat │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── 464xlat.sh │ │ │ └── src │ │ │ │ ├── 464xlatcfg.c │ │ │ │ └── Makefile │ │ ├── 6in4 │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── 6in4.sh │ │ ├── 6rd │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── 6rd.sh │ │ │ └── src │ │ │ │ ├── 6rdcalc.c │ │ │ │ └── Makefile │ │ ├── 6to4 │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── 6to4.sh │ │ ├── ds-lite │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── dslite.sh │ │ ├── map │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── map.sh │ │ │ └── src │ │ │ │ ├── CMakeLists.txt │ │ │ │ └── mapcalc.c │ │ ├── odhcp6c │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── dhcpv6.script │ │ │ │ └── dhcpv6.sh │ │ └── thc-ipv6 │ │ │ ├── Makefile │ │ │ └── patches │ │ │ ├── 000-cflags_override.patch │ │ │ └── 100-no-ssl.patch │ ├── services │ │ ├── dnsmasq │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── 50-dnsmasq-migrate-resolv-conf-auto.sh │ │ │ │ ├── dhcp-script.sh │ │ │ │ ├── dhcp.conf │ │ │ │ ├── dhcpbogushostname.conf │ │ │ │ ├── dnsmasq.conf │ │ │ │ ├── dnsmasq.init │ │ │ │ ├── dnsmasq_acl.json │ │ │ │ ├── dnsmasqsec.hotplug │ │ │ │ └── rfc6761.conf │ │ │ └── patches │ │ │ │ ├── 100-remove-old-runtime-kernel-support.patch │ │ │ │ └── 900-filter-aaaa.patch │ │ ├── dropbear │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── dropbear.config │ │ │ │ ├── dropbear.failsafe │ │ │ │ └── dropbear.init │ │ │ └── patches │ │ │ │ ├── 100-pubkey_path.patch │ │ │ │ ├── 110-change_user.patch │ │ │ │ ├── 130-ssh_ignore_x_args.patch │ │ │ │ ├── 140-disable_assert.patch │ │ │ │ ├── 160-lto-jobserver.patch │ │ │ │ ├── 600-allow-blank-root-password.patch │ │ │ │ ├── 900-configure-hardening.patch │ │ │ │ └── 901-bundled-libs-cflags.patch │ │ ├── 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 │ │ ├── hostapd │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── hostapd-basic.config │ │ │ │ ├── hostapd-full.config │ │ │ │ ├── hostapd-mini.config │ │ │ │ ├── hostapd.sh │ │ │ │ ├── multicall.c │ │ │ │ ├── wpa_supplicant-basic.config │ │ │ │ ├── wpa_supplicant-full.config │ │ │ │ ├── wpa_supplicant-mini.config │ │ │ │ ├── wpa_supplicant-p2p.config │ │ │ │ ├── wpad.init │ │ │ │ └── wps-hotplug.sh │ │ │ ├── patches │ │ │ │ ├── 001-HE-VHT-fix-frequency-setup-with-HE-enabled.patch │ │ │ │ ├── 002-mesh-fix-channel-init-order-disable-pri-sec-channel-.patch │ │ │ │ ├── 003-wpa_supplicant-handle-HT40-and-mode-downgrade-in-AP-.patch │ │ │ │ ├── 004-wpa_supplicant-fix-frequency-config-for-non-p2p-vht-.patch │ │ │ │ ├── 005-wpa_supplicant-enable-vht-and-he-in-default-config-p.patch │ │ │ │ ├── 006-hw_features-better-debug-messages-for-some-error-cas.patch │ │ │ │ ├── 007-dfs-use-helper-functions-for-vht-he-parameters.patch │ │ │ │ ├── 008-mesh-use-setup-completion-callback-to-complete-mesh-.patch │ │ │ │ ├── 009-mesh-update-ssid-frequency-as-pri-sec-channel-switch.patch │ │ │ │ ├── 010-mesh-Allow-DFS-channels-to-be-selected-if-dfs-is-ena.patch │ │ │ │ ├── 011-mesh-do-not-set-offchanok-on-DFS-channels-in-non-ETS.patch │ │ │ │ ├── 012-mesh-fix-channel-switch-error-during-CAC.patch │ │ │ │ ├── 013-mesh-inform-kernel-driver-DFS-handler-in-userspace.patch │ │ │ │ ├── 014-mesh-fixes-for-mesh-init-deinit.patch │ │ │ │ ├── 015-mesh-fix-DFS-deinit-init.patch │ │ │ │ ├── 016-tests-DFS-test-for-wpa_supplicant-mesh.patch │ │ │ │ ├── 017-mesh-fix-mesh_oom-test.patch │ │ │ │ ├── 018-mesh-move-mesh-freq-setting-to-own-function.patch │ │ │ │ ├── 019-mesh-use-deterministic-channel-on-channel-switch.patch │ │ │ │ ├── 050-mesh-make-forwarding-configurable.patch │ │ │ │ ├── 100-daemonize_fix.patch │ │ │ │ ├── 110-wolfssl-compile-fix.patch │ │ │ │ ├── 200-multicall.patch │ │ │ │ ├── 300-noscan.patch │ │ │ │ ├── 301-mesh-noscan.patch │ │ │ │ ├── 310-rescan_immediately.patch │ │ │ │ ├── 320-optional_rfkill.patch │ │ │ │ ├── 330-nl80211_fix_set_freq.patch │ │ │ │ ├── 340-reload_freq_change.patch │ │ │ │ ├── 341-mesh-ctrl-iface-channel-switch.patch │ │ │ │ ├── 350-nl80211_del_beacon_bss.patch │ │ │ │ ├── 360-ctrl_iface_reload.patch │ │ │ │ ├── 370-ap_sta_support.patch │ │ │ │ ├── 380-disable_ctrl_iface_mib.patch │ │ │ │ ├── 381-hostapd_cli_UNKNOWN-COMMAND.patch │ │ │ │ ├── 390-wpa_ie_cap_workaround.patch │ │ │ │ ├── 400-wps_single_auth_enc_type.patch │ │ │ │ ├── 410-limit_debug_messages.patch │ │ │ │ ├── 420-indicate-features.patch │ │ │ │ ├── 430-hostapd_cli_ifdef.patch │ │ │ │ ├── 431-wpa_cli_ifdef.patch │ │ │ │ ├── 432-missing-typedef.patch │ │ │ │ ├── 450-scan_wait.patch │ │ │ │ ├── 460-wpa_supplicant-add-new-config-params-to-be-used-with.patch │ │ │ │ ├── 461-driver_nl80211-use-new-parameters-during-ibss-join.patch │ │ │ │ ├── 463-add-mcast_rate-to-11s.patch │ │ │ │ ├── 464-fix-mesh-obss-check.patch │ │ │ │ ├── 470-survey_data_fallback.patch │ │ │ │ ├── 500-lto-jobserver-support.patch │ │ │ │ ├── 599-wpa_supplicant-fix-warnings.patch │ │ │ │ ├── 600-ubus_support.patch │ │ │ │ ├── 700-wifi-reload.patch │ │ │ │ └── 800-dfs-enter-DFS-state-if-no-available-channel-is-found.patch │ │ │ └── src │ │ │ │ ├── src │ │ │ │ ├── ap │ │ │ │ │ ├── ubus.c │ │ │ │ │ └── ubus.h │ │ │ │ └── utils │ │ │ │ │ └── build_features.h │ │ │ │ └── wpa_supplicant │ │ │ │ ├── ubus.c │ │ │ │ └── ubus.h │ │ ├── igmpproxy │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── igmpproxy.config │ │ │ │ └── igmpproxy.init │ │ ├── ipset-dns │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── ipset-dns.config │ │ │ │ └── ipset-dns.init │ │ ├── lldpd │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── lldpd.config │ │ │ │ └── lldpd.init │ │ │ └── patches │ │ │ │ └── 001-disable_libcap.patch │ │ ├── odhcpd │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── odhcpd-update │ │ │ │ ├── odhcpd.defaults │ │ │ │ └── odhcpd.init │ │ ├── omcproxy │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── omcproxy.config │ │ │ │ └── omcproxy.init │ │ ├── openvpn-easy-rsa │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ └── openvpn-easy-rsa.upgrade │ │ │ └── patches │ │ │ │ └── 101-static_EASYRSA.patch │ │ ├── openvpn │ │ │ ├── Config-mbedtls.in │ │ │ ├── Config-nossl.in │ │ │ ├── Config-openssl.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── etc │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ │ └── openvpn │ │ │ │ │ │ │ │ └── 01-user │ │ │ │ │ │ └── openvpn.user │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ └── openvpn │ │ │ │ │ │ │ └── 01-user │ │ │ │ │ └── openvpn.user │ │ │ │ ├── files │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ │ └── openvpn │ │ │ │ │ │ │ │ └── 01-user │ │ │ │ │ │ └── openvpn.user │ │ │ │ │ ├── lib │ │ │ │ │ │ └── functions │ │ │ │ │ │ │ └── openvpn.sh │ │ │ │ │ ├── openvpn.config │ │ │ │ │ ├── openvpn.init │ │ │ │ │ ├── openvpn.options │ │ │ │ │ ├── openvpn.upgrade │ │ │ │ │ └── usr │ │ │ │ │ │ └── libexec │ │ │ │ │ │ └── openvpn-hotplug │ │ │ │ ├── lib │ │ │ │ │ └── functions │ │ │ │ │ │ └── openvpn.sh │ │ │ │ ├── openvpn.config │ │ │ │ ├── openvpn.init │ │ │ │ ├── openvpn.options │ │ │ │ ├── openvpn.upgrade │ │ │ │ └── usr │ │ │ │ │ └── libexec │ │ │ │ │ └── openvpn-hotplug │ │ │ └── patches │ │ │ │ ├── 001-reproducible-remove_DATE.patch │ │ │ │ ├── 100-mbedtls-disable-runtime-version-check.patch │ │ │ │ ├── 210-build_always_use_internal_lz4.patch │ │ │ │ ├── 220-disable_des.patch │ │ │ │ ├── 221-tunnelblick-openvpn_xorpatch-a.diff │ │ │ │ ├── 222-tunnelblick-openvpn_xorpatch-b.diff │ │ │ │ ├── 223-tunnelblick-openvpn_xorpatch-c.diff │ │ │ │ ├── 224-tunnelblick-openvpn_xorpatch-d.diff │ │ │ │ └── 225-tunnelblick-openvpn_xorpatch-e.diff │ │ ├── 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 │ │ │ │ ├── 010-use_target_for_configure.patch │ │ │ │ ├── 100-debian_ip-ip_option.patch │ │ │ │ ├── 101-debian_close_dev_ppp.patch │ │ │ │ ├── 103-debian_fix_link_pidfile.patch │ │ │ │ ├── 105-debian_demand.patch │ │ │ │ ├── 106-debian_stripMSdomain.patch │ │ │ │ ├── 107-debian_pppoatm_wildcard.patch │ │ │ │ ├── 110-debian_defaultroute.patch │ │ │ │ ├── 120-debian_ipv6_updown_option.patch │ │ │ │ ├── 121-debian_adaptive_lcp_echo.patch │ │ │ │ ├── 133-fix_sha1_include.patch │ │ │ │ ├── 140-pppoe_compile_fix.patch │ │ │ │ ├── 200-makefile.patch │ │ │ │ ├── 201-mppe_mppc_1.1.patch │ │ │ │ ├── 202-no_strip.patch │ │ │ │ ├── 203-opt_flags.patch │ │ │ │ ├── 204-radius_config.patch │ │ │ │ ├── 205-no_exponential_timeout.patch │ │ │ │ ├── 206-compensate_time_change.patch │ │ │ │ ├── 207-lcp_mtu_max.patch │ │ │ │ ├── 208-fix_status_code.patch │ │ │ │ ├── 300-filter-pcap-includes-lib.patch │ │ │ │ ├── 310-precompile_filter.patch │ │ │ │ ├── 321-multilink_support_custom_iface_names.patch │ │ │ │ ├── 330-retain_foreign_default_routes.patch │ │ │ │ ├── 340-populate_default_gateway.patch │ │ │ │ ├── 400-simplify_kernel_checks.patch │ │ │ │ ├── 401-no_record_file.patch │ │ │ │ ├── 403-no_wtmp.patch │ │ │ │ ├── 404-remove_obsolete_protocol_names.patch │ │ │ │ ├── 405-no_multilink_option.patch │ │ │ │ ├── 500-add-pptp-plugin.patch │ │ │ │ ├── 510-pptp_compile_fix.patch │ │ │ │ ├── 511-pptp_cflags.patch │ │ │ │ ├── 511-syncppp.patch │ │ │ │ ├── 540-save-pppol2tp_fd_str.patch │ │ │ │ ├── 600-Revert-pppd-Use-openssl-for-the-DES-instead-of-the-l.patch │ │ │ │ ├── 700-radius-Prevent-buffer-overflow-in-rc_mksid.patch │ │ │ │ ├── 701-pppd-Fix-bounds-check-in-EAP-code.patch │ │ │ │ └── 702-pppd-Ignore-received-EAP-messages-when-not-doing-EAP.patch │ │ │ └── utils │ │ │ │ └── pfc.c │ │ ├── relayd │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── relay.init │ │ ├── samba36 │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── samba.config │ │ │ │ ├── samba.init │ │ │ │ └── smb.conf.template │ │ │ └── patches │ │ │ │ ├── 010-patch-cve-2015-5252.patch │ │ │ │ ├── 011-patch-cve-2015-5296.patch │ │ │ │ ├── 012-patch-cve-2015-5299.patch │ │ │ │ ├── 015-patch-cve-2015-7560.patch │ │ │ │ ├── 020-CVE-preparation-v3-6.patch │ │ │ │ ├── 021-CVE-preparation-v3-6-addition.patch │ │ │ │ ├── 022-CVE-2015-5370-v3-6.patch │ │ │ │ ├── 023-CVE-2016-2110-v3-6.patch │ │ │ │ ├── 024-CVE-2016-2111-v3-6.patch │ │ │ │ ├── 025-CVE-2016-2112-v3-6.patch │ │ │ │ ├── 026-CVE-2016-2115-v3-6.patch │ │ │ │ ├── 027-CVE-2016-2118-v3-6.patch │ │ │ │ ├── 028-CVE-2016-2125-v3.6.patch │ │ │ │ ├── 029-CVE-2017-7494-v3-6.patch │ │ │ │ ├── 030-CVE-2017-15275-v3.6.patch │ │ │ │ ├── 031-CVE-2017-12163-v3.6.patch │ │ │ │ ├── 032-CVE-2017-12150-v3.6.patch │ │ │ │ ├── 032-CVE-2018-1050-v3-6.patch │ │ │ │ ├── 100-configure_fixes.patch │ │ │ │ ├── 110-multicall.patch │ │ │ │ ├── 111-owrt_smbpasswd.patch │ │ │ │ ├── 120-add_missing_ifdef.patch │ │ │ │ ├── 200-remove_printer_support.patch │ │ │ │ ├── 210-remove_ad_support.patch │ │ │ │ ├── 220-remove_services.patch │ │ │ │ ├── 230-remove_winreg_support.patch │ │ │ │ ├── 240-remove_dfs_api.patch │ │ │ │ ├── 250-remove_domain_logon.patch │ │ │ │ ├── 260-remove_samr.patch │ │ │ │ ├── 270-remove_registry_backend.patch │ │ │ │ ├── 280-strip_srvsvc.patch │ │ │ │ ├── 290-remove_lsa.patch │ │ │ │ ├── 300-assert_debug_level.patch │ │ │ │ ├── 310-remove_error_strings.patch │ │ │ │ ├── 320-debug_level_checks.patch │ │ │ │ └── 330-librpc_default_print.patch │ │ ├── shellsync │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ └── shellsync.c │ │ ├── uhttpd │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── ubus.default │ │ │ │ ├── uhttpd.config │ │ │ │ └── uhttpd.init │ │ ├── umdns │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── umdns.config │ │ │ │ ├── umdns.init │ │ │ │ └── umdns.json │ │ └── wireguard │ │ │ └── Makefile │ └── utils │ │ ├── adb-enablemodem │ │ ├── Makefile │ │ └── files │ │ │ └── adb-enablemodem │ │ ├── arptables │ │ └── Makefile │ │ ├── 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 │ │ └── patches │ │ │ ├── 001-compile_fix.patch │ │ │ ├── 002-termios.patch │ │ │ ├── 003-no_XCASE.patch │ │ │ └── 004-check_tty.patch │ │ ├── curl │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ └── 200-no_docs_tests.patch │ │ ├── dante │ │ ├── Makefile │ │ └── patches │ │ │ ├── 200-fix-RTLD_NEXT.patch │ │ │ └── 210-deactivate-sched_setscheduler.patch │ │ ├── ebtables │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-musl_fix.patch │ │ │ └── 200-fix-extension-init.patch │ │ ├── ethtool │ │ └── Makefile │ │ ├── iftop │ │ └── Makefile │ │ ├── iperf │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0003-fix-non-ipv6-builds.patch │ │ │ └── 010-libcxx.patch │ │ ├── iperf3 │ │ └── Makefile │ │ ├── iproute2 │ │ ├── Makefile │ │ ├── files │ │ │ └── 15-teql │ │ └── patches │ │ │ ├── 001-devlink-update-include-files.patch │ │ │ ├── 002-configure-support-ipset-v7.patch │ │ │ ├── 100-configure.patch │ │ │ ├── 110-darwin_fixes.patch │ │ │ ├── 115-add-config-xtlibdir.patch │ │ │ ├── 120-no_arpd.patch │ │ │ ├── 130-no_netem.patch │ │ │ ├── 140-allow_pfifo_fast.patch │ │ │ ├── 140-keep_libmnl_optional.patch │ │ │ ├── 145-keep_libelf_optional.patch │ │ │ ├── 150-keep_libcap_optional.patch │ │ │ ├── 160-libnetlink-pic.patch │ │ │ ├── 170-ip_tiny.patch │ │ │ ├── 175-reduce-dynamic-syms.patch │ │ │ ├── 180-drop_FAILED_POLICY.patch │ │ │ ├── 200-drop_libbsd_dependency.patch │ │ │ └── 300-selinux-configurable.patch │ │ ├── ipset │ │ └── Makefile │ │ ├── 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 │ │ ├── iw │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-nl80211_h_sync.patch │ │ │ ├── 120-antenna_gain.patch │ │ │ ├── 130-survey-bss-rx-time.patch │ │ │ └── 200-reduce_size.patch │ │ ├── iwcap │ │ ├── Makefile │ │ └── src │ │ │ └── iwcap.c │ │ ├── iwinfo │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-ralink.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 │ │ ├── ltq-dsl-base │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ └── hotplug.d │ │ │ │ └── dsl │ │ │ │ ├── led_dsl.sh │ │ │ │ └── pppoa.sh │ │ │ ├── lib │ │ │ └── functions │ │ │ │ └── lantiq_dsl.sh │ │ │ └── sbin │ │ │ └── dsl_notify.sh │ │ ├── maccalc │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── main.c │ │ ├── nftables │ │ └── Makefile │ │ ├── owipcalc │ │ ├── Makefile │ │ └── src │ │ │ └── owipcalc.c │ │ ├── resolveip │ │ ├── Makefile │ │ └── src │ │ │ └── resolveip.c │ │ ├── rssileds │ │ ├── Makefile │ │ ├── files │ │ │ └── rssileds.init │ │ └── src │ │ │ └── rssileds.c │ │ ├── tcpdump │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-remove_pcap_debug.patch │ │ │ ├── 002-remove_static_libpcap_check.patch │ │ │ └── 100-tcpdump_mini.patch │ │ ├── umbim │ │ ├── Makefile │ │ └── files │ │ │ └── lib │ │ │ └── netifd │ │ │ └── proto │ │ │ └── mbim.sh │ │ ├── uqmi │ │ ├── Makefile │ │ └── files │ │ │ └── lib │ │ │ └── netifd │ │ │ └── proto │ │ │ └── qmi.sh │ │ ├── wireguard-tools │ │ ├── Makefile │ │ └── files │ │ │ ├── wireguard.sh │ │ │ └── wireguard_watchdog │ │ ├── wireless-tools │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-debian.patch │ │ │ ├── 002-fix-iwconfig-power-argument-parsing.patch │ │ │ ├── 003-we_essential_def.patch │ │ │ └── 004-increase_iwlist_buffer.patch │ │ ├── wpan-tools │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-src-nl_extras.h-fix-compatibility-with-libnl-3.3.0.patch │ │ └── wwan │ │ ├── Makefile │ │ └── files │ │ ├── data │ │ ├── 0421-03a7 │ │ ├── 0421-060d │ │ ├── 0421-060e │ │ ├── 0421-0612 │ │ ├── 0421-0619 │ │ ├── 0421-061e │ │ ├── 0421-0623 │ │ ├── 0421-0629 │ │ ├── 0421-062d │ │ ├── 0421-062f │ │ ├── 0421-0638 │ │ ├── 05c6-0016 │ │ ├── 05c6-0023 │ │ ├── 05c6-00a0 │ │ ├── 05c6-6000 │ │ ├── 05c6-9000 │ │ ├── 07d1-3e01 │ │ ├── 07d1-3e02 │ │ ├── 07d1-7e11 │ │ ├── 0af0-4005 │ │ ├── 0af0-6901 │ │ ├── 0af0-7201 │ │ ├── 0af0-8120 │ │ ├── 0af0-9200 │ │ ├── 0b3c-c000 │ │ ├── 0b3c-c001 │ │ ├── 0b3c-c002 │ │ ├── 0b3c-c003 │ │ ├── 0b3c-c004 │ │ ├── 0b3c-c005 │ │ ├── 0b3c-c00a │ │ ├── 0b3c-c00b │ │ ├── 0bdb-1900 │ │ ├── 0bdb-1902 │ │ ├── 0bdb-190a │ │ ├── 0bdb-190d │ │ ├── 0bdb-1910 │ │ ├── 0c88-17da │ │ ├── 0c88-180a │ │ ├── 0f3d-68a2 │ │ ├── 0f3d-68aa │ │ ├── 1004-6124 │ │ ├── 1004-6141 │ │ ├── 1004-6157 │ │ ├── 1004-618f │ │ ├── 106c-3711 │ │ ├── 106c-3714 │ │ ├── 106c-3715 │ │ ├── 106c-3716 │ │ ├── 106c-3717 │ │ ├── 106c-3718 │ │ ├── 106c-3721 │ │ ├── 1199-0017 │ │ ├── 1199-0018 │ │ ├── 1199-0019 │ │ ├── 1199-0020 │ │ ├── 1199-0021 │ │ ├── 1199-0022 │ │ ├── 1199-0023 │ │ ├── 1199-0024 │ │ ├── 1199-0025 │ │ ├── 1199-0026 │ │ ├── 1199-0027 │ │ ├── 1199-0028 │ │ ├── 1199-0112 │ │ ├── 1199-0120 │ │ ├── 1199-0218 │ │ ├── 1199-0220 │ │ ├── 1199-0224 │ │ ├── 1199-0301 │ │ ├── 1199-6802 │ │ ├── 1199-6803 │ │ ├── 1199-6804 │ │ ├── 1199-6805 │ │ ├── 1199-6808 │ │ ├── 1199-6809 │ │ ├── 1199-6813 │ │ ├── 1199-6815 │ │ ├── 1199-6816 │ │ ├── 1199-6820 │ │ ├── 1199-6821 │ │ ├── 1199-6822 │ │ ├── 1199-6833 │ │ ├── 1199-6834 │ │ ├── 1199-6835 │ │ ├── 1199-6838 │ │ ├── 1199-6839 │ │ ├── 1199-683a │ │ ├── 1199-683b │ │ ├── 1199-6850 │ │ ├── 1199-6851 │ │ ├── 1199-6852 │ │ ├── 1199-6853 │ │ ├── 1199-6855 │ │ ├── 1199-6856 │ │ ├── 1199-6859 │ │ ├── 1199-685a │ │ ├── 1199-6880 │ │ ├── 1199-6890 │ │ ├── 1199-6891 │ │ ├── 1199-6892 │ │ ├── 1199-6893 │ │ ├── 1199-68a2 │ │ ├── 1199-68aa │ │ ├── 1199-68c0 │ │ ├── 12d1-1035 │ │ ├── 12d1-1404 │ │ ├── 12d1-1406 │ │ ├── 12d1-140b │ │ ├── 12d1-140c │ │ ├── 12d1-1412 │ │ ├── 12d1-141b │ │ ├── 12d1-1433 │ │ ├── 12d1-1436 │ │ ├── 12d1-1444 │ │ ├── 12d1-144e │ │ ├── 12d1-1464 │ │ ├── 12d1-1465 │ │ ├── 12d1-1491 │ │ ├── 12d1-14a5 │ │ ├── 12d1-14a8 │ │ ├── 12d1-14ac │ │ ├── 12d1-14ae │ │ ├── 12d1-14c6 │ │ ├── 12d1-14c8 │ │ ├── 12d1-14c9 │ │ ├── 12d1-14ca │ │ ├── 12d1-14cb │ │ ├── 12d1-14cc │ │ ├── 12d1-14cf │ │ ├── 12d1-14d2 │ │ ├── 12d1-1506 │ │ ├── 12d1-150a │ │ ├── 12d1-150c │ │ ├── 12d1-150f │ │ ├── 12d1-151b │ │ ├── 12d1-151d │ │ ├── 12d1-156c │ │ ├── 12d1-1576 │ │ ├── 12d1-1577 │ │ ├── 12d1-1578 │ │ ├── 12d1-1589 │ │ ├── 12d1-1c05 │ │ ├── 12d1-1c07 │ │ ├── 12d1-1c08 │ │ ├── 12d1-1c10 │ │ ├── 12d1-1c12 │ │ ├── 12d1-1c1e │ │ ├── 12d1-1c1f │ │ ├── 12d1-1c23 │ │ ├── 12d1-1f16 │ │ ├── 1410-1400 │ │ ├── 1410-1410 │ │ ├── 1410-1420 │ │ ├── 1410-1430 │ │ ├── 1410-1450 │ │ ├── 1410-2100 │ │ ├── 1410-2110 │ │ ├── 1410-2120 │ │ ├── 1410-2130 │ │ ├── 1410-2400 │ │ ├── 1410-2410 │ │ ├── 1410-2420 │ │ ├── 1410-4100 │ │ ├── 1410-4400 │ │ ├── 1410-6000 │ │ ├── 1410-6001 │ │ ├── 1410-6002 │ │ ├── 1410-6010 │ │ ├── 1410-7001 │ │ ├── 1410-7003 │ │ ├── 1410-7030 │ │ ├── 1410-7031 │ │ ├── 1410-7041 │ │ ├── 1410-7042 │ │ ├── 1410-9011 │ │ ├── 1410-b001 │ │ ├── 1529-3100 │ │ ├── 16d5-6202 │ │ ├── 16d5-6501 │ │ ├── 16d5-6502 │ │ ├── 16d5-6603 │ │ ├── 16d5-900d │ │ ├── 16d8-5141 │ │ ├── 16d8-5533 │ │ ├── 16d8-5543 │ │ ├── 16d8-5553 │ │ ├── 16d8-6002 │ │ ├── 16d8-6006 │ │ ├── 16d8-6007 │ │ ├── 16d8-6008 │ │ ├── 16d8-6522 │ │ ├── 16d8-6523 │ │ ├── 16d8-6532 │ │ ├── 16d8-6533 │ │ ├── 16d8-6543 │ │ ├── 16d8-680a │ │ ├── 19d2-0001 │ │ ├── 19d2-0002 │ │ ├── 19d2-0015 │ │ ├── 19d2-0016 │ │ ├── 19d2-0017 │ │ ├── 19d2-0018 │ │ ├── 19d2-0019 │ │ ├── 19d2-0022 │ │ ├── 19d2-0024 │ │ ├── 19d2-0025 │ │ ├── 19d2-0031 │ │ ├── 19d2-0033 │ │ ├── 19d2-0037 │ │ ├── 19d2-0039 │ │ ├── 19d2-0042 │ │ ├── 19d2-0052 │ │ ├── 19d2-0055 │ │ ├── 19d2-0057 │ │ ├── 19d2-0063 │ │ ├── 19d2-0064 │ │ ├── 19d2-0066 │ │ ├── 19d2-0073 │ │ ├── 19d2-0079 │ │ ├── 19d2-0082 │ │ ├── 19d2-0086 │ │ ├── 19d2-0091 │ │ ├── 19d2-0094 │ │ ├── 19d2-0104 │ │ ├── 19d2-0108 │ │ ├── 19d2-0116 │ │ ├── 19d2-0117 │ │ ├── 19d2-0121 │ │ ├── 19d2-0124 │ │ ├── 19d2-0128 │ │ ├── 19d2-0142 │ │ ├── 19d2-0143 │ │ ├── 19d2-0152 │ │ ├── 19d2-0157 │ │ ├── 19d2-0167 │ │ ├── 19d2-0170 │ │ ├── 19d2-0199 │ │ ├── 19d2-0257 │ │ ├── 19d2-0265 │ │ ├── 19d2-0284 │ │ ├── 19d2-0326 │ │ ├── 19d2-1003 │ │ ├── 19d2-1008 │ │ ├── 19d2-1010 │ │ ├── 19d2-1015 │ │ ├── 19d2-1018 │ │ ├── 19d2-1172 │ │ ├── 19d2-1173 │ │ ├── 19d2-1176 │ │ ├── 19d2-1177 │ │ ├── 19d2-1181 │ │ ├── 19d2-1203 │ │ ├── 19d2-1208 │ │ ├── 19d2-1211 │ │ ├── 19d2-1212 │ │ ├── 19d2-1217 │ │ ├── 19d2-1218 │ │ ├── 19d2-1220 │ │ ├── 19d2-1222 │ │ ├── 19d2-1245 │ │ ├── 19d2-1252 │ │ ├── 19d2-1254 │ │ ├── 19d2-1256 │ │ ├── 19d2-1270 │ │ ├── 19d2-1401 │ │ ├── 19d2-1402 │ │ ├── 19d2-1426 │ │ ├── 19d2-1512 │ │ ├── 19d2-1515 │ │ ├── 19d2-1518 │ │ ├── 19d2-1519 │ │ ├── 19d2-1522 │ │ ├── 19d2-1525 │ │ ├── 19d2-1527 │ │ ├── 19d2-1537 │ │ ├── 19d2-1538 │ │ ├── 19d2-1544 │ │ ├── 19d2-2002 │ │ ├── 19d2-2003 │ │ ├── 19d2-ffdd │ │ ├── 19d2-ffe4 │ │ ├── 19d2-ffe9 │ │ ├── 19d2-fff1 │ │ ├── 19d2-fffb │ │ ├── 19d2-fffc │ │ ├── 19d2-fffd │ │ ├── 19d2-fffe │ │ ├── 19d2-ffff │ │ ├── 1a8d-1002 │ │ ├── 1a8d-1003 │ │ ├── 1a8d-1007 │ │ ├── 1a8d-1009 │ │ ├── 1a8d-100c │ │ ├── 1a8d-100d │ │ ├── 1a8d-2006 │ │ ├── 1bbb-0000 │ │ ├── 1bbb-0012 │ │ ├── 1bbb-0017 │ │ ├── 1bbb-0052 │ │ ├── 1bbb-00b7 │ │ ├── 1bbb-00ca │ │ ├── 1bbb-011e │ │ ├── 1bbb-0203 │ │ ├── 1c9e-6060 │ │ ├── 1c9e-6061 │ │ ├── 1c9e-9000 │ │ ├── 1c9e-9603 │ │ ├── 1c9e-9605 │ │ ├── 1c9e-9607 │ │ ├── 1c9e-9801 │ │ ├── 1c9e-9900 │ │ ├── 1e0e-9000 │ │ ├── 1e0e-9100 │ │ ├── 1e0e-9200 │ │ ├── 1e0e-ce16 │ │ ├── 1e0e-cefe │ │ ├── 1e2d-0053 │ │ ├── 1e2d-005b │ │ ├── 2001-7d00 │ │ ├── 2001-7d01 │ │ ├── 2001-7d02 │ │ ├── 2001-7d03 │ │ ├── 211f-6801 │ │ ├── 2357-0201 │ │ ├── 2357-0202 │ │ ├── 2357-0203 │ │ ├── 2357-9000 │ │ ├── 2c7c-0125 │ │ ├── 413c-8114 │ │ ├── 413c-8115 │ │ ├── 413c-8116 │ │ ├── 413c-8117 │ │ ├── 413c-8118 │ │ ├── 413c-8128 │ │ ├── 413c-8129 │ │ ├── 413c-8133 │ │ ├── 413c-8134 │ │ ├── 413c-8135 │ │ ├── 413c-8136 │ │ ├── 413c-8137 │ │ ├── 413c-8138 │ │ ├── 413c-8147 │ │ ├── 413c-8180 │ │ ├── 413c-8181 │ │ ├── 413c-8182 │ │ ├── 413c-8186 │ │ ├── 413c-8194 │ │ ├── 413c-8195 │ │ ├── 413c-8196 │ │ └── 413c-819b │ │ ├── wwan.sh │ │ ├── wwan.usb │ │ └── wwan.usbmisc ├── system │ ├── ca-certificates │ │ └── Makefile │ ├── fstools │ │ ├── Makefile │ │ ├── files │ │ │ ├── blockd.init │ │ │ ├── fstab.default │ │ │ ├── fstab.init │ │ │ ├── media-change.hotplug │ │ │ ├── mount.hotplug │ │ │ └── snapshot │ │ └── patches │ │ │ └── 0001-fstools-support-extroot-for-non-MTD-rootfs_data.patch │ ├── fwtool │ │ └── Makefile │ ├── iucode-tool │ │ └── Makefile │ ├── 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 │ ├── rpcd │ │ ├── Makefile │ │ └── files │ │ │ ├── rpcd.config │ │ │ └── rpcd.init │ ├── ubox │ │ ├── Makefile │ │ └── files │ │ │ └── log.init │ ├── ubus │ │ └── Makefile │ ├── ucert │ │ └── Makefile │ ├── uci │ │ ├── Makefile │ │ └── files │ │ │ └── lib │ │ │ └── config │ │ │ └── uci.sh │ ├── urandom-seed │ │ ├── Makefile │ │ └── files │ │ │ ├── etc │ │ │ └── init.d │ │ │ │ └── urandom_seed │ │ │ ├── lib │ │ │ └── preinit │ │ │ │ └── 81_urandom_seed │ │ │ └── sbin │ │ │ └── urandom_seed │ ├── urngd │ │ ├── Makefile │ │ └── files │ │ │ └── urngd.init │ ├── usign │ │ └── Makefile │ └── zram-swap │ │ ├── Makefile │ │ └── files │ │ └── zram.init └── utils │ ├── adb │ ├── Makefile │ └── patches │ │ ├── 001-create_Makefile.patch │ │ ├── 003-fix-musl-build.patch │ │ ├── 010-openssl-1.1.patch │ │ └── 020-cherry-picked-superspeed-fix.patch │ ├── bcm27xx-userland │ └── Makefile │ ├── 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 │ │ └── sysntpd │ └── patches │ │ ├── 001-remove-stime-function-calls.patch │ │ ├── 100-trylink_bash.patch │ │ ├── 101-gen_build_files_bash.patch │ │ ├── 110-no_static_libgcc.patch │ │ ├── 120-lto-jobserver.patch │ │ ├── 200-udhcpc_reduce_msgs.patch │ │ ├── 201-udhcpc_changed_ifindex.patch │ │ ├── 203-udhcpc_renew_no_deconfig.patch │ │ ├── 210-add_netmsg_util.patch │ │ ├── 220-add_lock_util.patch │ │ ├── 230-add_nslookup_lede.patch │ │ ├── 240-telnetd_intr.patch │ │ ├── 250-date-k-flag.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 │ │ └── 900-add-e-f-option-for-docker.patch │ ├── bzip2 │ ├── Makefile │ └── patches │ │ ├── 020-no-utime.patch │ │ └── 021-fix-LDFLAGS.patch │ ├── ct-bugcheck │ ├── Makefile │ └── src │ │ ├── bugcheck.initd │ │ ├── bugcheck.sh │ │ └── bugchecker.sh │ ├── 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 │ ├── 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 │ └── 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 │ ├── 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 │ │ ├── 101-mdadm.h-Undefine-dprintf-before-redefining.patch │ │ ├── 102-Add-missing-include-file-sys-sysmacros.h.patch │ │ └── 200-reduce_size.patch │ ├── mtd-utils │ ├── Makefile │ └── patches │ │ ├── 100-fix_includes.patch │ │ └── 130-lzma_jffs2.patch │ ├── nvram │ ├── Makefile │ ├── files │ │ └── nvram.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 │ └── src │ │ ├── Makefile │ │ └── otrx.c │ ├── px5g │ ├── Makefile │ └── px5g.c │ ├── ravpower-mcu │ └── Makefile │ ├── spidev_test │ └── Makefile │ ├── ugps │ ├── Makefile │ └── files │ │ ├── gps.config │ │ └── ugps.init │ ├── usbmode │ ├── Makefile │ ├── data │ │ └── 12d1-1f16 │ └── files │ │ ├── usbmode.hotplug │ │ └── usbmode.init │ ├── usbreset │ ├── Makefile │ └── src │ │ └── usbreset.c │ ├── usbutils │ └── Makefile │ └── util-linux │ ├── Makefile │ └── patches │ ├── 003-fix_pkgconfig_files.patch │ └── 100-use_urandom.patch ├── rules.mk ├── scripts ├── arm-magic.sh ├── brcmImage.pl ├── bundle-libraries.sh ├── cfe-bin-header.py ├── cfe-partition-tag.py ├── cfe-wfi-tag.py ├── checkpatch.pl ├── clang-gcc-wrapper ├── clean-package.sh ├── cleanfile ├── cleanpatch ├── combined-ext-image.sh ├── combined-image.sh ├── config.guess ├── config.rpath ├── config.sub ├── config │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── conf.c │ ├── confdata.c │ ├── expr.c │ ├── expr.h │ ├── images.c │ ├── images.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 │ ├── parser.tab.c │ ├── parser.tab.h │ ├── parser.y │ ├── preprocess.c │ ├── qconf-cfg.sh │ ├── qconf.cc │ ├── qconf.h │ ├── symbol.c │ └── util.c ├── deptest.sh ├── diffconfig.sh ├── dl_cleanup.py ├── dl_github_archive.py ├── download.pl ├── env ├── ext-toolchain.sh ├── feeds ├── fixup-makefile.pl ├── flashing │ ├── adam2flash-502T.pl │ ├── adam2flash-fritzbox.pl │ ├── adam2flash.pl │ ├── adsl2mue_flash.pl │ ├── eva_ramboot.py │ ├── flash.sh │ └── jungo-image.py ├── functions.sh ├── gen-dependencies.sh ├── gen_image_generic.sh ├── get_source_date_epoch.sh ├── getver.sh ├── ipkg-build ├── ipkg-make-index.sh ├── ipkg-remove ├── json_add_image_info.py ├── json_overview_image_info.py ├── kconfig.pl ├── linksys-image.sh ├── make-ipkg-dir.sh ├── md5sum ├── metadata.pm ├── mkhash.c ├── mkits-qsdk-ipq-image.sh ├── mkits.sh ├── om-fwupgradecfg-gen.sh ├── package-metadata.pl ├── pad_image ├── patch-kernel.sh ├── patch-specs.sh ├── portable_date.sh ├── qemustart ├── redboot-script.pl ├── relink-lib.sh ├── remote-gdb ├── rstrip.sh ├── sercomm-crypto.py ├── sercomm-partition-tag.py ├── sercomm-payload.py ├── sign_images.sh ├── slugimage.pl ├── srecimage.pl ├── strip-kmod.sh ├── symlink-tree.sh ├── sysupgrade-tar.sh ├── target-metadata.pl ├── time.pl ├── timestamp.pl └── ubinize-image.sh ├── target ├── Config.in ├── Makefile ├── imagebuilder │ ├── Config.in │ ├── Makefile │ └── files │ │ ├── Makefile │ │ └── repositories.conf ├── linux │ ├── Makefile │ ├── 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-4.19 │ │ ├── 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-4.19 │ │ │ ├── 010-dt-bindings-dmaengine-dw-dmac-add-protection-control.patch │ │ │ ├── 023-0003-crypto-drop-mask-CRYPTO_ALG_ASYNC-from-cipher-tfm-al.patch │ │ │ ├── 023-0004-crypto4xx_core-don-t-abuse-__dma_sync_page.patch │ │ │ ├── 023-0005-cross-tree-phase-out-dma_zalloc_coherent.patch │ │ │ ├── 023-0006-crypto-crypto4xx-add-prng-crypto-support.patch │ │ │ ├── 023-0012-crypto-crypto4xx-get-rid-of-redundant-using_sd-varia.patch │ │ │ ├── 140-GPIO-add-named-gpio-exports.patch │ │ │ ├── 201-add-amcc-apollo3g-support.patch │ │ │ ├── 202-add-netgear-wndr4700-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 │ │ ├── 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 │ ├── ar71xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 03_gpio_switches │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── firmware │ │ │ │ │ │ ├── 10-ath9k-eeprom │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ │ ├── ieee80211 │ │ │ │ │ │ └── 10_fix_wifi_mac │ │ │ │ │ └── net │ │ │ │ │ │ └── 10-ar922x-led-fix │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 03_network-switchX-migration │ │ │ │ │ ├── 03_network-vlan-migration │ │ │ │ │ ├── 04_led_migration │ │ │ │ │ ├── 09_fix-checksum │ │ │ │ │ └── 09_fix-seama-header │ │ │ └── lib │ │ │ │ ├── ar71xx.sh │ │ │ │ ├── preinit │ │ │ │ ├── 01_preinit_do_ar71xx.sh │ │ │ │ ├── 05_set_iface_mac_ar71xx │ │ │ │ ├── 05_set_preinit_iface_ar71xx │ │ │ │ └── 82_patch_ath10k │ │ │ │ └── upgrade │ │ │ │ ├── allnet.sh │ │ │ │ ├── dir825.sh │ │ │ │ ├── merakinand.sh │ │ │ │ ├── openmesh.sh │ │ │ │ └── platform.sh │ │ ├── config-4.14 │ │ ├── files │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ ├── ath79 │ │ │ │ │ ├── Kconfig.openwrt │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── dev-ap9x-pci.c │ │ │ │ │ ├── dev-ap9x-pci.h │ │ │ │ │ ├── dev-dsa.c │ │ │ │ │ ├── dev-dsa.h │ │ │ │ │ ├── dev-eth.c │ │ │ │ │ ├── dev-eth.h │ │ │ │ │ ├── dev-m25p80.c │ │ │ │ │ ├── dev-m25p80.h │ │ │ │ │ ├── dev-nfc.c │ │ │ │ │ ├── dev-nfc.h │ │ │ │ │ ├── mach-a60.c │ │ │ │ │ ├── mach-alfa-ap120c.c │ │ │ │ │ ├── mach-alfa-ap96.c │ │ │ │ │ ├── mach-alfa-nx.c │ │ │ │ │ ├── mach-all0258n.c │ │ │ │ │ ├── mach-all0315n.c │ │ │ │ │ ├── mach-antminer-s1.c │ │ │ │ │ ├── mach-antminer-s3.c │ │ │ │ │ ├── mach-antrouter-r1.c │ │ │ │ │ ├── mach-ap121f.c │ │ │ │ │ ├── mach-ap132.c │ │ │ │ │ ├── mach-ap143.c │ │ │ │ │ ├── mach-ap147.c │ │ │ │ │ ├── mach-ap152.c │ │ │ │ │ ├── mach-ap531b0.c │ │ │ │ │ ├── mach-ap90q.c │ │ │ │ │ ├── mach-ap91-5g.c │ │ │ │ │ ├── mach-ap96.c │ │ │ │ │ ├── mach-archer-c25-v1.c │ │ │ │ │ ├── mach-archer-c59-v1.c │ │ │ │ │ ├── mach-archer-c60-v1.c │ │ │ │ │ ├── mach-archer-c7-v4.c │ │ │ │ │ ├── mach-archer-c7-v5.c │ │ │ │ │ ├── mach-archer-c7.c │ │ │ │ │ ├── mach-arduino-yun.c │ │ │ │ │ ├── mach-aw-nr580.c │ │ │ │ │ ├── mach-bhr-4grv2.c │ │ │ │ │ ├── mach-bhu-bxu2000n2-a.c │ │ │ │ │ ├── mach-bsb.c │ │ │ │ │ ├── mach-c55.c │ │ │ │ │ ├── mach-c60.c │ │ │ │ │ ├── mach-cap324.c │ │ │ │ │ ├── mach-cap4200ag.c │ │ │ │ │ ├── mach-carambola2.c │ │ │ │ │ ├── mach-cf-e316n-v2.c │ │ │ │ │ ├── mach-cpe510.c │ │ │ │ │ ├── mach-cpe870.c │ │ │ │ │ ├── mach-cr3000.c │ │ │ │ │ ├── mach-cr5000.c │ │ │ │ │ ├── mach-dap-1330-a1.c │ │ │ │ │ ├── mach-dap-2695-a1.c │ │ │ │ │ ├── mach-dgl-5500-a1.c │ │ │ │ │ ├── mach-dhp-1565-a1.c │ │ │ │ │ ├── mach-dir-505-a1.c │ │ │ │ │ ├── mach-dir-600-a1.c │ │ │ │ │ ├── mach-dir-615-c1.c │ │ │ │ │ ├── mach-dir-615-i1.c │ │ │ │ │ ├── mach-dir-825-b1.c │ │ │ │ │ ├── mach-dir-825-c1.c │ │ │ │ │ ├── mach-dir-869-a1.c │ │ │ │ │ ├── mach-dlan-hotspot.c │ │ │ │ │ ├── mach-dlan-pro-1200-ac.c │ │ │ │ │ ├── mach-dlan-pro-500-wp.c │ │ │ │ │ ├── mach-domywifi-dw33d.c │ │ │ │ │ ├── mach-dr344.c │ │ │ │ │ ├── mach-dr531.c │ │ │ │ │ ├── mach-dragino2.c │ │ │ │ │ ├── mach-e1700ac-v2.c │ │ │ │ │ ├── mach-e2100l.c │ │ │ │ │ ├── mach-e558-v2.c │ │ │ │ │ ├── mach-e600g-v2.c │ │ │ │ │ ├── mach-e750a-v4.c │ │ │ │ │ ├── mach-e750g-v8.c │ │ │ │ │ ├── mach-eap120.c │ │ │ │ │ ├── mach-eap300v2.c │ │ │ │ │ ├── mach-eap7660d.c │ │ │ │ │ ├── mach-el-m150.c │ │ │ │ │ ├── mach-el-mini.c │ │ │ │ │ ├── mach-ens202ext.c │ │ │ │ │ ├── mach-epg5000.c │ │ │ │ │ ├── mach-esr1750.c │ │ │ │ │ ├── mach-esr900.c │ │ │ │ │ ├── mach-ew-balin.c │ │ │ │ │ ├── mach-ew-dorin.c │ │ │ │ │ ├── mach-f9k1115v2.c │ │ │ │ │ ├── mach-fritz300e.c │ │ │ │ │ ├── mach-fritz4020.c │ │ │ │ │ ├── mach-fritz450e.c │ │ │ │ │ ├── mach-gl-ar150.c │ │ │ │ │ ├── mach-gl-ar300.c │ │ │ │ │ ├── mach-gl-ar300m.c │ │ │ │ │ ├── mach-gl-ar750.c │ │ │ │ │ ├── mach-gl-ar750s.c │ │ │ │ │ ├── mach-gl-domino.c │ │ │ │ │ ├── mach-gl-inet.c │ │ │ │ │ ├── mach-gl-mifi.c │ │ │ │ │ ├── mach-gl-usb150.c │ │ │ │ │ ├── mach-gs-minibox-v32.c │ │ │ │ │ ├── mach-gs-oolite-v1.c │ │ │ │ │ ├── mach-gs-oolite-v5-2.c │ │ │ │ │ ├── mach-hiveap-121.c │ │ │ │ │ ├── mach-hiwifi-hc6361.c │ │ │ │ │ ├── mach-hornet-ub.c │ │ │ │ │ ├── mach-ja76pf.c │ │ │ │ │ ├── mach-jwap003.c │ │ │ │ │ ├── mach-jwap230.c │ │ │ │ │ ├── mach-koala.c │ │ │ │ │ ├── mach-lan-turtle.c │ │ │ │ │ ├── mach-lima.c │ │ │ │ │ ├── mach-mc-mac1200r.c │ │ │ │ │ ├── mach-mr12.c │ │ │ │ │ ├── mach-mr16.c │ │ │ │ │ ├── mach-mr1750.c │ │ │ │ │ ├── mach-mr18.c │ │ │ │ │ ├── mach-mr600.c │ │ │ │ │ ├── mach-mr900.c │ │ │ │ │ ├── mach-mynet-n600.c │ │ │ │ │ ├── mach-mynet-n750.c │ │ │ │ │ ├── mach-mynet-rext.c │ │ │ │ │ ├── mach-mzk-w04nu.c │ │ │ │ │ ├── mach-mzk-w300nh.c │ │ │ │ │ ├── mach-n5q.c │ │ │ │ │ ├── mach-nbg460n.c │ │ │ │ │ ├── mach-nbg6716.c │ │ │ │ │ ├── mach-om2p.c │ │ │ │ │ ├── mach-om5p.c │ │ │ │ │ ├── mach-om5pac.c │ │ │ │ │ ├── mach-om5pacv2.c │ │ │ │ │ ├── mach-omy-g1.c │ │ │ │ │ ├── mach-omy-x1.c │ │ │ │ │ ├── mach-onion-omega.c │ │ │ │ │ ├── mach-pb42.c │ │ │ │ │ ├── mach-pqi-air-pen.c │ │ │ │ │ ├── mach-qihoo-c301.c │ │ │ │ │ ├── mach-r36a.c │ │ │ │ │ ├── mach-r602n.c │ │ │ │ │ ├── mach-r6100.c │ │ │ │ │ ├── mach-rambutan.c │ │ │ │ │ ├── mach-rb2011.c │ │ │ │ │ ├── mach-rb4xx.c │ │ │ │ │ ├── mach-rb750.c │ │ │ │ │ ├── mach-rb91x.c │ │ │ │ │ ├── mach-rb922.c │ │ │ │ │ ├── mach-rb95x.c │ │ │ │ │ ├── mach-rbspi.c │ │ │ │ │ ├── mach-rbsxtlite.c │ │ │ │ │ ├── mach-re450.c │ │ │ │ │ ├── mach-rme-eg200.c │ │ │ │ │ ├── mach-rut9xx.c │ │ │ │ │ ├── mach-rw2458n.c │ │ │ │ │ ├── mach-sbr-ac1750.c │ │ │ │ │ ├── mach-sc1750.c │ │ │ │ │ ├── mach-sc300m.c │ │ │ │ │ ├── mach-sc450.c │ │ │ │ │ ├── mach-smart-300.c │ │ │ │ │ ├── mach-som9331.c │ │ │ │ │ ├── mach-sr3200.c │ │ │ │ │ ├── mach-t830.c │ │ │ │ │ ├── mach-tellstick-znet-lite.c │ │ │ │ │ ├── mach-tew-632brp.c │ │ │ │ │ ├── mach-tew-673gru.c │ │ │ │ │ ├── mach-tew-712br.c │ │ │ │ │ ├── mach-tew-732br.c │ │ │ │ │ ├── mach-tew-823dru.c │ │ │ │ │ ├── mach-tl-mr11u.c │ │ │ │ │ ├── mach-tl-mr13u.c │ │ │ │ │ ├── mach-tl-mr3020.c │ │ │ │ │ ├── mach-tl-mr3x20.c │ │ │ │ │ ├── mach-tl-mr6400.c │ │ │ │ │ ├── mach-tl-wa701nd-v2.c │ │ │ │ │ ├── mach-tl-wa7210n-v2.c │ │ │ │ │ ├── mach-tl-wa801nd-v3.c │ │ │ │ │ ├── mach-tl-wa830re-v2.c │ │ │ │ │ ├── mach-tl-wa901nd-v2.c │ │ │ │ │ ├── mach-tl-wa901nd-v4.c │ │ │ │ │ ├── mach-tl-wa901nd.c │ │ │ │ │ ├── mach-tl-wax50re.c │ │ │ │ │ ├── mach-tl-wdr3320-v2.c │ │ │ │ │ ├── mach-tl-wdr3500.c │ │ │ │ │ ├── mach-tl-wdr4300.c │ │ │ │ │ ├── mach-tl-wdr6500-v2.c │ │ │ │ │ ├── mach-tl-wpa8630.c │ │ │ │ │ ├── mach-tl-wr1041n-v2.c │ │ │ │ │ ├── mach-tl-wr1043nd-v2.c │ │ │ │ │ ├── mach-tl-wr1043nd-v4.c │ │ │ │ │ ├── mach-tl-wr1043nd.c │ │ │ │ │ ├── mach-tl-wr2543n.c │ │ │ │ │ ├── mach-tl-wr703n.c │ │ │ │ │ ├── mach-tl-wr720n-v3.c │ │ │ │ │ ├── mach-tl-wr741nd-v4.c │ │ │ │ │ ├── mach-tl-wr741nd.c │ │ │ │ │ ├── mach-tl-wr802n.c │ │ │ │ │ ├── mach-tl-wr810n.c │ │ │ │ │ ├── mach-tl-wr841n-v8.c │ │ │ │ │ ├── mach-tl-wr841n-v9.c │ │ │ │ │ ├── mach-tl-wr841n.c │ │ │ │ │ ├── mach-tl-wr902ac-v1.c │ │ │ │ │ ├── mach-tl-wr940n-v4.c │ │ │ │ │ ├── mach-tl-wr941nd-v6.c │ │ │ │ │ ├── mach-tl-wr941nd.c │ │ │ │ │ ├── mach-tl-wr942n-v1.c │ │ │ │ │ ├── mach-ts-d084.c │ │ │ │ │ ├── mach-tube2h.c │ │ │ │ │ ├── mach-ubnt-unifiac.c │ │ │ │ │ ├── mach-ubnt-xm.c │ │ │ │ │ ├── mach-ubnt.c │ │ │ │ │ ├── mach-wam250.c │ │ │ │ │ ├── mach-weio.c │ │ │ │ │ ├── mach-whr-hp-g300n.c │ │ │ │ │ ├── mach-wi2a-ac200i.c │ │ │ │ │ ├── mach-wifi-pineapple-nano.c │ │ │ │ │ ├── mach-wlae-ag300n.c │ │ │ │ │ ├── mach-wlr8100.c │ │ │ │ │ ├── mach-wndap360.c │ │ │ │ │ ├── mach-wndr3700.c │ │ │ │ │ ├── mach-wndr4300.c │ │ │ │ │ ├── mach-wnr2000-v3.c │ │ │ │ │ ├── mach-wnr2000-v4.c │ │ │ │ │ ├── mach-wnr2000.c │ │ │ │ │ ├── mach-wnr2200.c │ │ │ │ │ ├── mach-wp543.c │ │ │ │ │ ├── mach-wpe72.c │ │ │ │ │ ├── mach-wpj342.c │ │ │ │ │ ├── mach-wpj344.c │ │ │ │ │ ├── mach-wpj531.c │ │ │ │ │ ├── mach-wpj558.c │ │ │ │ │ ├── mach-wpj563.c │ │ │ │ │ ├── mach-wrt160nl.c │ │ │ │ │ ├── mach-wrt400n.c │ │ │ │ │ ├── mach-wrtnode2q.c │ │ │ │ │ ├── mach-wzr-450hp2.c │ │ │ │ │ ├── mach-wzr-hp-ag300h.c │ │ │ │ │ ├── mach-wzr-hp-g300nh.c │ │ │ │ │ ├── mach-wzr-hp-g300nh2.c │ │ │ │ │ ├── mach-wzr-hp-g450h.c │ │ │ │ │ ├── mach-z1.c │ │ │ │ │ ├── mach-zbt-we1526.c │ │ │ │ │ ├── mach-zcn-1523h.c │ │ │ │ │ ├── machtypes.h │ │ │ │ │ ├── nvram.c │ │ │ │ │ ├── nvram.h │ │ │ │ │ ├── pci-ath9k-fixup.c │ │ │ │ │ ├── pci-ath9k-fixup.h │ │ │ │ │ ├── routerboot.c │ │ │ │ │ └── routerboot.h │ │ │ │ │ └── include │ │ │ │ │ └── asm │ │ │ │ │ ├── fw │ │ │ │ │ └── myloader │ │ │ │ │ │ └── myloader.h │ │ │ │ │ └── mach-ath79 │ │ │ │ │ ├── ag71xx_platform.h │ │ │ │ │ ├── mach-rb750.h │ │ │ │ │ └── rb4xx_cpld.h │ │ │ ├── drivers │ │ │ │ ├── gpio │ │ │ │ │ ├── gpio-latch.c │ │ │ │ │ └── gpio-nxp-74hc153.c │ │ │ │ ├── leds │ │ │ │ │ ├── leds-nu801.c │ │ │ │ │ ├── leds-rb750.c │ │ │ │ │ └── leds-wndr3700-usb.c │ │ │ │ ├── mtd │ │ │ │ │ ├── cybertan_part.c │ │ │ │ │ ├── nand │ │ │ │ │ │ ├── ar934x_nfc.c │ │ │ │ │ │ ├── rb4xx_nand.c │ │ │ │ │ │ ├── rb750_nand.c │ │ │ │ │ │ └── rb91x_nand.c │ │ │ │ │ └── tplinkpart.c │ │ │ │ ├── net │ │ │ │ │ ├── dsa │ │ │ │ │ │ └── mv88e6063.c │ │ │ │ │ └── ethernet │ │ │ │ │ │ └── atheros │ │ │ │ │ │ └── ag71xx │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── ag71xx.h │ │ │ │ │ │ ├── ag71xx_ar7240.c │ │ │ │ │ │ ├── ag71xx_ar8216.c │ │ │ │ │ │ ├── ag71xx_debugfs.c │ │ │ │ │ │ ├── ag71xx_ethtool.c │ │ │ │ │ │ ├── ag71xx_main.c │ │ │ │ │ │ ├── ag71xx_mdio.c │ │ │ │ │ │ └── ag71xx_phy.c │ │ │ │ └── spi │ │ │ │ │ ├── spi-rb4xx-cpld.c │ │ │ │ │ ├── spi-rb4xx.c │ │ │ │ │ └── spi-vsc7385.c │ │ │ └── include │ │ │ │ └── linux │ │ │ │ ├── leds-nu801.h │ │ │ │ ├── nxp_74hc153.h │ │ │ │ ├── platform │ │ │ │ └── ar934x_nfc.h │ │ │ │ ├── platform_data │ │ │ │ ├── gpio-latch.h │ │ │ │ └── rb91x_nand.h │ │ │ │ └── spi │ │ │ │ └── vsc7385.h │ │ ├── generic │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── common-tp-link.mk │ │ │ ├── generic-legacy-devices.mk │ │ │ ├── generic-tp-link.mk │ │ │ ├── generic-ubnt.mk │ │ │ ├── generic.mk │ │ │ ├── legacy.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-legacy-devices.mk │ │ │ ├── tiny-senao.mk │ │ │ ├── tiny-tp-link.mk │ │ │ ├── tiny.mk │ │ │ ├── ubinize-nbg6716.ini │ │ │ └── ubinize-wndr4300.ini │ │ ├── mikrotik │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── modules.mk │ │ ├── nand │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── patches-4.14 │ │ │ ├── 001-spi-cs-gpio.patch │ │ │ ├── 002-add_back_gpio_function_select.patch │ │ │ ├── 004-register_gpio_driver_earlier.patch │ │ │ ├── 100-MIPS-ath79-Avoid-using-unitialized-reg-variable.patch │ │ │ ├── 106-02-MIPS-ath79-do-AR724x-PCIe-root-complex-init.patch │ │ │ ├── 200-MIPS-ath79-fix-ar933x-wmac-reset.patch │ │ │ ├── 201-ar913x_wmac_external_reset.patch │ │ │ ├── 202-MIPS-ath79-ar934x-wmac-revision.patch │ │ │ ├── 220-add_cpu_feature_overrides.patch │ │ │ ├── 300-MIPS-add-MIPS_MACHINE_NONAME-macro.patch │ │ │ ├── 310-lib-add-rle-decompression.patch │ │ │ ├── 343-MIPS-ath79-Fix-potentially-missed-IRQ-handling-durin.patch │ │ │ ├── 401-mtd-physmap-add-lock-unlock.patch │ │ │ ├── 402-mtd-SST39VF6401B-support.patch │ │ │ ├── 404-mtd-cybertan-trx-parser.patch │ │ │ ├── 405-mtd-tp-link-partition-parser.patch │ │ │ ├── 407-mtd-m25p80-allow-to-pass-probe-types-via-platform-data.patch │ │ │ ├── 408-mtd-redboot_partition_scan.patch │ │ │ ├── 409-mtd-rb4xx_nand_driver.patch │ │ │ ├── 410-mtd-rb750-nand-driver.patch │ │ │ ├── 411-mtd-cfi_cmdset_0002-force-word-write.patch │ │ │ ├── 413-mtd-ar934x-nand-driver.patch │ │ │ ├── 414-mtd-rb91x-nand-driver.patch │ │ │ ├── 420-net-ar71xx_mac_driver.patch │ │ │ ├── 423-dsa-add-88e6063-driver.patch │ │ │ ├── 430-drivers-link-spi-before-mtd.patch │ │ │ ├── 432-spi-rb4xx-spi-driver.patch │ │ │ ├── 433-spi-rb4xx-cpld-driver.patch │ │ │ ├── 435-spi-vsc7385_driver.patch │ │ │ ├── 440-leds-wndr3700-usb-led-driver.patch │ │ │ ├── 441-leds-rb750-led-driver.patch │ │ │ ├── 442-leds-gpio-allow-to-use-OPEN_-DRAIN-SOURCE-flags-with.patch │ │ │ ├── 450-gpio-nxp-74hc153-gpio-chip-driver.patch │ │ │ ├── 451-gpio-74x164-improve-platform-device-support.patch │ │ │ ├── 452-gpio-add-gpio-latch-driver.patch │ │ │ ├── 461-spi-ath79-add-fast-flash-read.patch │ │ │ ├── 470-MIPS-ath79-swizzle-pci-address-for-ar71xx.patch │ │ │ ├── 490-usb-ehci-add-quirks-for-qca-socs.patch │ │ │ ├── 500-MIPS-fw-myloader.patch │ │ │ ├── 501-MIPS-ath79-add-mac-argument-to-ath79_register_wmac.patch │ │ │ ├── 504-MIPS-ath79-add-ath79_device_reset_get.patch │ │ │ ├── 505-MIPS-ath79-add-ath79_gpio_function_select.patch │ │ │ ├── 506-MIPS-ath79-prom-parse-redboot-args.patch │ │ │ ├── 507-MIPS-ath79-prom-add-myloader-support.patch │ │ │ ├── 508-MIPS-ath79-prom-image-command-line-hack.patch │ │ │ ├── 509-MIPS-ath79-process-board-kernel-option.patch │ │ │ ├── 510-MIPS-ath79-init-gpio-pin-of-wmac-device.patch │ │ │ ├── 520-MIPS-ath79-enable-UART-function.patch │ │ │ ├── 521-MIPS-ath79-enable-UART-for-early_serial.patch │ │ │ ├── 522-MIPS-ath79-add-ath79_wmac_register_simple-helper.patch │ │ │ ├── 523-MIPS-ath79-OTP-support.patch │ │ │ ├── 524-MIPS-ath79-add-ath79_wmac_disable_25ghz-helpers.patch │ │ │ ├── 525-MIPS-ath79-enable-qca-usb-quirks.patch │ │ │ ├── 601-MIPS-ath79-add-more-register-defines.patch │ │ │ ├── 602-MIPS-ath79-add-openwrt-stuff.patch │ │ │ ├── 603-MIPS-ath79-ap121-fixes.patch │ │ │ ├── 604-MIPS-ath79-no-of.patch │ │ │ ├── 605-MIPS-ath79-db120-fixes.patch │ │ │ ├── 606-MIPS-ath79-pb44-fixes.patch │ │ │ ├── 607-MIPS-ath79-ubnt-xm-fixes.patch │ │ │ ├── 608-MIPS-ath79-ubnt-xm-add-more-boards.patch │ │ │ ├── 609-MIPS-ath79-ap136-fixes.patch │ │ │ ├── 611-MIPS-ath79-wdt-timeout.patch │ │ │ ├── 612-MIPS-ath79-set-buffalo-txgain.patch │ │ │ ├── 613-MIPS-ath79-add-ath79_wmac_setup_ext_lna_gpio-helper.patch │ │ │ ├── 620-MIPS-ath79-add-support-for-QCA953x-SoC.patch │ │ │ ├── 621-MIPS-ath79-add-support-for-QCA956x-SoC.patch │ │ │ ├── 622-MIPS-ath79-add-more-register-defines-for-QCA956x-SoC.patch │ │ │ ├── 630-MIPS-ath79-fix-chained-irq-disable.patch │ │ │ ├── 631-MIPS-ath79-wmac-enable-set-led-pin.patch │ │ │ ├── 632-MIPS-ath79-gpio-enable-set-direction.patch │ │ │ ├── 640-MIPS-ath79-add-QCA955x-wmac-reset.patch │ │ │ ├── 700-MIPS-ath79-add-openwrt-Kconfig.patch │ │ │ ├── 701-MIPS-ath79-add-routerboard-detection.patch │ │ │ ├── 702-MIPS-ath79-fixup-routerboot-board-parameter.patch │ │ │ ├── 739-MIPS-ath79-add-gpio-func-register-for-QCA955x-SoC.patch │ │ │ ├── 740-MIPS-ath79-add-PCI-for-QCA953x-SoC.patch │ │ │ ├── 741-MIPS-ath79-add-PCI-for-QCA9556-SoC.patch │ │ │ ├── 818-MIPS-ath79-add-nu801-led-driver.patch │ │ │ ├── 820-MIPS-ath79-add_gpio_function2_setup.patch │ │ │ ├── 900-mdio_bitbang_ignore_ta_value.patch │ │ │ ├── 901-phy-mdio-bitbang-prevent-rescheduling-during-command.patch │ │ │ ├── 902-at803x-add-reset-gpio-pdata.patch │ │ │ ├── 903-at803x-add-sgmii-aneg-override-pdata.patch │ │ │ ├── 910-unaligned_access_hacks.patch │ │ │ ├── 920-usb-chipidea-AR933x-platform-support.patch │ │ │ ├── 921-MIPS-ath79-add-even-more-register-defines-for-QCA956x-SoC.patch │ │ │ ├── 930-chipidea-pullup.patch │ │ │ ├── 940-qca955x-add-more-registers.patch │ │ │ ├── 950-add-boardinfo-platform-data.patch │ │ │ ├── 952-qca955x-enable-ddr-wb-flush.patch │ │ │ ├── 953-qca955x-pci-reset-fixes.patch │ │ │ └── 955-qca953x-fix-potential-missing-irq-dispatch.patch │ │ └── tiny │ │ │ ├── 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 │ ├── armvirt │ │ ├── 32 │ │ │ ├── config-4.19 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── 64 │ │ │ ├── config-4.19 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── Makefile │ │ ├── README │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ └── 00_model │ │ │ │ └── inittab │ │ ├── config-4.19 │ │ ├── config-5.4 │ │ └── image │ │ │ └── Makefile │ ├── 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-4.19 │ │ ├── config-5.4 │ │ ├── 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_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.dts │ │ │ ├── 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_tplink_tl-wr2543-v1.dts │ │ │ ├── ar7242_ubnt_edgeswitch-5xp.dts │ │ │ ├── ar7242_ubnt_edgeswitch-8xp.dts │ │ │ ├── ar7242_ubnt_sw.dtsi │ │ │ ├── ar724x.dtsi │ │ │ ├── ar724x_ubnt_xm.dtsi │ │ │ ├── ar724x_ubnt_xm_outdoor.dtsi │ │ │ ├── ar9132.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_pqi_air-pen.dts │ │ │ ├── ar9331.dtsi │ │ │ ├── ar9331_8dev_carambola2.dts │ │ │ ├── ar9331_alfa-network_ap121f.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_pisen_ts-d084.dts │ │ │ ├── ar9331_pisen_wmm003n.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_ens202ext-v1.dts │ │ │ ├── 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_ubnt_bullet-m-xw.dts │ │ │ ├── ar9342_ubnt_lap-120.dts │ │ │ ├── ar9342_ubnt_litebeam-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_wa.dtsi │ │ │ ├── ar9342_ubnt_xw.dtsi │ │ │ ├── ar9344.dtsi │ │ │ ├── ar9344_aerohive_hiveap-121.dts │ │ │ ├── ar9344_comfast_cf-e120a-v3.dts │ │ │ ├── ar9344_compex_wpj344-16m.dts │ │ │ ├── ar9344_devolo_magic-2-wifi.dts │ │ │ ├── ar9344_dlink_dir-825-c1.dts │ │ │ ├── ar9344_dlink_dir-835-a1.dts │ │ │ ├── ar9344_dlink_dir-8x5.dtsi │ │ │ ├── ar9344_enterasys_ws-ap3705i.dts │ │ │ ├── ar9344_mercury_mw4530r-v1.dts │ │ │ ├── ar9344_mikrotik_routerboard-sxt-5n.dtsi │ │ │ ├── ar9344_mikrotik_routerboard-sxt-5nd-r2.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_pcs_cap324.dts │ │ │ ├── ar9344_pcs_cr5000.dts │ │ │ ├── ar9344_qihoo_c301.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_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-n750.dts │ │ │ ├── ar9344_wd_mynet-wifi-rangeextender.dts │ │ │ ├── ar9344_winchannel_wb2000.dts │ │ │ ├── ar9344_zbtlink_zbt-wd323.dts │ │ │ ├── ar934x.dtsi │ │ │ ├── ath79.dtsi │ │ │ ├── qca9531_8dev_lima.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-x750.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_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_mikrotik_routerboard-16m.dtsi │ │ │ ├── qca9533_mikrotik_routerboard-lhg-2nd.dts │ │ │ ├── qca9533_mikrotik_routerboard-lhg-hb.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-wr842n-v3.dts │ │ │ ├── qca9533_ubnt_acb-isp.dts │ │ │ ├── qca953x.dtsi │ │ │ ├── qca953x_tplink_tl-wr810n.dtsi │ │ │ ├── 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_buffalo_bhr-4grv2.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_comfast_cf-wr650ac-v1.dts │ │ │ ├── qca9558_comfast_cf-wr650ac-v2.dts │ │ │ ├── qca9558_comfast_cf-wr650ac.dtsi │ │ │ ├── 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-2695-a1.dts │ │ │ ├── qca9558_domywifi_dw33d.dts │ │ │ ├── qca9558_engenius_ecb1750.dts │ │ │ ├── qca9558_engenius_epg5000.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_om5p-ac-v2.dts │ │ │ ├── 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-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_powerbeam-5ac-500.dts │ │ │ ├── qca9558_zyxel_nbg6716.dts │ │ │ ├── qca955x.dtsi │ │ │ ├── qca955x_ubnt_xc.dtsi │ │ │ ├── qca955x_zyxel_nbg6x16.dtsi │ │ │ ├── qca9561_avm_fritz4020.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_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_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_eap245-v3.dts │ │ │ ├── qca9563_tplink_re450-v2.dts │ │ │ ├── qca9563_tplink_re450-v3.dts │ │ │ ├── qca9563_tplink_re450.dtsi │ │ │ ├── qca9563_tplink_tl-wpa8630-v1.dts │ │ │ ├── qca9563_tplink_tl-wpa8630.dtsi │ │ │ ├── qca9563_tplink_tl-wpa8630p-v2-eu.dts │ │ │ ├── qca9563_tplink_tl-wpa8630p-v2-int.dts │ │ │ ├── qca9563_tplink_tl-wpa8630p-v2.dtsi │ │ │ ├── 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_yuncore_a782.dts │ │ │ ├── qca9563_yuncore_xd4200.dts │ │ │ ├── qca9563_yuncore_xd4200.dtsi │ │ │ ├── qca956x.dtsi │ │ │ ├── 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-wr941nd-v6.dts │ │ │ ├── tp9343_tplink_tl-wr94x.dtsi │ │ │ └── tp9343_tplink_tl-wx.dtsi │ │ ├── files │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ ├── ath79 │ │ │ │ │ ├── pci-ath9k-fixup.c │ │ │ │ │ └── pci-ath9k-fixup.h │ │ │ │ │ └── include │ │ │ │ │ └── asm │ │ │ │ │ └── fw │ │ │ │ │ └── myloader │ │ │ │ │ └── myloader.h │ │ │ ├── drivers │ │ │ │ ├── gpio │ │ │ │ │ └── gpio-rb4xx.c │ │ │ │ ├── mfd │ │ │ │ │ └── rb4xx-cpld.c │ │ │ │ ├── mtd │ │ │ │ │ ├── nand │ │ │ │ │ │ └── raw │ │ │ │ │ │ │ ├── ar934x_nand.c │ │ │ │ │ │ │ └── nand_rb4xx.c │ │ │ │ │ └── parsers │ │ │ │ │ │ └── parser_cybertan.c │ │ │ │ └── net │ │ │ │ │ └── ethernet │ │ │ │ │ └── atheros │ │ │ │ │ └── ag71xx │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── ag71xx.h │ │ │ │ │ ├── ag71xx_debugfs.c │ │ │ │ │ ├── ag71xx_ethtool.c │ │ │ │ │ ├── ag71xx_gmac.c │ │ │ │ │ ├── ag71xx_main.c │ │ │ │ │ ├── ag71xx_mdio.c │ │ │ │ │ └── ag71xx_phy.c │ │ │ └── include │ │ │ │ └── mfd │ │ │ │ └── rb4xx-cpld.h │ │ ├── generic │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ └── 03_gpio_switches │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ ├── firmware │ │ │ │ │ │ │ ├── 10-ath9k-eeprom │ │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ │ │ └── ieee80211 │ │ │ │ │ │ │ └── 10_fix_wifi_mac │ │ │ │ │ ├── init.d │ │ │ │ │ │ └── bootcount │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ ├── 04_led_migration │ │ │ │ │ │ ├── 05_fix-compat-version │ │ │ │ │ │ └── 09_fix-checksum │ │ │ │ └── lib │ │ │ │ │ ├── functions │ │ │ │ │ └── k2t.sh │ │ │ │ │ ├── preinit │ │ │ │ │ └── 10_fix_eth_mac.sh │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── bin │ │ │ │ └── pisen_wmb001n_factory-header.bin │ │ │ ├── common-buffalo.mk │ │ │ ├── common-mikrotik.mk │ │ │ ├── common-netgear.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 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── 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 │ │ │ │ └── lib │ │ │ │ │ ├── preinit │ │ │ │ │ └── 10_fix_eth_mac.sh │ │ │ │ │ └── upgrade │ │ │ │ │ ├── glinet.sh │ │ │ │ │ └── platform.sh │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── patches-4.19 │ │ │ ├── 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 │ │ │ ├── 0011-MIPS-ath79-select-the-PINCTRL-subsystem.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 │ │ │ ├── 0021-MIPS-ath79-add-helpers-for-setting-clocks-and-expose.patch │ │ │ ├── 0022-MIPS-ath79-move-legacy-wdt-and-uart-clock-aliases-ou.patch │ │ │ ├── 0023-MIPS-ath79-pass-PLL-base-to-clock-init-functions.patch │ │ │ ├── 0024-MIPS-ath79-make-specifying-the-reference-clock-in-DT.patch │ │ │ ├── 0025-MIPS-ath79-support-setting-up-clock-via-DT-on-all-So.patch │ │ │ ├── 0026-MIPS-ath79-export-switch-MDIO-reference-clock.patch │ │ │ ├── 0027-MIPS-ath79-drop-legacy-IRQ-code.patch │ │ │ ├── 0028-MIPS-ath79-drop-machfiles.patch │ │ │ ├── 0029-MIPS-ath79-drop-legacy-pci-code.patch │ │ │ ├── 0030-MIPS-ath79-drop-platform-device-registration-code.patch │ │ │ ├── 0031-MIPS-ath79-drop-OF-clock-code.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 │ │ │ ├── 0038-at803x-disable-delays.patch │ │ │ ├── 0039-MIPS-ath79-export-UART1-reference-clock.patch │ │ │ ├── 004-register_gpio_driver_earlier.patch │ │ │ ├── 0050-v5.1-drivers-provide-devm_platform_ioremap_resource.patch │ │ │ ├── 0051-spi-add-driver-for-ar934x-spi-controller.patch │ │ │ ├── 0060-serial-ar933x_uart-set-UART_CS_-RX-TX-_READY_ORIDE.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 │ │ │ ├── 420-net-ar71xx_mac_driver.patch │ │ │ ├── 425-at803x-allow-sgmii-aneg-override.patch │ │ │ ├── 430-drivers-link-spi-before-mtd.patch │ │ │ ├── 440-mtd-ar934x-nand-driver.patch │ │ │ ├── 470-MIPS-ath79-swizzle-pci-address-for-ar71xx.patch │ │ │ ├── 700-net-phy-add-reset-controller-support.patch │ │ │ ├── 701-mdio-bus-dont-use-managed-reset-controller.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 │ │ │ └── 921-serial-core-add-support-for-boot-console-with-arbitr.patch │ │ ├── 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 │ │ │ ├── 0050-spi-ath79-remove-spi-master-setup-and-cleanup-assign.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 │ │ │ ├── 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 │ │ │ ├── 921-serial-core-add-support-for-boot-console-with-arbitr.patch │ │ │ └── 930-ar8216-make-reg-access-atomic.patch │ │ └── tiny │ │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ │ └── 10-ath9k-eeprom │ │ │ │ └── uci-defaults │ │ │ │ │ └── 04_led_migration │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ └── 00-default.mk │ │ │ └── target.mk │ ├── bcm27xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ └── 50_rpi-4b-set-wifi │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 05_set_preinit_iface_brcm2708 │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ ├── keep.d │ │ │ │ └── platform │ │ │ │ └── platform.sh │ │ ├── bcm2708 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── bcm2709 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── bcm2710 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── bcm2711 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── 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-5.4 │ │ │ ├── 950-0001-arm-partially-revert-702b94bff3c50542a6e4ab9a4f4cef0.patch │ │ │ ├── 950-0002-Revert-rtc-pcf8523-properly-handle-oscillator-stop-b.patch │ │ │ ├── 950-0003-smsx95xx-fix-crimes-against-truesize.patch │ │ │ ├── 950-0004-smsc95xx-Experimental-Enable-turbo_mode-and-packetsi.patch │ │ │ ├── 950-0005-Allow-mac-address-to-be-set-in-smsc95xx.patch │ │ │ ├── 950-0006-Protect-__release_resource-against-resources-without.patch │ │ │ ├── 950-0007-irq-bcm2836-Prevent-spurious-interrupts-and-trap-the.patch │ │ │ ├── 950-0008-irq-bcm2836-Avoid-Invalid-trigger-warning.patch │ │ │ ├── 950-0009-irqchip-bcm2835-Add-FIQ-support.patch │ │ │ ├── 950-0010-irqchip-irq-bcm2835-Add-2836-FIQ-support.patch │ │ │ ├── 950-0011-spi-spidev-Completely-disable-the-spidev-warning.patch │ │ │ ├── 950-0012-dmaengine-bcm2835-Load-driver-early-and-support-lega.patch │ │ │ ├── 950-0013-firmware-Updated-mailbox-header.patch │ │ │ ├── 950-0014-rtc-Add-SPI-alias-for-pcf2123-driver.patch │ │ │ ├── 950-0015-watchdog-bcm2835-Support-setting-reboot-partition.patch │ │ │ ├── 950-0016-reboot-Use-power-off-rather-than-busy-spinning-when-.patch │ │ │ ├── 950-0017-bcm-Make-RASPBERRYPI_POWER-depend-on-PM.patch │ │ │ ├── 950-0018-Register-the-clocks-early-during-the-boot-process-so.patch │ │ │ ├── 950-0019-bcm2835-rng-Avoid-initialising-if-already-enabled.patch │ │ │ ├── 950-0020-clk-bcm2835-Mark-used-PLLs-and-dividers-CRITICAL.patch │ │ │ ├── 950-0021-clk-bcm2835-Add-claim-clocks-property.patch │ │ │ ├── 950-0022-clk-bcm2835-Read-max-core-clock-from-firmware.patch │ │ │ ├── 950-0023-clk-bcm2835-Mark-GPIO-clocks-enabled-at-boot-as-crit.patch │ │ │ ├── 950-0024-sound-Demote-deferral-errors-to-INFO-level.patch │ │ │ ├── 950-0025-Update-vfpmodule.c.patch │ │ │ ├── 950-0026-i2c-bcm2835-Add-debug-support.patch │ │ │ ├── 950-0027-mm-Remove-the-PFN-busy-warning.patch │ │ │ ├── 950-0028-ASoC-Add-prompt-for-ICS43432-codec.patch │ │ │ ├── 950-0029-irqchip-irq-bcm2836-Remove-regmap-and-syscon-use.patch │ │ │ ├── 950-0030-lan78xx-Enable-LEDs-and-auto-negotiation.patch │ │ │ ├── 950-0031-amba_pl011-Don-t-use-DT-aliases-for-numbering.patch │ │ │ ├── 950-0032-amba_pl011-Round-input-clock-up.patch │ │ │ ├── 950-0033-amba_pl011-Insert-mb-for-correct-FIFO-handling.patch │ │ │ ├── 950-0034-amba_pl011-Add-cts-event-workaround-DT-property.patch │ │ │ ├── 950-0035-pinctrl-bcm2835-Set-base-to-0-give-expected-gpio-num.patch │ │ │ ├── 950-0036-Main-bcm2708-bcm2709-linux-port.patch │ │ │ ├── 950-0037-Add-dwc_otg-driver.patch │ │ │ ├── 950-0038-bcm2708-framebuffer-driver.patch │ │ │ ├── 950-0039-Pulled-in-the-multi-frame-buffer-support-from-the-Pi.patch │ │ │ ├── 950-0040-fbdev-add-FBIOCOPYAREA-ioctl.patch │ │ │ ├── 950-0041-Speed-up-console-framebuffer-imageblit-function.patch │ │ │ ├── 950-0042-dmaengine-Add-support-for-BCM2708.patch │ │ │ ├── 950-0043-MMC-added-alternative-MMC-driver.patch │ │ │ ├── 950-0044-Adding-bcm2835-sdhost-driver-and-an-overlay-to-enabl.patch │ │ │ ├── 950-0045-vc_mem-Add-vc_mem-driver-for-querying-firmware-memor.patch │ │ │ ├── 950-0046-vcsm-VideoCore-shared-memory-service-for-BCM2835.patch │ │ │ ├── 950-0047-Add-dev-gpiomem-device-for-rootless-user-GPIO-access.patch │ │ │ ├── 950-0048-Add-SMI-driver.patch │ │ │ ├── 950-0049-Add-cpufreq-driver.patch │ │ │ ├── 950-0050-Add-Chris-Boot-s-i2c-driver.patch │ │ │ ├── 950-0051-char-broadcom-Add-vcio-module.patch │ │ │ ├── 950-0052-firmware-bcm2835-Support-ARCH_BCM270x.patch │ │ │ ├── 950-0053-BCM2708-Add-core-Device-Tree-support.patch │ │ │ ├── 950-0054-BCM270x_DT-Add-pwr_led-and-the-required-input-trigge.patch │ │ │ ├── 950-0055-Added-Device-IDs-for-August-DVB-T-205.patch │ │ │ ├── 950-0056-Improve-__copy_to_user-and-__copy_from_user-performa.patch │ │ │ ├── 950-0057-gpio-poweroff-Allow-it-to-work-on-Raspberry-Pi.patch │ │ │ ├── 950-0058-mfd-Add-Raspberry-Pi-Sense-HAT-core-driver.patch │ │ │ ├── 950-0059-ASoC-Add-support-for-Rpi-DAC.patch │ │ │ ├── 950-0060-Add-IQaudIO-Sound-Card-support-for-Raspberry-Pi.patch │ │ │ ├── 950-0061-Added-support-for-HiFiBerry-DAC.patch │ │ │ ├── 950-0062-Added-driver-for-HiFiBerry-Amp-amplifier-add-on-boar.patch │ │ │ ├── 950-0063-Add-driver-for-rpi-proto.patch │ │ │ ├── 950-0064-Add-Support-for-JustBoom-Audio-boards.patch │ │ │ ├── 950-0065-New-AudioInjector.net-Pi-soundcard-with-low-jitter-a.patch │ │ │ ├── 950-0066-New-driver-for-RRA-DigiDAC1-soundcard-using-WM8741-W.patch │ │ │ ├── 950-0067-Add-support-for-Dion-Audio-LOCO-DAC-AMP-HAT.patch │ │ │ ├── 950-0068-Allo-Piano-DAC-boards-Initial-2-channel-stereo-suppo.patch │ │ │ ├── 950-0069-Add-support-for-Allo-Piano-DAC-2.1-plus-add-on-board.patch │ │ │ ├── 950-0070-Add-support-for-Allo-Boss-DAC-add-on-board-for-Raspb.patch │ │ │ ├── 950-0071-Support-for-Blokas-Labs-pisound-board.patch │ │ │ ├── 950-0072-ASoC-Add-driver-for-Cirrus-Logic-Audio-Card.patch │ │ │ ├── 950-0073-sound-Support-for-Dion-Audio-LOCO-V2-DAC-AMP-HAT.patch │ │ │ ├── 950-0074-Add-support-for-Fe-Pi-audio-sound-card.-1867.patch │ │ │ ├── 950-0075-Add-support-for-the-AudioInjector.net-Octo-sound-car.patch │ │ │ ├── 950-0076-Driver-support-for-Google-voiceHAT-soundcard.patch │ │ │ ├── 950-0077-Driver-and-overlay-for-Allo-Katana-DAC.patch │ │ │ ├── 950-0078-ASoC-Add-generic-RPI-driver-for-simple-soundcards.patch │ │ │ ├── 950-0079-ASoC-Add-Kconfig-and-Makefile-for-sound-soc-bcm.patch │ │ │ ├── 950-0080-ASoC-Create-a-generic-Pi-Hat-WM8804-driver.patch │ │ │ ├── 950-0081-rpi_display-add-backlight-driver-and-overlay.patch │ │ │ ├── 950-0082-bcm2835-virtgpio-Virtual-GPIO-driver.patch │ │ │ ├── 950-0083-OF-DT-Overlay-configfs-interface.patch │ │ │ ├── 950-0084-hci_h5-Don-t-send-conf_req-when-ACTIVE.patch │ │ │ ├── 950-0085-ARM64-Round-Robin-dispatch-IRQs-between-CPUs.patch │ │ │ ├── 950-0086-ARM64-Force-hardware-emulation-of-deprecated-instruc.patch │ │ │ ├── 950-0087-cache-export-clean-and-invalidate.patch │ │ │ ├── 950-0088-AXI-performance-monitor-driver-2222.patch │ │ │ ├── 950-0089-cgroup-Disable-cgroup-memory-by-default.patch │ │ │ ├── 950-0090-ARM-bcm2835-Set-Serial-number-and-Revision.patch │ │ │ ├── 950-0091-dwc-otg-FIQ-Fix-bad-mode-in-data-abort-handler.patch │ │ │ ├── 950-0092-ARM-Activate-FIQs-to-avoid-__irq_startup-warnings.patch │ │ │ ├── 950-0093-serial-8250-bcm2835aux-suppress-EPROBE_DEFER.patch │ │ │ ├── 950-0094-raspberrypi-firmware-Export-the-general-transaction-.patch │ │ │ ├── 950-0095-drm-vc4-Add-a-mode-for-using-the-closed-firmware-for.patch │ │ │ ├── 950-0096-drm-vc4-Name-the-primary-and-cursor-planes-in-fkms.patch │ │ │ ├── 950-0097-drm-vc4-Add-DRM_DEBUG_ATOMIC-for-the-insides-of-fkms.patch │ │ │ ├── 950-0098-drm-vc4-Fix-sending-of-page-flip-completion-events-i.patch │ │ │ ├── 950-0099-drm-vc4-Add-support-for-setting-DPMS-in-firmwarekms.patch │ │ │ ├── 950-0100-drm-vc4-Add-FB-modifier-support-to-firmwarekms.patch │ │ │ ├── 950-0101-drm-vc4-Add-missing-enable-disable-vblank-handlers-i.patch │ │ │ ├── 950-0102-vc4_fkms-Apply-firmware-overscan-offset-to-hardware-.patch │ │ │ ├── 950-0103-drm-vc4-Fix-warning-about-vblank-interrupts-before-D.patch │ │ │ ├── 950-0104-drm-vc4-Skip-SET_CURSOR_INFO-when-the-cursor-content.patch │ │ │ ├── 950-0105-drm-vc4-Remove-duplicate-primary-cursor-fields-from-.patch │ │ │ ├── 950-0106-vc4_firmware_kms-fix-build.patch │ │ │ ├── 950-0107-gpu-vc4-fkms-Update-driver-to-not-use-plane-crtc.patch │ │ │ ├── 950-0108-drm-vc4-Don-t-wait-for-vblank-on-fkms-cursor-updates.patch │ │ │ ├── 950-0109-i2c-gpio-Also-set-bus-numbers-from-reg-property.patch │ │ │ ├── 950-0110-added-capture_clear-option-to-pps-gpio-via-dtoverlay.patch │ │ │ ├── 950-0111-lan78xx-Read-initial-EEE-status-from-DT.patch │ │ │ ├── 950-0112-hid-Reduce-default-mouse-polling-interval-to-60Hz.patch │ │ │ ├── 950-0113-Add-ability-to-export-gpio-used-by-gpio-poweroff.patch │ │ │ ├── 950-0114-firmware-raspberrypi-Notify-firmware-of-a-reboot.patch │ │ │ ├── 950-0115-irqchip-irq-bcm2835-Calc.-FIQ_START-at-boot-time.patch │ │ │ ├── 950-0116-of-configfs-Use-of_overlay_fdt_apply-API-call.patch │ │ │ ├── 950-0117-net-lan78xx-Disable-TCP-Segmentation-Offload-TSO.patch │ │ │ ├── 950-0118-lan78xx-Move-enabling-of-EEE-into-PHY-init-code.patch │ │ │ ├── 950-0119-Add-rpi-poe-fan-driver.patch │ │ │ ├── 950-0120-cxd2880-CXD2880_SPI_DRV-should-select-DVB_CXD2880-wi.patch │ │ │ ├── 950-0121-vchiq_2835_arm-Implement-a-DMA-pool-for-small-bulk-t.patch │ │ │ ├── 950-0122-hwmon-raspberrypi-Prevent-voltage-low-warnings-from-.patch │ │ │ ├── 950-0123-firmware-raspberrypi-Add-backward-compatible-get_thr.patch │ │ │ ├── 950-0124-sc16is7xx-Don-t-spin-if-no-data-received.patch │ │ │ ├── 950-0125-drivers-thermal-step_wise-add-support-for-hysteresis.patch │ │ │ ├── 950-0126-drivers-thermal-step_wise-avoid-throttling-at-hyster.patch │ │ │ ├── 950-0127-Update-issue-templates-2736.patch │ │ │ ├── 950-0128-gpiolib-Don-t-prevent-IRQ-usage-of-output-GPIOs.patch │ │ │ ├── 950-0129-net-lan78xx-Support-auto-downshift-to-100Mb-s.patch │ │ │ ├── 950-0130-staging-bcm2835-camera-Ensure-H264-header-bytes-get-.patch │ │ │ ├── 950-0131-firmware-raspberrypi-Report-the-fw-variant-during-pr.patch │ │ │ ├── 950-0132-lan78xx-Debounce-link-events-to-minimize-poll-storm.patch │ │ │ ├── 950-0133-ASoC-Add-support-for-AudioSense-Pi-add-on-soundcard.patch │ │ │ ├── 950-0134-spi-spi-bcm2835-Disable-forced-software-CS.patch │ │ │ ├── 950-0135-Added-driver-for-the-HiFiBerry-DAC-ADC-2694.patch │ │ │ ├── 950-0136-configs-Enable-the-AD193x-codecs.patch │ │ │ ├── 950-0137-lan78xx-EEE-support-is-now-a-PHY-property.patch │ │ │ ├── 950-0138-Revert-staging-vchiq-delete-vchiq_killable.h.patch │ │ │ ├── 950-0139-Revert-staging-bcm2835-audio-Drop-DT-dependency.patch │ │ │ ├── 950-0140-gpu-vc4_firmware_kms-Fix-up-64-bit-compile-warnings.patch │ │ │ ├── 950-0141-bcm2835-dma-Add-support-for-per-channel-flags.patch │ │ │ ├── 950-0142-drm-vc4-Programming-the-CTM-is-conditional-on-runnin.patch │ │ │ ├── 950-0143-rtc-rv3028-Add-backup-switchover-mode-support.patch │ │ │ ├── 950-0144-Audiophonics-I-Sabre-9038Q2M-DAC-driver.patch │ │ │ ├── 950-0145-lan78xx-use-default-alignment-for-rx-buffers.patch │ │ │ ├── 950-0146-Added-IQaudIO-Pi-Codec-board-support-2969.patch │ │ │ ├── 950-0147-sound-pcm512x-codec-Adding-352.8kHz-samplerate-suppo.patch │ │ │ ├── 950-0148-media-ov5647-Add-set_fmt-and-get_fmt-calls.patch │ │ │ ├── 950-0149-media-Documentation-DT-add-device-tree-for-PWDN-cont.patch │ │ │ ├── 950-0150-media-ov5647-Add-support-for-PWDN-GPIO.patch │ │ │ ├── 950-0151-media-ov5647-Add-support-for-non-continuous-clock-mo.patch │ │ │ ├── 950-0152-media-tc358743-Increase-FIFO-level-to-374.patch │ │ │ ├── 950-0153-media-tc358743-fix-connected-active-CSI-2-lane-repor.patch │ │ │ ├── 950-0154-media-tc358743-Add-support-for-972Mbit-s-link-freq.patch │ │ │ ├── 950-0155-media-tc358743-Check-I2C-succeeded-during-probe.patch │ │ │ ├── 950-0156-media-adv7180-Default-to-the-first-valid-input.patch │ │ │ ├── 950-0157-media-adv7180-Add-YPrPb-support-for-ADV7282M.patch │ │ │ ├── 950-0158-media-videodev2-Add-helper-defines-for-printing-FOUR.patch │ │ │ ├── 950-0159-dt-bindings-Document-BCM283x-CSI2-CCP2-receiver.patch │ │ │ ├── 950-0160-MAINTAINERS-Add-entry-for-BCM2835-Unicam-driver.patch │ │ │ ├── 950-0161-media-tc358743-Return-an-appropriate-colorspace-from.patch │ │ │ ├── 950-0162-staging-bcm2835-camera-Fix-logical-continuation-spli.patch │ │ │ ├── 950-0163-staging-bcm2835-camera-Ensure-timestamps-never-go-ba.patch │ │ │ ├── 950-0164-staging-vc04_services-Split-vchiq-mmal-into-a-module.patch │ │ │ ├── 950-0165-staging-mmal-vchiq-Allocate-and-free-components-as-r.patch │ │ │ ├── 950-0166-staging-mmal-vchiq-Avoid-use-of-bool-in-structures.patch │ │ │ ├── 950-0167-staging-mmal-vchiq-Make-timeout-a-defined-parameter.patch │ │ │ ├── 950-0168-staging-mmal-vchiq-Make-a-mmal_buf-struct-for-passin.patch │ │ │ ├── 950-0169-staging-mmal-vchiq-Add-support-for-event-callbacks.patch │ │ │ ├── 950-0170-staging-vc04_services-Support-sending-data-to-MMAL-p.patch │ │ │ ├── 950-0171-staging-vc04_services-Fixup-vchiq-mmal-include-order.patch │ │ │ ├── 950-0172-staging-vc04_services-Add-new-vc-sm-cma-driver.patch │ │ │ ├── 950-0173-staging-vc04_services-Use-vc-sm-cma-to-support-zero-.patch │ │ │ ├── 950-0174-media-videobuf2-Allow-exporting-of-a-struct-dmabuf.patch │ │ │ ├── 950-0175-staging-vc04_services-Add-a-V4L2-M2M-codec-driver.patch │ │ │ ├── 950-0176-staging-mmal-vchiq-Fix-client_component-for-64-bit-k.patch │ │ │ ├── 950-0177-clk-clk-bcm2835-Use-zd-when-printing-size_t.patch │ │ │ ├── 950-0178-media-ov5647-Use-gpiod_set_value_cansleep.patch │ │ │ ├── 950-0179-staging-bcm2835-codec-variable-vb2-may-be-used-unini.patch │ │ │ ├── 950-0180-staging-bcm2835-codec-Fix-potentially-uninitialised-.patch │ │ │ ├── 950-0181-staging-mmal_vchiq-Add-in-the-Bayer-encoding-formats.patch │ │ │ ├── 950-0182-staging-mmal-vchiq-Always-return-the-param-size-from.patch │ │ │ ├── 950-0183-staging-mmal-vchiq-If-the-VPU-returns-an-error-don-t.patch │ │ │ ├── 950-0184-staging-bcm2835_codec-Query-supported-formats-from-t.patch │ │ │ ├── 950-0185-staging-bcm2835_codec-Add-support-for-the-ISP-as-an-.patch │ │ │ ├── 950-0186-staging-bcm2835_codec-Add-an-option-for-ignoring-Bay.patch │ │ │ ├── 950-0187-staging-bcm2835_codec-Fix-handling-of-VB2_MEMORY_DMA.patch │ │ │ ├── 950-0188-staging-mmal-vchiq-Update-mmal_parameters.h-with-rec.patch │ │ │ ├── 950-0189-staging-bcm2835_codec-Include-timing-info-in-SPS-hea.patch │ │ │ ├── 950-0190-staging-bcm2835-codec-NULL-component-handle-on-queue.patch │ │ │ ├── 950-0191-staging-bcm2835_codec-Clean-up-logging-on-unloading-.patch │ │ │ ├── 950-0192-staging-bcm2835-codec-Refactor-default-resolution-co.patch │ │ │ ├── 950-0193-staging-bcm2835-codec-Correct-port-width-calc-for-tr.patch │ │ │ ├── 950-0194-staging-bcm2835-codec-Remove-height-padding-for-ISP-.patch │ │ │ ├── 950-0195-staging-mmal-vchiq-Free-the-event-context-for-contro.patch │ │ │ ├── 950-0196-staging-mmal-vchiq-Fix-memory-leak-in-error-path.patch │ │ │ ├── 950-0197-staging-bcm2835-codec-Convert-V4L2-nsec-timestamps-t.patch │ │ │ ├── 950-0198-staging-bcm2835-codec-Add-support-for-setting-S_PARM.patch │ │ │ ├── 950-0199-w1-w1-gpio-Make-GPIO-an-output-for-strong-pullup.patch │ │ │ ├── 950-0200-arm-bcm2835-Fix-FIQ-early-ioremap.patch │ │ │ ├── 950-0201-Fix-copy_from_user-if-BCM2835_FAST_MEMCPY-n.patch │ │ │ ├── 950-0202-dt-bindings-pci-Add-DT-docs-for-Brcmstb-PCIe-device.patch │ │ │ ├── 950-0203-arm-bcm2835-DMA-can-only-address-1GB.patch │ │ │ ├── 950-0204-hwrng-iproc-rng200-Add-BCM2838-support.patch │ │ │ ├── 950-0205-vchiq-Add-36-bit-address-support.patch │ │ │ ├── 950-0206-bcm2835-pcm.c-Support-multichannel-audio.patch │ │ │ ├── 950-0207-bcmgenet-constrain-max-DMA-burst-length.patch │ │ │ ├── 950-0208-bcmgenet-Better-coalescing-parameter-defaults.patch │ │ │ ├── 950-0209-net-genet-enable-link-energy-detect-powerdown-for-ex.patch │ │ │ ├── 950-0210-usb-xhci-Disable-the-XHCI-5-second-timeout.patch │ │ │ ├── 950-0211-usb-xhci-Show-that-the-VIA-VL805-supports-LPM.patch │ │ │ ├── 950-0212-spi-bcm2835-enable-shared-interrupt-support.patch │ │ │ ├── 950-0213-clk-bcm2835-Don-t-wait-for-pllh-lock.patch │ │ │ ├── 950-0214-soc-bcm-bcm2835-pm-Add-support-for-2711.patch │ │ │ ├── 950-0215-config-Permit-LPAE-and-PCIE_BRCMSTB-on-BCM2835.patch │ │ │ ├── 950-0216-clk-bcm2835-Add-support-for-setting-leaf-clock-rates.patch │ │ │ ├── 950-0217-clk-bcm2835-Allow-reparenting-leaf-clocks-while-they.patch │ │ │ ├── 950-0218-usb-add-plumbing-for-updating-interrupt-endpoint-int.patch │ │ │ ├── 950-0219-xhci-implement-xhci_fixup_endpoint-for-interval-adju.patch │ │ │ ├── 950-0220-usbhid-call-usb_fixup_endpoint-after-mangling-interv.patch │ │ │ ├── 950-0221-arm-bcm2835-Add-bcm2838-compatible-string.patch │ │ │ ├── 950-0222-drm-vc4-Fix-oops-at-boot-with-firmwarekms-on-4.19.patch │ │ │ ├── 950-0223-drm-v3d-Add-support-for-2711.patch │ │ │ ├── 950-0224-drm-v3d-Skip-MMU-flush-if-the-device-is-currently-of.patch │ │ │ ├── 950-0225-drm-v3d-Hook-up-the-runtime-PM-ops.patch │ │ │ ├── 950-0226-drm-vc4-Fix-synchronization-firmwarekms-against-GL-r.patch │ │ │ ├── 950-0227-drm-vc4-Expose-the-format-modifiers-for-firmware-kms.patch │ │ │ ├── 950-0228-drm-vc4-Fix-vblank-timestamping-for-firmwarekms.patch │ │ │ ├── 950-0229-gpu-vc4-fkms-Switch-to-the-newer-mailbox-frame-buffe.patch │ │ │ ├── 950-0230-drm-vc4-Add-an-overlay-plane-to-vc4-firmware-kms.patch │ │ │ ├── 950-0231-drm-vc4-Increase-max-screen-size-to-4096x4096.patch │ │ │ ├── 950-0232-drm-vc4-Add-support-for-multiple-displays-to-fkms.patch │ │ │ ├── 950-0233-drm-vc4-Fix-build-warning.patch │ │ │ ├── 950-0234-drm-vc4-Select-display-to-blank-during-initialisatio.patch │ │ │ ├── 950-0235-drm-vc4-Remove-now-unused-structure.patch │ │ │ ├── 950-0236-drm-vc4-Query-the-display-ID-for-each-display-in-FKM.patch │ │ │ ├── 950-0237-drm-vc4-Set-the-display-number-when-querying-the-dis.patch │ │ │ ├── 950-0238-drm-vc4-Need-to-call-drm_crtc_vblank_-on-off-from-vc.patch │ │ │ ├── 950-0239-drm-vc4-Add-support-for-H-V-flips-on-each-plane-for-.patch │ │ │ ├── 950-0240-drm-vc4-Remove-unused-vc4_fkms_cancel_page_flip-func.patch │ │ │ ├── 950-0241-drm-vc4-Iterate-over-all-planes-in-vc4_crtc_-dis-en-.patch │ │ │ ├── 950-0242-drm-vc4-Bring-fkms-into-line-with-kms-in-blocking-do.patch │ │ │ ├── 950-0243-drm-vc4-Increase-max_width-height-to-7680.patch │ │ │ ├── 950-0244-drm-vc4-FKMS-reads-the-EDID-from-fw-and-supports-mod.patch │ │ │ ├── 950-0245-drm-vc4-firmware-kms-Remove-incorrect-overscan-suppo.patch │ │ │ ├── 950-0246-drm-vc4-Log-flags-in-fkms-mode-set.patch │ │ │ ├── 950-0247-drm-vc4-firmware-kms-Fix-DSI-display-support.patch │ │ │ ├── 950-0248-drm-vc4-Probe-DPI-DSI-timings-from-the-firmware.patch │ │ │ ├── 950-0249-drm-vc4-handle-the-case-where-there-are-no-available.patch │ │ │ ├── 950-0250-drm-vc4-Support-the-VEC-in-FKMS.patch │ │ │ ├── 950-0251-drm-vc4-Fixup-typo-when-setting-HDMI-aspect-ratio.patch │ │ │ ├── 950-0252-drm-vc4-Correct-SAND-support-for-FKMS.patch │ │ │ ├── 950-0253-drm-vc4-fkms-to-query-the-VPU-for-HDMI-clock-limits.patch │ │ │ ├── 950-0254-drm-vc4-Max-resolution-of-7680-is-conditional-on-bei.patch │ │ │ ├── 950-0255-drm-vc4-Fix-T-format-modifiers-in-FKMS.patch │ │ │ ├── 950-0256-drm-vc4-Remove-340MHz-clock-limit-from-FKMS-now-scra.patch │ │ │ ├── 950-0257-drm-vc4-Add-status-of-which-display-is-updated-throu.patch │ │ │ ├── 950-0258-drm-vc4-In-FKMS-look-at-the-modifiers-correctly-for-.patch │ │ │ ├── 950-0259-drm-vc4-Limit-fkms-to-modes-85Hz.patch │ │ │ ├── 950-0260-drm-vc4-Ignore-HVS-unless-initialised.patch │ │ │ ├── 950-0261-drm-vc4_dsi-Fix-DMA-channel-and-memory-leak-in-vc4-3.patch │ │ │ ├── 950-0262-drm-vc4-Add-support-for-color-encoding-on-YUV-planes.patch │ │ │ ├── 950-0263-tty-amba-pl011-Make-TX-optimisation-conditional.patch │ │ │ ├── 950-0264-xhci-add-quirk-for-host-controllers-that-don-t-updat.patch │ │ │ ├── 950-0265-i2c-bcm2835-Set-clock-stretch-timeout-to-35ms.patch │ │ │ ├── 950-0266-staging-vc04_services-fix-compiling-in-separate-dire.patch │ │ │ ├── 950-0267-clk-bcm2835-Avoid-null-pointer-exception.patch │ │ │ ├── 950-0268-drm-vc4-Prevent-load-tracking-from-breaking-FKMS.patch │ │ │ ├── 950-0269-drm-v3d-HACK-gut-runtime-pm-for-now.patch │ │ │ ├── 950-0270-drm-v3d-Clock-V3D-down-when-not-in-use.patch │ │ │ ├── 950-0271-According-to-5713-pdf-doc-CLOCK_CTRL-is-a-readonly-s.patch │ │ │ ├── 950-0272-drm-vc4-Query-firmware-for-custom-HDMI-mode.patch │ │ │ ├── 950-0273-drm-vc4-Pass-the-drm-vrefresh-to-the-firmware-on-mod.patch │ │ │ ├── 950-0274-drm-vc4-Add-support-for-margins-to-fkms.patch │ │ │ ├── 950-0275-drm-vc4-Ensure-zpos-is-always-initialised.patch │ │ │ ├── 950-0276-adds-the-Hifiberry-DAC-ADC-PRO-version.patch │ │ │ ├── 950-0277-drm-vc4-A-present-but-empty-dmas-disables-audio.patch │ │ │ ├── 950-0278-Fixup-FKMS-interrupt-handing-for-non-existent-displa.patch │ │ │ ├── 950-0279-drivers-char-add-chardev-for-mmap-ing-the-RPiVid-con.patch │ │ │ ├── 950-0280-hid-usb-Add-device-quirks-for-Freeway-Airmouse-T3-an.patch │ │ │ ├── 950-0281-drm-vc4-Add-Broadcast-RGB-connector-property.patch │ │ │ ├── 950-0282-drm-vc4-fkms-Set-default-state-margin-at-reset.patch │ │ │ ├── 950-0283-staging-bcm2835-codec-switch-to-multi-planar-API.patch │ │ │ ├── 950-0284-staging-bcm2835-codec-implement-V4L2_CID_MIN_BUFFERS.patch │ │ │ ├── 950-0285-staging-bcm2835-codec-set-device_caps-in-struct-vide.patch │ │ │ ├── 950-0286-Add-HDMI1-facility-to-the-driver.patch │ │ │ ├── 950-0287-drm-vc4-Resolve-the-vblank-warnings-on-mode-switchin.patch │ │ │ ├── 950-0288-drm-vc4-Remove-unused-mode-variable.patch │ │ │ ├── 950-0289-staging-bcm2835-codec-Expand-logging-on-format-setti.patch │ │ │ ├── 950-0290-staging-bcm2835-codec-Correct-bytesperline-on-format.patch │ │ │ ├── 950-0291-drm-vc4-Add-missing-NULL-check-to-vc4_crtc_consume_e.patch │ │ │ ├── 950-0292-net-bcmgenet-Workaround-2-for-Pi4-Ethernet-fail.patch │ │ │ ├── 950-0293-xhci-Use-more-event-ring-segment-table-entries.patch │ │ │ ├── 950-0294-configs-arm64-bcm2711-Enable-V3D.patch │ │ │ ├── 950-0295-staging-bcm2835-codec-add-support-for-V4L2_CID_MPEG_.patch │ │ │ ├── 950-0296-staging-bcm2835-codec-remove-unnecessary-padding-on-.patch │ │ │ ├── 950-0297-arch-arm-Add-model-string-to-cpuinfo.patch │ │ │ ├── 950-0298-arch-arm64-Add-Revision-Serial-Model-to-cpuinfo.patch │ │ │ ├── 950-0299-staging-bcm2835-codec-Fix-non-documentation-comment-.patch │ │ │ ├── 950-0300-staging-bcm2835-codec-Fix-declaration-of-roles.patch │ │ │ ├── 950-0301-staging-bcm2835-codec-Add-role-to-device-name.patch │ │ │ ├── 950-0302-staging-bcm2835-codec-Pass-driver-context-to-create-.patch │ │ │ ├── 950-0303-staging-bcm2835-codec-add-media-controller-support.patch │ │ │ ├── 950-0304-v4l2-Add-a-Greyworld-AWB-mode.patch │ │ │ ├── 950-0305-staging-bcm2835-camera-Add-greyworld-AWB-mode.patch │ │ │ ├── 950-0306-drm-vc4-Fix-for-margins-in-composite-SDTV-mode-3223.patch │ │ │ ├── 950-0307-Add-Hifiberry-DAC-DSP-soundcard-driver-3224.patch │ │ │ ├── 950-0308-staging-bcm2835-codec-Allow-height-of-1920.patch │ │ │ ├── 950-0309-staging-bcm2835-codec-Correct-g-s_selection-API-MPLA.patch │ │ │ ├── 950-0310-drm-v3d-Delete-pm_runtime-support.patch │ │ │ ├── 950-0311-dts-Add-DTS-for-Pi-2B-rev-1.2-with-BCM2837-3235.patch │ │ │ ├── 950-0312-drm-v3d-clean-caches-at-the-end-of-render-jobs-on-re.patch │ │ │ ├── 950-0313-kbuild-Allow-.dtbo-overlays-to-be-built-piecemeal.patch │ │ │ ├── 950-0314-dma-direct-Temporary-DMA-fix-on-arm64.patch │ │ │ ├── 950-0315-ARM-bcm-Switch-board-clk-and-pinctrl-to-bcm2711-comp.patch │ │ │ ├── 950-0316-pinctrl-bcm2835-Add-support-for-BCM2711-pull-up-func.patch │ │ │ ├── 950-0317-vchiq_2835_arm-suppress-warning.patch │ │ │ ├── 950-0318-Rename-HDMI-ALSA-device-names-check-for-enable-state.patch │ │ │ ├── 950-0319-drm-vc4-Add-support-for-YUV-color-encodings-and-rang.patch │ │ │ ├── 950-0320-drm-vc4-Correct-handling-of-rotation-parameter-in-fk.patch │ │ │ ├── 950-0321-dt-bindings-Add-binding-for-the-Infineon-IRS1125-sen.patch │ │ │ ├── 950-0322-media-i2c-Add-a-driver-for-the-Infineon-IRS1125-dept.patch │ │ │ ├── 950-0323-staging-bcm2835-codec-Add-support-for-ENUM_FRAMESIZE.patch │ │ │ ├── 950-0324-staging-bcm2835-codec-Correct-buffer-type-check-on-G.patch │ │ │ ├── 950-0325-staging-bcm2835-codec-Set-default-and-error-check-ti.patch │ │ │ ├── 950-0326-staging-bcm2835-codec-Fix-imbalance-in-dma_buf_get-d.patch │ │ │ ├── 950-0327-drm-vc4-Added-calls-for-firmware-display-blank-unbla.patch │ │ │ ├── 950-0328-Revert-pinctrl-bcm2835-Pass-irqchip-when-adding-gpio.patch │ │ │ ├── 950-0329-drm-v3d-Don-t-clear-MMU-control-bits-on-exception.patch │ │ │ ├── 950-0330-drm-v3d-Suppress-all-but-the-first-MMU-error.patch │ │ │ ├── 950-0331-drm-v3d-Plug-dma_fence-leak.patch │ │ │ ├── 950-0332-staging-vchiq_arm-Register-vcsm-cma-as-a-platform-dr.patch │ │ │ ├── 950-0333-staging-vchiq_arm-Register-bcm2835-codec-as-a-platfo.patch │ │ │ ├── 950-0334-staging-bcm2835-codec-Fix-potential-memory-leak-of-i.patch │ │ │ ├── 950-0335-net-bcmgenet-The-second-IRQ-is-optional.patch │ │ │ ├── 950-0336-drm-v3d-The-third-IRQ-is-optional.patch │ │ │ ├── 950-0337-dwc_otg-Declare-DMA-capability-with-HCD_DMA-flag.patch │ │ │ ├── 950-0338-rpi-poe-fan-fix-def_pwm1-writes.patch │ │ │ ├── 950-0339-net-phy-2711-Allow-ethernet-LED-mode-to-be-set-via-d.patch │ │ │ ├── 950-0340-overlays-smi-fix-typo-in-comment-3320.patch │ │ │ ├── 950-0341-net-phy-2711-Change-the-default-ethernet-LED-actions.patch │ │ │ ├── 950-0342-overlays-Add-apds9960-overlay.patch │ │ │ ├── 950-0343-overlays-Remove-hack-from-uart0-overlay.patch │ │ │ ├── 950-0344-arm-dts-overlays-pitft35-resistive-add-upstream-comp.patch │ │ │ ├── 950-0345-v3d_drv-Handle-missing-clock-more-gracefully.patch │ │ │ ├── 950-0346-v3d_gem-Kick-the-clock-so-firmware-knows-we-are-usin.patch │ │ │ ├── 950-0347-clk-bcm2835-Disable-v3d-clock.patch │ │ │ ├── 950-0348-arm-dts-Correct-Pi-4B-LED-values.patch │ │ │ ├── 950-0349-drm-v3d-Set-dma_mask-as-well-as-coherent_dma_mask.patch │ │ │ ├── 950-0350-arm-dts-2711-Add-pcie0-alias.patch │ │ │ ├── 950-0351-rpi-cirrus-wm5102-overlay-fix-pinctrl-configuration.patch │ │ │ ├── 950-0352-staging-vchiq_arm-Set-up-dma-ranges-on-child-devices.patch │ │ │ ├── 950-0353-staging-vchiq-Use-the-old-dma-controller-for-OF-conf.patch │ │ │ ├── 950-0354-dwc_otg-checking-the-urb-transfer_buffer-too-early-3.patch │ │ │ ├── 950-0355-overlays-Make-mcp342x-run-time-compatible.patch │ │ │ ├── 950-0356-rpi-cirrus-wm5102-overlay-use-reset-gpios-instead-of.patch │ │ │ ├── 950-0357-sound-soc-only-first-codec-is-master-in-multicodec-s.patch │ │ │ ├── 950-0358-Allow-simultaneous-use-of-JustBoom-DAC-and-Digi.patch │ │ │ ├── 950-0359-overlays-dht11-Allow-multiple-instantiation.patch │ │ │ ├── 950-0360-overlays-i2c-rtc-Add-pcf85363-support.patch │ │ │ ├── 950-0361-pinctrl-bcm2835-Remove-gpiochip-on-error.patch │ │ │ ├── 950-0362-pinctrl-bcm2835-Change-init-order-for-gpio-hogs.patch │ │ │ ├── 950-0363-Pisound-MIDI-communication-fixes-for-scaled-down-CPU.patch │ │ │ ├── 950-0364-ARM-dts-bcm283x-Remove-simple-bus-from-fixed-clocks.patch │ │ │ ├── 950-0365-ARM-dts-bcm283x-Move-system-timer-back-to-bcm283x.dt.patch │ │ │ ├── 950-0366-ARM-dts-bcm283x-Move-pixelvalve-to-bcm2835-common.dt.patch │ │ │ ├── 950-0367-ARM-dts-bcm2838-rpi-4-b-Fix-memory-node.patch │ │ │ ├── 950-0368-ARM-dts-bcm2838-rpi-4-b-Backport-BT-part-from-upstre.patch │ │ │ ├── 950-0369-ARM-dts-bcm2838-Backport-node-names-from-upstream.patch │ │ │ ├── 950-0370-ARM-dts-bcm283x-Move-intc-label-to-bcm2835-common.dt.patch │ │ │ ├── 950-0371-ARM-dts-bcm2838-Remove-always-on-from-armv7-timer.patch │ │ │ ├── 950-0372-net-bcmgenet-Add-RGMII_RXID-support.patch │ │ │ ├── 950-0373-ARM-dts-bcm2838-Backport-genet-from-upstream.patch │ │ │ ├── 950-0374-ARM-bcm-Backport-BCM2711-support-from-upstream.patch │ │ │ ├── 950-0375-hwrng-iproc-rng200-Add-support-for-BCM2711.patch │ │ │ ├── 950-0376-ARM-dts-bcm2838-Add-upstream-RNG-compatible.patch │ │ │ ├── 950-0377-driver-char-rpivid-Destroy-the-legacy-device-on-remo.patch │ │ │ ├── 950-0378-driver-char-rpivid-Clean-up-error-handling-use-of-ER.patch │ │ │ ├── 950-0379-driver-char-rpivid-Add-error-handling-to-the-legacy-.patch │ │ │ ├── 950-0380-driver-char-rpivid-Fix-coding-style-whitespace-issue.patch │ │ │ ├── 950-0381-driver-char-rpimem-Add-SPDX-licence-header.patch │ │ │ ├── 950-0382-driver-char-rpivid-Fix-access-to-freed-memory.patch │ │ │ ├── 950-0383-add-BME680-to-i2c-sensor-overlay.patch │ │ │ ├── 950-0384-dwc_otg-constrain-endpoint-max-packet-and-transfer-s.patch │ │ │ ├── 950-0385-dwc_otg-fiq_fsm-pause-when-cancelling-split-transact.patch │ │ │ ├── 950-0386-dwc_otg-fiq_fsm-add-a-barrier-on-entry-into-FIQ-hand.patch │ │ │ ├── 950-0387-Add-universal-device-tree-overlay-for-SPI-devices.patch │ │ │ ├── 950-0388-sound-Add-the-HiFiBerry-DAC-HD-version.patch │ │ │ ├── 950-0389-Initialise-rpi-firmware-before-clk-bcm2835.patch │ │ │ ├── 950-0390-Fix-master-mode-settings-of-HiFiBerry-DAC-ADC-PRO-ca.patch │ │ │ ├── 950-0391-overlays-Use-preferred-compatible-strings.patch │ │ │ ├── 950-0392-tty-amba-pl011-Add-un-throttle-support.patch │ │ │ ├── 950-0393-Fix-i2c-pwm-pca9685a-overlay.patch │ │ │ ├── 950-0394-adds-LED-OFF-feature-to-HiFiBerry-DAC-ADC-PRO-sound-.patch │ │ │ ├── 950-0395-adds-LED-OFF-feature-to-HiFiBerry-DAC-ADC-sound-card.patch │ │ │ ├── 950-0396-adds-LED-OFF-feature-to-HiFiBerry-DAC-DAC-PRO-sound-.patch │ │ │ ├── 950-0397-pisound-Added-reading-Pisound-board-hardware-revisio.patch │ │ │ ├── 950-0398-mmc-sdhci-iproc-Fix-vmmc-regulators-on-iProc.patch │ │ │ ├── 950-0399-ARM-dts-Declare-RPi-4B-SD-card-power-regulator.patch │ │ │ ├── 950-0400-bcm2838.dtsi-Use-BCM2711-PCIe-compatible-string.patch │ │ │ ├── 950-0401-ARM-dts-Remove-bcm2838-rpi-4-b.dts.patch │ │ │ ├── 950-0402-tty-amba-pl011-Avoid-rare-write-when-full-error.patch │ │ │ ├── 950-0403-usb-xhci-Raspberry-Pi-FW-loader-for-VIA-VL805.patch │ │ │ ├── 950-0404-overlays-Correct-the-eth_led-colour-assignments.patch │ │ │ ├── 950-0405-ARM-dts-Add-sd_poll_once-dtparam-to-bcm283x-2711.patch │ │ │ ├── 950-0406-overlays-Add-ssd1306-spi-ssh1106-spi-ssd-1351-spi.patch │ │ │ ├── 950-0407-overlays-dwc2-Increase-RX-FIFO-size.patch │ │ │ ├── 950-0408-overlays-Fix-mcp23017-s-addr-parameter.patch │ │ │ ├── 950-0409-SQUASH-Fix-spi-driver-compiler-warnings.patch │ │ │ ├── 950-0410-overlays-add-hdmi-backlight-hwhack-gpio-overlay.patch │ │ │ ├── 950-0411-ARM-dts-Revert-all-changes-to-upstream-dts-files.patch │ │ │ ├── 950-0412-ARM-dts-Clean-out-downstream-BCM2711-2838-files.patch │ │ │ ├── 950-0413-ARM-dts-Add-minimal-Raspberry-Pi-4-support.patch │ │ │ ├── 950-0414-ARM-dts-bcm2711-force-CMA-into-first-GB-of-memory.patch │ │ │ ├── 950-0415-ARM-dts-bcm2711-rpi-4-Enable-GENET-support.patch │ │ │ ├── 950-0416-ARM-dts-bcm2711-fix-soc-s-node-dma-ranges.patch │ │ │ ├── 950-0417-ARM-dts-Rebuild-downstream-DTS-files.patch │ │ │ ├── 950-0418-staging-vchiq_arm-Fix-bcm2711-compatible-string.patch │ │ │ ├── 950-0419-hwrng-iproc-rng200-Correct-SoC-name.patch │ │ │ ├── 950-0420-ARM-dts-Correct-SoC-name.patch │ │ │ ├── 950-0421-ARM-dts-Remove-CMA-allocation-from-Pi-4-dts.patch │ │ │ ├── 950-0422-staging-vchiq_arm-Give-vchiq-children-DT-nodes.patch │ │ │ ├── 950-0423-ARM-dts-Move-audio-node-under-the-vchiq-parent.patch │ │ │ ├── 950-0424-ARM-dts-overlays-Create-custom-clocks-in.patch │ │ │ ├── 950-0425-staging-vc04_services-Fix-vcsm-overflow-bug-when-cou.patch │ │ │ ├── 950-0426-overlays-Add-timeout_ms-parameter-to-gpio-poweroff.patch │ │ │ ├── 950-0427-of-overlay-Correct-symbol-path-fixups.patch │ │ │ ├── 950-0428-overlays-sc16ic750-i2c-Fix-xtal-parameter.patch │ │ │ ├── 950-0429-of-address-Introduce-of_get_next_dma_parent-helper.patch │ │ │ ├── 950-0430-of-address-Follow-DMA-parent-for-dma-coherent.patch │ │ │ ├── 950-0431-of-Factor-out-addr-size-cells-parsing.patch │ │ │ ├── 950-0432-of-address-Translate-dma-ranges-for-parent-nodes-mis.patch │ │ │ ├── 950-0433-of-Make-of_dma_get_range-work-on-bus-nodes.patch │ │ │ ├── 950-0434-arm64-mm-use-arm64_dma_phys_limit-instead-of-calling.patch │ │ │ ├── 950-0435-arm64-rename-variables-used-to-calculate-ZONE_DMA32-.patch │ │ │ ├── 950-0436-arm64-use-both-ZONE_DMA-and-ZONE_DMA32.patch │ │ │ ├── 950-0437-mm-refresh-ZONE_DMA-and-ZONE_DMA32-comments-in-enum-.patch │ │ │ ├── 950-0438-resource-Add-a-resource_list_first_type-helper.patch │ │ │ ├── 950-0439-dma-direct-turn-ARCH_ZONE_DMA_BITS-into-a-variable.patch │ │ │ ├── 950-0440-x86-PCI-sta2x11-use-default-DMA-address-translation.patch │ │ │ ├── 950-0441-PCI-of-Add-inbound-resource-parsing-to-helpers.patch │ │ │ ├── 950-0442-dma-direct-unify-the-dma_capable-definitions.patch │ │ │ ├── 950-0443-dma-direct-avoid-a-forward-declaration-for-phys_to_d.patch │ │ │ ├── 950-0444-dma-direct-exclude-dma_direct_map_resource-from-the-.patch │ │ │ ├── 950-0445-dma-mapping-treat-dev-bus_dma_mask-as-a-DMA-limit.patch │ │ │ ├── 950-0446-ARM-dts-bcm2711-Enable-PCIe-controller.patch │ │ │ ├── 950-0447-PCI-brcmstb-Add-Broadcom-STB-PCIe-host-controller-dr.patch │ │ │ ├── 950-0448-PCI-brcmstb-Add-MSI-support.patch │ │ │ ├── 950-0449-PCI-brcmstb-Fix-build-on-32bit-ARM-platforms-with-ol.patch │ │ │ ├── 950-0450-bcm2711-rpi.dtsi-Use-upstream-pcie-node.patch │ │ │ ├── 950-0451-media-dt-bindings-media-i2c-Add-IMX219-CMOS-sensor-b.patch │ │ │ ├── 950-0452-media-i2c-Add-driver-for-Sony-IMX219-sensor.patch │ │ │ ├── 950-0453-overlays-imx219-Correct-link-frequency-to-match-the-.patch │ │ │ ├── 950-0454-Kbuild-Allow-.dtbo-overlays-to-be-built-adjust.patch │ │ │ ├── 950-0455-media-ov5647-Fix-return-codes-from-ov5647_write-ov56.patch │ │ │ ├── 950-0456-media-ov5647-Add-basic-support-for-multiple-sensor-m.patch │ │ │ ├── 950-0457-media-ov5647-Add-V4L2-controls-for-analogue-gain-exp.patch │ │ │ ├── 950-0458-media-ov5647-Add-extra-10-bit-sensor-modes.patch │ │ │ ├── 950-0459-media-ov5647-change-defaults-to-better-match-raw-cam.patch │ │ │ ├── 950-0460-drm-vc4-fkms-Change-crtc_state-structure-name-to-avo.patch │ │ │ ├── 950-0461-drm-fourcc-Add-packed-10bit-YUV-4-2-0-format.patch │ │ │ ├── 950-0462-drm-vc4-Add-DRM_FORMAT_P030-support-to-firmware-kms.patch │ │ │ ├── 950-0463-gpio-ir-overlay-add-parameter-to-configure-signal-po.patch │ │ │ ├── 950-0464-Add-support-for-merus-amp-soundcard-and-ma120x0p-cod.patch │ │ │ ├── 950-0465-ARM-dts-bcm2711-Add-32-bit-PMU-compatibility.patch │ │ │ ├── 950-0466-ARM-dts-bcm271x-Use-a53-pmu-drop-RPI364.patch │ │ │ ├── 950-0467-net-bcmgenet-Clear-ID_MODE_DIS-in-EXT_RGMII_OOB_CTRL.patch │ │ │ ├── 950-0468-drm-modes-parse_cmdline-Fix-possible-reference-past-.patch │ │ │ ├── 950-0469-drm-modes-parse_cmdline-Make-various-char-pointers-c.patch │ │ │ ├── 950-0470-drm-modes-parse_cmdline-Stop-parsing-extras-after-bp.patch │ │ │ ├── 950-0471-drm-modes-parse_cmdline-Accept-extras-directly-after.patch │ │ │ ├── 950-0472-drm-modes-parse_cmdline-Rework-drm_mode_parse_cmdlin.patch │ │ │ ├── 950-0473-drm-modes-parse_cmdline-Add-freestanding-argument-to.patch │ │ │ ├── 950-0474-drm-modes-parse_cmdline-Set-bpp-refresh_specified-af.patch │ │ │ ├── 950-0475-drm-modes-parse_cmdline-Allow-specifying-stand-alone.patch │ │ │ ├── 950-0476-drm-modes-parse_cmdline-Add-support-for-specifying-p.patch │ │ │ ├── 950-0477-drm-modes-parse_cmdline-Remove-some-unnecessary-code.patch │ │ │ ├── 950-0478-drm-modes-parse_cmdline-Explicitly-memset-the-passed.patch │ │ │ ├── 950-0479-drm-v3d-Replace-wait_for-macros-to-remove-use-of-msl.patch │ │ │ ├── 950-0480-Reduce-noise-from-rpi-poe-hat-fan.patch │ │ │ ├── 950-0481-add-Sensirion-SPS30-to-i2c-sensor-overlay.patch │ │ │ ├── 950-0482-media-add-V4L2_CTRL_TYPE_AREA-control-type.patch │ │ │ ├── 950-0483-media-add-V4L2_CID_UNIT_CELL_SIZE-control.patch │ │ │ ├── 950-0484-media-v4l2-common-add-pixel-encoding-support.patch │ │ │ ├── 950-0485-media-v4l2-common-add-RGB565-and-RGB55-to-v4l2_forma.patch │ │ │ ├── 950-0486-media-vb2-add-V4L2_BUF_FLAG_M2M_HOLD_CAPTURE_BUF.patch │ │ │ ├── 950-0487-media-v4l2-mem2mem-support-held-capture-buffers.patch │ │ │ ├── 950-0488-media-videodev2.h-add-V4L2_DEC_CMD_FLUSH.patch │ │ │ ├── 950-0489-media-v4l2-mem2mem-add-stateless_-try_-decoder_cmd-i.patch │ │ │ ├── 950-0490-media-v4l2-mem2mem-add-new_frame-detection.patch │ │ │ ├── 950-0491-media-Documentation-media-Document-V4L2_CTRL_TYPE_AR.patch │ │ │ ├── 950-0492-media-v4l-Add-definitions-for-HEVC-stateless-decodin.patch │ │ │ ├── 950-0493-media-v4l2-mem2mem-Fix-hold-buf-flag-checks.patch │ │ │ ├── 950-0494-media-pixfmt-Document-the-HEVC-slice-pixel-format.patch │ │ │ ├── 950-0495-media-uapi-hevc-Add-scaling-matrix-control.patch │ │ │ ├── 950-0496-media-uapi-hevc-Add-segment-address-field.patch │ │ │ ├── 950-0497-media-hevc_ctrls-Add-slice-param-dependent-slice-seg.patch │ │ │ ├── 950-0498-media-uapi-Add-hevc-ctrls-for-WPP-decoding.patch │ │ │ ├── 950-0499-media-videodev2.h-Add-a-format-for-column-YUV4-2-0-m.patch │ │ │ ├── 950-0500-media-v4l2-mem2mem-allow-request-job-buffer-processi.patch │ │ │ ├── 950-0501-media-dt-bindings-media-Add-binding-for-the-Raspberr.patch │ │ │ ├── 950-0502-staging-media-Add-Raspberry-Pi-V4L2-H265-decoder.patch │ │ │ ├── 950-0503-dtoverlays-Add-overlay-to-enable-the-HEVC-V4L2-drive.patch │ │ │ ├── 950-0504-mmc-sdhci-Silence-MMC-warnings.patch │ │ │ ├── 950-0505-dt-bindings-i2c-brcmstb-Convert-the-BRCMSTB-binding-.patch │ │ │ ├── 950-0506-dt-bindings-i2c-brcmstb-Add-BCM2711-BSC-AUTO-I2C-bin.patch │ │ │ ├── 950-0507-i2c-brcmstb-Support-BCM2711-HDMI-BSC-controllers.patch │ │ │ ├── 950-0508-i2c-brcmstb-Allow-to-compile-it-on-BCM2835.patch │ │ │ ├── 950-0509-dt-bindings-clock-Add-a-binding-for-the-RPi-Firmware.patch │ │ │ ├── 950-0510-clk-bcm-rpi-Allow-the-driver-to-be-probed-by-DT.patch │ │ │ ├── 950-0511-clk-bcm-rpi-Statically-init-clk_init_data.patch │ │ │ ├── 950-0512-clk-bcm-rpi-Use-clk_hw_register-for-pllb_arm.patch │ │ │ ├── 950-0513-clk-bcm-rpi-Remove-global-pllb_arm-clock-pointer.patch │ │ │ ├── 950-0514-clk-bcm-rpi-Make-sure-pllb_arm-is-removed.patch │ │ │ ├── 950-0515-clk-bcm-rpi-Remove-pllb_arm_lookup-global-pointer.patch │ │ │ ├── 950-0516-clk-bcm-rpi-Switch-to-clk_hw_register_clkdev.patch │ │ │ ├── 950-0517-clk-bcm-rpi-Make-sure-the-clkdev-lookup-is-removed.patch │ │ │ ├── 950-0518-clk-bcm-rpi-Create-a-data-structure-for-the-clocks.patch │ │ │ ├── 950-0519-clk-bcm-rpi-Add-clock-id-to-data.patch │ │ │ ├── 950-0520-clk-bcm-rpi-Pass-the-clocks-data-to-the-firmware-fun.patch │ │ │ ├── 950-0521-clk-bcm-rpi-Rename-is_prepared-function.patch │ │ │ ├── 950-0522-clk-bcm-rpi-Split-pllb-clock-hooks.patch │ │ │ ├── 950-0523-clk-bcm-rpi-Make-the-PLLB-registration-function-retu.patch │ │ │ ├── 950-0524-clk-bcm-rpi-Add-DT-provider-for-the-clocks.patch │ │ │ ├── 950-0525-clk-bcm-rpi-Discover-the-firmware-clocks.patch │ │ │ ├── 950-0526-ARM-dts-bcm2711-Add-firmware-clocks-node.patch │ │ │ ├── 950-0527-reset-Move-reset-simple-header-out-of-drivers-reset.patch │ │ │ ├── 950-0528-reset-simple-Add-reset-callback.patch │ │ │ ├── 950-0529-dt-bindings-clock-Add-BCM2711-DVP-binding.patch │ │ │ ├── 950-0530-clk-bcm-Add-BCM2711-DVP-driver.patch │ │ │ ├── 950-0531-ARM-dts-bcm2711-Add-HDMI-DVP.patch │ │ │ ├── 950-0532-dt-bindings-display-Convert-VC4-bindings-to-schemas.patch │ │ │ ├── 950-0533-dt-bindings-display-vc4-dpi-Add-missing-clock-names-.patch │ │ │ ├── 950-0534-dt-bindings-display-vc4-dsi-Add-missing-clock-proper.patch │ │ │ ├── 950-0535-dt-bindings-display-vc4-hdmi-Add-missing-clock-names.patch │ │ │ ├── 950-0536-dt-bindings-display-vc4-Document-BCM2711-VC5.patch │ │ │ ├── 950-0537-drm-vc4-drv-Add-include-guards.patch │ │ │ ├── 950-0538-drm-vc4-drv-Support-BCM2711.patch │ │ │ ├── 950-0539-drm-vc4-drv-Add-support-for-the-BCM2711-HVS5.patch │ │ │ ├── 950-0540-drm-vc4-plane-Improve-LBM-usage.patch │ │ │ ├── 950-0541-drm-vc4-plane-Move-planes-creation-to-its-own-functi.patch │ │ │ ├── 950-0542-drm-vc4-plane-Move-additional-planes-creation-to-dri.patch │ │ │ ├── 950-0543-drm-vc4-plane-Register-all-the-planes-at-once.patch │ │ │ ├── 950-0544-drm-vc4-plane-Create-overlays-for-any-CRTC.patch │ │ │ ├── 950-0545-drm-vc4-plane-Create-more-planes.patch │ │ │ ├── 950-0546-drm-vc4-crtc-Rename-SoC-data-structures.patch │ │ │ ├── 950-0547-drm-vc4-crtc-Move-crtc-state-to-common-header.patch │ │ │ ├── 950-0548-drm-vc4-crtc-Deal-with-different-number-of-pixel-per.patch │ │ │ ├── 950-0549-drm-vc4-crtc-Use-a-shared-interrupt.patch │ │ │ ├── 950-0550-drm-vc4-crtc-Turn-static-const-variable-into-a-defin.patch │ │ │ ├── 950-0551-drm-vc4-crtc-Move-the-cob-allocation-outside-of-bind.patch │ │ │ ├── 950-0552-drm-vc4-crtc-Rename-HVS-channel-to-output.patch │ │ │ ├── 950-0553-drm-vc4-crtc-Use-local-chan-variable.patch │ │ │ ├── 950-0554-drm-vc4-crtc-Enable-and-disable-the-PV-in-atomic_ena.patch │ │ │ ├── 950-0555-drm-vc4-crtc-Assign-output-to-channel-automatically.patch │ │ │ ├── 950-0556-drm-vc4-crtc-Add-FIFO-depth-to-vc4_crtc_data.patch │ │ │ ├── 950-0557-drm-vc4-crtc-Add-function-to-compute-FIFO-level-bits.patch │ │ │ ├── 950-0558-drm-vc4-crtc-Rename-HDMI-encoder-type-to-HDMI0.patch │ │ │ ├── 950-0559-drm-vc4-crtc-Add-HDMI1-encoder-type.patch │ │ │ ├── 950-0560-drm-vc4-crtc-Remove-redundant-call-to-drm_crtc_enabl.patch │ │ │ ├── 950-0561-drm-vc4-crtc-Disable-color-management-for-HVS5.patch │ │ │ ├── 950-0562-dt-bindings-display-vc4-pv-Add-BCM2711-pixel-valves.patch │ │ │ ├── 950-0563-drm-vc4-crtc-Add-BCM2711-pixelvalves.patch │ │ │ ├── 950-0564-drm-vc4-hdmi-Use-debugfs-private-field.patch │ │ │ ├── 950-0565-drm-vc4-hdmi-Move-structure-to-header.patch │ │ │ ├── 950-0566-drm-vc4-hdmi-rework-connectors-and-encoders.patch │ │ │ ├── 950-0567-drm-vc4-hdmi-Rename-hdmi-to-vc4_hdmi.patch │ │ │ ├── 950-0568-drm-vc4-hdmi-Move-accessors-to-vc4_hdmi.patch │ │ │ ├── 950-0569-drm-vc4-hdmi-Use-local-vc4_hdmi-directly.patch │ │ │ ├── 950-0570-drm-vc4-hdmi-Add-container_of-macros-for-encoders-an.patch │ │ │ ├── 950-0571-drm-vc4-hdmi-Pass-vc4_hdmi-to-CEC-code.patch │ │ │ ├── 950-0572-drm-vc4-hdmi-Remove-vc4_dev-hdmi-pointer.patch │ │ │ ├── 950-0573-drm-vc4-hdmi-Remove-vc4_hdmi_connector.patch │ │ │ ├── 950-0574-drm-vc4-hdmi-Introduce-resource-init-and-variant.patch │ │ │ ├── 950-0575-drm-vc4-hdmi-Implement-a-register-layout-abstraction.patch │ │ │ ├── 950-0576-drm-vc4-hdmi-Add-reset-callback.patch │ │ │ ├── 950-0577-drm-vc4-hdmi-Add-PHY-init-and-disable-function.patch │ │ │ ├── 950-0578-drm-vc4-hdmi-Add-PHY-RNG-enable-disable-function.patch │ │ │ ├── 950-0579-drm-vc4-hdmi-Add-a-CSC-setup-callback.patch │ │ │ ├── 950-0580-drm-vc4-hdmi-Add-a-set_timings-callback.patch │ │ │ ├── 950-0581-drm-vc4-hdmi-Add-HDMI-ID.patch │ │ │ ├── 950-0582-drm-vc4-hdmi-Deal-with-multiple-debugfs-files.patch │ │ │ ├── 950-0583-drm-vc4-hdmi-Add-an-audio-support-flag.patch │ │ │ ├── 950-0584-drm-vc4-hdmi-Move-CEC-init-to-its-own-function.patch │ │ │ ├── 950-0585-drm-vc4-hdmi-Add-CEC-support-flag.patch │ │ │ ├── 950-0586-drm-vc4-hdmi-Remove-unused-CEC_CLOCK_DIV-define.patch │ │ │ ├── 950-0587-drm-vc4-hdmi-Rename-drm_encoder-pointer-in-mode_vali.patch │ │ │ ├── 950-0588-drm-vc4-hdmi-Adjust-HSM-clock-rate-depending-on-pixe.patch │ │ │ ├── 950-0589-drm-vc4-hdmi-Support-the-BCM2711-HDMI-controllers.patch │ │ │ ├── 950-0590-dt-bindings-display-vc4-hdmi-Add-BCM2711-HDMI-contro.patch │ │ │ ├── 950-0591-ARM-dts-bcm2711-Enable-the-display-pipeline.patch │ │ │ ├── 950-0592-DOWNSTREAM-ARM-dts-rpi4-Disable-KMS-driver-by-defaul.patch │ │ │ ├── 950-0593-dtoverlays-Add-Pi4-version-of-vc4-kms-v3d.patch │ │ │ ├── 950-0594-drm-Checking-of-the-pitch-is-only-valid-for-linear-f.patch │ │ │ ├── 950-0595-drm-vc4-Add-support-for-DRM_FORMAT_P030-to-vc4-plane.patch │ │ │ ├── 950-0596-Fixup-P030-support.patch │ │ │ ├── 950-0597-drm-vc4-The-check-for-assigned-HVS-channels-is-not-a.patch │ │ │ ├── 950-0598-dt-Update-v3d-to-use-firmware_clocks.patch │ │ │ ├── 950-0599-drm-vc4-Reset-audio-infoframe-on-encoder_enable-if-p.patch │ │ │ ├── 950-0600-drm-vc4-Set-the-b-frame-marker-to-the-match-ALSA-s-d.patch │ │ │ ├── 950-0601-dts-Add-reg-names-for-the-HDMI-registers-on-bcm2835.patch │ │ │ ├── 950-0602-dt-Add-HDMI-audio-dma-values-to-bcm2711.dtsi.patch │ │ │ ├── 950-0603-drm-vc4-Use-reg-names-to-configure-HDMI-audio.patch │ │ │ ├── 950-0604-drm-vc4-Add-audio-initialisation-for-Pi4.patch │ │ │ ├── 950-0605-drm-vc4-Enable-audio-on-Pi4.patch │ │ │ ├── 950-0606-drm-vc4-Alter-the-HDMI-state-machine-clock-calc-to-a.patch │ │ │ ├── 950-0607-dtoverlays-Remove-comment-about-vc4-kms-v3d-locking-.patch │ │ │ ├── 950-0608-drm-vc4-Kick-the-core-clock-up-during-a-mode-change.patch │ │ │ ├── 950-0609-drm-vc4-Fixup-for-firmware-KMS.patch │ │ │ ├── 950-0610-drm-vc4-Fixup-plane-init-within-firmware-kms.patch │ │ │ ├── 950-0611-drm-vc4-hdmi-Give-the-HDMI-audio-instances-different.patch │ │ │ ├── 950-0612-i2c-brcmstb-The-interrupt-line-is-optional-so-use-pl.patch │ │ │ ├── 950-0613-dt-Drop-I2C-for-Pi4-HDMI-interfaces-to-97.5kHz.patch │ │ │ ├── 950-0614-overlays-Add-missing-rpi-poe-parameters.patch │ │ │ ├── 950-0615-vc4_hdmi_phy-Fix-offset-calculation.patch │ │ │ ├── 950-0616-overlays-Add-overlay_map.patch │ │ │ ├── 950-0617-overlays-Formally-rename-deprecate-old-overlays.patch │ │ │ ├── 950-0618-overlays-Add-vc4-kms-v3d-pi4-to-overlay_map.patch │ │ │ ├── 950-0619-Add-upstream-and-upstream-pi4-to-overlay_map.patch │ │ │ ├── 950-0620-clk-raspberrypi-Allow-cpufreq-driver-to-also-adjust-.patch │ │ │ ├── 950-0621-Add-support-for-the-AudioInjector.net-Isolated-sound.patch │ │ │ ├── 950-0622-overlays-Fix-dtc-warnings-in-i2c-gpio.patch │ │ │ ├── 950-0623-kbuild-Disable-gcc-plugins.patch │ │ │ ├── 950-0624-ASoC-ma120x0p-Add-96KHz-rate-support.patch │ │ │ ├── 950-0625-arm64-mm-reserve-CMA-and-crashkernel-in-ZONE_DMA32.patch │ │ │ ├── 950-0626-arm64-mm-Fix-initialisation-of-DMA-zones-on-non-NUMA.patch │ │ │ ├── 950-0627-ARM-dts-bcm283x-Unify-CMA-configuration.patch │ │ │ ├── 950-0628-dma-contiguous-CMA-give-precedence-to-cmdline.patch │ │ │ ├── 950-0629-ARM-dts-Use-upstream-CMA-configuration.patch │ │ │ ├── 950-0630-ARM-dts-overlays-Unify-overlay-CMA-handling.patch │ │ │ ├── 950-0631-ARM-dts-bcm283x-Fix-vc4-s-firmware-bus-DMA-limitatio.patch │ │ │ ├── 950-0632-ARM-dts-bcm2711-Restrict-CMA-to-first-768MB.patch │ │ │ ├── 950-0633-ARM-dts-Extend-SCB-bus-address-range.patch │ │ │ ├── 950-0634-dts-bcm2711-Move-emmc2-to-its-own-bus.patch │ │ │ ├── 950-0635-drm-vc4-hdmi-Silence-pixel-clock-error-on-EPROBE_DEF.patch │ │ │ ├── 950-0636-Fixes-a-problem-with-clock-settings-of-HiFiBerry-DAC.patch │ │ │ ├── 950-0637-Documentation-media-Update-sub-device-API-intro.patch │ │ │ ├── 950-0638-Documentation-media-Document-read-only-subdevice.patch │ │ │ ├── 950-0639-media-v4l2-dev-Add-v4l2_device_register_ro_subdev_no.patch │ │ │ ├── 950-0640-media-bcm2835-unicam-Driver-for-CCP2-CSI2-camera-int.patch │ │ │ ├── 950-0641-media-uapi-v4l2-core-Add-sensor-ancillary-data-V4L2-.patch │ │ │ ├── 950-0642-media-uapi-Add-MEDIA_BUS_FMT_SENSOR_DATA-media-bus-f.patch │ │ │ ├── 950-0643-media-bcm2835-unicam-Add-support-for-mulitple-device.patch │ │ │ ├── 950-0644-media-bcm2835-unicam-Add-embedded-data-node.patch │ │ │ ├── 950-0645-media-bcm2835-unicam-Use-dummy-buffer-if-none-have-b.patch │ │ │ ├── 950-0646-spi-Force-CS_HIGH-if-GPIO-descriptors-are-used.patch │ │ │ ├── 950-0647-media-i2c-imx219-Fix-power-sequence.patch │ │ │ ├── 950-0648-media-i2c-imx219-Add-support-for-RAW8-bit-bayer-form.patch │ │ │ ├── 950-0649-media-i2c-imx219-Add-support-for-cropped-640x480-res.patch │ │ │ ├── 950-0650-media-i2c-imx219-Fix-a-bug-in-imx219_enum_frame_size.patch │ │ │ ├── 950-0651-media-bcm2835-unicam-Disable-event-related-ioctls-on.patch │ │ │ ├── 950-0652-media-bcm2835-unicam-Add-support-for-the-FRAME_SYNC-.patch │ │ │ ├── 950-0653-Revert-firmware-raspberrypi-register-clk-device.patch │ │ │ ├── 950-0654-media-imx219-Advertise-embedded-data-node-on-media-p.patch │ │ │ ├── 950-0655-dts-bcm2711-EMMC2-can-address-the-whole-first-GB.patch │ │ │ ├── 950-0656-driver-char-rpivid-Remove-legacy-name-support.patch │ │ │ ├── 950-0657-driver-char-rpivid-Don-t-map-more-than-wanted.patch │ │ │ ├── 950-0658-dt-Implement-an-I2C-pinctrl-mux-for-BSC0.patch │ │ │ ├── 950-0659-dtoverlays-Update-CSI-overlays-to-use-i2c_csi_dsi.patch │ │ │ ├── 950-0660-dt-Update-all-mainline-bcm283x-dt-files-for-i2c0-pin.patch │ │ │ ├── 950-0661-ARM-dts-Create-bcm2708-rpi-b-rev1.dts.patch │ │ │ ├── 950-0662-dts-bcm2711-set-size-cells-2.patch │ │ │ ├── 950-0663-dts-bcm2711-add-High-Peripheral-mode-overlay.patch │ │ │ ├── 950-0664-Revert-spi-spidev-Fix-CS-polarity-if-GPIO-descriptor.patch │ │ │ ├── 950-0665-spi-use_gpio_descriptor-fixup-moved-to-spi_setup.patch │ │ │ ├── 950-0666-overlays-rpivid-v4l2-also-needs-size-cells-2.patch │ │ │ ├── 950-0667-media-bcm2835-unicam-Re-fetch-mbus-code-from-subdev-.patch │ │ │ ├── 950-0668-uapi-bcm2835-isp-Add-bcm2835-isp-uapi-header-file.patch │ │ │ ├── 950-0669-media-uapi-v4l2-core-Add-ISP-statistics-output-V4L2-.patch │ │ │ ├── 950-0670-media-uapi-v4l-ctrls-Add-CID-base-for-the-bcm2835-is.patch │ │ │ ├── 950-0671-staging-mmal-vchiq-Fix-formatting-errors-in-mmal_par.patch │ │ │ ├── 950-0672-staging-vc04_services-ISP-Add-a-more-complex-ISP-pro.patch │ │ │ ├── 950-0673-staging-vchiq-Load-bcm2835_isp-driver-from-vchiq.patch │ │ │ ├── 950-0674-vc4_hvs-Mark-core-clock-as-optional.patch │ │ │ ├── 950-0675-vc4_hdmi-BCM2835-requires-a-fixed-hsm-clock-for-CEC-.patch │ │ │ ├── 950-0676-media-i2c-imx219-Implement-get_selection.patch │ │ │ ├── 950-0677-media-i2c-ov5647-Add-support-for-g_selection-to-refl.patch │ │ │ ├── 950-0678-media-i2c-ov5467-Fixup-error-path-to-release-mutex.patch │ │ │ ├── 950-0679-media-i2c-ov5647-Support-V4L2_CID_PIXEL_RATE.patch │ │ │ ├── 950-0680-media-i2c-ov5647-Set-V4L2_SUBDEV_FL_HAS_EVENTS-flag.patch │ │ │ ├── 950-0681-media-i2c-ov5647-Add-support-for-V4L2_CID_VBLANK.patch │ │ │ ├── 950-0682-media-i2c-ov5647-Neither-analogue-gain-nor-exposure-.patch │ │ │ ├── 950-0683-media-i2c-ov5647-Use-member-names-in-mode-tables.patch │ │ │ ├── 950-0684-media-i2c-ov5647-Advertise-the-correct-exposure-rang.patch │ │ │ ├── 950-0685-media-i2c-imx219-Declare-that-the-driver-can-create-.patch │ │ │ ├── 950-0686-media-bcm2835-unicam-Add-support-for-VIDIOC_-S-G-_SE.patch │ │ │ ├── 950-0687-media-bcm2835-unicam-Do-not-stop-streaming-in-unicam.patch │ │ │ ├── 950-0688-media-bcm2835-unicam-Fix-reference-counting-in-unica.patch │ │ │ ├── 950-0689-staging-vc04_services-ISP-Add-enum_framesizes-ioctl.patch │ │ │ ├── 950-0690-SQUASH-spi-Demote-SPI_CS_HIGH-warning-to-KERN_DEBUG.patch │ │ │ ├── 950-0691-bcm2835-dma-Add-proper-40-bit-DMA-support.patch │ │ │ ├── 950-0692-ARM-dts-bcm2711-Allow-40-bit-DMA-for-SPI.patch │ │ │ ├── 950-0693-overlays-Make-the-i2c-gpio-overlay-safe-again.patch │ │ │ ├── 950-0694-staging-vc04_services-isp-Remove-duplicated-initiali.patch │ │ │ ├── 950-0695-staging-vc04_services-isp-Make-all-references-to-bcm.patch │ │ │ ├── 950-0696-vc4_hdmi_phy-Fix-typo-in-phy_get_cp_current.patch │ │ │ ├── 950-0697-overlays-Make-use-of-intra-overlay-fragments.patch │ │ │ ├── 950-0698-media-i2c-tc358743-Fix-fallthrough-warning.patch │ │ │ ├── 950-0699-media-bcm2835-unicam-Fix-uninitialized-warning.patch │ │ │ ├── 950-0700-video-bcm2708_fb-Disable-FB-if-no-displays-found.patch │ │ │ ├── 950-0701-overlays-sc16is752-spi1-Add-xtal-parameter.patch │ │ │ ├── 950-0702-vc4_hdmi-Fix-register-offset-when-sending-longer-CEC.patch │ │ │ ├── 950-0703-vc4_hdmi-Fix-up-CEC-registers.patch │ │ │ ├── 950-0704-vc4_hdmi_regs-Add-Intr2-register-block.patch │ │ │ ├── 950-0705-vc4_hdmi_regs-Make-interrupt-mask-variant-specific.patch │ │ │ ├── 950-0706-vc4_hdmi-Make-irq-shared.patch │ │ │ ├── 950-0707-vc4_hdmi-Adjust-CEC-ref-clock-based-on-its-input-clo.patch │ │ │ ├── 950-0708-vc4_hdmi-Remove-cec_available-flag-as-always-support.patch │ │ │ ├── 950-0709-overlays-tc358743-Use-intra-overlay-fragments.patch │ │ │ ├── 950-0710-overlays-Move-fixed-clock-nodes-to-the-root.patch │ │ │ ├── 950-0711-raspberrypi-dts-Switch-to-discrete-ALSA-devices.patch │ │ │ ├── 950-0712-dt-bindings-media-i2c-Add-IMX477-CMOS-sensor-binding.patch │ │ │ ├── 950-0713-dtoverlays-Add-IMX477-sensor-overlay.patch │ │ │ ├── 950-0714-media-i2c-Add-driver-for-Sony-IMX477-sensor.patch │ │ │ ├── 950-0715-media-i2c-imx477-Add-support-for-adaptive-frame-cont.patch │ │ │ ├── 950-0716-udmabuf-Remove-deleted-map-unmap-handlers.patch │ │ │ ├── 950-0717-udmabuf-use-cache_sgt_mapping-option.patch │ │ │ ├── 950-0718-udmabuf-add-a-pointer-to-the-miscdevice-in-dma-buf-p.patch │ │ │ ├── 950-0719-udmabuf-separate-out-creating-destroying-scatter-tab.patch │ │ │ ├── 950-0720-udmabuf-implement-begin_cpu_access-end_cpu_access-ho.patch │ │ │ ├── 950-0721-udmabuf-fix-dma-buf-cpu-access.patch │ │ │ ├── 950-0722-dma-buf-Add-dma-buf-heaps-framework.patch │ │ │ ├── 950-0723-dma-buf-heaps-Add-heap-helpers.patch │ │ │ ├── 950-0724-dma-buf-heaps-Add-system-heap-to-dmabuf-heaps.patch │ │ │ ├── 950-0725-dma-buf-heaps-Add-CMA-heap-to-dmabuf-heaps.patch │ │ │ ├── 950-0726-kselftests-Add-dma-heap-test.patch │ │ │ ├── 950-0727-dma-buf-heaps-Use-_IOCTL_-for-userspace-IOCTL-identi.patch │ │ │ ├── 950-0728-dma-buf-heaps-Remove-redundant-heap-identifier-from-.patch │ │ │ ├── 950-0729-dma-buf-fix-resource-leak-on-ENOTTY-error-return-pat.patch │ │ │ ├── 950-0730-dma-heap-Make-the-symbol-dma_heap_ioctl_cmds-static.patch │ │ │ ├── 950-0731-ARM-dts-Enable-firmware-clocks-on-all-Pis.patch │ │ │ ├── 950-0732-media-bcm2835-unicam-Always-service-interrupts.patch │ │ │ ├── 950-0733-sc16is7xx-Fix-for-hardware-flow-control.patch │ │ │ ├── 950-0734-drm-vc4-Fix-VIC-usage-with-Broadcast-RGB.patch │ │ │ ├── 950-0735-staging-vc04_services-mmal-vchiq-Update-parameters-l.patch │ │ │ ├── 950-0736-staging-vc04_services-bcm2835-codec-Request-headers-.patch │ │ │ ├── 950-0737-staging-vc04_services-bcm2835-codec-Avoid-fragmentin.patch │ │ │ ├── 950-0738-staging-vc04_services-bcm2835-camera-Request-headers.patch │ │ │ ├── 950-0739-overlays-Fix-audio-parameter-of-vc4-kms-v3d.patch │ │ │ ├── 950-0740-Switch-to-snd_soc_dai_set_bclk_ratio.patch │ │ │ ├── 950-0741-media-bcm2835-unicam-Retain-packing-information-on-G.patch │ │ │ ├── 950-0742-zswap-Defer-zswap-initialisation.patch │ │ │ ├── 950-0743-drm-vc4-Adopt-the-dma-configuration-from-the-HVS-or-.patch │ │ │ ├── 950-0744-drm-vc4-Add-FKMS-as-an-acceptable-node-for-dma-range.patch │ │ │ ├── 950-0745-media-i2c-imx477-Return-correct-result-on-sensor-id-.patch │ │ │ ├── 950-0746-staging-vchiq_arm-Clean-up-40-bit-DMA-support.patch │ │ │ ├── 950-0747-ARM-dts-Update-for-new-VCHIQ-BCM2711-DMA-support.patch │ │ │ ├── 950-0748-media-bcm2835-unicam-change-minimum-number-of-vb2_qu.patch │ │ │ ├── 950-0749-dt-bindings-Add-Broadcom-AVS-RO-thermal.patch │ │ │ ├── 950-0750-thermal-Add-BCM2711-thermal-driver.patch │ │ │ ├── 950-0751-ARM-dts-bcm2711-Enable-thermal.patch │ │ │ ├── 950-0752-ARM-dts-bcm2711-rpi-Remove-downstream-thermal-sensor.patch │ │ │ ├── 950-0753-overlays-i2c-rtc-Fix-trickle-resistor-ohms-param.patch │ │ │ ├── 950-0754-overlays-gpio-shutdown-Add-information-for-SysV-init.patch │ │ │ ├── 950-0755-overlays-gpio-shutdown-Add-information-for-Raspberry.patch │ │ │ ├── 950-0756-overlays-Add-spi0-overlay-to-support-sc16is752.patch │ │ │ ├── 950-0757-overlays-i2c-rtc-gpio-Fix-trickle-resistor-ohms-para.patch │ │ │ ├── 950-0758-media-bcm2835-isp-fix-bytes-per-line-calculations-fo.patch │ │ │ ├── 950-0759-Add-Micro-Crystal-RV-1805-to-i2c-rtc-overlays.patch │ │ │ ├── 950-0760-vc4-Set-driver_name-for-card.patch │ │ │ ├── 950-0761-staging-vchiq_arm-Use-g_dma_dev-for-dma_unmap_sg.patch │ │ │ ├── 950-0762-vc4-cec-Restore-cec-physical-address-on-reconnect.patch │ │ │ ├── 950-0763-snd_bcm2835-disable-HDMI-audio-when-vc4-is-used-3640.patch │ │ │ ├── 950-0764-overlays-i2c-gpio-Avoid-open-drain-warnings.patch │ │ │ ├── 950-0765-overlays-Update-upstream-overlays-after-vc4-kms-v3d-.patch │ │ │ ├── 950-0766-w1_therm-adding-code-comments-and-code-reordering.patch │ │ │ ├── 950-0767-w1_therm-fix-reset_select_slave-during-discovery.patch │ │ │ ├── 950-0768-w1_therm-adding-ext_power-sysfs-entry.patch │ │ │ ├── 950-0769-w1_therm-adding-resolution-sysfs-entry.patch │ │ │ ├── 950-0770-w1_therm-adding-eeprom-sysfs-entry.patch │ │ │ ├── 950-0771-w1_therm-optimizing-temperature-read-timings.patch │ │ │ ├── 950-0772-w1_therm-adding-alarm-sysfs-entry.patch │ │ │ ├── 950-0773-w1_therm-adding-bulk-read-support-to-trigger-multipl.patch │ │ │ ├── 950-0774-w1_therm-Free-the-correct-variable.patch │ │ │ ├── 950-0775-w1_therm-remove-redundant-assignments-to-variable-re.patch │ │ │ ├── 950-0776-PCI-brcmstb-Assert-fundamental-reset-on-initializati.patch │ │ │ ├── 950-0777-clk-rpi-Adjust-DT-binding-to-match-upstream.patch │ │ │ ├── 950-0778-clk-bcm-rpi-Add-an-enum-for-the-firmware-clocks.patch │ │ │ ├── 950-0779-clk-bcm-rpi-Use-CCF-boundaries-instead-of-rolling-ou.patch │ │ │ ├── 950-0780-clk-bcm-rpi-Give-firmware-clocks-a-name.patch │ │ │ ├── 950-0781-clk-bcm-rpi-Remove-the-quirks-for-the-CPU-clock.patch │ │ │ ├── 950-0782-clk-rpi-Only-register-a-few-firmware-clocks.patch │ │ │ ├── 950-0783-clk-rpi-Fix-compatible-indentation.patch │ │ │ ├── 950-0784-SQUASH-dts-Fix-firmware-clocks-support.patch │ │ │ ├── 950-0785-ARM-dts-Add-bcm2711-rpi-cm4.dts.patch │ │ │ ├── 950-0786-PCI-brcmstb-Add-DT-property-to-control-L1SS.patch │ │ │ ├── 950-0787-ARM-dts-Set-brcm-enable-l1ss-for-CM4.patch │ │ │ ├── 950-0788-Revert-SQUASH-Fix-spi-driver-compiler-warnings.patch │ │ │ ├── 950-0789-Revert-spi-spi-bcm2835-Disable-forced-software-CS.patch │ │ │ ├── 950-0790-media-irs1125-Using-i2c_transfer-for-ic2-reads.patch │ │ │ ├── 950-0791-media-irs1125-Refactoring-and-debug-messages.patch │ │ │ ├── 950-0792-media-irs1125-Atomic-access-to-imager-reconfiguratio.patch │ │ │ ├── 950-0793-media-irs1125-Keep-HW-in-sync-after-imager-reset.patch │ │ │ ├── 950-0794-staging-bcm2835-audio-Add-missing-MODULE_ALIAS.patch │ │ │ ├── 950-0795-media-v4l2-subdev-Introduce-get-set-_mbus_config-pad.patch │ │ │ ├── 950-0796-media-i2c-Use-the-new-get_mbus_config-pad-op.patch │ │ │ ├── 950-0797-media-i2c-ov6650-Use-new-get-set-_mbus_config-ops.patch │ │ │ ├── 950-0798-media-pxa_camera-Use-the-new-set_mbus_config-op.patch │ │ │ ├── 950-0799-media-v4l2-subdev-Remove-s-g-_mbus_config-video-ops.patch │ │ │ ├── 950-0800-staging-media-imx-Update-TODO-entry.patch │ │ │ ├── 950-0801-media-i2c-adv748x-Adjust-TXA-data-lanes-number.patch │ │ │ ├── 950-0802-media-i2c-adv748x-Implement-get_mbus_config.patch │ │ │ ├── 950-0803-media-rcar-csi2-Negotiate-data-lanes-number.patch │ │ │ ├── 950-0804-drivers-media-Remove-the-downstream-version-of-bcm28.patch │ │ │ ├── 950-0805-include-media-Add-vfl_devnode_type-of-VFL_TYPE_VIDEO.patch │ │ │ ├── 950-0806-media-bcm2835-unicam-Driver-for-CCP2-CSI2-camera-int.patch │ │ │ ├── 950-0807-media-bcm2835-unicam-Add-support-for-get_mbus_config.patch │ │ │ ├── 950-0808-media-bcm2835-unicam-Always-service-interrupts.patch │ │ │ ├── 950-0809-media-bcm2835-unicam-Fix-uninitialized-warning.patch │ │ │ ├── 950-0810-media-bcm2835-unicam-Fixup-review-comments-from-Hans.patch │ │ │ ├── 950-0811-media-bcm2835-unicam-Retain-packing-information-on-G.patch │ │ │ ├── 950-0812-media-bcm2835-unicam-change-minimum-number-of-vb2_qu.patch │ │ │ ├── 950-0813-dt-dtoverlays-Fix-up-base-DT-and-overlays-for-update.patch │ │ │ ├── 950-0814-media-bcm2835-unicam-Avoid-gcc-warning-over-0-on-end.patch │ │ │ ├── 950-0815-media-dt-bindings-media-i2c-Add-IMX290-CMOS-sensor-b.patch │ │ │ ├── 950-0816-media-i2c-Add-IMX290-CMOS-image-sensor-driver.patch │ │ │ ├── 950-0817-media-i2c-imx290-set-the-format-before-VIDIOC_SUBDEV.patch │ │ │ ├── 950-0818-media-i2c-imx290-fix-the-order-of-the-args-in-SET_RU.patch │ │ │ ├── 950-0819-media-i2c-imx290-fix-reset-GPIO-pin-handling.patch │ │ │ ├── 950-0820-media-i2c-imx290-Add-support-for-2-data-lanes.patch │ │ │ ├── 950-0821-media-i2c-imx290-Add-configurable-link-frequency-and.patch │ │ │ ├── 950-0822-media-i2c-imx290-Add-support-for-test-pattern-genera.patch │ │ │ ├── 950-0823-media-i2c-imx290-Add-RAW12-mode-support.patch │ │ │ ├── 950-0824-media-i2c-imx290-Add-support-to-enumerate-all-frame-.patch │ │ │ ├── 950-0825-media-i2c-imx290-Move-the-settle-time-delay-out-of-l.patch │ │ │ ├── 950-0826-media-i2c-imx290-set-bus_type-before-calling-v4l2_fw.patch │ │ │ ├── 950-0827-media-i2c-imx290-Add-support-for-74.25MHz-clock.patch │ │ │ ├── 950-0828-media-i2c-imx290-Correct-range-for-V4L2_CID_GAIN-to-.patch │ │ │ ├── 950-0829-media-i2c-imx290-Convert-HMAX-setting-into-V4L2_CID_.patch │ │ │ ├── 950-0830-media-i2c-imx290-Add-support-for-V4L2_CID_VBLANK.patch │ │ │ ├── 950-0831-media-i2c-imx290-Add-exposure-control-to-the-driver.patch │ │ │ ├── 950-0832-media-i2c-imx290-Add-H-and-V-flip-controls.patch │ │ │ ├── 950-0833-media-dt-bindings-media-i2c-Add-mono-version-to-IMX2.patch │ │ │ ├── 950-0834-media-i2c-imx290-Add-support-for-the-mono-sensor-var.patch │ │ │ ├── 950-0835-media-i2c-imx290-Switch-set_hmax-to-use-imx290_write.patch │ │ │ ├── 950-0836-dtoverlays-Add-an-overlay-for-the-Sony-IMX290-image-.patch │ │ │ ├── 950-0837-vc4_hdmi-Set-HD_CTL_WHOLSMP-and-HD_CTL_CHALIGN_SET.patch │ │ │ ├── 950-0838-staging-vc04_services-isp-Fixup-g-s_selection-implem.patch │ │ │ ├── 950-0839-staging-vc04_services-isp-Reorder-operations-during-.patch │ │ │ ├── 950-0840-uapi-bcm2835-isp-Fixups-for-bcm2835-isp-uapi-structu.patch │ │ │ ├── 950-0841-ARM-dts-Add-Bluetooth-nodes-for-Raspberry-Pi.patch │ │ │ ├── 950-0842-drm-vc4-Allow-interlaced-HDMI-modes-from-FKMS.patch │ │ │ ├── 950-0843-serial-8250-bcm2835aux-defer-if-clock-is-zero.patch │ │ │ ├── 950-0844-media-v4l-Add-14-bit-raw-bayer-pixel-formats.patch │ │ │ ├── 950-0845-media-v4l-Add-14-bit-raw-greyscale-pixel-format.patch │ │ │ ├── 950-0846-media-v4l-Add-1X14-14-bit-greyscale-media-bus-code-d.patch │ │ │ ├── 950-0847-media-Add-a-pixel-format-for-MIPI-packed-12bit-luma-.patch │ │ │ ├── 950-0848-media-Add-a-pixel-format-for-MIPI-packed-14bit-luma-.patch │ │ │ ├── 950-0849-staging-vc04_services-isp-Add-support-for-14bit-Baye.patch │ │ │ ├── 950-0850-staging-vc04_services-isp-Add-monochrome-image-forma.patch │ │ │ ├── 950-0851-staging-vc04_services-isp-Increase-the-number-of-sup.patch │ │ │ ├── 950-0852-staging-vc04_services-codec-Increase-the-number-of-s.patch │ │ │ ├── 950-0853-staging-vc04_services-codec-Add-support-for-mono-for.patch │ │ │ ├── 950-0854-staging-vc04_services-codec-Add-support-for-14bit-Ba.patch │ │ │ ├── 950-0855-media-bcm2835-unicam-Add-support-for-12bit-mono-pack.patch │ │ │ ├── 950-0856-media-bcm2835-unicam-Add-support-for-14bit-mono-sour.patch │ │ │ ├── 950-0857-media-bcm2835-unicam-Add-support-for-unpacked-14bit-.patch │ │ │ ├── 950-0858-overlays-Fix-miniuart-bt-krnbt-parameter.patch │ │ │ ├── 950-0859-drm-vc4-Make-FKMS-max-refresh-rate-a-module-paramete.patch │ │ │ ├── 950-0860-drm-vc4-FKMS-Block-modes-with-odd-horizontal-timing-.patch │ │ │ ├── 950-0861-dt-Use-rpi-firmware-kms-2711-on-2711-platforms.patch │ │ │ ├── 950-0862-drm-vc4-FKMS-Put-includes-in-alphabetical-order-and-.patch │ │ │ ├── 950-0863-irqchip-bcm2835-Quiesce-IRQs-left-enabled-by-bootloa.patch │ │ │ ├── 950-0864-dtoverlays-Fixup-imx219-and-imx477-overlays-due-to-p.patch │ │ │ ├── 950-0865-overlays-rpi-ft5406-Fix-boolean-parameters.patch │ │ │ ├── 950-0866-ARM-dts-Copy-kernel-BT-changes-to-CM4.patch │ │ │ ├── 950-0867-ARM-dts-Make-bcm2711-dts-more-like-5.7.patch │ │ │ ├── 950-0868-bcm2835-dma-Add-NO_WAIT_RESP-flag.patch │ │ │ ├── 950-0869-ARM-dts-Restore-the-old-2711-scb-ranges-property.patch │ │ │ ├── 950-0870-media-i2c-add-ov9281-driver.patch │ │ │ ├── 950-0871-media-i2c-ov9281-fix-mclk-issue-when-probe-multiple-.patch │ │ │ ├── 950-0872-media-i2c-ov9281-add-enum_frame_interval-function-fo.patch │ │ │ ├── 950-0873-media-i2c-ov9281-Fixup-for-recent-kernel-releases-an.patch │ │ │ ├── 950-0874-media-i2c-ov9281-Read-chip-ID-via-2-reads.patch │ │ │ ├── 950-0875-dtoverlay-Add-overlay-for-Omnivision-OV9281-image-se.patch │ │ │ ├── 950-0876-Bluetooth-hci_bcm-Fix-RTS-handling-during-startup.patch │ │ │ ├── 950-0877-Bluetooth-hci_bcm-Add-compatible-string-for-BCM43540.patch │ │ │ ├── 950-0878-Bluetooth-btbcm-Add-entry-for-BCM4335A0-UART-bluetoo.patch │ │ │ ├── 950-0879-Bluetooth-hci_bcm-Disallow-set_baudrate-for-BCM4354.patch │ │ │ ├── 950-0880-Bluetooth-btbcm-Support-pcm-configuration.patch │ │ │ ├── 950-0881-Bluetooth-hci_bcm-Support-pcm-params-in-dts.patch │ │ │ ├── 950-0882-Bluetooth-hci_bcm-Drive-RTS-only-for-BCM43438.patch │ │ │ ├── 950-0883-Enhances-the-DAC-driver-to-control-the-optional-head.patch │ │ │ ├── 950-0884-ARM-dts-hifiberry-dacplus-headphone-amp-support.patch │ │ │ ├── 950-0885-media-i2c-imx290-Explicitly-set-v-h-blank-on-mode-ch.patch │ │ │ ├── 950-0886-media-i2c-imx290-Add-support-for-g_selection-to-repo.patch │ │ │ ├── 950-0887-media-i2c-imx290-Set-the-colorspace-fields-in-the-fo.patch │ │ │ ├── 950-0888-media-bcm2835-unicam-Reinstate-V4L2_CAP_READWRITE-in.patch │ │ │ ├── 950-0889-media-bcm2835-unicam-Ensure-type-is-VIDEO_CAPTURE-in.patch │ │ │ ├── 950-0890-dtoverlays-Create-an-overlay-for-the-Omnivision-OV72.patch │ │ │ ├── 950-0891-vc4_hdmi-Set-HDMI_MAI_FMT.patch │ │ │ ├── 950-0892-drm-vc4-add-iec958-controls-to-vc4_hdmi.patch │ │ │ ├── 950-0893-drm-vc4-move-setup-from-hw_params-to-prepare.patch │ │ │ ├── 950-0894-drm-vc4-enable-HBR-MAI-format-on-HBR-streams.patch │ │ │ ├── 950-0895-vc4_hdmi-Remove-firmware-logic-for-MAI-threshold-set.patch │ │ │ ├── 950-0896-vc_hdmi-Set-VC4_HDMI_MAI_CONFIG_FORMAT_REVERSE.patch │ │ │ ├── 950-0897-dts-Enable-NO_WAIT_RESP-for-hdmi-audio-dma.patch │ │ │ ├── 950-0898-SQUASH-dts-Further-simplify-firmware-clocks.patch │ │ │ ├── 950-0899-media-bcm2835-unicam-Set-VPU-min-clock-freq-to-250Mh.patch │ │ │ ├── 950-0900-dt-bindings-bcm2835-unicam-Update-documentation-with.patch │ │ │ ├── 950-0901-correct-SND_SOC_DAILINK_DEFS.patch │ │ │ ├── 950-0902-media-dt-bindings-video-interfaces-Document-orientat.patch │ │ │ ├── 950-0903-media-dt-bindings-video-interface-Replace-rotation-d.patch │ │ │ ├── 950-0904-media-v4l2-ctrl-Document-V4L2_CID_CAMERA_ORIENTATION.patch │ │ │ ├── 950-0905-media-v4l2-ctrl-Document-V4L2_CID_CAMERA_SENSOR_ROTA.patch │ │ │ ├── 950-0906-media-v4l2-ctrls-Add-camera-orientation-and-rotation.patch │ │ │ ├── 950-0907-media-v4l2-fwnode-Add-helper-to-parse-device-propert.patch │ │ │ ├── 950-0908-media-v4l2-ctrls-Add-helper-to-register-properties.patch │ │ │ ├── 950-0909-media-i2c-ov5647-Parse-and-register-properties.patch │ │ │ ├── 950-0910-media-i2c-imx219-Parse-and-register-properties.patch │ │ │ ├── 950-0911-media-i2c-imx477-Parse-and-register-properties.patch │ │ │ ├── 950-0912-dt-dtoverlays-ov5647-Add-parameter-to-set-camera-mod.patch │ │ │ ├── 950-0913-dt-dtoverlays-imx219-Add-parameter-to-set-camera-mod.patch │ │ │ ├── 950-0914-dt-dtoverlays-imx477-Add-parameter-to-set-camera-mod.patch │ │ │ ├── 950-0915-drm-vc4-Add-DRM_MODE_FLAG_DBLCLK-support-to-vc4-fkms.patch │ │ │ ├── 950-0916-leds-Add-the-actpwr-trigger.patch │ │ │ ├── 950-0917-ARM-dts-Select-the-actpwr-LED-trigger-on-Zeroes.patch │ │ │ ├── 950-0918-staging-vc04_services-isp-Rework-lens-shading-to-tak.patch │ │ │ ├── 950-0919-Mute-bug-fix-for-the-Audioinjector.net-isolated-soun.patch │ │ │ ├── 950-0920-vc4-Report-channel-mapping-back-to-userspace.patch │ │ │ ├── 950-0921-SQUASH-leds-actpwr-delete-unused-variable.patch │ │ │ ├── 950-0922-staging-vchiq_arm-children-inherit-DMA-config.patch │ │ │ ├── 950-0923-ARM-dts-2711-DMA-can-address-36-bits.patch │ │ │ ├── 950-0924-bcm2835-dma-Advertise-the-full-DMA-range.patch │ │ │ ├── 950-0925-ARM-dts-Add-UART-skip-init-properties-for-U-boot.patch │ │ │ ├── 950-0926-drm-vc4-Remove-UIF-from-the-list-of-modifiers-return.patch │ │ │ ├── 950-0927-ARM-proc-v7-Force-misalignment-of-early-stmia.patch │ │ │ ├── 950-0928-overlays-Fix-sc16is75x-overlays-w.r.t.-serdev.patch │ │ │ ├── 950-0929-overlays-Delete-spi0-hw-cs.patch │ │ │ ├── 950-0930-backlight-gpio-Explicitly-set-the-direction-of-the-G.patch │ │ │ ├── 950-0931-overlays-Add-maxtherm-overlay-for-MAX6675-31855.patch │ │ │ ├── 950-0932-dtoverlays-Add-the-iio_hwmon-driver-to-correct-ADC-i.patch │ │ │ ├── 950-0933-dts-bcm2711-Disable-DVP-by-default.patch │ │ │ ├── 950-0934-ARM-dts-Add-required-USB-power-domain-for-XCHI.patch │ │ │ ├── 950-0935-overlays-Regenerate-upstream-pi4.patch │ │ │ ├── 950-0936-drm-vc4-Increase-the-number-of-planes-per-crtc-in-FK.patch │ │ │ ├── 950-0937-drm-vc4-Set-the-possible-crtcs-mask-correctly-for-pl.patch │ │ │ ├── 950-0938-staging-vc04_services-codec-Fix-incorrect-buffer-cle.patch │ │ │ ├── 950-0939-staging-vc04_service-codec-Allow-start_streaming-to-.patch │ │ │ ├── 950-0940-staging-vc04_services-codec-Fix-component-enable-dis.patch │ │ │ ├── 950-0941-update-rpi-display-overlay.dts-pins-for-5.4.patch │ │ │ ├── 950-0942-Bluetooth-btrtl-Add-support-for-RTL8761B.patch │ │ │ ├── 950-0943-dtoverlays-Add-overlay-for-the-PCA953x-family-of-GPI.patch │ │ │ ├── 950-0944-rtc-rv3028-Write-BSM-and-TCE-TCR-to-EEPROM.patch │ │ │ ├── 950-0945-rtc-rv3028-Refresh-RAM-on-EEPROM-write.patch │ │ │ ├── 950-0946-dt-overlays-Add-PiFace-Digital-Device-Tree-Overlay.patch │ │ │ ├── 950-0947-overlays-Updated-MCP3008-compatible-strings.patch │ │ │ ├── 950-0948-RESET_CONTROLLER-needs-to-be-activated-to-compile-Br.patch │ │ │ ├── 950-0949-media-dvbsky-use-a-single-mutex-and-state-buffers-fo.patch │ │ │ ├── 950-0950-ARM-dts-bcm2711-Enable-support-for-DDR52-eMMC.patch │ │ │ ├── 950-0951-staging-vc04_services-ISP-Fix-dmabuf-error-check-in-.patch │ │ │ ├── 950-0952-ARM-dts-bcm2708.dtsi-Don-t-delete-the-cpus-node.patch │ │ │ ├── 950-0953-ARM-dts-bcm2835-Use-the-L2-non-allocating-alias.patch │ │ │ ├── 950-0954-media-bcm2835-unicam-Drop-WARN-on-uing-direct-cache-.patch │ │ │ ├── 950-0955-media-i2c-tc358743-Only-allow-supported-pixel-fmts-i.patch │ │ │ ├── 950-0956-media-i2c-ov9281-Add-support-for-8-bit-readout.patch │ │ │ ├── 950-0957-overlays-Add-spi0-1cs-and-spi0-2cs.patch │ │ │ ├── 950-0958-overlays-Fix-error-in-README.patch │ │ │ ├── 950-0959-overlays-Minor-README-correction.patch │ │ │ ├── 950-0960-staging-fbtft-Add-support-for-display-variants.patch │ │ │ ├── 950-0961-overlays-Add-adafruit18-and-sainsmart18-overlays.patch │ │ │ ├── 950-0962-ARM-dts-Limit-BT-modem-baud-rate-on-3B.patch │ │ │ ├── 950-0963-overlays-Update-i2c0-overlay-to-disable-the-i2c0mux.patch │ │ │ ├── 950-0964-dt-Remove-duplicate-assignment-for-i2c0-pinctrl-conf.patch │ │ │ ├── 950-0965-overlays-Add-option-for-composite-to-vc4-kms-v3d-pi4.patch │ │ │ ├── 950-0966-minor-typo-in-directions.patch │ │ │ ├── 950-0967-overlays-Regenerate-upstream-pi4-overlay.patch │ │ │ ├── 950-0968-overlays-Add-parameters-to-adafruit18-sainsmart18.patch │ │ │ ├── 950-0969-rpivid_h265-Fix-width-height-typo.patch │ │ │ ├── 950-0970-overlays-Add-extra-CMA-sizes-up-to-512M.patch │ │ │ ├── 950-0971-overlays-Add-note-to-BCM2711-overlays.patch │ │ │ ├── 950-0972-overlays-adafruit18-sainsmart18-default-bgr-to-off.patch │ │ │ ├── 950-0973-net-bcmgenet-Reset-RBUF-on-first-open.patch │ │ │ ├── 950-0974-ASoC-cs42xx8-Only-define-cs42xx8_of_match-once.patch │ │ │ ├── 950-0975-staging-bcm2835-codec-Use-a-define-the-completion-ti.patch │ │ │ ├── 950-0976-staging-bcm2835-codec-Correct-buffer-number-change-o.patch │ │ │ ├── 950-0977-USB-gadget-f_hid-avoid-crashes-and-log-spam.patch │ │ │ ├── 950-0978-Update-hy28b-overlay.dts.patch │ │ │ ├── 950-0979-overlays-Update-display-GPIO-declarations.patch │ │ │ ├── 950-0980-SQUASH-USB-gadget-f_hid-remove-more-spam.patch │ │ │ ├── 950-0981-overlays-Add-sd3078-to-the-i2c-rtc-overlay.patch │ │ │ ├── 950-0982-dwc_otg-initialise-sched_frame-for-periodic-QHs-that.patch │ │ │ ├── 950-0983-staging-bcm2835-camera-Replace-deprecated-V4L2_PIX_F.patch │ │ │ ├── 950-0984-staging-bcm2835-codec-Replace-deprecated-V4L2_PIX_FM.patch │ │ │ ├── 950-0985-ARM-bcm2711-rpi.dts-Unlock-DMA-channels-9-10.patch │ │ │ ├── 950-0986-gpio-Add-gpio-fsm-driver.patch │ │ │ ├── 950-0987-overlays-Add-fsm-demo-overlay.patch │ │ │ ├── 950-0988-overlays-Add-ghost-amp-overlay.patch │ │ │ ├── 950-0989-Bluetooth-Disable-High-Speed-by-default.patch │ │ │ ├── 950-0990-Fixes-a-problem-when-module-probes-before-i2c-module.patch │ │ │ ├── 950-0991-uapi-Update-V4L2_CID_USER_BCM2835_ISP_BASE-due-to-up.patch │ │ │ ├── 950-0992-dtoverlays-Correct-CSI2-settings-for-ov9281.patch │ │ │ ├── 950-0993-xhci-quirks-add-link-TRB-quirk-for-VL805.patch │ │ │ ├── 950-0994-dts-Add-CM4-to-arm64-dt-files.patch │ │ │ ├── 950-0995-dts-Tidy-the-Raspberry-Pi-Makefile-entries.patch │ │ │ ├── 950-0996-staging-bcm2835-audio-Add-disable-headphones-flag.patch │ │ │ ├── 950-0997-ARM-dts-Disable-headphone-audio-on-Zeroes-CM4.patch │ │ │ ├── 950-0998-overlays-Enable-headphone-audio-in-audremap.patch │ │ │ ├── 950-0999-rpisense-fb-Set-pseudo_pallete-to-prevent-crash-on-f.patch │ │ │ ├── 950-1000-PiFi-40-Devicetree-files.patch │ │ │ ├── 950-1001-PiFi-40-driver-Makefile-and-Kconfig.patch │ │ │ ├── 950-1002-dwc_otg-Minimise-header-and-fix-build-warnings.patch │ │ │ ├── 950-1003-gpio-fsm-Fix-a-build-warning.patch │ │ │ ├── 950-1004-rpivid_h625-Fix-build-warnings.patch │ │ │ ├── 950-1005-dwc_otg-Fix-more-build-warnings.patch │ │ │ ├── 950-1006-bcm2708_fb-Fix-a-build-warning.patch │ │ │ ├── 950-1007-bcm2835-pcm-Fix-up-multichannel-pcm-audio.patch │ │ │ ├── 950-1008-watchdog-bcm2835-Ignore-params-after-the-partition-n.patch │ │ │ ├── 950-1009-firmware-raspberrypi-Add-support-for-tryonce-reboot-.patch │ │ │ ├── 950-1010-phy-broadcom-split-out-the-BCM54213PE-from-the-BCM54.patch │ │ │ ├── 950-1011-phy-broadcom-Add-bcm54213pe-configuration.patch │ │ │ ├── 950-1012-Allo-boss2-driver.patch │ │ │ ├── 950-1013-Add-allo-boss2-overlay.patch │ │ │ ├── 950-1014-Revert-mailbox-avoid-timer-start-from-callback.patch │ │ │ ├── 950-1015-ARM-dts-Add-bcm2711-rpi-400.dts.patch │ │ │ ├── 950-1016-overlays-Deprecate-and-delete-the-sdtweak-overlay.patch │ │ │ ├── 950-1017-overlays-Complete-the-sdtweak-excision.patch │ │ │ ├── 950-1018-ARM-dts-bcm27xx-Remove-enable_headphones-setting.patch │ │ │ ├── 950-1019-staging-vcsm-cma-Fix-memory-leak-from-not-detaching-.patch │ │ │ ├── 950-1020-Update-Allo-Piano-Dac-Driver-for-5.4.y-kernels.patch │ │ │ ├── 950-1021-Overlay-Update-Allo-Piano-Plus-dac-driver-for-5.4.y-.patch │ │ │ ├── 950-1022-Update-volume-controls-in-Allo-Piano-Dac-Plus.patch │ │ │ ├── 950-1023-media-i2c-imx219-Selection-compliance-fixes.patch │ │ │ ├── 950-1024-media-bcm2835-unicam-Correctly-handle-error-propagat.patch │ │ │ ├── 950-1025-media-bcm2835-unicam-Return-early-from-stop_streamin.patch │ │ │ ├── 950-1026-media-bcm2835-unicam-Clear-clock-state-when-stopping.patch │ │ │ ├── 950-1027-ARM-dts-CM4-audio-pins-are-not-connected.patch │ │ │ ├── 950-1028-overlays-Add-PCF85063-and-PCF85063A-to-i2c-rtc.patch │ │ │ ├── 950-1029-overlays-Fix-cut-and-paste-error-in-README.patch │ │ │ ├── 950-1030-media-i2c-imx477-Selection-compliance-fixes.patch │ │ │ ├── 950-1031-net-lan78xx-Ack-pending-PHY-ints-when-resetting.patch │ │ │ ├── 950-1032-overlays-mpu6050-Add-addr-parameter.patch │ │ │ ├── 950-1033-overlays-Add-missing-addresses-to-ads1015-ads1115.patch │ │ │ ├── 950-1034-media-i2c-ov5647-Selection-compliance-fixes.patch │ │ │ ├── 950-1035-Add-overlay-for-Seeed-Studio-CAN-BUS-FD-HAT-4034.patch │ │ │ ├── 950-1036-overlays-Rebuild-upstream-with-latest-ovmerge.patch │ │ │ ├── 950-1037-overlays-give-Seeed-Studio-CAN-BUS-FD-HAT-a-v2-postf.patch │ │ │ ├── 950-1038-overlays-Add-overlay-for-Seeed-Studio-CAN-BUS-FD-HAT.patch │ │ │ ├── 950-1039-overlays-add-wm8960-soundcard-overlay.patch │ │ │ ├── 950-1040-overlays-add-spi-override-to-merus-amp-overlay.patch │ │ │ ├── 950-1041-overlays-seeed-can-fd-hat-clarify-how-to-identify-HA.patch │ │ │ ├── 950-1042-uapi-bcm2835-isp-Add-colour-denoise-configuration.patch │ │ │ ├── 950-1043-staging-vc04_services-ISP-Add-colour-denoise-control.patch │ │ │ ├── 950-1044-kbuild-Silence-unavoidable-dtc-overlay-warnings.patch │ │ │ ├── 950-1045-Adds-the-DT-overlays-to-support-Hifiberry-AMP100.patch │ │ │ ├── 950-1046-Enhances-the-Hifiberry-DAC-driver-for-Hifiberry-AMP1.patch │ │ │ ├── 950-1047-ARM-dts-Declare-Pi400-and-CM4-have-no-audio-pins.patch │ │ │ ├── 950-1048-Hifiberry-DAC-ADC-Pro-fix-for-the-PLL-when-changing-.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-4.19 │ │ ├── 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-4.19 │ │ │ ├── 031-v5.1-mips-bcm47xx-Enable-USB-power-on-Netgear-WNDR3400v2.patch │ │ │ ├── 032-v5.4-MIPS-BCM47XX-Add-support-for-Netgear-R6200v1.patch │ │ │ ├── 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 │ │ └── 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 │ ├── bcm53xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── uci-defaults │ │ │ │ │ └── 09_fix_crc │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.19 │ │ ├── config-5.4 │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── compressed │ │ │ │ └── cache-v7-min.S │ │ ├── generic │ │ │ └── target.mk │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ ├── patches-4.19 │ │ │ ├── 030-v4.20-0001-ARM-dts-BCM5301X-Specify-flash-partitions.patch │ │ │ ├── 031-v4.21-0001-ARM-dts-BCM5301X-Relicense-BCM47081-BCM4709-files-to.patch │ │ │ ├── 031-v4.21-0002-ARM-dts-BCM5301X-Relicense-BCM47094-file-to-the-GPL-.patch │ │ │ ├── 031-v4.21-0003-ARM-dts-BCM53573-Relicense-Tenda-AC9-file-to-the-GPL.patch │ │ │ ├── 031-v4.21-0004-ARM-dts-BCM53573-Relicense-SoC-file-to-the-GPL-2.0-M.patch │ │ │ ├── 031-v4.21-0005-ARM-dts-BCM5301X-Add-basic-DT-for-Linksys-EA6500-V2.patch │ │ │ ├── 031-v4.21-0006-ARM-dts-BCM5301X-Describe-Northstar-pins-mux-control.patch │ │ │ ├── 032-v5.1-0001-ARM-dts-BCM53573-Relicense-Luxul-files-to-the-GPL-2..patch │ │ │ ├── 032-v5.1-0002-ARM-dts-BCM5301X-Add-basic-DT-for-Phicomm-K3.patch │ │ │ ├── 080-v4.20-0001-pinctrl-bcm-add-Northstar-driver.patch │ │ │ ├── 080-v4.20-0002-pinctrl-bcm-ns-Use-uintptr_t-for-casting-data.patch │ │ │ ├── 081-v4.21-0001-pinctrl-bcm-ns-support-updated-DT-binding-as-syscon-.patch │ │ │ ├── 130-ARM-dts-BCM5301X-Add-DT-for-Luxul-XWC-2000.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 │ │ │ ├── 400-mtd-spi-nor-detect-JEDEC-incompatible-w25q128-using-.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 │ │ │ └── 905-BCM53573-minor-hacks.patch │ │ ├── patches-5.4 │ │ │ ├── 130-ARM-dts-BCM5301X-Add-DT-for-Luxul-XWC-2000.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 │ │ │ ├── 500-UBI-Detect-EOF-mark-and-erase-all-remaining-blocks.patch │ │ │ ├── 700-b53-add-hacky-CPU-port-fixes-for-devices-not-using-p.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 │ │ │ │ │ └── 09_fix_crc │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── 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-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-nucom-r5010un-v2.dts │ │ │ ├── bcm6328-sagem-fast-2704-v2.dts │ │ │ ├── bcm6328-sercomm-ad1018-nor.dts │ │ │ ├── bcm6328-sercomm-ad1018.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-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-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.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 434-nand-raw-use-write_oob_raw-for-MTD_OPS_AUTO_OOB-mode.patch │ │ │ ├── 500-MIPS-BCM63XX-populate-the-compatible-to-board_info-l.patch │ │ │ ├── 501-board_bcm6318-brcm-bcm96318ref.patch │ │ │ ├── 502-board_bcm6318-brcm-bcm96318ref-p300.patch │ │ │ ├── 503-board_bcm6318-d-link-dsl-275xb-d.patch │ │ │ ├── 504-board_bcm6318-sagem-fast-2704n.patch │ │ │ ├── 505-board_bcm6318-comtrend-ar-5315u.patch │ │ │ ├── 521-MIPS-BCM63XX-add-96328avng-reference-board.patch │ │ │ ├── 522-MIPS-BCM63XX-add-963281TAN-reference-board.patch │ │ │ ├── 523-board_bcm6328-d-link-dsl-274xb-f.patch │ │ │ ├── 524-board_bcm6328-adb-a4001n1.patch │ │ │ ├── 525-board_bcm6328-comtrend-ar-5387un.patch │ │ │ ├── 526-board_bcm6328-comtrend-ar-5381u.patch │ │ │ ├── 527-board_bcm6328-sagem-fast-2704-v2.patch │ │ │ ├── 528-board_bcm6328-adb-a4001n.patch │ │ │ ├── 529-board_bcm6328-nucom-r5010un-v2.patch │ │ │ ├── 530-board_bcm6328-sercomm-ad1018.patch │ │ │ ├── 531-board-bcm6328-adb-pdg-a4001n-a-000-1a1-ax.patch │ │ │ ├── 541-board-bcm6338-d-link-dsl-2640u.patch │ │ │ ├── 542-board_bcm6338-dynalink-rta1320.patch │ │ │ ├── 551-board_bcm6345-dynalink-rta770bw-rta770w.patch │ │ │ ├── 561-board-bcm6348-D4PW.patch │ │ │ ├── 562-board_bcm6348-t-com-speedport-w-500v.patch │ │ │ ├── 563-board_bcm6348-tecom-gw6000-gw6200.patch │ │ │ ├── 564-board-bcm6348-telsey-magic.patch │ │ │ ├── 565-board_bcm6348-bt-voyager-2500v-bb.patch │ │ │ ├── 566-board_bcm6348-bt-voyager-2110.patch │ │ │ ├── 567-MIPS-BCM63XX-add-inventel-Livebox-support.patch │ │ │ ├── 568-board_bcm6348-comtrend-ct-536plus-ct-5621.patch │ │ │ ├── 569-board_bcm6348-comtrend-ct-5365.patch │ │ │ ├── 570-board_bcm6348-telsey-cpva502plus.patch │ │ │ ├── 571-board_bcm6348-netgear-dg834g-v4.patch │ │ │ ├── 572-board_bcm6348-sagem-fast-2604.patch │ │ │ ├── 573-board_bcm6348-asmax-ar-1004g.patch │ │ │ ├── 601-board-bcm6358-DWV-S0_fixes.patch │ │ │ ├── 602-board-bcm6358-sfr-neufbox-4.patch │ │ │ ├── 603-board-bcm6358-telsey-cpva642.patch │ │ │ ├── 604-board_bcm6358-d-link-dsl-274xb-c.patch │ │ │ ├── 605-board_bcm6358-huawei-echolife-hg553.patch │ │ │ ├── 606-board_bcm6358-t-com-speedport-w-303v.patch │ │ │ ├── 607-board_bcm6358-comtrend-ct-6373.patch │ │ │ ├── 608-board_bcm6358-d-link-dva-g3810bn-tl.patch │ │ │ ├── 609-board_bcm6358-huawei-echolife-hg556.patch │ │ │ ├── 610-board_bcm6359-huawei-echolife-hg520v.patch │ │ │ ├── 611-board_bcm6358-bt-home-hub-2-a.patch │ │ │ ├── 631-board_bcm6361-sfr-neufbox-6.patch │ │ │ ├── 632-board_bcm6362-sagem-fast-2504n.patch │ │ │ ├── 633-board-bcm6362-netgear-dgnd3700-v2.patch │ │ │ ├── 634-board-bcm6362-huawei-hg253s-v2.patch │ │ │ ├── 651-bcm63xx-add-support-for-96368MVWG-board.patch │ │ │ ├── 652-bcm63xx-add-support-for-96368MVNgr-board.patch │ │ │ ├── 653-board_bcm6369-comtrend-wap-5813n.patch │ │ │ ├── 654-board_bcm6368-comtrend-vr-3025u.patch │ │ │ ├── 655-board_bcm6368-comtrend-vr-3025un.patch │ │ │ ├── 656-board_bcm6368-zyxel-p870hw-51a-v2.patch │ │ │ ├── 657-board_bcm6368-netgear-dgnd3700-v1.patch │ │ │ ├── 658-board_bcm6368-huawei-echolife-hg655b.patch │ │ │ ├── 659-board_bcm6368-comtrend-vr-3026e.patch │ │ │ ├── 660-board_bcm6368-huawei-echolife-hg622.patch │ │ │ ├── 661-board_bcm6369-netgear-evg2000.patch │ │ │ ├── 662-board_bcm6368-adb-av4202n.patch │ │ │ ├── 663-board_bcm6368-observa-vh4032n.patch │ │ │ ├── 664-board_bcm6368-actiontec-r1000h.patch │ │ │ ├── 681-board_bcm63269-brcm-bcm963269bhr.patch │ │ │ ├── 682-board_bcm63268-inteno-vg50.patch │ │ │ ├── 683-board_bcm63268-brcm-bcm963268bu-p300.patch │ │ │ ├── 684-board_bcm63168-sky-sr102.patch │ │ │ ├── 685-board-bcm63168-comtrend-vr-3032u.patch │ │ │ ├── 686-board-bcm63169-comtrend-vg-8050.patch │ │ │ ├── 687-board-bcm63167-sercomm-h500-s.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 │ ├── cns3xxx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── init.d │ │ │ │ │ └── netdev-cpu │ │ │ └── lib │ │ │ │ ├── cns3xxx.sh │ │ │ │ ├── preinit │ │ │ │ └── 01_sysinfo │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.19 │ │ ├── files │ │ │ ├── arch │ │ │ │ └── arm │ │ │ │ │ └── mach-cns3xxx │ │ │ │ │ ├── cns3xxx_fiq.S │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── headsmp.S │ │ │ │ │ ├── hotplug.c │ │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ └── smp.h │ │ │ │ │ ├── laguna.c │ │ │ │ │ └── platsmp.c │ │ │ ├── drivers │ │ │ │ ├── i2c │ │ │ │ │ └── busses │ │ │ │ │ │ └── i2c-cns3xxx.c │ │ │ │ ├── net │ │ │ │ │ └── ethernet │ │ │ │ │ │ └── cavium │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── cns3xxx_eth.c │ │ │ │ └── spi │ │ │ │ │ └── spi-cns3xxx.c │ │ │ └── include │ │ │ │ └── linux │ │ │ │ └── platform_data │ │ │ │ └── cns3xxx.h │ │ ├── image │ │ │ └── Makefile │ │ └── patches-4.19 │ │ │ ├── 000-cns3xxx_arch_include.patch │ │ │ ├── 001-arm_openwrt_machtypes.patch │ │ │ ├── 010-arm_introduce-dma-fiq-irq-broadcast.patch │ │ │ ├── 020-watchdog_support.patch │ │ │ ├── 025-smp_support.patch │ │ │ ├── 030-pcie_clock.patch │ │ │ ├── 040-fiq_support.patch │ │ │ ├── 045-twd_base.patch │ │ │ ├── 055-pcie_io.patch │ │ │ ├── 060-pcie_abort.patch │ │ │ ├── 065-pcie_skip_inactive.patch │ │ │ ├── 070-i2c_support.patch │ │ │ ├── 075-spi_support.patch │ │ │ ├── 080-sata_support.patch │ │ │ ├── 090-timers.patch │ │ │ ├── 093-add-virt-pci-io-mapping.patch │ │ │ ├── 095-gpio_support.patch │ │ │ ├── 097-l2x0_cmdline_disable.patch │ │ │ ├── 100-laguna_support.patch │ │ │ ├── 101-laguna_sdhci_card_detect.patch │ │ │ ├── 110-pci_isolated_interrupts.patch │ │ │ ├── 130-Extend-PCIE_BUS_PEER2PEER-to-set-MRSS-128-to-fix-CNS3xxx-BM-DMA..patch │ │ │ ├── 200-broadcom_phy_reinit.patch │ │ │ └── 210-dwc2_defaults.patch │ ├── 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-4.19 │ │ ├── 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-4.19 │ │ │ ├── 0003-pinctrl-gemini-Drop-noisy-debug-prints.patch │ │ │ ├── 0005-mtd-physmap_of-Move-custom-initialization.patch │ │ │ ├── 0006-mtd-physmap_of_gemini-Handle-pin-control.patch │ │ │ ├── 0008-ARM-dts-Enable-Gemini-flash-access.patch │ │ │ ├── 0009-mtd-partitions-Add-RedBoot-FIS-DT-bindings.patch │ │ │ ├── 0010-mtd-partitions-Add-second-compatible-for-redboot.patch │ │ │ ├── 0011-ARM-dts-Fix-up-SQ201-flash-access.patch │ │ │ ├── 0012-ARM-dts-Blank-D-Link-DIR-685-console.patch │ │ │ ├── 0013-usb-host-fotg2-add-silicon-clock-handling.patch │ │ │ ├── 0014-usb-host-add-DT-bindings-for-faraday-fotg2.patch │ │ │ ├── 0015-usb-host-fotg2-add-device-tree-probing.patch │ │ │ ├── 0016-usb-host-fotg2-add-Gemini-specific-handling.patch │ │ │ ├── 0018-ARM-dts-Add-the-FOTG210-USB-host-to-Gemini-boards.patch │ │ │ ├── 0019-ARM-dts-gemini-Indent-DIR-685-partition-table.patch │ │ │ ├── 0020-ARM-dts-Augment-DIR-685-partition-table-for-OpenWrt.patch │ │ │ ├── 0022-RM-dts-gemini-Switch-to-redboot-partition-parsing.patch │ │ │ ├── 0023-ARM-dts-gemini-Mount-root-from-mtdblock3.patch │ │ │ └── 0024-ARM-dts-gemini-Fix-up-confused-pin-settings.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-4.14 │ │ │ ├── 010-Kbuild-don-t-hardcode-path-to-awk-in-scripts-ld-vers.patch │ │ │ ├── 011-kbuild-export-SUBARCH.patch │ │ │ ├── 012-kbuild-add-macro-for-controlling-warnings-to-linux-c.patch │ │ │ ├── 013-disable-Wattribute-alias-warning-for-SYSCALL_DEFINEx.patch │ │ │ ├── 020-backport_netfilter_rtcache.patch │ │ │ ├── 025-tcp-allow-drivers-to-tweak-TSQ-logic.patch │ │ │ ├── 030-USB-serial-option-fix-dwm-158-3g-modem-interface.patch │ │ │ ├── 030-v4.17-0001-usb-dwc2-add-support-for-host-mode-external-vbus-sup.patch │ │ │ ├── 030-v4.17-0002-usb-dwc2-dwc2_vbus_supply_init-fix-error-check.patch │ │ │ ├── 040-v4.17-0001-mtd-move-code-adding-master-MTD-out-of-mtd_add_devic.patch │ │ │ ├── 040-v4.17-0002-mtd-get-rid-of-the-mtd_add_device_partitions.patch │ │ │ ├── 041-v4.17-0001-mtd-partitions-add-of_match_table-parser-matching-fo.patch │ │ │ ├── 041-v4.17-0002-mtd-rename-ofpart-parser-to-fixed-partitions-as-it-f.patch │ │ │ ├── 041-v4.17-0003-mtd-ofpart-add-of_match_table-with-fixed-partitions.patch │ │ │ ├── 042-v4.18-0001-mtd-move-code-adding-registering-partitions-to-the-p.patch │ │ │ ├── 043-v4.18-mtd-bcm47xxpart-improve-handling-TRX-partition-size.patch │ │ │ ├── 044-v4.18-mtd-bcm47xxpart-add-of_match_table-with-a-new-DT-bin.patch │ │ │ ├── 045-v4.19-mtd-parsers-trx-add-of_match_table-with-the-new-DT-b.patch │ │ │ ├── 046-v4.19-mtd-partitions-use-DT-info-for-parsing-partitions-wi.patch │ │ │ ├── 047-v4.21-mtd-keep-original-flags-for-every-struct-mtd_info.patch │ │ │ ├── 048-v4.21-mtd-improve-calculating-partition-boundaries-when-ch.patch │ │ │ ├── 050-v4.19-f2fs-skip-verifying-block-address-non-regular-inode.patch │ │ │ ├── 071-v4.15-0001-net-bgmac-enable-master-mode-for-BCM54210E-and-B5021.patch │ │ │ ├── 076-v4.15-0001-net-phy-broadcom-support-new-device-flag-for-setting.patch │ │ │ ├── 080-v5.1-0001-bcma-keep-a-direct-pointer-to-the-struct-device.patch │ │ │ ├── 080-v5.1-0002-bcma-use-dev_-printing-functions.patch │ │ │ ├── 085-v4.16-0001-i2c-gpio-Enable-working-over-slow-can_sleep-GPIOs.patch │ │ │ ├── 090-net-bridge-add-support-for-port-isolation.patch │ │ │ ├── 095-Allow-class-e-address-assignment-via-ifconfig-ioctl.patch │ │ │ ├── 101-arm-cns3xxx-use-actual-size-reads-for-PCIe.patch │ │ │ ├── 183-net-qmi_wwan-add-Wistron-Neweb-D19Q1.patch │ │ │ ├── 270-batman-adv-Let-packet.h-include-its-headers-directly.patch │ │ │ ├── 271-batman-adv-Remove-usage-of-BIT-x-in-packet.h.patch │ │ │ ├── 272-batman-adv-Remove-kernel-fixed-width-types-in-packet.patch │ │ │ ├── 273-batman-adv-Convert-packet.h-to-uapi-header.patch │ │ │ ├── 274-flow_dissector-Parse-batman-adv-unicast-headers.patch │ │ │ ├── 289-v4.16-netfilter-add-defines-for-arp-decnet-max-hooks.patch │ │ │ ├── 290-v4.16-netfilter-core-make-nf_unregister_net_hooks-simple-w.patch │ │ │ ├── 291-v4.16-netfilter-core-remove-synchronize_net-call-if-nfqueu.patch │ │ │ ├── 292-v4.16-netfilter-core-free-hooks-with-call_rcu.patch │ │ │ ├── 293-v4.16-netfilter-reduce-size-of-hook-entry-point-locations.patch │ │ │ ├── 294-v4.16-netfilter-reduce-hook-array-sizes-to-what-is-needed.patch │ │ │ ├── 295-v4.16-netfilter-don-t-allocate-space-for-decnet-hooks-unle.patch │ │ │ ├── 296-v4.16-netfilter-don-t-allocate-space-for-arp-bridge-hooks-.patch │ │ │ ├── 297-v4.16-netfilter-core-pass-hook-number-family-and-device-to.patch │ │ │ ├── 298-v4.16-netfilter-core-add-nf_remove_net_hook.patch │ │ │ ├── 298-v4.16-netfilter-core-pass-family-as-parameter-to-nf_remove.patch │ │ │ ├── 299-v4.16-netfilter-core-support-for-NFPROTO_INET-hook-registr.patch │ │ │ ├── 300-v4.16-netfilter-nf_tables-explicit-nft_set_pktinfo-call-fr.patch │ │ │ ├── 301-v4.16-netfilter-core-only-allow-one-nat-hook-per-hook-poin.patch │ │ │ ├── 302-v4.16-netfilter-nf_tables_inet-don-t-use-multihook-infrast.patch │ │ │ ├── 303-v4.16-netfilter-nf_tables-remove-multihook-chains-and-fami.patch │ │ │ ├── 304-v4.16-netfilter-move-checksum-indirection-to-struct-nf_ipv.patch │ │ │ ├── 305-v4.16-netfilter-move-checksum_partial-indirection-to-struc.patch │ │ │ ├── 306-v4.16-netfilter-remove-saveroute-indirection-in-struct-nf_.patch │ │ │ ├── 307-v4.16-netfilter-move-route-indirection-to-struct-nf_ipv6_o.patch │ │ │ ├── 308-v4.16-netfilter-move-reroute-indirection-to-struct-nf_ipv6.patch │ │ │ ├── 309-v4.16-netfilter-remove-route_key_size-field-in-struct-nf_a.patch │ │ │ ├── 310-v4.16-netfilter-remove-struct-nf_afinfo-and-its-helper-fun.patch │ │ │ ├── 311-v4.16-netfilter-nf_tables_arp-don-t-set-forward-chain.patch │ │ │ ├── 312-v4.16-netfilter-nf_tables-remove-hooks-from-family-definit.patch │ │ │ ├── 313-v4.16-netfilter-remove-defensive-check-on-malformed-packet.patch │ │ │ ├── 314-v4.16-netfilter-meta-secpath-support.patch │ │ │ ├── 315-v4.15-netfilter-conntrack-move-nf_ct_netns_-get-put-to-cor.patch │ │ │ ├── 320-v4.16-netfilter-nf_conntrack-add-IPS_OFFLOAD-status-bit.patch │ │ │ ├── 321-v4.16-netfilter-nf_tables-add-flow-table-netlink-frontend.patch │ │ │ ├── 322-v4.16-netfilter-add-generic-flow-table-infrastructure.patch │ │ │ ├── 323-v4.16-netfilter-flow-table-support-for-IPv4.patch │ │ │ ├── 324-v4.16-netfilter-flow-table-support-for-IPv6.patch │ │ │ ├── 325-v4.16-netfilter-flow-table-support-for-the-mixed-IPv4-IPv6.patch │ │ │ ├── 326-v4.16-netfilter-nf_tables-flow-offload-expression.patch │ │ │ ├── 327-v4.16-netfilter-nf_tables-remove-nhooks-field-from-struct-.patch │ │ │ ├── 328-v4.16-netfilter-nf_tables-fix-a-typo-in-nf_tables_getflowt.patch │ │ │ ├── 329-v4.16-netfilter-improve-flow-table-Kconfig-dependencies.patch │ │ │ ├── 330-v4.16-netfilter-nf_tables-remove-flag-field-from-struct-nf.patch │ │ │ ├── 331-v4.16-netfilter-nf_tables-no-need-for-struct-nft_af_info-t.patch │ │ │ ├── 332-v4.16-netfilter-nf_tables-remove-struct-nft_af_info-parame.patch │ │ │ ├── 334-v4.15-netfilter-nf_tables-fix-potential-NULL-ptr-deref-in-.patch │ │ │ ├── 335-v4.16-netfilter-nf_tables-add-single-table-list-for-all-fa.patch │ │ │ ├── 336-v4.15-netfilter-exit_net-cleanup-check-added.patch │ │ │ ├── 337-v4.16-netfilter-nf_tables-get-rid-of-pernet-families.patch │ │ │ ├── 338-v4.16-netfilter-nf_tables-get-rid-of-struct-nft_af_info-ab.patch │ │ │ ├── 339-v4.16-netfilter-nft_flow_offload-wait-for-garbage-collecto.patch │ │ │ ├── 340-v4.16-netfilter-nft_flow_offload-no-need-to-flush-entries-.patch │ │ │ ├── 341-v4.16-netfilter-nft_flow_offload-move-flowtable-cleanup-ro.patch │ │ │ ├── 342-v4.16-netfilter-nf_tables-fix-flowtable-free.patch │ │ │ ├── 343-netfilter-nft_flow_offload-handle-netdevice-events-f.patch │ │ │ ├── 344-v4.16-netfilter-nf_tables-allocate-handle-and-delete-objec.patch │ │ │ ├── 345-v4.16-netfilter-nf_flow_offload-fix-use-after-free-and-a-r.patch │ │ │ ├── 346-v4.16-netfilter-flowtable-infrastructure-depends-on-NETFIL.patch │ │ │ ├── 347-v4.16-netfilter-remove-duplicated-include.patch │ │ │ ├── 348-v4.18-netfilter-nf_flow_table-use-IP_CT_DIR_-values-for-FL.patch │ │ │ ├── 349-v4.18-netfilter-nf_flow_table-clean-up-flow_offload_alloc.patch │ │ │ ├── 350-v4.18-ipv6-make-ip6_dst_mtu_forward-inline.patch │ │ │ ├── 351-v4.18-netfilter-nf_flow_table-cache-mtu-in-struct-flow_off.patch │ │ │ ├── 352-v4.18-netfilter-nf_flow_table-rename-nf_flow_table.c-to-nf.patch │ │ │ ├── 353-v4.18-netfilter-nf_flow_table-move-ipv4-offload-hook-code-.patch │ │ │ ├── 354-v4.18-netfilter-nf_flow_table-move-ip-header-check-out-of-.patch │ │ │ ├── 355-v4.18-netfilter-nf_flow_table-move-ipv6-offload-hook-code-.patch │ │ │ ├── 356-v4.18-netfilter-nf_flow_table-relax-mixed-ipv4-ipv6-flowta.patch │ │ │ ├── 357-v4.18-netfilter-nf_flow_table-move-init-code-to-nf_flow_ta.patch │ │ │ ├── 358-v4.18-netfilter-nf_flow_table-fix-priv-pointer-for-netdev-.patch │ │ │ ├── 359-v4.18-netfilter-nf_flow_table-track-flow-tables-in-nf_flow.patch │ │ │ ├── 360-v4.18-netfilter-nf_flow_table-make-flow_offload_dead-inlin.patch │ │ │ ├── 361-v4.18-netfilter-nf_flow_table-add-a-new-flow-state-for-tea.patch │ │ │ ├── 362-v4.18-netfilter-nf_flow_table-in-flow_offload_lookup-skip-.patch │ │ │ ├── 363-v4.18-netfilter-nf_flow_table-add-support-for-sending-flow.patch │ │ │ ├── 364-v4.18-netfilter-nf_flow_table-tear-down-TCP-flows-if-RST-o.patch │ │ │ ├── 365-v4.16-netfilter-nf_flow_table-fix-checksum-when-handling-D.patch │ │ │ ├── 366-netfilter-nft_flow_offload-Fix-reverse-route-lookup.patch │ │ │ ├── 367-v4.18-netfilter-nf_flow_table-add-missing-condition-for-TC.patch │ │ │ ├── 368-v4.18-netfilter-nf_flow_table-fix-offloading-connections-w.patch │ │ │ ├── 369-v4.18-netfilter-nf_flow_table-attach-dst-to-skbs.patch │ │ │ ├── 370-netfilter-nf_flow_table-fix-offloaded-connection-tim.patch │ │ │ ├── 371-netfilter-nf_flow_table-fix-up-ct-state-of-flows-aft.patch │ │ │ ├── 372-netfilter-nft_flow_offload-fix-interaction-with-vrf-.patch │ │ │ ├── 380-v5.3-net-sched-Introduce-act_ctinfo-action.patch │ │ │ ├── 400-v4.16-leds-trigger-Introduce-a-NETDEV-trigger.patch │ │ │ ├── 401-v5.2-leds-trigger-netdev-fix-refcnt-leak-on-interface-ren.patch │ │ │ ├── 402-leds-trigger-netdev-fix-handling-on-interface-rename.patch │ │ │ ├── 410-mtd-fix-calculating-partition-end-address.patch │ │ │ ├── 420-enable-CONFIG_MMC_SDHCI_IO_ACCESSORS.patch │ │ │ ├── 500-v4.20-ubifs-Fix-default-compression-selection-in-ubifs.patch │ │ │ ├── 900-v4.18-firmware-dmi-Add-access-to-the-SKU-ID-string.patch │ │ │ └── 950-tty-serial-exar-generalize-rs485-setup.patch │ │ ├── backport-4.19 │ │ │ ├── 010-Kbuild-don-t-hardcode-path-to-awk-in-scripts-ld-vers.patch │ │ │ ├── 011-kbuild-export-SUBARCH.patch │ │ │ ├── 020-backport_netfilter_rtcache.patch │ │ │ ├── 047-v4.21-mtd-keep-original-flags-for-every-struct-mtd_info.patch │ │ │ ├── 048-v4.21-mtd-improve-calculating-partition-boundaries-when-ch.patch │ │ │ ├── 080-v5.1-0001-bcma-keep-a-direct-pointer-to-the-struct-device.patch │ │ │ ├── 080-v5.1-0002-bcma-use-dev_-printing-functions.patch │ │ │ ├── 095-Allow-class-e-address-assignment-via-ifconfig-ioctl.patch │ │ │ ├── 101-arm-cns3xxx-use-actual-size-reads-for-PCIe.patch │ │ │ ├── 200-v5.2-usb-dwc2-Set-lpm-mode-parameters-depend-on-HW-configuration.patch │ │ │ ├── 210-arm64-sve-Disentangle-uapi-asm-ptrace.h-from-uapi-as.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 │ │ │ ├── 380-v5.3-net-sched-Introduce-act_ctinfo-action.patch │ │ │ ├── 390-v5.1-sch_cake-Make-the-dual-modes-fairer.patch │ │ │ ├── 391-v5.1-sch_cake-Permit-use-of-connmarks-as-tin-classifiers.patch │ │ │ ├── 392-v5.1-sch_cake-Interpret-fwmark-parameter-as-a-bitmask.patch │ │ │ ├── 393-v5.5-sch_cake-drop-unused-variable-tin_quantum_prio.patch │ │ │ ├── 394-v5.4-sch_cake-Add-missing-NLA-policy-entry-TCA_CAKE_SPLIT.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 │ │ │ ├── 410-mtd-fix-calculating-partition-end-address.patch │ │ │ ├── 450-v5.0-mtd-spinand-winbond-Add-support-for-W25N01GV.patch │ │ │ ├── 451-v5.0-mtd-spinand-Add-initial-support-for-Toshiba-TC58CVG2.patch │ │ │ ├── 452-v5.0-mtd-spinand-add-support-for-GigaDevice-GD5FxGQ4xA.patch │ │ │ ├── 455-v5.1-mtd-spinand-Add-support-for-all-Toshiba-Memory-produ.patch │ │ │ ├── 456-v5.1-mtd-spinand-Add-support-for-GigaDevice-GD5F1GQ4UExxG.patch │ │ │ ├── 460-v5.0-mtd-spi-nor-Add-support-for-mx25u12835f.patch │ │ │ ├── 460-v5.3-mtd-spinand-Define-macros-for-page-read-ops-with-thr.patch │ │ │ ├── 461-v5.3-mtd-spinand-Add-support-for-two-byte-device-IDs.patch │ │ │ ├── 462-v5.3-mtd-spinand-Add-support-for-GigaDevice-GD5F1GQ4UFxxG.patch │ │ │ ├── 463-v5.3-mtd-spinand-Add-initial-support-for-Paragon-PN26G0xA.patch │ │ │ ├── 464-v5.6-mtd-spi-nor-Add-4B_OPCODES-flag-to-w25q256.patch │ │ │ ├── 499-v4.22-iio-add-IIO_MASSCONCENTRATION-channel-type.patch │ │ │ ├── 500-v5.1-iio-chemical-add-support-for-Sensirion-SPS30-sensor.patch │ │ │ ├── 501-v5.1-iio-chemical-sps30-add-support-for-self-cleaning.patch │ │ │ ├── 502-v5.1-iio-chemical-sps30-allow-changing-self-cleaning-peri.patch │ │ │ ├── 503-v5.1-iio-chemical-sps30-remove-printk-format-specifier.patch │ │ │ ├── 504-v5.1-iio-chemical-sps30-fix-a-loop-timeout-test.patch │ │ │ ├── 505-v5.1-iio-chemical-sps30-Supress-some-switch-fallthrough-w.patch │ │ │ ├── 506-v5.1-iio-chemical-sps30-Explicity-truncate-constant-by-ma.patch │ │ │ ├── 507-v5.6-iio-chemical-sps30-fix-missing-triggered-buffer-depe.patch │ │ │ ├── 700-v5.1-net-phylink-only-call-mac_config-during-resolve-when.patch │ │ │ ├── 701-v5.2-net-phylink-ensure-inband-AN-works-correctly.patch │ │ │ ├── 702-v4.20-net-ethernet-Add-helper-for-MACs-which-support-asym-.patch │ │ │ ├── 703-v4.20-net-ethernet-Add-helper-for-set_pauseparam-for-Asym-.patch │ │ │ ├── 704-v4.20-net-phy-Stop-with-excessive-soft-reset.patch │ │ │ ├── 705-v5.1-net-phy-provide-full-set-of-accessor-functions-to-MM.patch │ │ │ ├── 706-v5.1-net-phy-add-register-modifying-helpers-returning-1-o.patch │ │ │ ├── 707-v5.1-net-phy-add-genphy_c45_check_and_restart_aneg.patch │ │ │ ├── 708-v5.3-net-phylink-remove-netdev-from-phylink-mii-ioctl-emu.patch │ │ │ ├── 709-v5.3-net-phylink-support-for-link-gpio-interrupt.patch │ │ │ ├── 710-v5.3-net-phy-allow-Clause-45-access-via-mii-ioctl.patch │ │ │ ├── 711-v5.3-net-sfp-add-mandatory-attach-detach-methods-for-sfp-.patch │ │ │ ├── 712-v5.3-net-sfp-remove-sfp-bus-use-of-netdevs.patch │ │ │ ├── 713-v5.2-net-phylink-avoid-reducing-support-mask.patch │ │ │ ├── 714-v5.3-net-sfp-Stop-SFP-polling-and-interrupt-handling-duri.patch │ │ │ ├── 715-v5.3-net-phylink-don-t-start-and-stop-SGMII-PHYs-in-SFP-m.patch │ │ │ ├── 716-v5.4-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 │ │ │ ├── 740-v5.5-net-phy-avoid-matching-all-ones-clause-45-PHY-IDs.patch │ │ │ ├── 741-v5.5-net-phylink-fix-link-mode-modification-in-PHY-mode.patch │ │ │ ├── 744-v5.5-net-sfp-soft-status-and-control-support.patch │ │ │ ├── 825-v5.8-spi-rb4xx-null-pointer-bug-fix.patch │ │ │ └── 826-v5.8-spi-rb4xx-update-driver-to-be-device-tree-aware.patch │ │ ├── backport-5.4 │ │ │ ├── 010-Kbuild-don-t-hardcode-path-to-awk-in-scripts-ld-vers.patch │ │ │ ├── 011-kbuild-export-SUBARCH.patch │ │ │ ├── 020-backport_netfilter_rtcache.patch │ │ │ ├── 030-modpost-add-a-helper-to-get-data-pointed-by-a-symbol.patch │ │ │ ├── 031-modpost-refactor-namespace_from_kstrtabns-to-not-har.patch │ │ │ ├── 040-ARM-8918-2-only-build-return_address-if-needed.patch │ │ │ ├── 041-v5.5-arm64-Implement-optimised-checksum-routine.patch │ │ │ ├── 042-v5.5-arm64-csum-Fix-pathological-zero-length-calls.patch │ │ │ ├── 070-v5.5-MIPS-BPF-Restore-MIPS32-cBPF-JIT.patch │ │ │ ├── 300-MIPS-Exclude-more-dsemul-code-when-CONFIG_MIPS_FP_SU.patch │ │ │ ├── 310-v5.6-mips-vdso-fix-jalr-t9-crash-in-vdso-code.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 │ │ │ ├── 410-mtd-fix-calculating-partition-end-address.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── config-4.14 │ │ ├── config-4.19 │ │ ├── config-5.4 │ │ ├── files │ │ │ ├── Documentation │ │ │ │ └── networking │ │ │ │ │ └── adm6996.txt │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ └── fw │ │ │ │ │ └── myloader │ │ │ │ │ ├── Makefile │ │ │ │ │ └── myloader.c │ │ │ ├── drivers │ │ │ │ ├── mtd │ │ │ │ │ ├── mtdsplit │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mtdsplit.c │ │ │ │ │ │ ├── mtdsplit.h │ │ │ │ │ │ ├── mtdsplit_bcm_wfi.c │ │ │ │ │ │ ├── mtdsplit_brnimage.c │ │ │ │ │ │ ├── mtdsplit_eva.c │ │ │ │ │ │ ├── mtdsplit_fit.c │ │ │ │ │ │ ├── mtdsplit_jimage.c │ │ │ │ │ │ ├── mtdsplit_lzma.c │ │ │ │ │ │ ├── mtdsplit_minor.c │ │ │ │ │ │ ├── mtdsplit_seama.c │ │ │ │ │ │ ├── mtdsplit_squashfs.c │ │ │ │ │ │ ├── mtdsplit_tplink.c │ │ │ │ │ │ ├── mtdsplit_trx.c │ │ │ │ │ │ ├── mtdsplit_uimage.c │ │ │ │ │ │ └── mtdsplit_wrgg.c │ │ │ │ │ └── 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 │ │ │ │ │ │ ├── mvsw61xx.c │ │ │ │ │ │ ├── mvsw61xx.h │ │ │ │ │ │ ├── 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_softconfig.c │ │ │ │ │ ├── routerboot.c │ │ │ │ │ └── routerboot.h │ │ │ └── include │ │ │ │ ├── linux │ │ │ │ ├── ar8216_platform.h │ │ │ │ ├── ath5k_platform.h │ │ │ │ ├── ath9k_platform.h │ │ │ │ ├── myloader.h │ │ │ │ ├── platform_data │ │ │ │ │ └── adm6996-gpio.h │ │ │ │ ├── routerboot.h │ │ │ │ ├── rt2x00_platform.h │ │ │ │ ├── rtl8366.h │ │ │ │ ├── rtl8367.h │ │ │ │ └── switch.h │ │ │ │ └── uapi │ │ │ │ └── linux │ │ │ │ └── switch.h │ │ ├── hack-4.14 │ │ │ ├── 204-module_strip.patch │ │ │ ├── 207-disable-modorder.patch │ │ │ ├── 210-darwin_scripts_include.patch │ │ │ ├── 211-host_tools_portability.patch │ │ │ ├── 212-byteshift_portability.patch │ │ │ ├── 214-spidev_h_portability.patch │ │ │ ├── 220-gc_sections.patch │ │ │ ├── 221-module_exports.patch │ │ │ ├── 230-openwrt_lzma_options.patch │ │ │ ├── 250-netfilter_depends.patch │ │ │ ├── 251-sound_kconfig.patch │ │ │ ├── 259-regmap_dynamic.patch │ │ │ ├── 260-crypto_test_dependencies.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-mt29f_spinand-fix-memleak.patch │ │ │ ├── 531-debloat_lzma.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 │ │ │ ├── 702-phy_add_aneg_done_function.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 │ │ │ ├── 930-crashlog.patch │ │ │ ├── 952-net-conntrack-events-support-multiple-registrant.patch │ │ │ └── 953-net-patch-linux-kernel-to-support-shortcut-fe.patch │ │ ├── hack-4.19 │ │ │ ├── 204-module_strip.patch │ │ │ ├── 207-disable-modorder.patch │ │ │ ├── 210-darwin_scripts_include.patch │ │ │ ├── 212-byteshift_portability.patch │ │ │ ├── 214-spidev_h_portability.patch │ │ │ ├── 220-gc_sections.patch │ │ │ ├── 221-module_exports.patch │ │ │ ├── 230-openwrt_lzma_options.patch │ │ │ ├── 250-netfilter_depends.patch │ │ │ ├── 251-sound_kconfig.patch │ │ │ ├── 259-regmap_dynamic.patch │ │ │ ├── 260-crypto_test_dependencies.patch │ │ │ ├── 280-rfkill-stubs.patch │ │ │ ├── 290-nvmem-make-CONFIG_NVMEM-tristate-again.patch │ │ │ ├── 300-MIPS-r4k_cache-use-more-efficient-cache-blast.patch │ │ │ ├── 301-mips_image_cmdline_hack.patch │ │ │ ├── 321-powerpc_crtsavres_prereq.patch │ │ │ ├── 531-debloat_lzma.patch │ │ │ ├── 550-loop-Report-EOPNOTSUPP-properly.patch │ │ │ ├── 640-bridge-only-accept-EAP-locally.patch │ │ │ ├── 641-sch_cake-fix-IP-protocol-handling-in-the-presence-of.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 │ │ │ ├── 702-phy_add_aneg_done_function.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 │ │ │ ├── 930-crashlog.patch │ │ │ ├── 952-net-conntrack-events-support-multiple-registrant.patch │ │ │ └── 953-net-patch-linux-kernel-to-support-shortcut-fe.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-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 │ │ │ ├── 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-unlock_mx25l6406e_with_4bit_block_protect.patch │ │ │ ├── 531-debloat_lzma.patch │ │ │ ├── 550-loop-Report-EOPNOTSUPP-properly.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 │ │ │ ├── 702-phy_add_aneg_done_function.patch │ │ │ ├── 703-add_vsc8504_support.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 │ │ │ ├── 991-platform-x86-pcengines-apuv2-revert-simswitch.patch │ │ │ ├── 998-add-ndo-do-ioctl.patch │ │ │ └── 999-display-model-name-in-proc-cpuinfo.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-4.14 │ │ │ ├── 0931-w1-gpio-fix-problem-with-platfom-data-in-w1-gpio.patch │ │ │ ├── 102-MIPS-only-process-negative-stack-offsets-on-stack-tr.patch │ │ │ ├── 103-MIPS-perf-ath79-Fix-perfcount-IRQ-assignment.patch │ │ │ ├── 110-ehci_hcd_ignore_oc.patch │ │ │ ├── 120-Fix-alloc_node_mem_map-with-ARCH_PFN_OFFSET-calcu.patch │ │ │ ├── 130-add-linux-spidev-compatible-si3210.patch │ │ │ ├── 131-spi-use-gpio_set_value_cansleep-for-setting-chipsele.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 │ │ │ ├── 161-mtd-part-add-generic-parsing-of-linux-part-probe.patch │ │ │ ├── 171-usb-dwc2-Fix-inefficient-copy-of-unaligned-buffers.patch │ │ │ ├── 180-net-phy-at803x-add-support-for-AT8032.patch │ │ │ ├── 190-2-5-e1000e-Fix-wrong-comment-related-to-link-detection.patch │ │ │ ├── 201-extra_optimization.patch │ │ │ ├── 203-kallsyms_uncompressed.patch │ │ │ ├── 205-backtrace_module_info.patch │ │ │ ├── 220-optimize_inlining.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 │ │ │ ├── 304-mips_disable_fpu.patch │ │ │ ├── 305-mips_module_reloc.patch │ │ │ ├── 306-mips_mem_functions_performance.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 │ │ │ ├── 340-MIPS-mm-remove-mips_dma_mapping_error.patch │ │ │ ├── 341-MIPS-mm-remove-no-op-dma_map_ops-where-possible.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 │ │ │ ├── 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 │ │ │ ├── 440-block2mtd_init.patch │ │ │ ├── 441-block2mtd_probe.patch │ │ │ ├── 450-mtd-m25p80-allow-fallback-from-spi_flash_read-to-reg.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 │ │ │ ├── 475-mtd-spi-nor-Add-Winbond-w25q128jv-support.patch │ │ │ ├── 476-mtd-spi-nor-add-eon-en25q128.patch │ │ │ ├── 477-mtd-add-spi-nor-add-mx25u3235f.patch │ │ │ ├── 478-mtd-spi-nor-Add-support-for-XM25QH64A-and-XM25QH128A.patch │ │ │ ├── 479-mtd-spi-nor-add-eon-en25qh32.patch │ │ │ ├── 479-mtd-spi-nor-add-eon-en25qh64.patch │ │ │ ├── 479-mtd-spi-nor-add-xtx-xt25f128b.patch │ │ │ ├── 480-mtd-set-rootfs-to-be-root-dev.patch │ │ │ ├── 481-mtd-spi-nor-add-support-for-Gigadevice-GD25D05.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 │ │ │ ├── 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 │ │ │ ├── 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-of_get_mac_address_mtd.patch │ │ │ ├── 690-net-add-support-for-threaded-NAPI-polling.patch │ │ │ ├── 703-phy-add-detach-callback-to-struct-phy_driver.patch │ │ │ ├── 734-net-phy-at803x-allow-to-configure-via-pdata.patch │ │ │ ├── 735-net-phy-at803x-fix-at8033-sgmii-mode.patch │ │ │ ├── 810-pci_disable_common_quirks.patch │ │ │ ├── 811-pci_disable_usb_common_quirks.patch │ │ │ ├── 834-ledtrig-libata.patch │ │ │ └── 920-mangle_bootargs.patch │ │ ├── pending-4.19 │ │ │ ├── 0931-w1-gpio-fix-problem-with-platfom-data-in-w1-gpio.patch │ │ │ ├── 102-MIPS-only-process-negative-stack-offsets-on-stack-tr.patch │ │ │ ├── 103-MIPS-perf-ath79-Fix-perfcount-IRQ-assignment.patch │ │ │ ├── 110-ehci_hcd_ignore_oc.patch │ │ │ ├── 120-Fix-alloc_node_mem_map-with-ARCH_PFN_OFFSET-calcu.patch │ │ │ ├── 130-add-linux-spidev-compatible-si3210.patch │ │ │ ├── 131-spi-use-gpio_set_value_cansleep-for-setting-chipsele.patch │ │ │ ├── 132-spi-spi-gpio-fix-crash-when-num-chipselects-is-0.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 │ │ │ ├── 201-extra_optimization.patch │ │ │ ├── 203-kallsyms_uncompressed.patch │ │ │ ├── 205-backtrace_module_info.patch │ │ │ ├── 220-optimize_inlining.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 │ │ │ ├── 304-mips_disable_fpu.patch │ │ │ ├── 305-mips_module_reloc.patch │ │ │ ├── 306-mips_mem_functions_performance.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 │ │ │ ├── 341-MIPS-mm-remove-no-op-dma_map_ops-where-possible.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 │ │ │ ├── 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 │ │ │ ├── 440-block2mtd_init.patch │ │ │ ├── 441-block2mtd_probe.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 │ │ │ ├── 475-mtd-spi-nor-Add-Winbond-w25q128jv-support.patch │ │ │ ├── 476-mtd-spi-nor-add-eon-en25q128.patch │ │ │ ├── 477-mtd-add-spi-nor-add-mx25u3235f.patch │ │ │ ├── 479-mtd-spi-nor-add-eon-en25qh64.patch │ │ │ ├── 479-mtd-spi-nor-add-xtx-xt25f128b.patch │ │ │ ├── 480-mtd-set-rootfs-to-be-root-dev.patch │ │ │ ├── 481-mtd-spi-nor-add-support-for-Gigadevice-GD25D05.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 │ │ │ ├── 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 │ │ │ ├── 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-of_get_mac_address_mtd.patch │ │ │ ├── 690-net-add-support-for-threaded-NAPI-polling.patch │ │ │ ├── 703-phy-add-detach-callback-to-struct-phy_driver.patch │ │ │ ├── 735-net-phy-at803x-fix-at8033-sgmii-mode.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 │ │ │ ├── 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 │ │ │ ├── 834-ledtrig-libata.patch │ │ │ └── 920-mangle_bootargs.patch │ │ └── pending-5.4 │ │ │ ├── 0931-w1-gpio-fix-problem-with-platfom-data-in-w1-gpio.patch │ │ │ ├── 102-MIPS-only-process-negative-stack-offsets-on-stack-tr.patch │ │ │ ├── 110-ehci_hcd_ignore_oc.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 │ │ │ ├── 306-mips_mem_functions_performance.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-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 │ │ │ ├── 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 │ │ │ ├── 440-block2mtd_init.patch │ │ │ ├── 441-block2mtd_probe.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 │ │ │ ├── 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-of_get_mac_address_mtd.patch │ │ │ ├── 690-net-add-support-for-threaded-NAPI-polling.patch │ │ │ ├── 703-phy-add-detach-callback-to-struct-phy_driver.patch │ │ │ ├── 735-net-phy-at803x-fix-at8033-sgmii-mode.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 │ │ │ ├── 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-02-net-ethernet-mtk_eth_soc-fix-rx-vlan-offload.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 │ │ │ ├── 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 │ │ │ └── 920-mangle_bootargs.patch │ ├── imx6 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── imx6.sh │ │ │ │ ├── preinit │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.19 │ │ ├── config-5.4 │ │ ├── files │ │ │ └── firmware │ │ │ │ └── imx │ │ │ │ └── sdma │ │ │ │ └── sdma-imx6q.bin │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── bootscript-apalis │ │ │ ├── bootscript-cubox │ │ │ ├── bootscript-ventana │ │ │ └── recovery-apalis │ │ ├── patches-4.19 │ │ │ ├── 001-ARM-dts-imx-Add-GW5907-board-support.patch │ │ │ ├── 002-ARM-dts-imx-Add-GW5910-board-support.patch │ │ │ ├── 003-ARM-dts-imx-Add-GW5913-board-support.patch │ │ │ ├── 004-ARM-dts-imx-Add-GW5912-board-support.patch │ │ │ ├── 100-bootargs.patch │ │ │ ├── 301-apalis-ixora-dts-leds.patch │ │ │ └── 302-apalis-ixora-dts-reset-button.patch │ │ ├── patches-5.4 │ │ │ ├── 001-ARM-dts-imx-Add-GW5907-board-support.patch │ │ │ ├── 002-ARM-dts-imx-Add-GW5910-board-support.patch │ │ │ ├── 003-ARM-dts-imx-Add-GW5913-board-support.patch │ │ │ ├── 004-ARM-dts-imx-Add-GW5912-board-support.patch │ │ │ ├── 005-v5.7-ARM-dts-imx6qdl-gw553x-add-lsm9ds1-iio-imu-magn-supp.patch │ │ │ ├── 006-v5.7-ARM-dts-imx-ventana-add-fxos8700-on-gateworks-boards.patch │ │ │ ├── 006-v5.7-ARM-dts-imx6qdl-gw5910-add-CC1352-UART.patch │ │ │ ├── 006-v5.8-ARM-dts-imx6qdl-gw552x-add-USB-OTG-support.patch │ │ │ ├── 007-v5.8-ARM-dts-imx6qdl-gw560x-add-lsm9ds1-iio-imu-magn-supp.patch │ │ │ ├── 008-v5.8-ARM-dts-imx6qdl-gw5904-add-lsm9ds1-iio-imu-magn-supp.patch │ │ │ ├── 009-v5.8-ARM-dts-imx6qdl-gw5910-add-support-for-bcm4330-bt.patch │ │ │ ├── 010-v5.8-ARM-dts-imx6qdl-gw5910-fix-wlan-regulator.patch │ │ │ ├── 100-bootargs.patch │ │ │ ├── 301-apalis-ixora-dts-leds.patch │ │ │ └── 302-apalis-ixora-dts-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 │ │ │ │ │ └── net │ │ │ │ │ │ └── 21_adjust_network │ │ │ │ ├── init.d │ │ │ │ │ ├── adjust_network │ │ │ │ │ └── bootcount │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── adjust_network.sh │ │ │ │ ├── preinit │ │ │ │ ├── 05_set_iface_mac_ipq40xx.sh │ │ │ │ └── 06_set_preinit_iface_ipq40xx.sh │ │ │ │ └── upgrade │ │ │ │ ├── linksys.sh │ │ │ │ ├── openmesh.sh │ │ │ │ └── platform.sh │ │ ├── config-4.19 │ │ ├── config-5.4 │ │ ├── files-5.4 │ │ │ └── drivers │ │ │ │ └── net │ │ │ │ └── ethernet │ │ │ │ └── qualcomm │ │ │ │ └── essedma │ │ │ │ ├── Makefile │ │ │ │ ├── edma.c │ │ │ │ ├── edma.h │ │ │ │ ├── edma_axi.c │ │ │ │ ├── edma_ethtool.c │ │ │ │ └── ess_edma.h │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── qcom-ipq4018-a42.dts │ │ │ │ ├── qcom-ipq4018-ap120c-ac.dts │ │ │ │ ├── qcom-ipq4018-cs-w3-wd1200g-eup.dts │ │ │ │ ├── qcom-ipq4018-dap-2610.dts │ │ │ │ ├── qcom-ipq4018-ea6350v3.dts │ │ │ │ ├── qcom-ipq4018-eap1300.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-jalapeno.dts │ │ │ │ ├── qcom-ipq4018-jalapeno.dtsi │ │ │ │ ├── qcom-ipq4018-meshpoint-one.dts │ │ │ │ ├── qcom-ipq4018-nbg6617.dts │ │ │ │ ├── qcom-ipq4018-rt-ac58u.dts │ │ │ │ ├── qcom-ipq4018-wre6606.dts │ │ │ │ ├── qcom-ipq4019-a62.dts │ │ │ │ ├── qcom-ipq4019-ap.dk04.1-c1.dts │ │ │ │ ├── qcom-ipq4019-ap.dk04.1.dtsi │ │ │ │ ├── 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-habanero-dvk.dts │ │ │ │ ├── qcom-ipq4019-map-ac2200.dts │ │ │ │ ├── qcom-ipq4019-r619ac-128m.dts │ │ │ │ ├── qcom-ipq4019-r619ac.dts │ │ │ │ ├── qcom-ipq4019-r619ac.dtsi │ │ │ │ ├── qcom-ipq4019-rt-acrh17.dts │ │ │ │ ├── qcom-ipq4019-rtl30vw.dts │ │ │ │ ├── qcom-ipq4019-u4019-32m.dts │ │ │ │ ├── qcom-ipq4019-u4019.dtsi │ │ │ │ ├── qcom-ipq4019-wpj419.dts │ │ │ │ ├── qcom-ipq4019-wr142ac-nand.dts │ │ │ │ ├── qcom-ipq4019-wr142ac.dts │ │ │ │ ├── qcom-ipq4019-wr142ac.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-mr33.dts │ │ ├── generic │ │ │ └── target.mk │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-4.19 │ │ │ ├── 039-crypto-qce-add-CRYPTO_ALG_KERN_DRIVER_ONLY-flag.patch │ │ │ ├── 040-crypto-qce-switch-to-skcipher-API.patch │ │ │ ├── 041-crypto-qce-fix-ctr-aes-qce-block-chunk-sizes.patch │ │ │ ├── 042-crypto-qce-fix-xts-aes-qce-key-sizes.patch │ │ │ ├── 043-crypto-qce-save-a-sg-table-slot-for-result-buf.patch │ │ │ ├── 044-crypto-qce-update-the-skcipher-IV.patch │ │ │ ├── 046-crypto-qce-initialize-fallback-only-for-AES.patch │ │ │ ├── 047-crypto-qce-use-cryptlen-when-adding-extra-sgl.patch │ │ │ ├── 048-crypto-qce-use-AES-fallback-for-small-requests.patch │ │ │ ├── 049-crypto-qce-handle-AES-XTS-cases-that-qce-fails.patch │ │ │ ├── 051-crypto-qce-allow-building-only-hashes-ciphers.patch │ │ │ ├── 070-v4.20-soc-qcom-spm-add-SCM-probe-dependency.patch │ │ │ ├── 071-01-v4.20-ARM-dts-qcom-ipq4019-use-v2-of-the-kpss-bringup-mech.patch │ │ │ ├── 071-02-ipq40xx-Fix-booting-secondary-cores.patch │ │ │ ├── 072-v4.20-ARM-dts-qcom-ipq4019-add-cpu-operating-points-for-cp.patch │ │ │ ├── 074-ARM-qcom-Add-IPQ4019-SoC-support.patch │ │ │ ├── 075-dt-bindings-phy-qcom-ipq4019-usb-add-binding-documen.patch │ │ │ ├── 076-phy-qcom-ipq4019-usb-add-driver-for-QCOM-IPQ4019.patch │ │ │ ├── 077-qcom-ipq4019-add-USB-devicetree-nodes.patch │ │ │ ├── 080-ARM-dts-qcom-add-gpio-ranges-property.patch │ │ │ ├── 081-clk-fix-apss-cpu-overclocking.patch │ │ │ ├── 086-ipq40xx-fix-high-resolution-timer.patch │ │ │ ├── 088-v5.6-regulator-add-IPQ4019-SDHCI-VQMMC-LDO-driver.patch │ │ │ ├── 089-v5.5-ARM-dts-qcom-ipq4019-Add-SDHCI-controller-node.patch │ │ │ ├── 100-arm-dts-IPQ4019-add-SDHCI-VQMMC-LDO-node.patch │ │ │ ├── 303-spi-nor-enable-4B-opcodes-for-mx25l25635f.patch │ │ │ ├── 304-mtd-spi-nor-Add-support-for-mx25r3235f.patch │ │ │ ├── 400-mmc-sdhci-sdhci-msm-use-sdhci_set_clock-instead-of-s.patch │ │ │ ├── 700-net-add-qualcomm-mdio.patch │ │ │ ├── 701-dts-ipq4019-add-mdio-node.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-ar40xx-abort-probe-on-missig-phy.patch │ │ │ ├── 710-net-add-qualcomm-essedma-ethernet-driver.patch │ │ │ ├── 711-dts-ipq4019-add-ethernet-essedma-node.patch │ │ │ ├── 712-mr33-essedma.patch │ │ │ ├── 713-essedma-alloc-skb-ip-align.patch │ │ │ ├── 714-essedma-add-fix-for-memory-allocation.patch │ │ │ ├── 715-essedma-refine-txq-to-be-adaptive-of-cpus-and-netdev.patch │ │ │ ├── 716-essedma-reduce-write-reg.patch │ │ │ ├── 850-soc-add-qualcomm-syscon.patch │ │ │ ├── 900-dts-ipq4019-ap-dk01.1.patch │ │ │ ├── 901-arm-boot-add-dts-files.patch │ │ │ ├── 997-device_tree_cmdline.patch │ │ │ └── 999-ipq40xx-unlock-cpu-frequency.patch │ │ ├── patches-5.4 │ │ │ ├── 039-crypto-qce-add-CRYPTO_ALG_KERN_DRIVER_ONLY-flag.patch │ │ │ ├── 040-crypto-qce-switch-to-skcipher-API.patch │ │ │ ├── 041-crypto-qce-fix-ctr-aes-qce-block-chunk-sizes.patch │ │ │ ├── 042-crypto-qce-fix-xts-aes-qce-key-sizes.patch │ │ │ ├── 043-crypto-qce-save-a-sg-table-slot-for-result-buf.patch │ │ │ ├── 044-crypto-qce-update-the-skcipher-IV.patch │ │ │ ├── 046-crypto-qce-initialize-fallback-only-for-AES.patch │ │ │ ├── 047-crypto-qce-use-cryptlen-when-adding-extra-sgl.patch │ │ │ ├── 048-crypto-qce-use-AES-fallback-for-small-requests.patch │ │ │ ├── 049-crypto-qce-handle-AES-XTS-cases-that-qce-fails.patch │ │ │ ├── 051-crypto-qce-allow-building-only-hashes-ciphers.patch │ │ │ ├── 071-02-ipq40xx-Fix-booting-secondary-cores.patch │ │ │ ├── 074-ARM-qcom-Add-IPQ4019-SoC-support.patch │ │ │ ├── 075-dt-bindings-phy-qcom-ipq4019-usb-add-binding-documen.patch │ │ │ ├── 076-phy-qcom-ipq4019-usb-add-driver-for-QCOM-IPQ4019.patch │ │ │ ├── 077-qcom-ipq4019-add-USB-devicetree-nodes.patch │ │ │ ├── 080-ARM-dts-qcom-add-gpio-ranges-property.patch │ │ │ ├── 081-clk-fix-apss-cpu-overclocking.patch │ │ │ ├── 086-ipq40xx-fix-high-resolution-timer.patch │ │ │ ├── 088-v5.6-regulator-add-IPQ4019-SDHCI-VQMMC-LDO-driver.patch │ │ │ ├── 089-v5.5-ARM-dts-qcom-ipq4019-Add-SDHCI-controller-node.patch │ │ │ ├── 100-arm-dts-IPQ4019-add-SDHCI-VQMMC-LDO-node.patch │ │ │ ├── 300-clk-qcom-ipq4019-add-ess-reset.patch │ │ │ ├── 304-mtd-spi-nor-Add-support-for-mx25r3235f.patch │ │ │ ├── 400-mmc-sdhci-sdhci-msm-use-sdhci_set_clock-instead-of-s.patch │ │ │ ├── 700-net-add-qualcomm-mdio.patch │ │ │ ├── 701-dts-ipq4019-add-mdio-node.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 │ │ │ ├── 710-net-add-qualcomm-essedma-ethernet-driver.patch │ │ │ ├── 711-dts-ipq4019-add-ethernet-essedma-node.patch │ │ │ ├── 715-essedma-refine-txq-to-be-adaptive-of-cpus-and-netdev.patch │ │ │ ├── 716-essedma-reduce-write-reg.patch │ │ │ ├── 721-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 │ │ │ ├── 997-device_tree_cmdline.patch │ │ │ └── 999-ipq40xx-unlock-cpu-frequency.patch │ │ └── profiles │ │ │ └── 00-default.mk │ ├── 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 │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 05_set_iface_mac_ipq806x.sh │ │ │ │ └── upgrade │ │ │ │ ├── buffalo.sh │ │ │ │ ├── linksys.sh │ │ │ │ ├── platform.sh │ │ │ │ ├── ruijie.sh │ │ │ │ └── zyxel.sh │ │ ├── config-4.19 │ │ ├── config-5.4 │ │ ├── files-4.19 │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── qcom-ipq8064-ap148.dts │ │ │ │ ├── qcom-ipq8064-ap161.dts │ │ │ │ ├── qcom-ipq8064-c2600.dts │ │ │ │ ├── qcom-ipq8064-d7800.dts │ │ │ │ ├── qcom-ipq8064-db149.dts │ │ │ │ ├── qcom-ipq8064-ea8500.dts │ │ │ │ ├── qcom-ipq8064-r7500.dts │ │ │ │ ├── qcom-ipq8064-r7500v2.dts │ │ │ │ ├── qcom-ipq8064-rg-mtfi-m520.dts │ │ │ │ ├── qcom-ipq8064-v2.0.dtsi │ │ │ │ ├── qcom-ipq8064-vr2600v.dts │ │ │ │ ├── qcom-ipq8064-wg2600hp.dts │ │ │ │ ├── qcom-ipq8064-wpq864.dts │ │ │ │ ├── qcom-ipq8064-wxr-2533dhp.dts │ │ │ │ ├── qcom-ipq8064.dtsi │ │ │ │ ├── qcom-ipq8065-nbg6817.dts │ │ │ │ ├── qcom-ipq8065-r7800.dts │ │ │ │ └── qcom-ipq8065.dtsi │ │ ├── files-5.4 │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── 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-r7500.dts │ │ │ │ ├── qcom-ipq8064-r7500v2.dts │ │ │ │ ├── qcom-ipq8064-rg-mtfi-m520.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-r7800.dts │ │ │ │ └── qcom-ipq8065.dtsi │ │ ├── generic │ │ │ └── target.mk │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ ├── patches-4.19 │ │ │ ├── 0001-dtbindings-qcom_adm-Fix-channel-specifiers.patch │ │ │ ├── 0002-dmaengine-Add-ADM-driver.patch │ │ │ ├── 0030-clk-Disable-i2c-device-on-gsbi4.patch │ │ │ ├── 0031-mtd-add-SMEM-parser-for-QCOM-platforms.patch │ │ │ ├── 0032-phy-add-qcom-dwc3-phy.patch │ │ │ ├── 0033-ARM-qcom-automatically-select-PCI_DOMAINS-if-PCI-is-.patch │ │ │ ├── 0034-0001-ARM-Add-Krait-L2-register-accessor-functions.patch │ │ │ ├── 0034-0002-clk-qcom-Add-support-for-High-Frequency-PLLs-HFPLLs.patch │ │ │ ├── 0034-0003-clk-qcom-Add-HFPLL-driver.patch │ │ │ ├── 0034-0004-dt-bindings-clock-Document-qcom-hfpll.patch │ │ │ ├── 0034-0005-clk-qcom-Add-MSM8960-APQ8064-s-HFPLLs.patch │ │ │ ├── 0034-0006-clk-qcom-Add-IPQ806X-s-HFPLLs.patch │ │ │ ├── 0034-0007-clk-qcom-Add-support-for-Krait-clocks.patch │ │ │ ├── 0034-0008-clk-qcom-Add-KPSS-ACC-GCC-driver.patch │ │ │ ├── 0034-0009-dt-bindings-arm-Document-qcom-kpss-gcc.patch │ │ │ ├── 0034-0010-clk-qcom-Add-Krait-clock-controller-driver.patch │ │ │ ├── 0034-0011-dt-bindings-clock-Document-qcom-krait-cc.patch │ │ │ ├── 0034-0012-clk-qcom-Add-safe-switch-hook-for-krait-mux-clocks.patch │ │ │ ├── 0035-qcom-cpufreq-nvmem-qcm-kyrp_make_Some_variables_static.patch │ │ │ ├── 0036-qcom-cpufreq-nvmem-Re-organise-kryo-cpufreq-driver.patch │ │ │ ├── 0037-qcom-cpufreq-nvmem-Refactor-the-driver.patch │ │ │ ├── 0038-qcom-cpufreq-nvmem-Add-support-for-krait-based-socs.patch │ │ │ ├── 0049-PM-OPP-Support-adjusting-OPP-voltages-at-runtime.patch │ │ │ ├── 0051-PM-OPP-Add-a-helper-to-get-an-opp-regulator-for-devi.patch │ │ │ ├── 0052-PM-OPP-Update-the-voltage-tolerance-when-adjusting-t.patch │ │ │ ├── 0053-regulator-add-smb208-support.patch │ │ │ ├── 0054-cpufreq-dt-Handle-OPP-voltage-adjust-events.patch │ │ │ ├── 0055-cpufreq-dt-Add-L2-frequency-scaling-support.patch │ │ │ ├── 0056-cpufreq-dt-Add-missing-rcu-locks.patch │ │ │ ├── 0057-add-fab-scaling-support-with-cpufreq.patch │ │ │ ├── 0059-ARM-cpuidle-Add-cpuidle-support-for-QCOM-cpus.patch │ │ │ ├── 0060-HACK-arch-arm-force-ZRELADDR-on-arch-qcom.patch │ │ │ ├── 0061-mtd-rootfs-conflicts-with-OpenWrt-auto-mounting.patch │ │ │ ├── 0062-ipq806x-gcc-Added-the-enable-regs-and-mask-for-PRNG.patch │ │ │ ├── 0063-1-ipq806x-tsens-driver.patch │ │ │ ├── 0063-2-tsens-support-configurable-interrupts.patch │ │ │ ├── 0063-3-tsens-fix-kernel-4_19.patch │ │ │ ├── 0063-4-ip806x-tsense-rework-driver.patch │ │ │ ├── 0064-clk-clk-rpm-fixes.patch │ │ │ ├── 0065-arm-override-compiler-flags.patch │ │ │ ├── 0067-generic-Mangle-bootloader-s-kernel-arguments.patch │ │ │ ├── 0069-arm-boot-add-dts-files.patch │ │ │ ├── 0070-qcom-spm-fix-probe-order.patch │ │ │ ├── 0071-1-PCI-qcom-Fixed-IPQ806x-specific-clocks.patch │ │ │ ├── 0071-2-PCI-qcom-Fixed-IPQ806x-PCIE-reset-changes.patch │ │ │ ├── 0071-3-PCI-qcom-Fixed-IPQ806x-PCIE-init-changes.patch │ │ │ ├── 0071-5-PCI-qcom-Programming-the-PCIE-iATU-for-IPQ806x.patch │ │ │ ├── 0071-6-PCI-qcom-Force-GEN1-support.patch │ │ │ ├── 0071-7-pcie-Set-PCIE-MRRS-and-MPS-to-256B.patch │ │ │ ├── 0071-8-pcie-qcom-Fixed-pcie_phy_clk-branch-issue.patch │ │ │ ├── 0071-9-pcie-qcom-change-duplicate-pci-reset-to-phy-reset.patch │ │ │ ├── 0072-add-ipq806x-with-no-clocks.patch │ │ │ ├── 0073-pinctrl-qom-use-scm_call-to-route-GPIO-irq-to-Apps.patch │ │ │ ├── 0075-ipq8064-pinctrl-Fixed-missing-RGMII-pincontrol-defin.patch │ │ │ ├── 080-ARM-dts-qcom-add-gpio-ranges-property.patch │ │ │ └── 850-soc-add-qualcomm-syscon.patch │ │ ├── patches-5.4 │ │ │ ├── 0001-dtbindings-qcom_adm-Fix-channel-specifiers.patch │ │ │ ├── 0002-dmaengine-Add-ADM-driver.patch │ │ │ ├── 0030-clk-Disable-i2c-device-on-gsbi4.patch │ │ │ ├── 0031-mtd-add-SMEM-parser-for-QCOM-platforms.patch │ │ │ ├── 0033-ARM-qcom-automatically-select-PCI_DOMAINS-if-PCI-is-.patch │ │ │ ├── 0049-PM-OPP-Support-adjusting-OPP-voltages-at-runtime.patch │ │ │ ├── 0051-PM-OPP-Add-a-helper-to-get-an-opp-regulator-for-devi.patch │ │ │ ├── 0052-PM-OPP-Update-the-voltage-tolerance-when-adjusting-t.patch │ │ │ ├── 0054-cpufreq-dt-Handle-OPP-voltage-adjust-events.patch │ │ │ ├── 0055-cpufreq-dt-Add-L2-frequency-scaling-support.patch │ │ │ ├── 0056-cpufreq-dt-Add-missing-rcu-locks.patch │ │ │ ├── 0057-add-fab-scaling-support-with-cpufreq.patch │ │ │ ├── 0059-ARM-cpuidle-Add-cpuidle-support-for-QCOM-cpus.patch │ │ │ ├── 0060-HACK-arch-arm-force-ZRELADDR-on-arch-qcom.patch │ │ │ ├── 0061-mtd-rootfs-conflicts-with-OpenWrt-auto-mounting.patch │ │ │ ├── 0063-1-ipq806x-tsens-driver.patch │ │ │ ├── 0063-2-tsens-support-configurable-interrupts.patch │ │ │ ├── 0063-3-tsens-fix-kernel-5_4.patch │ │ │ ├── 0063-4-ip806x-tsense-rework-driver.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 │ │ │ ├── 080-v5.7-ARM-dts-qcom-add-gpio-ranges-property.patch │ │ │ ├── 081-v5.8-ARM-dts-qcom-add-scm-definition-to-ipq806x.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-v5.8-pinctrl-qom-use-scm_call-to-route-GPIO-irq-to-Apps.patch │ │ │ ├── 087-v5.8-ipq8064-pinctrl-Fixed-missing-RGMII-pincontrol-defin.patch │ │ │ ├── 088-v5.8-watchdog-qcom-wdt-disable-pretimeout-on-timer-platfo.patch │ │ │ ├── 089-v5.8-ipq806x-gcc-Added-the-enable-regs-and-mask-for-PRNG.patch │ │ │ ├── 090-v5.8-clk-clk-rpm-fixes.patch │ │ │ ├── 091-v5.8-regulator-add-smb208-support.patch │ │ │ ├── 092-1-v5.7-qcom-cpufreq-nvmem-Add-support-for-krait-based-socs.patch │ │ │ ├── 092-2-v5.7-cpufreq-qcom-fix-wrong-compatible-binding.patch │ │ │ ├── 093-4-v5.8-ipq806x-PCI-qcom-Use-bulk-clk-api-and-assert-on-error.patch │ │ │ ├── 093-7-v5.8-ipq806x-PCI-qcom-Add-ipq8064-rev2-variant.patch │ │ │ ├── 093-8-v5.8-ipq806x-PCI-qcom-Support-pci-speed-set-for-ipq806x.patch │ │ │ ├── 094-v5.7-ipq806x-net-mdio-add-ipq8064-mdio-driver.patch │ │ │ ├── 095-1-v5.9-phy-qualcomm-add-qcom-ipq806x-dwc-usb-phy-driver.patch │ │ │ ├── 095-2-v5.9-phy-qualcomm-fix-setting-of-tx_deamp_3_5db-when-device-property-read-fails.patch │ │ │ ├── 850-soc-add-qualcomm-syscon.patch │ │ │ ├── 851-add-gsbi1-dts.patch │ │ │ ├── 900-arm-add-cmdline-override.patch │ │ │ └── 997-device_tree_cmdline.patch │ │ └── profiles │ │ │ └── 00-default.mk │ ├── ipq807x │ │ ├── Makefile │ │ ├── config-default │ │ ├── image │ │ │ └── Makefile │ │ └── profiles │ │ │ └── default.mk │ ├── 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.4 │ │ ├── files-5.4 │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── kirkwood-e4200-v2.dts │ │ │ │ ├── kirkwood-ea3500.dts │ │ │ │ ├── kirkwood-ea4500.dts │ │ │ │ ├── kirkwood-goflexhome.dts │ │ │ │ ├── kirkwood-nsa310b.dts │ │ │ │ ├── kirkwood-nsa310s.dts │ │ │ │ └── kirkwood-on100.dts │ │ ├── image │ │ │ └── Makefile │ │ ├── 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 │ │ │ ├── 201-enable-sata-port-specific-led-triggers.patch │ │ │ ├── 202-linksys-find-active-root.patch │ │ │ └── 203-blackarmor-nas220.patch │ │ └── profiles │ │ │ └── 00-default.mk │ ├── lantiq │ │ ├── Makefile │ │ ├── ase │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.19 │ │ │ ├── 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-4.19 │ │ ├── config-5.4 │ │ ├── falcon │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.19 │ │ │ ├── config-5.4 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── files-4.19 │ │ │ └── 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_fritz7360-v2.dts │ │ │ │ ├── vr9_avm_fritz7360sl.dts │ │ │ │ ├── vr9_avm_fritz7362sl.dts │ │ │ │ ├── vr9_avm_fritz736x.dtsi │ │ │ │ ├── vr9_avm_fritz7412.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 │ │ ├── files-5.4 │ │ │ └── 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_fritz7360-v2.dts │ │ │ │ ├── vr9_avm_fritz7360sl.dts │ │ │ │ ├── vr9_avm_fritz7362sl.dts │ │ │ │ ├── vr9_avm_fritz736x.dtsi │ │ │ │ ├── vr9_avm_fritz7412.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 │ │ ├── files │ │ │ └── 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-4.19 │ │ │ ├── 0001-MIPS-lantiq-add-pcie-driver.patch │ │ │ ├── 0004-MIPS-lantiq-add-atm-hack.patch │ │ │ ├── 0005-lantiq_etop-pass-struct-device-to-DMA-API-functions.patch │ │ │ ├── 0006-MIPS-lantiq-pass-struct-device-to-DMA-API-functions.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 │ │ │ ├── 0022-MTD-m25p80-allow-loading-mtd-name-from-OF.patch │ │ │ ├── 0023-NET-PHY-add-led-support-for-intel-xway.patch │ │ │ ├── 0024-MIPS-lantiq-autoselect-soc-rev-matching-fw.patch │ │ │ ├── 0025-NET-MIPS-lantiq-adds-xrx200-net.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 │ │ ├── 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-4.19 │ │ │ ├── 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-4.19 │ │ │ ├── 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-4.19 │ │ │ ├── config-5.4 │ │ │ ├── profiles │ │ │ └── 00-default.mk │ │ │ └── target.mk │ ├── layerscape │ │ ├── Makefile │ │ ├── README │ │ ├── armv7 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── armv8_64b │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ ├── 01_led │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 03_gpio_switches │ │ │ └── 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.4 │ │ │ ├── 301-arch-0001-arm-kernel-utilize-hrtimer-based-broadcast.patch │ │ │ ├── 301-arch-0002-arm64-add-support-to-remap-kernel-cacheable-memory-t.patch │ │ │ ├── 301-arch-0003-arm64-pgtable-add-support-to-map-cacheable-and-non-s.patch │ │ │ ├── 301-arch-0004-arm64-add-ioremap-for-normal-cacheable-non-shareable.patch │ │ │ ├── 301-arch-0005-arch-arm-add-ARM-specific-fucntions-required-for-ehc.patch │ │ │ ├── 301-arch-0006-export-arch_setup_dma_ops.patch │ │ │ ├── 301-arch-0007-arm-dma-mapping-export-arch_setup_dma_ops.patch │ │ │ ├── 301-arch-0008-arm-add-new-non-shareable-ioremap.patch │ │ │ ├── 301-arch-0009-arm-add-pgprot_cached-and-pgprot_cached_ns-support.patch │ │ │ ├── 301-arch-0010-arm64-add-stage-2-cache-able-non-shareable-page-type.patch │ │ │ ├── 301-arch-0011-drivers-soc-fsl-add-qixis-driver.patch │ │ │ ├── 301-arch-0012-soc-fsl-select-MFD_CORE-for-qixis-driver.patch │ │ │ ├── 302-dts-0001-sdk-arm64-dts-add-update-DPAA1-include-files-for-SDK.patch │ │ │ ├── 302-dts-0002-sdk-arm64-dts-add-DPAA1-SDK-flavor-dts-files.patch │ │ │ ├── 302-dts-0003-arm64-dts-ls1012a-Add-LS1012A-2G5RDB-board-support.patch │ │ │ ├── 302-dts-0004-arm64-dts-ls1012a-Add-more-nodes-to-LS1012A-FRWY-boa.patch │ │ │ ├── 302-dts-0005-arm64-dts-ls2081ardb-Add-DTS-support-for-NXP-LS2081A.patch │ │ │ ├── 302-dts-0006-arm64-dts-ls1012a-accumulated-change-for-ls1012a-boa.patch │ │ │ ├── 302-dts-0007-arm64-dts-ls1043a-accumulated-change-for-ls1043a-boa.patch │ │ │ ├── 302-dts-0008-arm64-dts-ls1046a-accumulated-change-to-ls1046a-boar.patch │ │ │ ├── 302-dts-0009-arm64-dts-ls1088a-accumulated-change-to-ls1088a-boar.patch │ │ │ ├── 302-dts-0010-arm64-dts-ls208xa-accumulated-change-to-ls208xa-boar.patch │ │ │ ├── 302-dts-0011-ARM-dts-accumulated-change.patch │ │ │ ├── 302-dts-0012-arm64-dts-ls1046a-add-smmu-node.patch │ │ │ ├── 302-dts-0013-arm64-dts-ls1043a-add-smmu-node.patch │ │ │ ├── 302-dts-0014-arm64-dts-ls104xa-set-mask-to-drop-TBU-ID-from-Strea.patch │ │ │ ├── 302-dts-0015-arm64-dts-ls104x-add-missing-dma-ranges-property.patch │ │ │ ├── 302-dts-0016-arm64-dts-ls104x-add-iommu-map-to-pci-controllers.patch │ │ │ ├── 302-dts-0017-arm64-dts-ls104x-make-dma-coherent-global-to-the-SoC.patch │ │ │ ├── 302-dts-0018-arm64-dts-ls104x-use-a-pseudo-bus-to-constrain-usb-d.patch │ │ │ ├── 302-dts-0019-sdk-dts-ls104x-drop-smmu-from-the-sdk-device-trees.patch │ │ │ ├── 302-dts-0020-arm64-dts-lx2160a-add-MDIO-device-tree-nodes.patch │ │ │ ├── 302-dts-0021-arm64-dts-lx2160a-rdb-Add-RGMII-PHY-nodes-for-dpmac-.patch │ │ │ ├── 302-dts-0022-arm64-dts-lx2160a-correct-scl-gpios-property.patch │ │ │ ├── 302-dts-0023-arm64-dts-lx2160a-add-dspi-controller-DT-nodes.patch │ │ │ ├── 302-dts-0024-arm64-dts-lx2160a-add-DT-node-for-all-DSPI-controlle.patch │ │ │ ├── 302-dts-0025-arm64-dts-nxp-ls208xa-add-more-thermal-zone-support.patch │ │ │ ├── 302-dts-0026-arm64-dts-nxp-add-more-thermal-zone-support.patch │ │ │ ├── 302-dts-0027-arm64-dts-lx2160a-rdb-Add-Inphi-PHY-node.patch │ │ │ ├── 302-dts-0028-arm64-dts-lx2160a-rdb-Add-Aquantia-PHY-nodes.patch │ │ │ ├── 302-dts-0029-arm64-dts-lx2160-Add-all-pcs-mdio-definitions-accord.patch │ │ │ ├── 302-dts-0030-arm64-dts-lx2160-PCS-PHY-definitions-for-10GBase-KR-.patch │ │ │ ├── 302-dts-0031-arm64-dts-lx2160-DPMAC-connections-to-backplane-PHYs.patch │ │ │ ├── 302-dts-0032-arm64-dts-Added-endianness-information-to-dts-serdes.patch │ │ │ ├── 302-dts-0033-arm64-dts-freescale-lx2160a-add-pcie-DT-nodes.patch │ │ │ ├── 302-dts-0034-arm64-dts-freescale-lx2160a-Inphi-in112525_s03-mdio-.patch │ │ │ ├── 302-dts-0035-arm64-dts-lx2160a-add-optee-tz-node.patch │ │ │ ├── 302-dts-0036-arm64-dts-ls104x-constrain-sata-dma-address-size.patch │ │ │ ├── 302-dts-0037-arm64-dts-lx2160a-qds-add-sata-node-support.patch │ │ │ ├── 302-dts-0038-arm64-dts-ls1012a-use-phy-handle-to-handle-phy-param.patch │ │ │ ├── 302-dts-0039-arm64-dts-ls1012a-remove-unused-gemac-bus-id.patch │ │ │ ├── 302-dts-0040-arm64-dts-ls1012a-reorganize-pfe_mac-nodes.patch │ │ │ ├── 302-dts-0041-sdk-dts-ls104x-drop-smmu-from-the-qds-and-usdpaa-sdk.patch │ │ │ ├── 302-dts-0042-arm64-dts-fix-the-LS104x-QDS-mdio-mux-support.patch │ │ │ ├── 302-dts-0043-arm64-dts-lx2160aqds-Add-mdio-mux-nodes.patch │ │ │ ├── 302-dts-0044-sdk-arm64-dts-reduce-usdpaa-memory-to-4K-for-LS1046-.patch │ │ │ ├── 302-dts-0045-arm64-dts-Fix-DWC3-IP-VBUS-glitch-issue-on-Layerscap.patch │ │ │ ├── 302-dts-0046-ARM-dts-Fix-DWC3-IP-VBUS-glitch-issue-on-LS1021A.patch │ │ │ ├── 302-dts-0047-ARM-dts-ls1021aqds-enable-esdhc-controller.patch │ │ │ ├── 302-dts-0048-arm64-dts-freescale-lx2160a-add-pcie-EP-mode-DT-node.patch │ │ │ ├── 302-dts-0049-sdk-dts-ls104x-move-dma-coherent-from-soc-to-its-chi.patch │ │ │ ├── 302-dts-0050-arm64-dts-lx2160a-add-interrupt-property-for-aquanti.patch │ │ │ ├── 302-dts-0051-arm64-dts-fsl-layerscape-fix-warnings-when-compiling.patch │ │ │ ├── 302-dts-0052-arm64-dts-fsl-layerscape-fix-warnings-when-compiling.patch │ │ │ ├── 302-dts-0053-sdk-arm64-dts-nxp-add-DPAA1-SDK-flavor-dts-files.patch │ │ │ ├── 302-dts-0054-arm64-dts-nxp-frwy-ls1046a-add-support-for-micron-no.patch │ │ │ ├── 302-dts-0055-arm64-dts-ls1028a-Add-PCIe-controller-DT-nodes.patch │ │ │ ├── 302-dts-0056-arm64-dts-lx2160a-Enable-usb3-lpm-capable-for-usb3-n.patch │ │ │ ├── 302-dts-0057-arm64-dts-fsl-lx2160a-add-flexcan-node.patch │ │ │ ├── 302-dts-0058-arm64-dts-fsl-ls1028a-add-flexcan-node.patch │ │ │ ├── 302-dts-0059-arm64-dts-fsl-ls1046-Modify-the-qspi-flash-frequency.patch │ │ │ ├── 302-dts-0060-arm64-dts-ls1028a-add-flexspi-nodes.patch │ │ │ ├── 302-dts-0061-sdk-dts-ls1046-drop-smmu-from-the-frwy-sdk-dtses.patch │ │ │ ├── 302-dts-0062-sdk-dts-ls1046frwy-move-dma-coherent-from-soc-to-its.patch │ │ │ ├── 302-dts-0063-arm64-dts-fsl-remove-backplane-support.patch │ │ │ ├── 302-dts-0064-arm64-dts-lx2160a-update-interrupt-property-for-Aqua.patch │ │ │ ├── 302-dts-0065-arm64-dts-ls1028a-Update-fspi-reg-properties.patch │ │ │ ├── 302-dts-0066-arm64-dts-ls1028a-add-gpu-node.patch │ │ │ ├── 302-dts-0067-arm64-dts-fsl-add-optee-node-for-ls1028.patch │ │ │ ├── 302-dts-0068-arm64-dts-lx2160a-Update-phy-mode-for-Aquantia-PHYs.patch │ │ │ ├── 302-dts-0069-arm64-dts-ls1028a-Add-ftm_alarm0-DT-node.patch │ │ │ ├── 302-dts-0070-arm64-dts-ls1012a-ls1043a-ls1046a-ls1088a-ls208xa-re.patch │ │ │ ├── 302-dts-0071-arm-dts-ls1021a-replace-ftm0-with-ftm_alarm0-DT-node.patch │ │ │ ├── 302-dts-0072-arm64-ls1028ardb-Add-support-DP-nodes-for-LS1028ARDB.patch │ │ │ ├── 302-dts-0073-arm64-ls1028aqds-Add-support-DP-nodes-for-LS1028AQDS.patch │ │ │ ├── 302-dts-0074-arm64-dts-fsl-ls1028a-Add-Felix-switch-port-DT-node.patch │ │ │ ├── 302-dts-0075-arm64-dts-fsl-ls1028a-Enable-switch-PHYs-on-RDB.patch │ │ │ ├── 302-dts-0076-arm64-dts-ls1028a-support-Felix-PF5-INTB-interrupt.patch │ │ │ ├── 302-dts-0077-arm64-dts-ls1028a-Add-ethernet-property-for-l2switch.patch │ │ │ ├── 302-dts-0078-arm64-dts-fix-endianness-of-rcpm.patch │ │ │ ├── 302-dts-0079-arm64-dts-ls1028a-Fix-interrupt-map-property-of-PCIe.patch │ │ │ ├── 302-dts-0080-arm64-dts-ls1028a-rdb-enable-emmc-hs400-mode.patch │ │ │ ├── 302-dts-0081-arm64-dts-lx2160a-add-ftm_alarm0-DT-node.patch │ │ │ ├── 302-dts-0082-arm64-dts-lx2160a-add-tmu-device-node.patch │ │ │ ├── 302-dts-0083-arm64-ls1028a-qds-correct-bus-of-rtc.patch │ │ │ ├── 302-dts-0084-arm64-dts-ls1028a-define-networking-options-for-QDS.patch │ │ │ ├── 302-dts-0086-usb-dwc3-enable-otg-mode-for-dwc3-usb-ip-on-layersca.patch │ │ │ ├── 302-dts-0087-arm-dts-ls1021a-fix-that-FlexTimer-cannot-wakeup-sys.patch │ │ │ ├── 302-dts-0088-arm64-dts-ls1028a-fix-dwc-pci-over-smmu.patch │ │ │ ├── 302-dts-0089-arm64-dts-ls1028a-Update-the-clock-providers-for-the.patch │ │ │ ├── 302-dts-0090-arm64-dts-ls1028a-Update-clock-cells-of-dpclk-node.patch │ │ │ ├── 302-dts-0091-arm64-dts-ls1028a-Add-properties-for-HD-Display-cont.patch │ │ │ ├── 302-dts-0092-arm64-dts-ls1028a-Add-DP-DT-nodes.patch │ │ │ ├── 302-dts-0093-arm64-dts-fsl-Specify-phy-mode-for-CPU-ports.patch │ │ │ ├── 302-dts-0094-arm64-dts-fsl-Drop-compatible-string-from-Felix-swit.patch │ │ │ ├── 302-dts-0095-arm64-dts-fsl-ls1028a-Specify-that-the-Felix-port-4-.patch │ │ │ ├── 302-dts-0096-arm64-dts-fsl-ls1028a-Disable-eno3-and-make-swp5-the.patch │ │ │ ├── 302-dts-0097-LF-387-5-arm64-dts-layerscape-add-chip-specific-comp.patch │ │ │ ├── 302-dts-0098-LF-403-ARM64-dts-fsl-Add-clock-names-mclk0-for-SAI-n.patch │ │ │ ├── 302-dts-0099-arm64-dts-layerscape-apply-dma-coherent-for-dwc3-nod.patch │ │ │ ├── 302-dts-0100-arm64-dts-ls208xa-Update-qspi-node-properties-for-LS.patch │ │ │ ├── 302-dts-0101-arm64-dts-ls208xa-Remove-dma-coherent-from-dwc3-node.patch │ │ │ ├── 302-dts-0102-LF-20-1-arm64-dts-ls1012ardb-Update-qspi-node-dts-pr.patch │ │ │ ├── 302-dts-0103-arm64-dts-ls1028a-Update-edma-compatible-to-fit-eDMA.patch │ │ │ ├── 302-dts-0104-arm64-dts-lx2160a-add-iommu-map-property-to-pci-node.patch │ │ │ ├── 302-dts-0105-LF-18-1-arm64-dts-ls1088ardb-Update-qspi-dts-node-pr.patch │ │ │ ├── 302-dts-0106-LF-18-2-arm64-dts-ls1046ardb-Update-qspi-node-dts-pr.patch │ │ │ ├── 302-dts-0107-arm64-dts-ls1012ardb-Update-qspi-node-property.patch │ │ │ ├── 302-dts-0109-arm64-dts-ls1028a-rdb-Enable-SGMII-AN-for-the-QSGMII.patch │ │ │ ├── 302-dts-0110-arm64-dts-ls1028a-Disable-swp5-by-default.patch │ │ │ ├── 302-dts-0111-arm64-dts-fsl-ls1028a-rdb-fix-QSGMII-PHY-node-names.patch │ │ │ ├── 302-dts-0112-arm64-dts-fsl-ls1028a-prepare-dts-for-overlay.patch │ │ │ ├── 302-dts-0113-arm64-dts-fsl-ls1028a-qds-Add-overlays-for-various-s.patch │ │ │ ├── 302-dts-0114-arm64-dts-fsl-ls1028a-add-labels-to-Ethernet-switch-.patch │ │ │ ├── 302-dts-0115-LF-789-2-arm64-dts-add-overlay-support-for-ls1028a-q.patch │ │ │ ├── 302-dts-0116-LF-881-arm64-dts-add-a-dts-file-for-dpdk.patch │ │ │ ├── 302-dts-0117-arm-dts-ls1021a-Add-LS1021A-IOT-board-support.patch │ │ │ ├── 302-dts-0118-add-DTS-for-Traverse-LS1043-Boards.patch │ │ │ ├── 302-dts-0119-arm64-dts-lx2160a-add-more-thermal-zone-support.patch │ │ │ ├── 302-dts-0120-arm64-dts-ls1046a-fix-ippdexpcr-offset-not-correct.patch │ │ │ ├── 302-dts-0121-arm64-dts-ls1043a-update-USB-nodes-status-to-match-b.patch │ │ │ ├── 302-dts-0122-arm64-dts-ls1043a-remove-thermal-zone-5-from-dts.patch │ │ │ ├── 302-v5.7-dts-0119-arm64-dts-ls1043a-rdb-add-compatible-for-board.patch │ │ │ ├── 303-core-0001-net-readd-skb_recycle.patch │ │ │ ├── 303-core-0002-drivers-base-add-sysfs-entries-for-suppliers-and-con.patch │ │ │ ├── 303-core-0003-cgroup-let-a-symlink-too-be-created-with-a-cftype-fi.patch │ │ │ ├── 303-core-0004-cgroup-bfq-revert-bfq.weight-symlink-change.patch │ │ │ ├── 303-core-0005-nand-raw-workaround-for-EDO-high-speed-mode.patch │ │ │ ├── 303-core-0006-mm-Re-export-ioremap_page_range.patch │ │ │ ├── 303-core-0007-of-of_reserved_mem-Ensure-cma-reserved-region-not-cr.patch │ │ │ ├── 303-core-0008-ENGR00279980-ubi-attach-do-not-return-EINVAL-if-the-.patch │ │ │ ├── 303-core-0009-arm64-move-elfcorehdr-reservation-early-for-crash-du.patch │ │ │ ├── 303-core-0010-scripts-Makefile-Enable-creation-of-_symbols_-DT-nod.patch │ │ │ ├── 303-core-0011-LF-419-arm64-crash_core-Export-TCR_EL1.T1SZ-in-vmcor.patch │ │ │ ├── 303-core-0012-LF-789-1-Revert-scripts-Makefile-Enable-creation-of-.patch │ │ │ ├── 701-net-0001-soc-fsl-qman-fixup-liodns-only-on-ppc-targets.patch │ │ │ ├── 701-net-0002-soc-fsl-bman-map-FBPR-area-in-the-iommu.patch │ │ │ ├── 701-net-0003-soc-fsl-qman-map-FQD-and-PFDR-areas-in-the-iommu.patch │ │ │ ├── 701-net-0004-soc-fsl-qman-portal-map-CENA-area-in-the-iommu.patch │ │ │ ├── 701-net-0005-soc-fsl-qbman_portals-add-APIs-to-retrieve-the-probi.patch │ │ │ ├── 701-net-0006-soc-fsl-bqman-page-align-iommu-mapping-sizes.patch │ │ │ ├── 701-net-0007-fsl_qbman-SDK-DPAA-1.x-QBMan-drivers.patch │ │ │ ├── 701-net-0008-fmd-SDK-DPAA-1.x-FMan-driver.patch │ │ │ ├── 701-net-0009-dpa-SDK-DPAA-1.x-Ethernet-driver.patch │ │ │ ├── 701-net-0010-dpaa_eth-ls1043a-errata-check-if-the-skb-is-linear-a.patch │ │ │ ├── 701-net-0011-dpaa_eth-ceetm-adapt-to-net-sched-API-changes.patch │ │ │ ├── 701-net-0012-dpaa_eth-ceetm-adapt-to-the-new-gnet-stats-API.patch │ │ │ ├── 701-net-0013-dpaa_eth-ceetm-update-include-paths-for-tc-filters.patch │ │ │ ├── 701-net-0014-dpa_eth-remove-unused-code.patch │ │ │ ├── 701-net-0015-fmd-use-ptp-timer-for-Fman-RTC-node-name.patch │ │ │ ├── 701-net-0016-dpaa_eth-use-ptp-timer-phandle-instead-of-ptimer-han.patch │ │ │ ├── 701-net-0017-dpaa_eth-move-global-variable-clock-into-ptp_priv_s-.patch │ │ │ ├── 701-net-0018-sdk_dpaa-use-new-api-ethtool_ksettings_-get-set.patch │ │ │ ├── 701-net-0019-sdk_dpaa-fix-dpa_set_ksettings.patch │ │ │ ├── 701-net-0020-dpaa_eth-memac-set-adjust_link-callback-for-fixed-li.patch │ │ │ ├── 701-net-0021-sdk_dpaa-ls1043a-errata-resplit-the-skb-after-copy.patch │ │ │ ├── 701-net-0022-sdk_dpaa-ls1043a-errata-realign-and-linearize-egress.patch │ │ │ ├── 701-net-0023-sdk_dpaa-ls1043a-errata-realign-skb-in-place-if-need.patch │ │ │ ├── 701-net-0024-sdk_dpaa-ls1043a-errata-verify-and-resize-headroom-a.patch │ │ │ ├── 701-net-0025-sdk_dpaa-ls1043a-errata-do-not-recycle-the-realigned.patch │ │ │ ├── 701-net-0026-sdk_dpaa-ls1043a-errata-fix-arm32-build.patch │ │ │ ├── 701-net-0027-drivers-staging-fsl_qbman-Fix-SWP-Mask-in-Error-Hand.patch │ │ │ ├── 701-net-0028-sdk_dpaa-avoid-crashing-on-OOM.patch │ │ │ ├── 701-net-0029-sdk_dpaa-update-the-xmit-timestamp-to-avoid-watchdog.patch │ │ │ ├── 701-net-0030-sdk_fman-resolve-arm32-compilation-issues-for-linux-.patch │ │ │ ├── 701-net-0031-sdk_dpaa-ls1043a-errata-maintain-timestamp-info.patch │ │ │ ├── 701-net-0032-sdk_dpaa-ls1043a-errata-restrict-the-max-mtu.patch │ │ │ ├── 701-net-0033-sdk_dpaa-adapt-to-the-new-API-for-MTU-changes.patch │ │ │ ├── 701-net-0034-Extend-FM-MAC-Statistics-with-frame-size-counters-re.patch │ │ │ ├── 701-net-0035-sdk_dpaa-accept-frames-on-RX-even-if-larger-than-MTU.patch │ │ │ ├── 701-net-0036-sdk-dpa-use-netdev-dev-for-DMA-mapping.patch │ │ │ ├── 701-net-0037-Added-MII-IOCTL-support-for-SIOCGMIIREG.patch │ │ │ ├── 701-net-0038-sdk_dpaa-ls1043a-errata-stop-advertising-S-G-and-GSO.patch │ │ │ ├── 701-net-0039-staging-fsl_qbman-Calculate-valid-bit-from-MC-RR.patch │ │ │ ├── 701-net-0040-fsl_qbman-usdpaa-Invalidate-software-portals-before-.patch │ │ │ ├── 701-net-0041-net-ethernet-Rename-PHY_INTERFACE_MODE_SGMII_2500.patch │ │ │ ├── 701-net-0042-sdk_dpaa-ceetm-add-independent-CEETM-congestion-thre.patch │ │ │ ├── 701-net-0043-sdk_dpaa-ceetm-stop-transmitting-frames-when-the-CQ-.patch │ │ │ ├── 701-net-0044-sdk_dpaa-ceetm-coding-style-fixes-and-added-comments.patch │ │ │ ├── 701-net-0045-sdk_dpaa-ceetm-increment-the-interface-s-ern-counter.patch │ │ │ ├── 701-net-0046-sdk_dpaa-update-buffer-recycling-conditions.patch │ │ │ ├── 701-net-0047-sdk_dpaa-update-comments-about-recycling-and-back-po.patch │ │ │ ├── 701-net-0048-sdk_dpaa-ceetm-pass-extended-ACK-struct-to-parsing-f.patch │ │ │ ├── 701-net-0049-sdk_dpaa-ceetm-adapt-to-new-tcf-classify-API.patch │ │ │ ├── 701-net-0050-sdk_dpaa-ceetm-introduce-a-TRAP-control-action.patch │ │ │ ├── 701-net-0051-sdk_dpaa-ceetm-use-the-tcf-block-infrastructure.patch │ │ │ ├── 701-net-0052-sdk_dpaa-ceetm-remove-tc-class-reference-counting.patch │ │ │ ├── 701-net-0053-sdk_dpaa-ceetm-store-Qdisc-pointer-in-struct-block.patch │ │ │ ├── 701-net-0054-dpaa_eth-workaround-for-ERR010022.patch │ │ │ ├── 701-net-0055-sdk_fman-DPAA-dTSEC-ports-fail-to-work-when-link-cha.patch │ │ │ ├── 701-net-0056-sdk-dpa-adapt-compatibles-to-upstream-binding-docume.patch │ │ │ ├── 701-net-0057-sdk_fman-fix-probing-of-10G-ports-on-T102x.patch │ │ │ ├── 701-net-0058-sdk_fman-probe-OH-ports-on-PPC.patch │ │ │ ├── 701-net-0059-sdk_fman-on-P-series-platforms-the-OH-ports-start-at.patch │ │ │ ├── 701-net-0060-sdk_fman-disable-timer-code.patch │ │ │ ├── 701-net-0061-sdk_fman-disable-timer-code-in-arm-code.patch │ │ │ ├── 701-net-0062-sdk_dpa-adapt-ceetm-code-to-new-kernel-API.patch │ │ │ ├── 701-net-0063-sdk_dpaa-propagate-the-skb-ownership-information.patch │ │ │ ├── 701-net-0064-memac_init_phy-RGMII-fixed-link-pass-adjust_link-cal.patch │ │ │ ├── 701-net-0065-sdk_dpaa-ceetm-avoid-use-after-free-scenarios.patch │ │ │ ├── 701-net-0066-sdk_dpaa-ceetm-stop-the-netdev-queues-when-switching.patch │ │ │ ├── 701-net-0067-fsl_qbman-ceetm-export-the-qman_ceetm_query_cq-call.patch │ │ │ ├── 701-net-0068-sdk_dpaa-ceetm-propagate-the-ceetm-channel-through-t.patch │ │ │ ├── 701-net-0069-sdk_dpaa-ceetm-reset-the-wbfs-groups-and-priorities-.patch │ │ │ ├── 701-net-0070-sdk_dpaa-ceetm-WQ-CEETM-mode-switchover-cleanup.patch │ │ │ ├── 701-net-0071-sdk_dpaa-ceetm-drain-the-ceetm-CQs-on-destroy.patch │ │ │ ├── 701-net-0072-sdk_dpaa-ls1043a-errata-adapt-to-new-skb-copy-API.patch │ │ │ ├── 701-net-0073-dpaa_eth-ERR010022-adapt-to-new-skb-copy-API.patch │ │ │ ├── 701-net-0074-sdk_dpaa-enable-Jumbo-frame-support-on-LS1043A.patch │ │ │ ├── 701-net-0075-sdk_dpaa-reserve-256-bytes-for-the-SGT-on-TX.patch │ │ │ ├── 701-net-0076-fsl_qbman-usdpaa-change-to-debug-print-in-interrupt-.patch │ │ │ ├── 701-net-0077-staging-fsl_qbman-Consume-all-frames-in-DQRR-during-.patch │ │ │ ├── 701-net-0078-staging-fsl_qbman-Recalcuate-cursor-after-consuming-.patch │ │ │ ├── 701-net-0079-fmd-use-fsl-fman-ptp-timer-compatible-for-ptp-probe.patch │ │ │ ├── 701-net-0080-sdk_dpaa-store-the-skb-backpointer-in-the-skb-headro.patch │ │ │ ├── 701-net-0081-sdk_dpaa-ls1043a-errata-align-skb_shinfo.patch │ │ │ ├── 701-net-0082-sdk_dpaa-ls1043a-errata-move-comment.patch │ │ │ ├── 701-net-0083-sdk_dpaa-ceetm-lower-the-default-congestion-threshol.patch │ │ │ ├── 701-net-0084-staging-fsl_qbman-remove-bootmem-header.patch │ │ │ ├── 701-net-0085-staging-fsl_qbman-stop-using-current_kernel_time.patch │ │ │ ├── 701-net-0086-sdk_dpaa-ceetm-avoid-double-frees-on-error-paths.patch │ │ │ ├── 701-net-0087-sdk_dpaa-ceetm-rename-qdisc_destroy-to-qdisc_put.patch │ │ │ ├── 701-net-0088-sdk_dpaa-remove-FSL_DPAA_ETH_USE_NDO_SELECT_QUEUE.patch │ │ │ ├── 701-net-0089-fsl-fman-backup-and-restore-ICID-registers.patch │ │ │ ├── 701-net-0090-fsl-fman-add-API-to-get-the-device-behind-a-fman-por.patch │ │ │ ├── 701-net-0091-dpaa_eth-defer-probing-after-qbman.patch │ │ │ ├── 701-net-0092-dpaa_eth-base-dma-mappings-on-the-fman-rx-port.patch │ │ │ ├── 701-net-0093-dpaa_eth-fix-iova-handling-for-contiguous-frames.patch │ │ │ ├── 701-net-0094-dpaa_eth-fix-iova-handling-for-sg-frames.patch │ │ │ ├── 701-net-0095-sdk_dpaa-ceetm-guard-against-an-out-of-bounds-queue-.patch │ │ │ ├── 701-net-0096-sdk_dpaa-guard-against-an-out-of-bounds-queue-index.patch │ │ │ ├── 701-net-0097-sdk_dpaa-set-the-skb-queue-mapping-when-looping.patch │ │ │ ├── 701-net-0098-sdk_dpaa-remove-ptp-clock-driver.patch │ │ │ ├── 701-net-0099-sdk_fman-suspend-the-FMan-to-Deep-Sleep-on-PPC-only.patch │ │ │ ├── 701-net-0100-sdk_fman-disable-ptp-timer-probe.patch │ │ │ ├── 701-net-0101-sdk_dpaa-add-the-get_ts_info-interface-for-ethtool.patch │ │ │ ├── 701-net-0102-sdk_fman-share-the-event-interrupt.patch │ │ │ ├── 701-net-0103-sdk_dpaa-fix-hardware-timestamp-value.patch │ │ │ ├── 701-net-0104-sdk_dpaa-remove-useless-1588-timer-enablement.patch │ │ │ ├── 701-net-0105-sdk-qbman-fix-issue-in-qman_delete_cgr_safe.patch │ │ │ ├── 701-net-0106-sdk_fman-avoid-array-overflow-error-in-fman-port-ini.patch │ │ │ ├── 701-net-0107-fsl_qbman-Adjust-platform-device-creation-for-QMan-p.patch │ │ │ ├── 701-net-0108-sdk_dpaa-ls1043a-errata-impose-S-G-frame-realignment.patch │ │ │ ├── 701-net-0109-sdk_dpaa-remove-the-QM_FQCTRL_PREFERINCACHE-flag.patch │ │ │ ├── 701-net-0110-sdk_dpaa-adapt-to-kernel-5.1.0-rc1.patch │ │ │ ├── 701-net-0111-sdk_qbman-Avoid-variable-length-array-in-USDPAA.patch │ │ │ ├── 701-net-0112-sdk_dpaa-Rework-QBMan-portal-mappings.patch │ │ │ ├── 701-net-0113-sdk_qbman-Fix-error-in-IP-revision-comparison.patch │ │ │ ├── 701-net-0114-sdk_dpaa-SGMII-2500-needs-AN-disabled.patch │ │ │ ├── 701-net-0115-sdk_qbman-Update-cpus_allowed-to-cpus_mask-to-cope-w.patch │ │ │ ├── 701-net-0116-sdk_dpaa-ceetm-align-to-upstream-API-changes.patch │ │ │ ├── 701-net-0117-dpaa_eth-ERR010022-align-skb_shinfo.patch │ │ │ ├── 701-net-0118-dpaa_eth-ERR010022-preserve-timestamping.patch │ │ │ ├── 701-net-0119-sdk_dpaa-ceetm-update-Makefile-to-use-absolute-inclu.patch │ │ │ ├── 701-net-0120-sdk_dpaa-net-Rename-skb_frag_t-size-to-bv_len.patch │ │ │ ├── 701-net-0121-dpaa_eth-Rename-skb_frag_t-size-to-bv_len.patch │ │ │ ├── 701-net-0122-config-enable-SDK-FMan-driver.patch │ │ │ ├── 701-net-0123-config-enable-SDK-DPAA-driver.patch │ │ │ ├── 701-net-0124-config-enable-SDK-QBMan.patch │ │ │ ├── 701-net-0125-config-add-SDK-QBMan-driver.patch │ │ │ ├── 701-net-0126-net-Makefile-re-add-DPAA-SDK-drivers.patch │ │ │ ├── 701-net-0127-ptp-support-ptp_qoriq-for-sdk-dpaa.patch │ │ │ ├── 701-net-0128-net-dpaa-fix-build-failure-due-to-skb_frag_t-struct-.patch │ │ │ ├── 701-net-0129-sdk_dpa-align-to-upstream-PHY_INTERFACE_MODE.patch │ │ │ ├── 701-net-0130-bus-fsl-mc-move-fsl_mc_command-struct-in-a-uapi-head.patch │ │ │ ├── 701-net-0131-bus-fsl-mc-add-fsl-mc-userspace-support.patch │ │ │ ├── 701-net-0132-bus-fsl-mc-add-root-dprc-rescan-attribute.patch │ │ │ ├── 701-net-0133-bus-fsl-mc-add-bus-rescan-attribute.patch │ │ │ ├── 701-net-0134-bus-fsl-mc-Add-dprc-reset-container-support.patch │ │ │ ├── 701-net-0135-bus-fsl-mc-Propagate-driver_override-for-a-child-DPR.patch │ │ │ ├── 701-net-0136-bus-fsl-mc-add-device-binding-path-driver_override.patch │ │ │ ├── 701-net-0137-bus-fsl-mc-move-fsl_mc_device_remove-to-common-heade.patch │ │ │ ├── 701-net-0138-bus-fsl-mc-increase-MC_CMD_COMPLETION_TIMEOUT_MS-val.patch │ │ │ ├── 701-net-0139-bus-fsl-mc-added-missing-fields-to-dprc_rsp_get_obj_.patch │ │ │ ├── 701-net-0140-bus-fsl-mc-define-macros-for-iommu-enablement-for-fs.patch │ │ │ ├── 701-net-0141-bus-fsl-mc-Extend-ICID-size-from-16bit-to-32bit.patch │ │ │ ├── 701-net-0142-bus-fsl-mc-Some-apis-are-made-public-for-vfio.patch │ │ │ ├── 701-net-0143-bus-fsl-mc-add-support-for-dpdmux-device-type.patch │ │ │ ├── 701-net-0144-bus-fsl-mc-add-support-for-dpdcei-device-type.patch │ │ │ ├── 701-net-0145-bus-fsl-mc-add-support-for-dpaiop-dpci-and-dpdmai-de.patch │ │ │ ├── 701-net-0146-bus-fsl-mc-DMA-configure-to-have-force-dma-as-defaul.patch │ │ │ ├── 701-net-0147-bus-fsl-mc-Allocate-mc-portal-from-root-dprc-contain.patch │ │ │ ├── 701-net-0148-bus-fsl-mc-use-raw-spin-lock-to-serialize-mc-cmds.patch │ │ │ ├── 701-net-0149-soc-fsl-dpio-change-CENA-regs-to-be-cacheable.patch │ │ │ ├── 701-net-0150-soc-fsl-dpio-enable-qbman-CENA-portal-memory-access.patch │ │ │ ├── 701-net-0151-soc-fsl-dpio-Prefer-the-CPU-affine-DPIO.patch │ │ │ ├── 701-net-0152-soc-fsl-dpio-Add-Support-for-Order-Restoration.patch │ │ │ ├── 701-net-0153-soc-fsl-dpio-Fix-order-restoration-API-for-QBMan-5.0.patch │ │ │ ├── 701-net-0154-soc-fsl-dpio-add-support-for-opr.patch │ │ │ ├── 701-net-0155-soc-fsl-dpio-aligned-access-of-qbman-cacheable-regio.patch │ │ │ ├── 701-net-0156-staging-fsl-dpaa2-mac-Add-APIs-for-DPMAC-objects.patch │ │ │ ├── 701-net-0157-staging-fsl-dpaa2-mac-Add-Freescale-DPAA2-mac-driver.patch │ │ │ ├── 701-net-0158-staging-fsl-dpaa2-mac-Remove-link-type-from-phy-sel-.patch │ │ │ ├── 701-net-0159-staging-fsl-dpaa2-mac-Update-ethtool-ops.patch │ │ │ ├── 701-net-0160-staging-fsl-dpaa2-mac-Comply-with-mc-bus-header-upda.patch │ │ │ ├── 701-net-0161-staging-fsl-dpaa2-mac-Request-atomic-context-MC-port.patch │ │ │ ├── 701-net-0162-staging-fsl-dpaa2-mac-Remove-redundant-free.patch │ │ │ ├── 701-net-0163-staging-fsl-dpaa2-mac-Cleanup-code.patch │ │ │ ├── 701-net-0164-staging-fsl-dpaa2-mac-Free-phydev-on-unbind.patch │ │ │ ├── 701-net-0165-staging-fsl-dpaa2-mac-defer-probe-if-no-mc-portal-is.patch │ │ │ ├── 701-net-0166-staging-fsl-dpaa2-mac-make-compatible-with-upstream-.patch │ │ │ ├── 701-net-0167-staging-fsl-dpaa2-mac-probe-phy-as-fixed-link-based-.patch │ │ │ ├── 701-net-0168-staging-fsl-dpaa2-mac-Fix-uninitialized-variable.patch │ │ │ ├── 701-net-0169-staging-fsl-dpaa2-mac-read-phy-mode-from-device-tree.patch │ │ │ ├── 701-net-0170-staging-fsl-dpaa2-mac-Add-more-PHY-modes.patch │ │ │ ├── 701-net-0171-staging-fsl-dpaa2-mac-Check-DPMAC-version.patch │ │ │ ├── 701-net-0172-staging-fsl-dpaa2-mac-Fix-dpmac_set_link_state-comma.patch │ │ │ ├── 701-net-0173-staging-fsl-dpaa2-mac-Add-support-for-new-link-state.patch │ │ │ ├── 701-net-0174-staging-fsl-dpaa2-mac-Add-autoneg-support.patch │ │ │ ├── 701-net-0175-staging-fsl-dpaa2-mac-connect-to-the-fixed-phy.patch │ │ │ ├── 701-net-0176-staging-fsl-dpaa2-mac-add-pause-frames-support-for-m.patch │ │ │ ├── 701-net-0177-staging-dpaa2-mac-Update-interface-mode-array.patch │ │ │ ├── 701-net-0178-staging-dpaa2-mac-add-link-up-down-events-for-dpmac.patch │ │ │ ├── 701-net-0179-staging-dpaa2-evb-Add-Edge-Virtual-Bridge-driver.patch │ │ │ ├── 701-net-0180-staging-dpaa2-evb-Fix-W-1-warnings.patch │ │ │ ├── 701-net-0181-staging-dpaa2-evb-Improve-ethtool-support.patch │ │ │ ├── 701-net-0182-staging-dpaa2-evb-Update-MTU-update-procedure.patch │ │ │ ├── 701-net-0183-staging-dpaa2-evb-Update-netlink-parsing-parameters.patch │ │ │ ├── 701-net-0184-staging-dpaa2-evb-Update-netdev_master_upper_dev_lin.patch │ │ │ ├── 701-net-0185-staging-dpaa2-evb-Use-MC-portal-in-atomic-context.patch │ │ │ ├── 701-net-0186-staging-dpaa2-evb-change-mc_command-in-fsl_mc_comman.patch │ │ │ ├── 701-net-0187-staging-dpaa2-evb-Fix-MC-bus-include.patch │ │ │ ├── 701-net-0188-staging-dpaa2-evb-Defer-probe-if-no-mc-portal-is-fou.patch │ │ │ ├── 701-net-0189-staging-dpaa2-evb-Update-netlink-attributes-API.patch │ │ │ ├── 701-net-0190-dpaa2-eth-Cleanup-dead-code.patch │ │ │ ├── 701-net-0191-dpaa2-eth-Avoid-unbounded-while-loops.patch │ │ │ ├── 701-net-0192-dpaa2-eth-Add-support-for-Rx-traffic-classes.patch │ │ │ ├── 701-net-0193-dpaa2-eth-Trim-debugfs-FQ-stats.patch │ │ │ ├── 701-net-0194-dpaa2-eth-Distribute-ingress-frames-based-on-VLAN-pr.patch │ │ │ ├── 701-net-0195-dpaa2-eth-Add-helper-functions.patch │ │ │ ├── 701-net-0196-dpaa2-eth-Minor-cleanup-in-dpaa2_eth_set_rx_taildrop.patch │ │ │ ├── 701-net-0197-dpaa2-eth-Add-congestion-group-taildrop.patch │ │ │ ├── 701-net-0198-dpaa2-eth-Update-FQ-taildrop-threshold-and-buffer-po.patch │ │ │ ├── 701-net-0199-dpaa2-eth-Add-DCB-ops.patch │ │ │ ├── 701-net-0200-dpaa2-eth-Enable-Rx-PFC.patch │ │ │ ├── 701-net-0201-dpaa2-eth-Enable-Tx-PFC.patch │ │ │ ├── 701-net-0202-dpaa2-eth-Keep-congestion-group-taildrop-enabled-whe.patch │ │ │ ├── 701-net-0203-dpaa2-eth-Add-Tx-shaping-API.patch │ │ │ ├── 701-net-0204-dpaa2-eth-Add-Tx-shaping-support.patch │ │ │ ├── 701-net-0205-dpaa2-eth-Add-Rx-error-queue.patch │ │ │ ├── 701-net-0206-dpaa2-eth-Add-API-for-counters-reset.patch │ │ │ ├── 701-net-0207-dpaa2-eth-Add-reset-controls-for-debugfs-stats.patch │ │ │ ├── 701-net-0208-dpaa2-eth-Add-channel-stat.patch │ │ │ ├── 701-net-0209-dpaa2-eth-Update-dpni_set_tx_shaping-cmd-to-v2.patch │ │ │ ├── 701-net-0210-dpaa2-eth-Add-dpni_set_tx_priorities-API.patch │ │ │ ├── 701-net-0211-dpaa2-eth-Update-dpni_get_statistics.patch │ │ │ ├── 701-net-0212-dpaa2-eth-Add-API-for-ceetm_id-tc-in-set-congestion.patch │ │ │ ├── 701-net-0213-dpaa2-eth-Add-CEETM-qdisc-support.patch │ │ │ ├── 701-net-0214-dpaa2-eth-Re-add-get_link_ksettings-ethtool-op.patch │ │ │ ├── 701-net-0215-dpaa2-eth-Add-support-for-new-link-state-APIs.patch │ │ │ ├── 701-net-0216-dpaa2-eth-Add-autoneg-support.patch │ │ │ ├── 701-net-0217-dpaa2-eth-Don-t-use-netif_receive_skb_list-for-TCP-f.patch │ │ │ ├── 701-net-0218-bus-fsl-mc-Add-a-new-parameter-to-dprc_scan_objects-.patch │ │ │ ├── 701-net-0219-bus-fsl-mc-Extend-functions-from-the-bus-driver-to-b.patch │ │ │ ├── 701-net-0220-bus-fsl-mc-Set-the-QMAN-BMAN-region-flags.patch │ │ │ ├── 701-net-0221-soc-fsl-dpio-Adding-QMAN-multiple-enqueue-interface.patch │ │ │ ├── 701-net-0222-soc-fsl-dpio-QMAN-performance-improvement.-Function-.patch │ │ │ ├── 701-net-0223-soc-fsl-dpio-Replace-QMAN-array-mode-by-ring-mode-en.patch │ │ │ ├── 701-net-0224-bus-fsl-mc-add-autorescan-sysfs.patch │ │ │ ├── 701-net-0225-enetc-Configure-the-Time-Aware-Scheduler-via-tc-tapr.patch │ │ │ ├── 701-net-0226-enetc-update-TSN-Qbv-PSPEED-set-according-to-adjust-.patch │ │ │ ├── 701-net-0227-enetc-Fix-if_mode-extraction.patch │ │ │ ├── 701-net-0228-enetc-Make-mdio-accessors-more-generic.patch │ │ │ ├── 701-net-0229-enetc-Initialize-SerDes-for-SGMII-and-SXGMII-protoco.patch │ │ │ ├── 701-net-0230-enetc-Drop-redundant-device-node-check.patch │ │ │ ├── 701-net-0231-enetc-Use-DT-protocol-information-to-set-up-the-port.patch │ │ │ ├── 701-net-0232-enetc-Handle-USXGMII-protocol.patch │ │ │ ├── 701-net-0233-enetc-Enable-live-mac-addr-change-for-PF.patch │ │ │ ├── 701-net-0234-enetc-WA-for-MDIO-register-access-issue.patch │ │ │ ├── 701-net-0235-enetc-Clean-up-of-ehtool-stats-len.patch │ │ │ ├── 701-net-0236-enetc-Replace-enetc_gregs-with-a-readers-writer-lock.patch │ │ │ ├── 701-net-0237-enetc-Remove-mdio-bus-on-PF-probe-error-path.patch │ │ │ ├── 701-net-0238-net-mscc-ocelot-break-apart-ocelot_vlan_port_apply.patch │ │ │ ├── 701-net-0239-net-mscc-ocelot-break-apart-vlan-operations-into-oce.patch │ │ │ ├── 701-net-0240-net-mscc-ocelot-break-out-fdb-operations-into-abstra.patch │ │ │ ├── 701-net-0241-net-mscc-ocelot-change-prototypes-of-hwtstamping-ioc.patch │ │ │ ├── 701-net-0242-net-mscc-ocelot-change-prototypes-of-switchdev-port-.patch │ │ │ ├── 701-net-0243-net-mscc-ocelot-refactor-struct-ocelot_port-out-of-f.patch │ │ │ ├── 701-net-0244-net-mscc-ocelot-separate-net_device-related-items-ou.patch │ │ │ ├── 701-net-0245-net-mscc-ocelot-refactor-ethtool-callbacks.patch │ │ │ ├── 701-net-0246-net-mscc-ocelot-limit-vlan-ingress-filtering-to-actu.patch │ │ │ ├── 701-net-0247-net-mscc-ocelot-move-port-initialization-into-separa.patch │ │ │ ├── 701-net-0248-net-mscc-ocelot-separate-the-common-implementation-o.patch │ │ │ ├── 701-net-0249-net-mscc-ocelot-initialize-list-of-multicast-address.patch │ │ │ ├── 701-net-0250-net-mscc-ocelot-refactor-adjust_link-into-a-netdev-i.patch │ │ │ ├── 701-net-0251-net-mscc-ocelot-split-assignment-of-the-cpu-port-int.patch │ │ │ ├── 701-net-0252-net-mscc-ocelot-don-t-hardcode-the-number-of-the-CPU.patch │ │ │ ├── 701-net-0253-net-mscc-ocelot-move-resource-ioremap-and-regmap-ini.patch │ │ │ ├── 701-net-0254-net-mscc-ocelot-filter-out-ocelot-SoC-specific-PCS-c.patch │ │ │ ├── 701-net-0255-net-mscc-ocelot-move-invariant-configs-out-of-adjust.patch │ │ │ ├── 701-net-0256-net-mscc-ocelot-create-a-helper-for-changing-the-por.patch │ │ │ ├── 701-net-0257-net-mscc-ocelot-export-a-constant-for-the-tag-length.patch │ │ │ ├── 701-net-0258-net-mscc-ocelot-adjust-MTU-on-the-CPU-port-in-NPI-mo.patch │ │ │ ├── 701-net-0259-net-mscc-ocelot-separate-the-implementation-of-switc.patch │ │ │ ├── 701-net-0260-net-mscc-ocelot-publish-structure-definitions-to-inc.patch │ │ │ ├── 701-net-0261-net-mscc-ocelot-publish-ocelot_sys.h-to-include-soc-.patch │ │ │ ├── 701-net-0262-net-dsa-ocelot-add-tagger-for-Ocelot-Felix-switches.patch │ │ │ ├── 701-net-0263-net-dsa-ocelot-add-driver-for-Felix-switch-family.patch │ │ │ ├── 701-net-0264-net-dsa-felix-Fix-CPU-port-assignment-when-not-last-.patch │ │ │ ├── 701-net-0265-net-mscc-ocelot-export-ocelot_hwstamp_get-set-functi.patch │ │ │ ├── 701-net-0266-net-mscc-ocelot-convert-to-use-ocelot_get_txtstamp.patch │ │ │ ├── 701-net-0267-net-mscc-ocelot-convert-to-use-ocelot_port_add_txtst.patch │ │ │ ├── 701-net-0268-net-dsa-ocelot-define-PTP-registers-for-felix_vsc995.patch │ │ │ ├── 701-net-0269-net-dsa-ocelot-add-hardware-timestamping-support-for.patch │ │ │ ├── 701-net-0270-net-mscc-ocelot-avoid-incorrect-consuming-in-skbs-li.patch │ │ │ ├── 701-net-0271-net-mscc-ocelot-use-skb-queue-instead-of-skbs-list.patch │ │ │ ├── 701-net-0272-net-mscc-ocelot-tsn-configuration-support.patch │ │ │ ├── 701-net-0273-net-dsa-ocelot-add-tsn-support-for-felix-switch.patch │ │ │ ├── 701-net-0274-net-dsa-ocelot-alloc-memory-for-dsa-switch-instance.patch │ │ │ ├── 701-net-0284-net-fsl_ppfe-dts-binding-for-ppfe.patch │ │ │ ├── 701-net-0285-staging-fsl_ppfe-eth-header-files-for-pfe-driver.patch │ │ │ ├── 701-net-0286-staging-fsl_ppfe-eth-introduce-pfe-driver.patch │ │ │ ├── 701-net-0287-staging-fsl_ppfe-eth-fix-RGMII-tx-delay-issue.patch │ │ │ ├── 701-net-0288-staging-fsl_ppfe-eth-remove-unused-functions.patch │ │ │ ├── 701-net-0289-staging-fsl_ppfe-eth-fix-read-write-ack-idx-issue.patch │ │ │ ├── 701-net-0290-staging-fsl_ppfe-eth-Make-phy_ethtool_ksettings_get-.patch │ │ │ ├── 701-net-0291-staging-fsl_ppfe-eth-add-function-to-update-tmu-cred.patch │ │ │ ├── 701-net-0292-staging-fsl_ppfe-eth-Avoid-packet-drop-at-TMU-queues.patch │ │ │ ├── 701-net-0293-staging-fsl_ppfe-eth-Enable-PFE-in-clause-45-mode.patch │ │ │ ├── 701-net-0294-staging-fsl_ppfe-eth-Disable-autonegotiation-for-2.5.patch │ │ │ ├── 701-net-0295-staging-fsl_ppfe-eth-calculate-PFE_PKT_SIZE-with-SKB.patch │ │ │ ├── 701-net-0296-staging-fsl_ppfe-eth-support-for-userspace-networkin.patch │ │ │ ├── 701-net-0297-staging-fsl_ppfe-eth-unregister-netdev-after-pfe_phy.patch │ │ │ ├── 701-net-0298-staging-fsl_ppfe-eth-HW-parse-results-for-DPDK.patch │ │ │ ├── 701-net-0299-staging-fsl_ppfe-eth-reorganize-pfe_netdev_ops.patch │ │ │ ├── 701-net-0300-staging-fsl_ppfe-eth-use-mask-for-rx-max-frame-len.patch │ │ │ ├── 701-net-0301-staging-fsl_ppfe-eth-define-pfe-ndo_change_mtu-funct.patch │ │ │ ├── 701-net-0302-staging-fsl_ppfe-eth-remove-jumbo-frame-enable-from-.patch │ │ │ ├── 701-net-0303-staging-fsl_ppfe-eth-disable-CRC-removal.patch │ │ │ ├── 701-net-0304-staging-fsl_ppfe-eth-handle-ls1012a-errata_a010897.patch │ │ │ ├── 701-net-0305-staging-fsl_ppfe-eth-replace-magic-numbers.patch │ │ │ ├── 701-net-0306-staging-fsl_ppfe-eth-resolve-indentation-warning.patch │ │ │ ├── 701-net-0307-staging-fsl_ppfe-eth-add-fixed-link-support.patch │ │ │ ├── 701-net-0308-staging-fsl_ppfe-add-support-for-a-char-dev-for-link.patch │ │ │ ├── 701-net-0309-staging-fsl_ppfe-enable-hif-event-from-userspace.patch │ │ │ ├── 701-net-0310-staging-fsl_ppfe-performance-tuning-for-user-space.patch │ │ │ ├── 701-net-0311-staging-fsl_ppfe-eth-Update-to-use-SPDX-identifiers.patch │ │ │ ├── 701-net-0312-staging-fsl_ppfe-eth-misc-clean-up.patch │ │ │ ├── 701-net-0313-staging-fsl_ppfe-eth-reorganize-platform-phy-paramet.patch │ │ │ ├── 701-net-0314-staging-fsl_ppfe-eth-support-single-interface-initia.patch │ │ │ ├── 701-net-0315-net-fsl_ppfe-update-dts-properties-for-phy.patch │ │ │ ├── 701-net-0316-staging-fsl_ppfe-eth-remove-unused-code.patch │ │ │ ├── 701-net-0317-staging-fsl_ppfe-eth-separate-mdio-init-from-mac-ini.patch │ │ │ ├── 701-net-0318-staging-fsl_ppfe-eth-adapt-to-link-mode-based-phydev.patch │ │ │ ├── 701-net-0319-staging-fsl_ppfe-eth-use-generic-soc_device-infra-in.patch │ │ │ ├── 701-net-0320-staging-fsl_ppfe-eth-use-memremap-to-map-RAM-area-us.patch │ │ │ ├── 701-net-0321-staging-fsl_ppfe-eth-remove-fallback-argument-from-d.patch │ │ │ ├── 701-net-0322-staging-fsl_ppfe-eth-prefix-header-search-paths-with.patch │ │ │ ├── 701-net-0323-staging-fsl_ppfe-eth-add-pfe-support-to-Kconfig-and-.patch │ │ │ ├── 701-net-0324-staging-fsl_ppfe-eth-Disable-termination-of-CRC-fwd.patch │ │ │ ├── 701-net-0325-net-phy-add-10G-fixed-link-support.patch │ │ │ ├── 701-net-0326-phy-Add-2.5G-SGMII-interface-mode.patch │ │ │ ├── 701-net-0327-at803x-Address-packet-drops-at-low-traffic-rate-due-.patch │ │ │ ├── 701-net-0328-net-phy-Inphi-IN112525_s03-retimer-support.patch │ │ │ ├── 701-net-0329-net-phy-Inphi-IN112525_s03-retimer-updates.patch │ │ │ ├── 701-net-0330-net-phy-at803x-add-vddio-1v8-and-eee-disable-support.patch │ │ │ ├── 701-net-0331-drivers-net-phy-aquantia-enable-AQR112-and-AQR412.patch │ │ │ ├── 701-net-0332-drivers-net-phy-aquantia-fix-system-side-protocol-mi.patch │ │ │ ├── 701-net-0333-drivers-net-phy-aquantia-enable-USX-AN-for-USXGMII-p.patch │ │ │ ├── 701-net-0334-net-tsn-netlink-interface-for-APP-layer-to-config-TS.patch │ │ │ ├── 701-net-0335-net-tsn-fix-headfile-voliates-the-new-rule.patch │ │ │ ├── 701-net-0336-enetc-add-support-Credit-Based-Shaper-CBS-for-hardwa.patch │ │ │ ├── 701-net-0337-enetc-add-support-tsn-capabilities-qbv-qci-qbu-cbs.patch │ │ │ ├── 701-net-0338-net-dsa-felix-Fix-probing-allocation-and-cleanup-pat.patch │ │ │ ├── 701-net-0339-LF-368-net-mscc-ocelot-hard-code-VCAP_PORT_CNT-for-F.patch │ │ │ ├── 701-net-0340-LF-368-net-mscc-ocelot-make-ocelot_ace_rule-support-.patch │ │ │ ├── 701-net-0341-LF-368-net-mscc-ocelot-add-VCAP-IS2-rule-to-trap-PTP.patch │ │ │ ├── 701-net-0342-LF-376-enetc-disable-EEE-autoneg-by-default.patch │ │ │ ├── 701-net-0343-staging-dpaa2-ethsw-move-port-notifier-per-ethsw.patch │ │ │ ├── 701-net-0344-staging-dpaa2-ethsw-move-port-switchdev-notifier-per.patch │ │ │ ├── 701-net-0345-staging-dpaa2-ethsw-move-port-switchdev-blocking-not.patch │ │ │ ├── 701-net-0346-staging-dpaa2-ethsw-ordered-workqueue-should-be-per-.patch │ │ │ ├── 701-net-0347-staging-fsl-dpaa2-mac-do-not-call-dpmac_set_link_sta.patch │ │ │ ├── 701-net-0348-staging-fsl-dpaa2-mac-reverse-order-of-handling-stop.patch │ │ │ ├── 701-net-0349-fsl_qbman-add-dummy-functions-for-probe-deferal-APIs.patch │ │ │ ├── 701-net-0350-sdk_fman-fix-identation-causing-compilation-warnings.patch │ │ │ ├── 701-net-0351-sdk_fman-address-compilation-warning.patch │ │ │ ├── 701-net-0352-soc-fsl-dpio-Enable-ACP-port-in-Linux-QMAN-driver.patch │ │ │ ├── 701-net-0353-staging-fsl-dpaa2-mac-do-not-stop-MAC-when-the-net_d.patch │ │ │ ├── 701-net-0354-bus-fsl-mc-add-the-dpdbg-device-type.patch │ │ │ ├── 701-net-0355-sdk_fman-decrease-log-severity-levels.patch │ │ │ ├── 701-net-0356-sdk_dpaa-ethtool-drop-unused-variable.patch │ │ │ ├── 701-net-0357-sdk_dpaa-ls1043a-errata-memory-related-fixes.patch │ │ │ ├── 701-net-0358-sdk_dpaa-ls1043a-errata-update-and-optimize-the-rest.patch │ │ │ ├── 701-net-0359-sdk_dpaa-ls1043a-errata-re-enable-SG-support-and-rec.patch │ │ │ ├── 701-net-0360-sdk_dpaa-sdk_fman-ls1043a-errata-detect-based-on-DTB.patch │ │ │ ├── 701-net-0361-sdk_dpaa-sdk_fman-ls1034a-errata-update-number-to-A0.patch │ │ │ ├── 701-net-0362-sdk_dpaa-ceetm-remove-references-to-qdisc_lookup.patch │ │ │ ├── 701-net-0363-sdk_dpaa-ceetm-export-the-ceetm_tx-symbol.patch │ │ │ ├── 701-net-0364-sdk_dpaa-ceetm-enable-building-as-a-module.patch │ │ │ ├── 701-net-0365-sdk_dpaa-ceetm-coding-style-cleanup.patch │ │ │ ├── 701-net-0366-LF-697-net-ethernet-freescale-sdk_fman-fix-the-build.patch │ │ │ ├── 701-net-0367-net-mscc-ocelot-Workaround-to-allow-traffic-to-CPU-i.patch │ │ │ ├── 701-net-0377-net-dsa-ocelot-add-NET_VENDOR_MICROSEMI-dependency.patch │ │ │ ├── 701-net-0378-mii-Add-helpers-for-parsing-SGMII-auto-negotiation.patch │ │ │ ├── 701-net-0379-net-phylink-make-QSGMII-a-valid-PHY-mode-for-in-band.patch │ │ │ ├── 701-net-0380-net-phylink-add-support-for-polling-MAC-PCS.patch │ │ │ ├── 701-net-0381-net-dsa-Pass-pcs_poll-flag-from-driver-to-PHYLINK.patch │ │ │ ├── 701-net-0382-enetc-Make-MDIO-accessors-more-generic-and-export-to.patch │ │ │ ├── 701-net-0383-enetc-Set-MDIO_CFG_HOLD-to-the-recommended-value-of-.patch │ │ │ ├── 701-net-0384-net-mscc-ocelot-make-phy_mode-a-member-of-the-common.patch │ │ │ ├── 701-net-0385-net-mscc-ocelot-export-ANA-DEV-and-QSYS-registers-to.patch │ │ │ ├── 701-net-0386-net-dsa-felix-Add-PCS-operations-for-PHYLINK.patch │ │ │ ├── 701-net-0387-net-phy-vsc8514-enable-in-band-SGMII-auto-negotiatio.patch │ │ │ ├── 701-net-0388-drivers-net-phy-aquantia-Add-XFI-counters.patch │ │ │ ├── 701-net-0389-drivers-net-felix-set-link-based-on-BMSR-not-LPA.patch │ │ │ ├── 701-net-0390-drivers-net-phylink-in-band-AN-for-USXGMII.patch │ │ │ ├── 701-net-0391-drivers-net-phy-don-t-crash-in-phy_read-_write_mmd-w.patch │ │ │ ├── 701-net-0392-drivers-net-dsa-felix-Allow-PHY-to-AN-10-100-1000-wi.patch │ │ │ ├── 701-net-0393-drivers-net-dsa-felix-Handle-PAUSE-Rx-regardless-of-.patch │ │ │ ├── 701-net-0394-drivers-net-mscc_ocelot-don-t-flood-unicast-traffic-.patch │ │ │ ├── 701-net-0395-LF-183-sdk_fman-add-an-option-for-RTC-1588-timer-ini.patch │ │ │ ├── 701-net-0396-LF-183-ptp-depend-on-FSL_SDK_FMAN_RTC_API-for-ptp_qo.patch │ │ │ ├── 701-net-0397-sdk_dpaa-ceetm-fix-recursive-dependencies.patch │ │ │ ├── 701-net-0398-enetc-add-ioctl-support-for-PHY-related-ops.patch │ │ │ ├── 701-net-0399-staging-fsl_ppfe-eth-Enhance-error-checking-in-platf.patch │ │ │ ├── 701-net-0400-drivers-staging-fsl_qbman-Disable-Portal-Channel-IRQ.patch │ │ │ ├── 701-net-0401-fsl_qbman-Framework-for-enabling-Link-status-notific.patch │ │ │ ├── 701-net-0402-drivers-net-dsa-felix-don-t-restart-PCS-SGMII-AN-if-.patch │ │ │ ├── 701-net-0403-net-dsa-felix-Don-t-error-out-on-disabled-ports-with.patch │ │ │ ├── 701-net-0404-LF-457-ocelot-tsn-clean-preempt-interrupt-status.patch │ │ │ ├── 701-net-0406-sdk_qbman-Only-create-debugfs-entries-when-QBMan-is-.patch │ │ │ ├── 701-net-0407-LF-924-net-enetc-Set-MAC-Rx-FIFO-to-recommended-valu.patch │ │ │ ├── 701-net-0408-sdk_fman-fix-CONFIG_COMPAT-leak-during-headers-insta.patch │ │ │ ├── 801-audio-0001-Revert-ASoC-fsl_sai-Fix-noise-when-using-EDMA.patch │ │ │ ├── 801-audio-0002-Revert-ASoC-fsl_sai-Implement-set_bclk_ratio.patch │ │ │ ├── 801-audio-0003-Revert-ASoC-fsl_sai-Add-support-for-imx8qm.patch │ │ │ ├── 801-audio-0004-Revert-ASoC-fsl_sai-Add-support-for-imx7ulp-imx8mq.patch │ │ │ ├── 801-audio-0005-Revert-ASoC-fsl_sai-Add-support-for-SAI-new-version.patch │ │ │ ├── 801-audio-0006-Revert-ASoC-fsl_sai-Update-Tx-Rx-channel-enable-mask.patch │ │ │ ├── 801-audio-0007-Revert-ASoC-fsl_sai-Add-registers-definition-for-mul.patch │ │ │ ├── 801-audio-0008-Revert-ASoC-Remove-dev_err-usage-after-platform_get_.patch │ │ │ ├── 801-audio-0009-Revert-ASoC-fsl_sai-mark-regmap-as-fast_io.patch │ │ │ ├── 801-audio-0010-Revert-ASoC-fsl_sai-derive-TX-FIFO-watermark-from-FI.patch │ │ │ ├── 801-audio-0011-Revert-ASoC-fsl_sai-add-of_match-data.patch │ │ │ ├── 801-audio-0012-MLK-9974-ASoC-fsl_sai-There-is-underrun-detected-in-.patch │ │ │ ├── 801-audio-0013-MLK-10611-1-ASoC-fsl-sai-Just-one-device-can-playbac.patch │ │ │ ├── 801-audio-0014-MLK-11628-ASoC-fsl_sai-add-initial-value-for-is_slav.patch │ │ │ ├── 801-audio-0015-ASoC-fsl-sai-set-xCR4-xCR5-xMR-for-SAI-master-mode.patch │ │ │ ├── 801-audio-0016-MLK-12374-ASoC-fsl_sai-Change-the-dev_warn-to-dev_db.patch │ │ │ ├── 801-audio-0017-MLK-12786-2-ASoC-fsl_sai-correct-the-clock-source-fo.patch │ │ │ ├── 801-audio-0018-MLK-13574-2-ASoC-fsl_sai-refine-driver-for-ip-upgrad.patch │ │ │ ├── 801-audio-0019-MLK-13609-ASoC-fsl_sai-fix-for-synchronize-mode.patch │ │ │ ├── 801-audio-0020-ASoC-fsl_-e-sai-introduce-shared-interrupt-DT-flag-p.patch │ │ │ ├── 801-audio-0021-ASoC-fsl_sai-handle-slave-mode-per-TX-RX-direction.patch │ │ │ ├── 801-audio-0022-ASoC-fsl_sai-set-specific-fmt-for-I2S-XTOR.patch │ │ │ ├── 801-audio-0024-MLK-14847-Revert-ASoC-fsl-sai-set-xCR4-xCR5-xMR-for-.patch │ │ │ ├── 801-audio-0025-MLK-14870-ASoC-fsl_sai-Remove-support-for-S20_3LE.patch │ │ │ ├── 801-audio-0026-MLK-14935-ASoC-fsl_sai-Fix-mixing-initialization-dat.patch │ │ │ ├── 801-audio-0027-MLK-15140-1-ASoC-fsl_sai-support-latest-sai-module.patch │ │ │ ├── 801-audio-0028-MLK-15927-1-ASoC-fsl_sai-Fix-noise-when-using-EDMA.patch │ │ │ ├── 801-audio-0029-MLK-15960-1-ASoC-fsl_sai-update-fifo_depth-for-diffe.patch │ │ │ ├── 801-audio-0030-MLK-15960-2-ASoC-fsl_sai-refine-the-pm-runtime-funct.patch │ │ │ ├── 801-audio-0031-MLK-13975-ASoC-fsl_sai-Refine-master-flag-handling.patch │ │ │ ├── 801-audio-0032-MLK-16130-1-ASoC-fsl_sai-enable-TCE-RCE-according-to.patch │ │ │ ├── 801-audio-0033-MLK-13946-3-ASoC-fsl_sai-fix-the-xMR-setting.patch │ │ │ ├── 801-audio-0034-MLK-13946-8-ASoC-fsl_sai-use-min-channels-slots-for-.patch │ │ │ ├── 801-audio-0035-MLK-16929-1-ASoC-fsl_sai-add-bitclk_freq.patch │ │ │ ├── 801-audio-0037-MLK-16224-4-ASoC-fsl_sai-support-multi-fifo-and-DSD.patch │ │ │ ├── 801-audio-0038-MLK-17467-ASoC-fsl_sai-fix-typo-for-fsl_sai.patch │ │ │ ├── 801-audio-0039-MLK-16224-6-ASoC-fsl_sai-fix-DSD-suspend-resume.patch │ │ │ ├── 801-audio-0040-MLK-17428-8-ASoC-fsl_sai-support-768KHz-sample-rate.patch │ │ │ ├── 801-audio-0041-MLK-17485-ASoC-fsl_sai-Specify-supported-rate_min-an.patch │ │ │ ├── 801-audio-0042-MLK-17566-ASoC-fsl_sai-fix-register-definition.patch │ │ │ ├── 801-audio-0043-MLK-17528-1-ASoC-fsl_sai-Introduce-FSL_SAI_CLK_BIT-c.patch │ │ │ ├── 801-audio-0044-MLK-17528-3-ASoC-fsl_sai-Set-clock-rate-in-set_syscl.patch │ │ │ ├── 801-audio-0045-MLK-17156-1-ASoC-fsl_sai-update-register-offset-for-.patch │ │ │ ├── 801-audio-0046-Sound-Soc-fsl-Set-SAI-Channel-Mode-to-Output-Mode.patch │ │ │ ├── 801-audio-0047-MLK-17580-ASoC-fsl-dsd-Add-DSD-utilities-helper.patch │ │ │ ├── 801-audio-0048-MLK-17580-ASoC-fsl-sai-Use-DSD-helper.patch │ │ │ ├── 801-audio-0049-MLK-17580-ASoC-fsl-sai-check-for-pinctrl-status.patch │ │ │ ├── 801-audio-0050-MLK-17531-1-ASoC-fsl-sai-add-support-for-SAI-v3.01.patch │ │ │ ├── 801-audio-0051-MLK-18534-1-ASoC-fsl-sai-introduce-1-1-bclk-mclk-rat.patch │ │ │ ├── 801-audio-0052-MLK-18682-1-ASoC-fsl-sai-use-set_bclk_ratio-to-calcu.patch │ │ │ ├── 801-audio-0053-MLK-18682-2-ASoC-fsl-sai-allow-dynamic-pll-switching.patch │ │ │ ├── 801-audio-0054-MLK-18947-ASoC-fsl_sai-fix-volatile-function.patch │ │ │ ├── 801-audio-0055-MLK-18898-1-ASoC-fsl_sai-select-pinctrl-state-as-fun.patch │ │ │ ├── 801-audio-0056-MLK-19573-1-ASoC-fsl-dsd-make-fsl_get_pins_state-inl.patch │ │ │ ├── 801-audio-0057-MLK-15975-3-ASoC-fsl_sai-The-offset-of-fifo_off-is-c.patch │ │ │ ├── 801-audio-0058-MLK-20189-8-ASoC-fsl_sai-use-signed-offset-variable.patch │ │ │ ├── 801-audio-0059-MLK-20328-1-ASoC-fsl_sai-map-number-of-pins-to-datal.patch │ │ │ ├── 801-audio-0060-ASoC-fsl_sai-Support-EPROBE_DEFER.patch │ │ │ ├── 801-audio-0061-ASoC-fsl_sai-support-multi-power-domain.patch │ │ │ ├── 801-audio-0062-ASoC-fsl-sai-fix-build-failture-due-to-5.1-RC7-upgra.patch │ │ │ ├── 801-audio-0063-MLK-21876-4-ASoC-fsl-sai-fix-build-for-next-20190524.patch │ │ │ ├── 801-audio-0064-ASoC-fsl_sai-Mark-cache-dirty-at-resume.patch │ │ │ ├── 801-audio-0065-LF-106-ASoC-fsl_sai-request-BUS_FREQ_AUDIO.patch │ │ │ ├── 801-audio-0066-MLK-16224-2-ASoC-dmaengine_pcm-add-fifo_num-to-snd_d.patch │ │ │ ├── 801-audio-0069-MLK-21484-4-ASoC-fsl_sai-ensure-clk-not-in-use-prior.patch │ │ │ ├── 801-audio-0070-MLK-21957-1-ASoC-fsl_sai-remove-reset-code-from-dai_.patch │ │ │ ├── 801-audio-0071-MLK-21957-2-ASoC-fsl_sai-read-SAI-version-and-params.patch │ │ │ ├── 801-audio-0072-MLK-22522-ASoC-fsl_sai-fix-stack-out-of-bounds-KASAN.patch │ │ │ ├── 801-audio-0073-MLK-21957-3-ASoC-fsl_sai-add-bitcount-and-timestamp-.patch │ │ │ ├── 801-audio-0074-ASoC-fsl_sai-fix-build-issue-of-incomplete-parenthes.patch │ │ │ ├── 802-can-0001-imx-busfreq-Add-API-header-file.patch │ │ │ ├── 802-can-0002-can-rx-offload-fix-long-lines.patch │ │ │ ├── 802-can-0003-can-rx-offload-can_rx_offload_compare-fix-typo.patch │ │ │ ├── 802-can-0004-can-rx-offload-can_rx_offload_irq_offload_timestamp-.patch │ │ │ ├── 802-can-0005-can-rx-offload-can_rx_offload_reset-remove-no-op-fun.patch │ │ │ ├── 802-can-0006-can-rx-offload-Prepare-for-CAN-FD-support.patch │ │ │ ├── 802-can-0007-can-flexcan-use-devm_platform_ioremap_resource-to-si.patch │ │ │ ├── 802-can-0008-can-flexcan-flexcan_irq_state-only-read-timestamp-if.patch │ │ │ ├── 802-can-0009-can-flexcan-rename-macro-FLEXCAN_IFLAG_MB-FLEXCAN_IF.patch │ │ │ ├── 802-can-0010-can-flexcan-flexcan_irq-rename-variable-reg_iflag-re.patch │ │ │ ├── 802-can-0011-can-flexcan-rename-struct-flexcan_priv-reg_imask-1-2.patch │ │ │ ├── 802-can-0012-can-flexcan-remove-TX-mailbox-bit-from-struct-flexca.patch │ │ │ ├── 802-can-0013-can-flexcan-convert-struct-flexcan_priv-rx_mask-1-2-.patch │ │ │ ├── 802-can-0014-can-flexcan-introduce-struct-flexcan_priv-tx_mask-an.patch │ │ │ ├── 802-can-0015-can-flexcan-flexcan_read_reg_iflag_rx-optimize-readi.patch │ │ │ ├── 802-can-0016-can-flexcan-flexcan_irq-add-support-for-TX-mailbox-i.patch │ │ │ ├── 802-can-0017-can-flexcan-flexcan_mailbox_read-make-use-of-flexcan.patch │ │ │ ├── 802-can-0018-can-flexcan-use-struct-canfd_frame-for-CAN-classic-f.patch │ │ │ ├── 802-can-0019-can-flexcan-add-CAN-FD-mode-support.patch │ │ │ ├── 802-can-0020-can-flexcan-add-CAN-FD-BRS-support.patch │ │ │ ├── 802-can-0021-can-flexcan-add-ISO-CAN-FD-feature-support.patch │ │ │ ├── 802-can-0022-can-flexcan-add-Transceiver-Delay-Compensation-suopp.patch │ │ │ ├── 802-can-0023-can-flexcan-add-imx8qm-support.patch │ │ │ ├── 802-can-0024-can-flexcan-add-lx2160ar1-support.patch │ │ │ ├── 802-can-0025-can-flexcan-add-LPSR-mode-support-for-i.MX7D.patch │ │ │ ├── 802-can-0026-can-flexcan-fix-deadlock-when-using-self-wakeup.patch │ │ │ ├── 802-can-0027-can-flexcan-add-CAN-wakeup-function-for-i.MX8.patch │ │ │ ├── 802-can-0028-can-flexcan-Add-S32V234-support-to-FlexCAN-driver.patch │ │ │ ├── 803-clock-0001-clk-ls1028a-Add-clock-driver-for-Display-output-inte.patch │ │ │ ├── 804-crypto-0001-crypto-add-support-for-TLS-1.0-record-encryption.patch │ │ │ ├── 804-crypto-0002-crypto-tcrypt-include-rsa-test.patch │ │ │ ├── 804-crypto-0003-crypto-caam-use-mapped_-src-dst-_nents-for-descripto.patch │ │ │ ├── 804-crypto-0004-crypto-caam-use-devres-to-unmap-memory.patch │ │ │ ├── 804-crypto-0005-crypto-caam-use-devres-to-remove-debugfs.patch │ │ │ ├── 804-crypto-0006-crypto-caam-use-devres-to-de-initialize-the-RNG.patch │ │ │ ├── 804-crypto-0007-crypto-caam-use-devres-to-de-initialize-QI.patch │ │ │ ├── 804-crypto-0008-crypto-caam-use-devres-to-populate-platform-devices.patch │ │ │ ├── 804-crypto-0009-crypto-caam-populate-platform-devices-last.patch │ │ │ ├── 804-crypto-0010-MLK-9769-1-crypto-caam-jr-remove-incorrect-comment-f.patch │ │ │ ├── 804-crypto-0011-MLK-20204-crypto-caam-remove-deadcode-on-32-bit-plat.patch │ │ │ ├── 804-crypto-0012-MLK-19053-crypto-caam-RNG4-TRNG-errata.patch │ │ │ ├── 804-crypto-0013-MLK-9769-9-crypto-caam-adjust-RNG-timing-to-support-.patch │ │ │ ├── 804-crypto-0014-MLK-9769-8-crypto-caam-add-a-test-for-the-RNG.patch │ │ │ ├── 804-crypto-0015-MLKU-123-1-crypto-caam-add-support-for-i.mx8mm-mn.patch │ │ │ ├── 804-crypto-0016-MLKU-114-1-crypto-caam-reduce-page-0-regs-access-to-.patch │ │ │ ├── 804-crypto-0017-MLKU-114-2-crypto-caam-SCU-firmware-support.patch │ │ │ ├── 804-crypto-0018-MLKU-114-3-crypto-caam-OP-TEE-firmware-support.patch │ │ │ ├── 804-crypto-0019-MLKU-38-3-crypto-caam-add-SNVS-SECVIO-support.patch │ │ │ ├── 804-crypto-0020-MLKU-25-3-crypto-caam-add-Secure-Memory-support.patch │ │ │ ├── 804-crypto-0021-MLK-19801-1-crypto-caam-add-tag-functionality.patch │ │ │ ├── 804-crypto-0022-MLK-19801-2-crypto-caam-add-support-of-tagged-keys-i.patch │ │ │ ├── 804-crypto-0023-MLK-10036-crypto-caam-add-support-for-DSM-with-Mega-.patch │ │ │ ├── 804-crypto-0024-MLK-19449-crypto-caam-Change-structure-type-represen.patch │ │ │ ├── 804-crypto-0025-crypto-caam-qi2-add-unused-dpseci-API.patch │ │ │ ├── 804-crypto-0026-crypto-caam-qi2-add-OPR-Order-Preservation-support.patch │ │ │ ├── 804-crypto-0027-crypto-caam-add-support-for-MOVEB-command.patch │ │ │ ├── 804-crypto-0028-crypto-caam-qi-add-support-for-TLS-1.0-record.patch │ │ │ ├── 804-crypto-0029-crypto-caam-qi2-add-support-for-TLS-1.0-record.patch │ │ │ ├── 804-crypto-0030-crypto-caam-add-functionality-used-by-the-caam_dma-d.patch │ │ │ ├── 804-crypto-0031-crypto-caam-add-caam_dma-device-on-caam_probe.patch │ │ │ ├── 804-crypto-0032-crypto-caam-add-CAAM-job-ring-UIO-support.patch │ │ │ ├── 804-crypto-0033-LFV-26-crypto-caam-fix-Secure-Memory-driver-init.patch │ │ │ ├── 804-crypto-0034-LF-63-1-crypto-caam-fix-SM-test-init.patch │ │ │ ├── 804-crypto-0035-crypto-caam-qi-use-QBMan-NXP-SDK-driver.patch │ │ │ ├── 804-crypto-0036-LF-933-crypto-caam-fix-iosource-busy-issue.patch │ │ │ ├── 804-crypto-0038-LF-838-crypto-caam-increase-the-domain-of-write-memo.patch │ │ │ ├── 804-crypto-0040-LF-292-1-crypto-caam-refactor-RNG-initialization.patch │ │ │ ├── 804-crypto-0041-LF-292-2-crypto-caam-add-power-management.patch │ │ │ ├── 805-display-0001-drm-arm-mali-dp-Add-display-QoS-interface-configurat.patch │ │ │ ├── 805-display-0002-drm-rockchip-prepare-common-code-for-cdns-and-rk-dpi.patch │ │ │ ├── 805-display-0003-drm-bridge-add-Cadence-MHDP-HDMI-DP-API.patch │ │ │ ├── 805-display-0004-drm-bridge-Add-Cadence-DP-HDMI-core-driver.patch │ │ │ ├── 805-display-0005-gpu-drm-Add-imx8qm-mq-DP-HDMI-driver.patch │ │ │ ├── 805-display-0006-drm-bridge-cadence-Add-new-api-functions.patch │ │ │ ├── 805-display-0007-drm-bridge-cadence-Add-mhdp-audio-driver.patch │ │ │ ├── 805-display-0008-drm-bridge-cadence-Add-CEC-driver-for-cdns-mhdp-hdmi.patch │ │ │ ├── 805-display-0009-drm-rockchip-Fix-build-failed-issue.patch │ │ │ ├── 805-display-0010-drm-bridge-cadence-move-struct-imx_mhdp_device-to-dr.patch │ │ │ ├── 805-display-0011-drm-imx-add-imx8mq-hdmi-support.patch │ │ │ ├── 805-display-0012-drm-rockchip-change-base-address-name-from-regs-to-r.patch │ │ │ ├── 805-display-0013-drm-bridge-cadence-Add-power_on-to-__cdns_dp_probe.patch │ │ │ ├── 805-display-0014-drm-ls1028a-Add-DP-driver-support-for-LS1028A.patch │ │ │ ├── 805-display-0015-drm-bridge-cadence-Add-support-for-periodically-poll.patch │ │ │ ├── 805-display-0016-drm-imx-hdmi-support-arc-function.patch │ │ │ ├── 805-display-0017-drm-bridge-cadence-Fix-return-value-for-set-log-addr.patch │ │ │ ├── 805-display-0018-drm-bridge-cdns-dp-Remove-link-rate-lanes-set-by-dev.patch │ │ │ ├── 805-display-0019-drm-imx-mhdp-add-dual-mode-support-for-imx8qm.patch │ │ │ ├── 805-display-0020-drm-bridge-cdns-cec-fix-LA-failed-set-issue.patch │ │ │ ├── 805-display-0021-DRM-mhdp-HDMI-skip-scdc-write-return-check.patch │ │ │ ├── 805-display-0022-drm-mhdp-add-mutex-lock-to-mhdp-register-access-func.patch │ │ │ ├── 805-display-0023-drm-mhdp-reset-video-mode-after-hdmi-dp-cable-plugin.patch │ │ │ ├── 805-display-0024-drm-bridge-cadence-hdmi-remove-video-mode-limition.patch │ │ │ ├── 805-display-0025-drm-imx-hdp-add-hdr10-metadata-property.patch │ │ │ ├── 805-display-0026-drm-imx-hdp-add-colorspace-property.patch │ │ │ ├── 805-display-0027-drm-imx-hdp-force-a-mode-set-when-colorspace-is-chan.patch │ │ │ ├── 805-display-0028-drm-imx-hdp-handle-the-various-deep-color-settings.patch │ │ │ ├── 805-display-0029-drm-imx-mhdp-Adjustment-core-rate-of-DP-TX-CTRL-for-.patch │ │ │ ├── 805-display-0032-drm-hdmi-imx8-fix-wrong-hdmi-type-with-non-SCDC-HDMI.patch │ │ │ ├── 805-display-0033-LF-94-drm-hdmi-imx-Add-hdmi-phy-video-mode-valid-fun.patch │ │ │ ├── 805-display-0034-media-bus-format-Add-RGB888_1X30_PADLO-support.patch │ │ │ ├── 805-display-0035-media-bus-format-Add-RGB666_1X30_PADLO-support.patch │ │ │ ├── 805-display-0036-media-bus-format-Add-RGB101010_1X7X5_SPWG-JEIDA-supp.patch │ │ │ ├── 805-display-0037-MLK-15110-1-drm-fourcc-Add-Amphion-tiled-layout-form.patch │ │ │ ├── 805-display-0038-MLK-16290-drm-Add-drm_of_component_probe_with_match-.patch │ │ │ ├── 805-display-0039-MLK-17368-1-drm-add-fourcc-codes-for-Verisilicon-til.patch │ │ │ ├── 805-display-0040-drm-fourcc-add-modifier-for-vivante-compressed-tiled.patch │ │ │ ├── 805-display-0041-drm-fourcc-add-a-10bits-fully-packed-variant-of-NV12.patch │ │ │ ├── 805-display-0045-drm-imx-Add-DPU-KMS-support-part-2.patch │ │ │ ├── 805-display-0046-MLK-22171-drm-imx-Avoid-leaking-dangling-pointer-dev.patch │ │ │ ├── 805-display-0047-MLK-18535-6-drm-imx-core-add-LCDIF-support.patch │ │ │ ├── 805-display-0051-LF-296-drm-mhdp-build-mhdp-sub-modules-into-one-driv.patch │ │ │ ├── 805-display-0052-LF-323-1-drm-bridge-cdns-move-link-training-to-bridg.patch │ │ │ ├── 805-display-0053-LF-323-2-drm-bridge-cdns-enhance-link-training-stabi.patch │ │ │ ├── 805-display-0054-LF-568-1-drm-bridge-cdns-dp-change-bridge_enable-dis.patch │ │ │ ├── 805-display-0055-LF-568-2-drm-gpu-bridge-cdns-Add-force-mode-set-flag.patch │ │ │ ├── 805-display-0056-LF-794-3-gpu-cdn-imx8qm-Add-firmware-loading-support.patch │ │ │ ├── 805-display-0057-LF-794-4-gpu-cdn-mhdp-common-Increase-the-check-aliv.patch │ │ │ ├── 806-dma-0001-dmaengine-fsl-dpaa2-qdma-Add-the-DPDMAI-Data-Path-DM.patch │ │ │ ├── 806-dma-0002-dmaengine-fsl-dpaa2-qdma-Add-NXP-dpaa2-qDMA-controll.patch │ │ │ ├── 806-dma-0003-MLK-14610-DMA-fsl-edma-v3-add-fsl-edma-v3-support.patch │ │ │ ├── 806-dma-0004-MLK-15003-1-DMA-fsl-edma-v3-add-one-more-parameter-f.patch │ │ │ ├── 806-dma-0005-MLK-15003-2-Document-fsl_edma_v3-update-document.patch │ │ │ ├── 806-dma-0006-MLK-15014-dma-fsl-edma-v3-clear-DONE-before-E_SG-ena.patch │ │ │ ├── 806-dma-0007-MLK-15330-1-dma-fsl-edma-v3-combine-two-cells-into-o.patch │ │ │ ├── 806-dma-0008-MLK-15330-3-dma-fsl-edma-v3-add-dual-fifo-support.patch │ │ │ ├── 806-dma-0009-MLK-16327-1-dma-fsl-edma-v3-make-exclusive-channel-n.patch │ │ │ ├── 806-dma-0010-MLK-16437-dma-fsl-edma-v3-fix-kernel-crash-while-edm.patch │ │ │ ├── 806-dma-0011-MLK-16482-dma-fsl-edma-v3-Fix-RCU-issue-while-playin.patch │ │ │ ├── 806-dma-0012-MLK-17094-dma-fsl-edma-v3-add-suspend-resume-to-rest.patch │ │ │ ├── 806-dma-0013-MLK-17782-dma-fsl-edma-v3-fix-issue-reported-by-Cove.patch │ │ │ ├── 806-dma-0014-MLK-18248-dma-fsl-edma-v3-avoid-touch-unused-edma-ch.patch │ │ │ ├── 806-dma-0015-MLK-19022-2-dmaengine-fsl-edma-v3-add-device_synchro.patch │ │ │ ├── 806-dma-0016-MLK-19931-1-dmaengine-fsl-edma-v3-fix-potential-kern.patch │ │ │ ├── 806-dma-0017-MLK-20205-1-dmaengine-fsl-edma-v3-fix-NULL-pointer-d.patch │ │ │ ├── 806-dma-0018-dma-imx-add-the-32bit-dma-limitation.patch │ │ │ ├── 806-dma-0019-dmaengine-fsl-edma-calculate-the-real-count-for-slav.patch │ │ │ ├── 806-dma-0020-MLK-22798-1-dmaengine-fsl-edma-v3-do-not-enable-inte.patch │ │ │ ├── 806-dma-0021-MLK-21443-dmaengine-fsl-edma-v3-clear-pending-irq-be.patch │ │ │ ├── 806-dma-0022-MLK-22284-1-dmaengine-fsl-edma-v3-add-power-domains-.patch │ │ │ ├── 806-dma-0023-MLK-22284-2-dmaengine-fsl-edma-v3-check-dma-descript.patch │ │ │ ├── 806-dma-0024-MLK-22302-2-dmaengine-fsl-edma-v3-fix-build-warning-.patch │ │ │ ├── 806-dma-0025-MLK-22909-dmaengine-fsl-edma-v3-clear-interrupt-comi.patch │ │ │ ├── 806-dma-0026-dma-caam-add-dma-memcpy-driver.patch │ │ │ ├── 806-dma-0027-dma-caam-fix-compilation-error.patch │ │ │ ├── 806-dma-0028-dmaengine-fsl-edma-Add-eDMA-support-for-QorIQ-LS1028.patch │ │ │ ├── 807-gpio-0001-gpio-mpc8xxx-change-irq-handler-from-chained-to-norm.patch │ │ │ ├── 807-gpio-0002-gpio-mpc8xxx-ls1088a-ls1028a-edge-detection-mode-bug.patch │ │ │ ├── 808-i2c-0001-MLK-16095-01-i2c-mux-pca954x-add-i2c-bus-switch-PCA9.patch │ │ │ ├── 808-i2c-0002-MLK-10893-i2c-imx-add-irqf_no_suspend.patch │ │ │ ├── 808-i2c-0003-MLK-11403-I2C-imx-restore-pin-setting-for-i2c.patch │ │ │ ├── 808-i2c-0004-MLK-16203-enable-runtime-pm-of-i2c-temporary-when-do.patch │ │ │ ├── 808-i2c-0005-MLK-20773-i2c-imx-add-a-limit-of-maximum-transfer-sp.patch │ │ │ ├── 808-i2c-0006-MLK-20368-i2c-imx-Coverity-fix-divide-by-zero-warnin.patch │ │ │ ├── 808-i2c-0007-i2c-imx-add-workaround-for-erratum-ERR010027.patch │ │ │ ├── 808-i2c-0008-i2c-imx-implement-bus-recovery-with-gpio-for-Layersc.patch │ │ │ ├── 808-i2c-0009-i2c-imx-get-rid-of-CONFIG_ARCH_LAYERSCAPE.patch │ │ │ ├── 808-i2c-0010-i2c-imx-fix-system-hang-due-to-access-i2c-registers-.patch │ │ │ ├── 808-i2c-0011-i2c-imx-support-slave-mode-for-imx-I2C-driver.patch │ │ │ ├── 808-i2c-0012-i2c-imx-correct-code-of-errata-A-010650-for-layersca.patch │ │ │ ├── 808-i2c-0013-LF-98-i2c-imx-fix-the-judgement-of-slave-mode-in-isr.patch │ │ │ ├── 808-i2c-0014-i2c-mux-pca954x-support-property-idle-state.patch │ │ │ ├── 808-i2c-0015-LF-263-2-i2c-imx-increase-PM-timeout-to-avoid-operat.patch │ │ │ ├── 808-i2c-0016-LF-162-i2c-imx-Defer-probing-if-EDMA-not-available.patch │ │ │ ├── 809-jailhouse-0001-ivshmem-net-virtual-network-device-for-Jailhouse.patch │ │ │ ├── 809-jailhouse-0002-ivshmem-net-Map-shmem-region-as-RAM.patch │ │ │ ├── 809-jailhouse-0003-ivshmem-net-fix-race-in-state-machine.patch │ │ │ ├── 809-jailhouse-0004-ivshmem-net-Remove-unused-variable.patch │ │ │ ├── 809-jailhouse-0005-ivshmem-net-Enable-INTx.patch │ │ │ ├── 809-jailhouse-0006-ivshmem-net-Improve-identification-of-resources.patch │ │ │ ├── 809-jailhouse-0007-ivshmem-net-Switch-to-reset-state-on-each-net-stop-a.patch │ │ │ ├── 809-jailhouse-0008-ivshmem-net-Add-ethtool-register-dump.patch │ │ │ ├── 809-jailhouse-0009-ivshmem-net-Fix-stuck-state-machine-during-setup.patch │ │ │ ├── 809-jailhouse-0010-ivshmem-net-Switch-to-relative-descriptor-addresses.patch │ │ │ ├── 809-jailhouse-0011-ivshmem-net-Switch-to-pci_alloc_irq_vectors.patch │ │ │ ├── 809-jailhouse-0012-ivshmem-net-fill-in-and-check-used-descriptor-chain-.patch │ │ │ ├── 809-jailhouse-0013-ivshmem-net-slightly-improve-debug-output.patch │ │ │ ├── 809-jailhouse-0014-ivshmem-net-set-and-check-descriptor-flags.patch │ │ │ ├── 809-jailhouse-0015-ivshmem-net-add-MAC-changing-interface.patch │ │ │ ├── 809-jailhouse-0016-ivshmem-net-Silence-compiler-warning.patch │ │ │ ├── 809-jailhouse-0017-ivshmem-net-Fix-bogus-transition-to-RESET-state.patch │ │ │ ├── 809-jailhouse-0018-ivshmem-net-Refactor-and-comment-ivshm_net_state_cha.patch │ │ │ ├── 809-jailhouse-0019-ivshmem-net-Switch-to-netdev_xmit_more-helper.patch │ │ │ ├── 809-jailhouse-0020-jailhouse-Add-simple-debug-console-via-the-hyperviso.patch │ │ │ ├── 809-jailhouse-0021-arm64-export-__hyp_stub_vectors.patch │ │ │ ├── 810-keys-0001-security-keys-secure_key-Adds-the-secure-key-support.patch │ │ │ ├── 810-keys-0002-encrypted_keys-Adds-support-for-secure-key-type-as-m.patch │ │ │ ├── 810-keys-0003-security-keys-secure_key-Fix-the-path-of-included-he.patch │ │ │ ├── 811-kvm-0001-arm64-KVM-support-flushing-device-memory.patch │ │ │ ├── 811-kvm-0002-arm-arm64-KVM-allow-specifying-s2-prot-bits-when-map.patch │ │ │ ├── 811-kvm-0003-arm-arm64-KVM-drop-qman-mmio-cacheable-mapping-hack.patch │ │ │ ├── 811-kvm-0004-virt-vgic-Increase-number-of-DeviceIDs-to-17.patch │ │ │ ├── 812-pcie-0001-PCI-layerscape-Add-LS1028a-support.patch │ │ │ ├── 812-pcie-0002-PCI-dwc-Use-interrupt-disabling-instead-of-masking.patch │ │ │ ├── 812-pcie-0003-PCI-dwc-fix-the-msi-failure-after-pm-operations.patch │ │ │ ├── 812-pcie-0004-pci-add-support-aer-pme-interrupts-with-none-MSI-MSI.patch │ │ │ ├── 812-pcie-0005-MLK-20684-PCI-Disable-MSI-on-CYW4356-and-CYW4359-chi.patch │ │ │ ├── 812-pcie-0006-MLK-20716-PCI-add-quirk-for-cyw4356-to-disable-D3-mo.patch │ │ │ ├── 812-pcie-0007-PCI-Disable-MSI-on-marvel-88w9098-and-88w8997-chips.patch │ │ │ ├── 812-pcie-0008-Revert-PCI-mobiveil-Fix-csr_read-write-build-issue.patch │ │ │ ├── 812-pcie-0009-PCI-mobiveil-Refactor-Mobiveil-PCIe-Host-Bridge-IP-d.patch │ │ │ ├── 812-pcie-0010-PCI-mobiveil-Make-mobiveil_host_init-can-be-used-to-.patch │ │ │ ├── 812-pcie-0011-PCI-mobiveil-Add-8-bit-and-16-bit-CSR-register-acces.patch │ │ │ ├── 812-pcie-0012-PCI-mobiveil-Add-PCIe-Gen4-RC-driver-for-NXP-Layersc.patch │ │ │ ├── 812-pcie-0013-PCI-mobiveil-ls_pcie_g4-add-Workaround-for-A-011577.patch │ │ │ ├── 812-pcie-0014-PCI-mobiveil-ls_pcie_g4-add-Workaround-for-A-011451.patch │ │ │ ├── 812-pcie-0015-PCI-ls_gen4-WA-for-SERROR.patch │ │ │ ├── 812-pcie-0016-PCI-mobiveil-Add-the-EP-driver-support.patch │ │ │ ├── 812-pcie-0017-PCI-mobiveil-Add-PCIe-Gen4-EP-driver-for-NXP-Layersc.patch │ │ │ ├── 812-pcie-0018-PCI-mobiveil-Add-workaround-for-unsupported-request-.patch │ │ │ ├── 812-pcie-0019-misc-pci_endpoint_test-Add-the-layerscape-PCIe-GEN4-.patch │ │ │ ├── 813-pm-0001-soc-fsl-add-RCPM-driver.patch │ │ │ ├── 813-pm-0002-fsl_pmc-update-device-bindings.patch │ │ │ ├── 813-pm-0003-drivers-soc-fsl-add-EPU-FSM-configuration-for-deep-s.patch │ │ │ ├── 813-pm-0004-PM-wakeup-Add-routine-to-help-fetch-wakeup-source-ob.patch │ │ │ ├── 813-pm-0005-soc-fsl-handle-RCPM-errata-A-008646-on-SoC-LS1021A.patch │ │ │ ├── 813-pm-0006-soc-fsl-rcpm-remove-build-warning.patch │ │ │ ├── 814-qe-0001-irqchip-qeic-move-qeic-driver-from-drivers-soc-fsl-q.patch │ │ │ ├── 814-qe-0002-irqchip-qeic-merge-qeic-init-code-from-platforms-to-.patch │ │ │ ├── 814-qe-0003-irqchip-qeic-merge-qeic_of_init-into-qe_ic_init.patch │ │ │ ├── 814-qe-0004-irqchip-qeic-remove-PPCisms-for-QEIC.patch │ │ │ ├── 814-qe-0005-QE-remove-PPCisms-for-QE.patch │ │ │ ├── 814-qe-0006-config-qe-add-irq-qeic-support.patch │ │ │ ├── 815-sata-0001-ahci-qoriq-enable-acpi-support-in-qoriq-ahci-driver.patch │ │ │ ├── 815-sata-0002-ahci-qoriq-workaround-for-errata-A-379364-on-lx2160a.patch │ │ │ ├── 815-sata-0003-ahci_qoriq-bug-fix-for-ecc_addr.patch │ │ │ ├── 816-sdhc-0001-mmc-sdhci-of-esdhc-poll-ESDHC_FLUSH_ASYNC_FIFO-bit-u.patch │ │ │ ├── 816-sdhc-0002-LF-605-mmc-sdhci-of-esdhc-convert-to-use-esdhc_tunin.patch │ │ │ ├── 816-sdhc-0003-LF-605-mmc-sdhci-of-esdhc-update-tuning-erratum-A-00.patch │ │ │ ├── 817-spi-0001-spi-spi-fsl-qspi-dynamically-alloc-AHB-memory-for-QS.patch │ │ │ ├── 817-spi-0002-spi-spi-fsl-qspi-Introduce-variable-to-fix-different.patch │ │ │ ├── 817-spi-0003-MLK-21960-1-spi-fspi-enable-fspi-on-imx8qxp-and-imx8.patch │ │ │ ├── 817-spi-0004-MLK-21960-2-spi-fspi-dynamically-alloc-AHB-memory.patch │ │ │ ├── 817-spi-0005-spi-spi-nxp-fspi-Enable-the-Octal-Mode-in-MCR0.patch │ │ │ ├── 817-spi-0006-LF-20-2-mtd-spi-nor-Use-1-bit-mode-of-spansion-s25fs.patch │ │ │ ├── 817-spi-0007-LF-18-3-spi-fsl-qspi-Allocate-AHB-memory-dynamically.patch │ │ │ ├── 818-thermal-0001-thermal-Add-generic-device-cooling-support.patch │ │ │ ├── 818-thermal-0002-thermal-qoriq-Add-device-cooling-support.patch │ │ │ ├── 818-thermal-0003-thermal-qoriq-add-thermal-monitor-unit-version-2-sup.patch │ │ │ ├── 818-thermal-0004-thermal-qoriq-Update-the-settings-for-TMUv2.patch │ │ │ ├── 819-uart-0001-tty-serial-lpuart-add-power-domain-support.patch │ │ │ ├── 819-uart-0002-tty-serial-fsl_lpuart-add-modem-device-reset.patch │ │ │ ├── 819-uart-0003-tty-serial-fsl_lpuart-add-magic-SysRq-support.patch │ │ │ ├── 819-uart-0004-MLK-18137-fsl_lpuart-Fix-loopback-mode.patch │ │ │ ├── 819-uart-0005-tty-serial-fsl_lpuart-enable-dma-mode-for-imx8qxp.patch │ │ │ ├── 819-uart-0006-tty-serial-fsl_lpuart-enable-loopback-mode.patch │ │ │ ├── 819-uart-0007-MLK-15094-tty-serial-fsl_lpuart-check-dma_tx_in_prog.patch │ │ │ ├── 819-uart-0008-MLK-21445-serial-fsl_lpuart-do-HW-reset-for-communic.patch │ │ │ ├── 819-uart-0009-MLK-17133-02-tty-serial-lpuart-add-runtime-pm-suppor.patch │ │ │ ├── 819-uart-0010-tty-serial-lpuart-enable-wakeup-source-for-lpuart.patch │ │ │ ├── 819-uart-0011-serial-fsl_lpuart-enable-two-stop-bits.patch │ │ │ ├── 819-uart-0013-LF-484-tty-serial-lpuart-support-UPIO_MEM32-for-lpua.patch │ │ │ ├── 820-usb-0001-MLK-11340-26-usb-phy-add-notify-suspend-and-resume-c.patch │ │ │ ├── 820-usb-0002-MLK-14285-1-usb-phy-add-usb-mode-for-usb_phy.patch │ │ │ ├── 820-usb-0003-usb-phy-show-USB-charger-type-for-user.patch │ │ │ ├── 820-usb-0004-usb-dwc3-use-suspend-clock-from-dt-to-set-power-down.patch │ │ │ ├── 820-usb-0005-usb-dwc3-add-otg-properties-update.patch │ │ │ ├── 820-usb-0006-usb-dwc3-drd-add-usb-role-switch-class-support-for-d.patch │ │ │ ├── 820-usb-0008-usb-dwc3-set-fwnode-for-role-switch.patch │ │ │ ├── 820-usb-0009-usb-dwc3-Add-workaround-for-host-mode-VBUS-glitch-wh.patch │ │ │ ├── 820-usb-0010-MLK-22675-usb-dwc3-host-disable-park-mode.patch │ │ │ ├── 820-usb-0011-usb-dwc3-Add-cache-type-configuration-support.patch │ │ │ ├── 820-usb-0012-MLK-11340-40-usb-whitelist-update-otg-eh-s-TPL-for-f.patch │ │ │ ├── 820-usb-0013-MLK-9785-1-usb-host-ehci-hcd-enable-park-mode.patch │ │ │ ├── 820-usb-0014-MLK-17380-3-usb-move-EH-SINGLE_STEP_SET_FEATURE-impl.patch │ │ │ ├── 820-usb-0015-MLK-17380-4-usb-host-xhci-add-EH-SINGLE_STEP_SET_FEA.patch │ │ │ ├── 820-usb-0016-MLK-16735-usb-host-add-XHCI_CDNS_HOST-flag.patch │ │ │ ├── 820-usb-0017-MLK-19153-2-usb-host-xhci-do-not-return-error-status.patch │ │ │ ├── 820-usb-0018-MLK-18794-1-usb-host-xhci-add-.bus_suspend-override.patch │ │ │ ├── 820-usb-0019-MLK-9829-usb-core-print-suggested-message-if-failed-.patch │ │ │ ├── 820-usb-0020-MLK-16604-1-usb-host-xhci-plat-add-XHCI_MISSING_CAS-.patch │ │ │ ├── 820-usb-0021-MLK-22099-usb-host-xhci-do-warm-reset-for-link-state.patch │ │ │ ├── 820-usb-0022-usb-fsl-Remove-unused-variable.patch │ │ │ ├── 820-usb-0023-usb-gadget-Correct-NULL-pointer-checking-in-fsl-gadg.patch │ │ │ ├── 820-usb-0024-LF-387-1-Revert-usb-dwc3-Add-cache-type-configuratio.patch │ │ │ ├── 820-usb-0025-LF-387-4-usb-dwc3-Add-cache-type-configuration-suppo.patch │ │ │ ├── 821-vfio-0001-vfio-fsl-mc-Add-VFIO-framework-skeleton-for-fsl-mc-d.patch │ │ │ ├── 821-vfio-0002-vfio-fsl-mc-Scan-DPRC-objects-on-vfio-fsl-mc-driver-.patch │ │ │ ├── 821-vfio-0003-vfio-fsl-mc-Implement-VFIO_DEVICE_GET_INFO-ioctl.patch │ │ │ ├── 821-vfio-0004-vfio-fsl-mc-Implement-VFIO_DEVICE_GET_REGION_INFO-io.patch │ │ │ ├── 821-vfio-0005-vfio-fsl-mc-Allow-userspace-to-MMAP-fsl-mc-device-MM.patch │ │ │ ├── 821-vfio-0006-vfio-fsl-mc-Added-lock-support-in-preparation-for-in.patch │ │ │ ├── 821-vfio-0007-vfio-fsl-mc-Add-irq-infrastructure-for-fsl-mc-device.patch │ │ │ ├── 821-vfio-0008-vfio-fsl-mc-trigger-an-interrupt-via-eventfd.patch │ │ │ ├── 821-vfio-0009-vfio-fsl-mc-Add-read-write-support-for-fsl-mc-device.patch │ │ │ ├── 821-vfio-0010-vfio-fsl-mc-Map-the-VFIO-region-according-to-the-fla.patch │ │ │ ├── 900-layerscape_fix_support_of_LS1012A-RDB.patch │ │ │ ├── 901-fix_irq_type_of_pca953x.patch │ │ │ └── 902-layerscape_improve_support_of_LS1012A-FRDM.patch │ ├── malta │ │ ├── Makefile │ │ ├── README │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ ├── 00_model │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ ├── be │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── be64 │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── config-4.19 │ │ ├── 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 │ │ │ └── lib │ │ │ │ └── preinit │ │ │ │ ├── 05_set_preinit_iface │ │ │ │ └── 06_set_rps_sock_flow │ │ ├── files-4.19 │ │ │ ├── arch │ │ │ │ ├── arm │ │ │ │ │ └── boot │ │ │ │ │ │ └── dts │ │ │ │ │ │ ├── mt7629-lynx-rfb.dts │ │ │ │ │ │ ├── mt7629-rfb.dts │ │ │ │ │ │ └── mt7629.dtsi │ │ │ │ └── arm64 │ │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ └── mediatek │ │ │ │ │ ├── mt7622-bananapi-bpi-r64.dts │ │ │ │ │ ├── mt7622-elecom-wrc-2533gent.dts │ │ │ │ │ ├── mt7622-lynx-rfb1.dts │ │ │ │ │ ├── mt7622-rfb1.dts │ │ │ │ │ └── mt7622.dtsi │ │ │ └── drivers │ │ │ │ └── net │ │ │ │ └── phy │ │ │ │ └── mtk │ │ │ │ └── mt753x │ │ │ │ ├── Kconfig │ │ │ │ ├── Makefile │ │ │ │ ├── mt7530.c │ │ │ │ ├── mt7530.h │ │ │ │ ├── mt7531.c │ │ │ │ ├── mt7531.h │ │ │ │ ├── mt753x.h │ │ │ │ ├── mt753x_common.c │ │ │ │ ├── mt753x_mdio.c │ │ │ │ ├── mt753x_nl.c │ │ │ │ ├── mt753x_nl.h │ │ │ │ ├── mt753x_regs.h │ │ │ │ ├── mt753x_swconfig.c │ │ │ │ ├── mt753x_swconfig.h │ │ │ │ ├── mt753x_vlan.c │ │ │ │ └── mt753x_vlan.h │ │ ├── files-5.4 │ │ │ ├── arch │ │ │ │ └── arm64 │ │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ └── mediatek │ │ │ │ │ ├── mt7622-bananapi-bpi-r64-rootdisk.dts │ │ │ │ │ ├── mt7622-elecom-wrc-2533gent.dts │ │ │ │ │ └── mt7622-rfb1-ubi.dts │ │ │ └── drivers │ │ │ │ └── net │ │ │ │ └── phy │ │ │ │ ├── mtk │ │ │ │ └── mt753x │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── mt7530.c │ │ │ │ │ ├── mt7530.h │ │ │ │ │ ├── mt7531.c │ │ │ │ │ ├── mt7531.h │ │ │ │ │ ├── mt753x.h │ │ │ │ │ ├── mt753x_common.c │ │ │ │ │ ├── mt753x_mdio.c │ │ │ │ │ ├── mt753x_nl.c │ │ │ │ │ ├── mt753x_nl.h │ │ │ │ │ ├── mt753x_regs.h │ │ │ │ │ ├── mt753x_swconfig.c │ │ │ │ │ ├── mt753x_swconfig.h │ │ │ │ │ ├── mt753x_vlan.c │ │ │ │ │ └── mt753x_vlan.h │ │ │ │ └── rtk │ │ │ │ ├── Makefile │ │ │ │ ├── modules.builtin │ │ │ │ ├── rtl8367c │ │ │ │ ├── acl.c │ │ │ │ ├── cpu.c │ │ │ │ ├── dot1x.c │ │ │ │ ├── eee.c │ │ │ │ ├── i2c.c │ │ │ │ ├── igmp.c │ │ │ │ ├── include │ │ │ │ │ ├── acl.h │ │ │ │ │ ├── cpu.h │ │ │ │ │ ├── dot1x.h │ │ │ │ │ ├── eee.h │ │ │ │ │ ├── i2c.h │ │ │ │ │ ├── igmp.h │ │ │ │ │ ├── interrupt.h │ │ │ │ │ ├── l2.h │ │ │ │ │ ├── leaky.h │ │ │ │ │ ├── led.h │ │ │ │ │ ├── mirror.h │ │ │ │ │ ├── oam.h │ │ │ │ │ ├── port.h │ │ │ │ │ ├── ptp.h │ │ │ │ │ ├── qos.h │ │ │ │ │ ├── rate.h │ │ │ │ │ ├── rldp.h │ │ │ │ │ ├── rtk_error.h │ │ │ │ │ ├── rtk_hal.h │ │ │ │ │ ├── rtk_switch.h │ │ │ │ │ ├── rtk_types.h │ │ │ │ │ ├── rtl8367c_asicdrv.h │ │ │ │ │ ├── rtl8367c_asicdrv_acl.h │ │ │ │ │ ├── rtl8367c_asicdrv_cputag.h │ │ │ │ │ ├── rtl8367c_asicdrv_dot1x.h │ │ │ │ │ ├── rtl8367c_asicdrv_eav.h │ │ │ │ │ ├── rtl8367c_asicdrv_eee.h │ │ │ │ │ ├── rtl8367c_asicdrv_fc.h │ │ │ │ │ ├── rtl8367c_asicdrv_green.h │ │ │ │ │ ├── rtl8367c_asicdrv_hsb.h │ │ │ │ │ ├── rtl8367c_asicdrv_i2c.h │ │ │ │ │ ├── rtl8367c_asicdrv_igmp.h │ │ │ │ │ ├── rtl8367c_asicdrv_inbwctrl.h │ │ │ │ │ ├── rtl8367c_asicdrv_interrupt.h │ │ │ │ │ ├── rtl8367c_asicdrv_led.h │ │ │ │ │ ├── rtl8367c_asicdrv_lut.h │ │ │ │ │ ├── rtl8367c_asicdrv_meter.h │ │ │ │ │ ├── rtl8367c_asicdrv_mib.h │ │ │ │ │ ├── rtl8367c_asicdrv_mirror.h │ │ │ │ │ ├── rtl8367c_asicdrv_misc.h │ │ │ │ │ ├── rtl8367c_asicdrv_oam.h │ │ │ │ │ ├── rtl8367c_asicdrv_phy.h │ │ │ │ │ ├── rtl8367c_asicdrv_port.h │ │ │ │ │ ├── rtl8367c_asicdrv_portIsolation.h │ │ │ │ │ ├── rtl8367c_asicdrv_qos.h │ │ │ │ │ ├── rtl8367c_asicdrv_rldp.h │ │ │ │ │ ├── rtl8367c_asicdrv_rma.h │ │ │ │ │ ├── rtl8367c_asicdrv_scheduling.h │ │ │ │ │ ├── rtl8367c_asicdrv_storm.h │ │ │ │ │ ├── rtl8367c_asicdrv_svlan.h │ │ │ │ │ ├── rtl8367c_asicdrv_trunking.h │ │ │ │ │ ├── rtl8367c_asicdrv_unknownMulticast.h │ │ │ │ │ ├── rtl8367c_asicdrv_vlan.h │ │ │ │ │ ├── rtl8367c_base.h │ │ │ │ │ ├── rtl8367c_reg.h │ │ │ │ │ ├── smi.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── storm.h │ │ │ │ │ ├── svlan.h │ │ │ │ │ ├── trap.h │ │ │ │ │ ├── trunk.h │ │ │ │ │ └── vlan.h │ │ │ │ ├── interrupt.c │ │ │ │ ├── l2.c │ │ │ │ ├── leaky.c │ │ │ │ ├── led.c │ │ │ │ ├── mirror.c │ │ │ │ ├── oam.c │ │ │ │ ├── port.c │ │ │ │ ├── ptp.c │ │ │ │ ├── qos.c │ │ │ │ ├── rate.c │ │ │ │ ├── rldp.c │ │ │ │ ├── rtk_hal.c │ │ │ │ ├── rtk_switch.c │ │ │ │ ├── rtl8367c_asicdrv.c │ │ │ │ ├── rtl8367c_asicdrv_acl.c │ │ │ │ ├── rtl8367c_asicdrv_cputag.c │ │ │ │ ├── rtl8367c_asicdrv_dot1x.c │ │ │ │ ├── rtl8367c_asicdrv_eav.c │ │ │ │ ├── rtl8367c_asicdrv_eee.c │ │ │ │ ├── rtl8367c_asicdrv_fc.c │ │ │ │ ├── rtl8367c_asicdrv_green.c │ │ │ │ ├── rtl8367c_asicdrv_hsb.c │ │ │ │ ├── rtl8367c_asicdrv_i2c.c │ │ │ │ ├── rtl8367c_asicdrv_igmp.c │ │ │ │ ├── rtl8367c_asicdrv_inbwctrl.c │ │ │ │ ├── rtl8367c_asicdrv_interrupt.c │ │ │ │ ├── rtl8367c_asicdrv_led.c │ │ │ │ ├── rtl8367c_asicdrv_lut.c │ │ │ │ ├── rtl8367c_asicdrv_meter.c │ │ │ │ ├── rtl8367c_asicdrv_mib.c │ │ │ │ ├── rtl8367c_asicdrv_mirror.c │ │ │ │ ├── rtl8367c_asicdrv_misc.c │ │ │ │ ├── rtl8367c_asicdrv_oam.c │ │ │ │ ├── rtl8367c_asicdrv_phy.c │ │ │ │ ├── rtl8367c_asicdrv_port.c │ │ │ │ ├── rtl8367c_asicdrv_portIsolation.c │ │ │ │ ├── rtl8367c_asicdrv_qos.c │ │ │ │ ├── rtl8367c_asicdrv_rldp.c │ │ │ │ ├── rtl8367c_asicdrv_rma.c │ │ │ │ ├── rtl8367c_asicdrv_scheduling.c │ │ │ │ ├── rtl8367c_asicdrv_storm.c │ │ │ │ ├── rtl8367c_asicdrv_svlan.c │ │ │ │ ├── rtl8367c_asicdrv_trunking.c │ │ │ │ ├── rtl8367c_asicdrv_unknownMulticast.c │ │ │ │ ├── rtl8367c_asicdrv_vlan.c │ │ │ │ ├── smi.c │ │ │ │ ├── stat.c │ │ │ │ ├── storm.c │ │ │ │ ├── svlan.c │ │ │ │ ├── trap.c │ │ │ │ ├── trunk.c │ │ │ │ └── vlan.c │ │ │ │ ├── rtl8367s.c │ │ │ │ ├── rtl8367s_dbg.c │ │ │ │ └── rtl8367s_mdio.c │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_mt7622_emmc_img.sh │ │ │ ├── gen_mt7623_emmc_img.sh │ │ │ ├── gen_mtk_mmc_img.sh │ │ │ ├── gen_scatterfile.sh │ │ │ ├── mt7622.mk │ │ │ ├── mt7623.mk │ │ │ ├── mt7623a_unielec_u7623-uEnv.txt │ │ │ ├── mt7623n_bpir2-uEnv.txt │ │ │ └── mt7629.mk │ │ ├── modules.mk │ │ ├── mt7622 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ ├── preinit │ │ │ │ │ └── 79_move_config │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.19 │ │ │ ├── config-5.4 │ │ │ ├── profiles │ │ │ │ └── default.mk │ │ │ └── target.mk │ │ ├── mt7623 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ ├── preinit │ │ │ │ │ ├── 07_set_iface_mac │ │ │ │ │ └── 79_move_config │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.19 │ │ │ ├── config-5.4 │ │ │ ├── profiles │ │ │ │ └── default.mk │ │ │ └── target.mk │ │ ├── mt7629 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.19 │ │ │ ├── config-5.4 │ │ │ ├── profiles │ │ │ │ └── default.mk │ │ │ └── target.mk │ │ ├── patches-4.19 │ │ │ ├── 0001-arm-dts-mediatek-add-basic-support-for-MT7629-SoC.patch │ │ │ ├── 0001-eth-sync-from-mtk-lede.patch │ │ │ ├── 0002-Revert-ARM-mediatek-add-MT7623a-smp-bringup-code.patch │ │ │ ├── 0002-eth-fix-dsa-support.patch │ │ │ ├── 0003-arm-mediatek-add-MT7629-smp-bring-up-code.patch │ │ │ ├── 0003-mt7531-gsw-internal_phy_calibration.patch │ │ │ ├── 0003-switch-add-mt7531.patch │ │ │ ├── 0004-clk-mediatek-add-clock-support-for-MT7629-SoC.patch │ │ │ ├── 0005-pinctrl-mediatek-sync-with-5.3.patch │ │ │ ├── 0006-mtd-spi-nor-mtk-quadspi-add-SNOR_HWCAPS_READ-to-spi_.patch │ │ │ ├── 0101-pci-mediatek-backport-fix-pcie.patch │ │ │ ├── 0227-arm-dts-Add-Unielec-U7623-DTS.patch │ │ │ ├── 0228-arm-dts-bpir2-fix-console.patch │ │ │ ├── 0301-mtd-mtk-ecc-move-mtk-ecc-header-file-to-include-mtd.patch │ │ │ ├── 0303-mtd-spinand-disable-on-die-ECC.patch │ │ │ ├── 0304-dt-bindings-ARM-MediaTek-Document-devicetree-binding.patch │ │ │ ├── 0306-spi-spi-mem-MediaTek-Add-SPI-NAND-Flash-interface-dr.patch │ │ │ ├── 0307-spi-mem-Mediatek-Add-SPI-Nand-support-for-MT7629.patch │ │ │ └── 0900-bt-mtk-serial-fix.patch │ │ └── patches-5.4 │ │ │ ├── 0001-v5.7-spi-make-spi-max-frequency-optional.patch │ │ │ ├── 0002-v5.7-spi-add-support-for-mediatek-spi-nor-controller.patch │ │ │ ├── 0003-switch-add-mt7531.patch │ │ │ ├── 0005-dts-mt7622-add-gsw.patch │ │ │ ├── 0005-dts-mt7629-add-gsw.patch │ │ │ ├── 0006-dts-fix-bpi2-console.patch │ │ │ ├── 0006-dts-fix-bpi64-console.patch │ │ │ ├── 0010-dts-mt7629-rfb-fix-firmware-partition.patch │ │ │ ├── 0226-phy-phy-mtk-tphy-Add-hifsys-support.patch │ │ │ ├── 0227-arm-dts-Add-Unielec-U7623-DTS.patch │ │ │ ├── 0301-mtd-mtk-ecc-move-mtk-ecc-header-file-to-include-mtd.patch │ │ │ ├── 0303-mtd-spinand-disable-on-die-ECC.patch │ │ │ ├── 0306-spi-spi-mem-MediaTek-Add-SPI-NAND-Flash-interface-dr.patch │ │ │ ├── 0307-dts-mt7629-add-snand-support.patch │ │ │ ├── 0308-dts-mt7622-add-snand-support.patch │ │ │ ├── 0310-dts-add-wmac-support-for-mt7622-rfb1.patch │ │ │ ├── 0500-v5.6-crypto-backport-inside-secure.patch │ │ │ ├── 0501-crypto-add-eip97-inside-secure-support.patch │ │ │ ├── 0502-dts-mt7623-eip97-inside-secure-support.patch │ │ │ ├── 0503-crypto-fix-eip97-cache-incoherent.patch │ │ │ ├── 0600-net-phylink-propagate-resolved-link-config-via-mac_l.patch │ │ │ ├── 0601-net-dsa-propagate-resolved-link-config-via-mac_link_.patch │ │ │ ├── 0602-net-dsa-mt7530-use-resolved-link-config-in-mac_link_.patch │ │ │ ├── 0603-net-dsa-mt7530-Extend-device-data-ready-for-adding-a.patch │ │ │ ├── 0604-net-dsa-mt7530-Add-the-support-of-MT7531-switch.patch │ │ │ ├── 0605-arm64-dts-mt7622-add-mt7531-dsa-to-bananapi-bpi-r64-board.patch │ │ │ ├── 0900-bt-mtk-serial-fix.patch │ │ │ ├── 0990-gsw-rtl8367s-mt7622-support.patch │ │ │ ├── 0991-dt-bindings-PCI-Mediatek-Update-PCIe-binding.patch │ │ │ ├── 0992-PCI-mediatek-Use-regmap-to-get-shared-pcie-cfg-base.patch │ │ │ ├── 0993-arm64-dts-mediatek-Split-PCIe-node-for-MT2712-MT7622.patch │ │ │ ├── 0994-ARM-dts-mediatek-Update-mt7629-PCIe-node.patch │ │ │ ├── 1003-dts-mt7622-rfb-change-to-ax-mtd-layout.patch │ │ │ ├── 1010-pcie-mediatek-fix-clearing-interrupt-status.patch │ │ │ ├── 1011-net-ethernet-mtk_eth_soc-add-support-for-coherent-DM.patch │ │ │ └── 1012-pci-pcie-mediatek-add-support-for-coherent-DMA.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-4.19 │ │ ├── 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-4.19 │ │ │ ├── 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 │ │ └── 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 │ │ │ │ └── upgrade │ │ │ │ └── sdcard.sh │ │ ├── config-4.19 │ │ ├── config-5.4 │ │ ├── cortexa53 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ ├── preinit │ │ │ │ │ └── 82_uDPU │ │ │ │ │ └── upgrade │ │ │ │ │ ├── platform.sh │ │ │ │ │ └── uDPU.sh │ │ │ ├── config-4.19 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── cortexa72 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.19 │ │ │ ├── config-5.4 │ │ │ └── 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 │ │ │ │ │ │ └── 35_turris-omnia_uboot-env │ │ │ │ ├── lib │ │ │ │ │ ├── preinit │ │ │ │ │ │ └── 81_linksys_syscfg │ │ │ │ │ └── upgrade │ │ │ │ │ │ ├── linksys.sh │ │ │ │ │ │ └── platform.sh │ │ │ │ └── sbin │ │ │ │ │ └── fan_ctrl.sh │ │ │ └── target.mk │ │ ├── files-4.19 │ │ │ └── arch │ │ │ │ └── arm64 │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ └── marvell │ │ │ │ └── armada-3720-uDPU.dts │ │ ├── files │ │ │ └── arch │ │ │ │ ├── arm │ │ │ │ └── boot │ │ │ │ │ └── dts │ │ │ │ │ ├── armada-370-buffalo-ls421de.dts │ │ │ │ │ └── armada-385-linksys-venom.dts │ │ │ │ └── arm64 │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ └── marvell │ │ │ │ ├── armada-3720-espressobin-emmc.dts │ │ │ │ ├── armada-3720-espressobin-ultra.dts │ │ │ │ ├── armada-3720-espressobin-v7-emmc.dts │ │ │ │ ├── armada-3720-espressobin-v7.dts │ │ │ │ └── armada-3720-gl-mv1000.dts │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── clearfog.bootscript │ │ │ ├── cortexa53.mk │ │ │ ├── cortexa72.mk │ │ │ ├── cortexa9.mk │ │ │ ├── espressobin.bootscript │ │ │ ├── gen_mvebu_sdcard_img.sh │ │ │ ├── generic-arm64.bootscript │ │ │ ├── turris-omnia.bootscript │ │ │ └── udpu.bootscript │ │ ├── modules.mk │ │ ├── patches-4.19 │ │ │ ├── 002-add_powertables.patch │ │ │ ├── 004-add_sata_disk_activity_trigger.patch │ │ │ ├── 005-linksys_hardcode_nand_ecc_settings.patch │ │ │ ├── 006-mvebu-Mangle-bootloader-s-kernel-arguments.patch │ │ │ ├── 100-find_active_root.patch │ │ │ ├── 102-revert_i2c_delay.patch │ │ │ ├── 205-armada-385-rd-mtd-partitions.patch │ │ │ ├── 206-ARM-mvebu-385-ap-Add-partitions.patch │ │ │ ├── 230-armada-xp-linksys-mamba-broken-idle.patch │ │ │ ├── 231-armada-xp-linksys-mamba-wan.patch │ │ │ ├── 240-linksys-status-led.patch │ │ │ ├── 241-linksys-use-eth0-as-cpu-port.patch │ │ │ ├── 250-adjust-compatible-for-linksys.patch │ │ │ ├── 260-align-mcbin-compatible-with-5.4.patch │ │ │ ├── 300-mvneta-tx-queue-workaround.patch │ │ │ ├── 400-cpuidle-mvebu-indicate-failure-to-enter-deeper-sleep.patch │ │ │ ├── 401-pci-mvebu-time-out-reset-on-link-up.patch │ │ │ ├── 412-ARM-dts-armada388-clearfog-emmc-on-clearfog-base.patch │ │ │ ├── 415-ARM-dts-armada388-clearfog-document-MPP-usage.patch │ │ │ ├── 513-arm64-dts-marvell-armada37xx-Add-emmc-sdio-pinctrl-d.patch │ │ │ ├── 514-arm64-dts-marvell-armada-37xx-Enable-emmc-on-espress.patch │ │ │ ├── 520-arm64-dts-marvell-armada37xx-Add-eth0-alias.patch │ │ │ ├── 521-arm64-dts-armada-3720-espressobin-correct-spi-node.patch │ │ │ ├── 522-arm64-dts-marvell-armada-3720-espressobin-add-ports-.patch │ │ │ ├── 523-Revert-PCI-aardvark-Convert-to-use-pci_host_probe.patch │ │ │ ├── 524-PCI-aardvark-set-host-and-device-to-the-same-MAX-payload-size.patch │ │ │ ├── 527-PCI-aardvark-allow-to-specify-link-capability.patch │ │ │ ├── 528-arm64-dts-armada-3720-espressobin-set-max-link-to-ge.patch │ │ │ ├── 531-net-mvneta-Add-support-for-2500Mbps-SGMII.patch │ │ │ ├── 532-net-mvneta-correct-typo.patch │ │ │ ├── 533-net-mvneta-Dont-advertise-2.5G-modes.patch │ │ │ ├── 534-net-mvneta-remove-redundant-check-for.patch │ │ │ ├── 535-net-marvell-neta-add-comphy-support.patch │ │ │ ├── 536-net-marvell-neta-disable-comphy-when-setting-mode.patch │ │ │ ├── 537-net-mvneta-add-2500baset-support.patch │ │ │ ├── 538-phy-add-QSGMII-and-PCIE-modes.patch │ │ │ ├── 539-phy-core-add-PHY_MODE_ETHERNET.patch │ │ │ ├── 540-phy-fix-build-breakage-add-PHY_MODE_SATA.patch │ │ │ ├── 541-phy-core-rework-phy_set_mode-to-accept-phy-mode-and-.patch │ │ │ ├── 542-phy-add-A3700-COMPHY-support.patch │ │ │ ├── 543-arm64-dts-marvell-armada-37xx-declare-the-COMPHY.patch │ │ │ ├── 544-arm64-dts-uDPU-fix-comphy-definitions.patch │ │ │ ├── 545-arm64-dts-uDPU-remove-i2c-fast-mode.patch │ │ │ ├── 546-arm64-dts-uDPU-SFP-cages-support-3W-modules.patch │ │ │ ├── 550-arm64-dts-uDPU-switch-PHY-operation-mode-to-2500base.patch │ │ │ ├── 560-helios4-dts-status-led-alias.patch │ │ │ └── 561-mvebu-armada-38x-enable-libata-leds.patch │ │ └── patches-5.4 │ │ │ ├── 001-PCI-aardvark-Wait-for-endpoint-to-be-ready-before-tr.patch │ │ │ ├── 002-PCI-aardvark-Don-t-rely-on-jiffies-while-holding-spi.patch │ │ │ ├── 003-net-mvneta-introduce-mvneta_update_stats-routine.patch │ │ │ ├── 004-net-mvneta-introduce-page-pool-API-for-sw-buffer-man.patch │ │ │ ├── 005-net-mvneta-rely-on-build_skb-in-mvneta_rx_swbm-poll-.patch │ │ │ ├── 006-net-mvneta-add-basic-XDP-support.patch │ │ │ ├── 007-gpio-mvebu-avoid_error_message_for_optional_IRQ.patch │ │ │ ├── 007-net-mvneta-move-header-prefetch-in-mvneta_swbm_rx_fr.patch │ │ │ ├── 008-net-mvneta-make-tx-buffer-array-agnostic.patch │ │ │ ├── 009-net-mvneta-add-XDP_TX-support.patch │ │ │ ├── 010-net-mvneta-fix-build-skb-for-bm-capable-devices.patch │ │ │ ├── 011-arm64-dts-uDPU-remove-i2c-fast-mode.patch │ │ │ ├── 012-arm64-dts-uDPU-SFP-cages-support-3W-modules.patch │ │ │ ├── 013-net-mvneta-rely-on-page_pool_recycle_direct-in-mvnet.patch │ │ │ ├── 014-mvneta-driver-disallow-XDP-program-on-hardware-buffe.patch │ │ │ ├── 015-net-mvneta-fix-XDP-support-if-sw-bm-is-used-as-fallb.patch │ │ │ ├── 016-PCI-aardvark-Train-link-immediately-after-enabling-t.patch │ │ │ ├── 017-PCI-aardvark-Improve-link-training.patch │ │ │ ├── 018-PCI-aardvark-Issue-PERST-via-GPIO.patch │ │ │ ├── 019-PCI-aardvark-Add-PHY-support.patch │ │ │ ├── 020-arm64-dts-marvell-armada-37xx-Set-pcie_reset_pin-to-.patch │ │ │ ├── 021-arm64-dts-marvell-armada-37xx-Move-PCIe-comphy-handl.patch │ │ │ ├── 022-arm64-dts-marvell-armada-37xx-Move-PCIe-max-link-spe.patch │ │ │ ├── 023-arm64-dts-add-uDPU-i2c-bus-recovery.patch │ │ │ ├── 024-PCI-aardvark-Don-t-touch-PCIe-registers-if-no-card-c.patch │ │ │ ├── 025-power-reset-add-driver-for-LinkStation-power-off.patch │ │ │ ├── 026-PCI-aardvark-Fix-initialization-with-old-Marvell-s-A.patch │ │ │ ├── 027-arm64-dts-marvell-espressobin-Add-ethernet-switch-al.patch │ │ │ ├── 028-arm64-dts-mcbin-singleshot-add-heartbeat-LED.patch │ │ │ ├── 300-mvebu-Mangle-bootloader-s-kernel-arguments.patch │ │ │ ├── 301-mvebu-armada-38x-enable-libata-leds.patch │ │ │ ├── 302-add_powertables.patch │ │ │ ├── 303-linksys_hardcode_nand_ecc_settings.patch │ │ │ ├── 304-revert_i2c_delay.patch │ │ │ ├── 305-armada-385-rd-mtd-partitions.patch │ │ │ ├── 306-ARM-mvebu-385-ap-Add-partitions.patch │ │ │ ├── 307-armada-xp-linksys-mamba-broken-idle.patch │ │ │ ├── 308-armada-xp-linksys-mamba-wan.patch │ │ │ ├── 309-linksys-status-led.patch │ │ │ ├── 310-linksys-use-eth0-as-cpu-port.patch │ │ │ ├── 311-adjust-compatible-for-linksys.patch │ │ │ ├── 312-ARM-dts-armada388-clearfog-emmc-on-clearfog-base.patch │ │ │ ├── 312-helios4-dts-status-led-alias.patch │ │ │ ├── 314-arm64-dts-marvell-armada37xx-Add-eth0-alias.patch │ │ │ ├── 315-arm64-dts-marvell-armada-3720-espressobin-add-ports-.patch │ │ │ ├── 316-arm64-dts-marvell-espressobin-remove-COMPHY-nodes-as.patch │ │ │ ├── 317-arm64-dts-uDPU-switch-PHY-operation-mode-to-2500base.patch │ │ │ ├── 400-find_active_root.patch │ │ │ ├── 700-mvneta-tx-queue-workaround.patch │ │ │ ├── 800-cpuidle-mvebu-indicate-failure-to-enter-deeper-sleep.patch │ │ │ └── 801-pci-mvebu-time-out-reset-on-link-up.patch │ ├── mxs │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── inittab │ │ ├── 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-4.19 │ │ ├── config-5.4 │ │ ├── files │ │ │ └── arch │ │ │ │ └── mips │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ └── cavium-octeon │ │ │ │ ├── cn7130_ubnt_edgerouter-4.dts │ │ │ │ └── cn71xx.dtsi │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-4.19 │ │ │ ├── 100-ubnt_edgerouter2_support.patch │ │ │ ├── 110-er200-ethernet_probe_order.patch │ │ │ └── 120-cmdline-hack.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-4.19 │ │ ├── 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.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.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 │ ├── 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 │ ├── ramips │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── hotplug.d │ │ │ │ └── usb │ │ │ │ │ └── 10-motion │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ └── 09_fix-checksum │ │ ├── dts │ │ │ ├── mt7620a.dtsi │ │ │ ├── mt7620a_aigale_ai-br100.dts │ │ │ ├── mt7620a_alfa-network_ac1200rm.dts │ │ │ ├── mt7620a_alfa-network_r36m-e4g.dts │ │ │ ├── mt7620a_alfa-network_tube-e4g.dts │ │ │ ├── mt7620a_asus_rp-n53.dts │ │ │ ├── mt7620a_asus_rt-ac51u.dts │ │ │ ├── mt7620a_asus_rt-ac54u.dts │ │ │ ├── mt7620a_asus_rt-ac5x.dtsi │ │ │ ├── mt7620a_bdcom_wap2100-sk.dts │ │ │ ├── mt7620a_buffalo_whr-1166d.dts │ │ │ ├── mt7620a_buffalo_whr-300hp2.dts │ │ │ ├── mt7620a_buffalo_whr-600d.dts │ │ │ ├── mt7620a_cameo_810.dtsi │ │ │ ├── mt7620a_dlink_dch-m225.dts │ │ │ ├── mt7620a_dlink_dir-510l.dts │ │ │ ├── mt7620a_dlink_dir-810l.dts │ │ │ ├── mt7620a_dlink_dwr-118-a1.dts │ │ │ ├── mt7620a_dlink_dwr-118-a2.dts │ │ │ ├── mt7620a_dlink_dwr-960.dts │ │ │ ├── mt7620a_dovado_tiny-ac.dts │ │ │ ├── mt7620a_edimax_br-6478ac-v2.dts │ │ │ ├── mt7620a_edimax_ew-7476rpc.dts │ │ │ ├── mt7620a_edimax_ew-7478ac.dts │ │ │ ├── mt7620a_edimax_ew-7478apc.dts │ │ │ ├── mt7620a_edimax_ew-747x.dtsi │ │ │ ├── mt7620a_engenius_esr600.dts │ │ │ ├── mt7620a_fon_fon2601.dts │ │ │ ├── mt7620a_glinet_gl-mt300a.dts │ │ │ ├── mt7620a_glinet_gl-mt300n.dts │ │ │ ├── mt7620a_glinet_gl-mt750.dts │ │ │ ├── mt7620a_head-weblink_hdrm200.dts │ │ │ ├── mt7620a_hiwifi_hc5661.dts │ │ │ ├── mt7620a_hiwifi_hc5761.dts │ │ │ ├── mt7620a_hiwifi_hc5861.dts │ │ │ ├── mt7620a_hiwifi_hc5x61.dtsi │ │ │ ├── mt7620a_hnet_c108.dts │ │ │ ├── mt7620a_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_psg1208.dts │ │ │ ├── mt7620a_phicomm_psg1218.dtsi │ │ │ ├── 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_xiaomi_miwifi-mini.dts │ │ │ ├── mt7620a_xiaomi_miwifi-r3.dts │ │ │ ├── mt7620a_youku_yk1.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_kimax_u35wf.dts │ │ │ ├── mt7620n_kingston_mlw221.dts │ │ │ ├── mt7620n_kingston_mlwg2.dts │ │ │ ├── mt7620n_nexx_wt3020-4m.dts │ │ │ ├── mt7620n_nexx_wt3020-8m.dts │ │ │ ├── mt7620n_nexx_wt3020.dtsi │ │ │ ├── mt7620n_ravpower_wd03.dts │ │ │ ├── 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_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_buffalo_wsr-1166dhp.dts │ │ │ ├── mt7621_buffalo_wsr-2533dhpl.dts │ │ │ ├── mt7621_buffalo_wsr-600dhp.dts │ │ │ ├── mt7621_d-team_newifi-d2.dts │ │ │ ├── mt7621_d-team_pbr-m1.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-8xx-a1.dtsi │ │ │ ├── mt7621_edimax_ra21s.dts │ │ │ ├── mt7621_edimax_rg21s.dts │ │ │ ├── mt7621_edimax_rx21s.dtsi │ │ │ ├── mt7621_elecom_wrc-1167ghbk2-s.dts │ │ │ ├── mt7621_elecom_wrc-1900gst.dts │ │ │ ├── mt7621_elecom_wrc-2533gst.dts │ │ │ ├── mt7621_elecom_wrc-2533gst2.dts │ │ │ ├── mt7621_elecom_wrc-gst.dtsi │ │ │ ├── mt7621_firefly_firewrt.dts │ │ │ ├── mt7621_gehua_ghl-r-001.dts │ │ │ ├── mt7621_glinet_gl-mt1300.dts │ │ │ ├── mt7621_gnubee_gb-pc1.dts │ │ │ ├── mt7621_gnubee_gb-pc2.dts │ │ │ ├── mt7621_hiwifi_hc5962.dts │ │ │ ├── mt7621_iodata_wn-ax1167gr.dts │ │ │ ├── mt7621_iodata_wn-ax1167gr2.dts │ │ │ ├── mt7621_iodata_wn-ax2033gr.dts │ │ │ ├── mt7621_iodata_wn-dx1167r.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_y2.dts │ │ │ ├── mt7621_jdcloud_re-sp-01b.dts │ │ │ ├── mt7621_lenovo_newifi-d1.dts │ │ │ ├── mt7621_linksys_ea7500-v2.dts │ │ │ ├── mt7621_linksys_re6500.dts │ │ │ ├── mt7621_mediatek_ap-mt7621a-v60.dts │ │ │ ├── mt7621_mediatek_mt7621-eval-board.dts │ │ │ ├── mt7621_mikrotik_routerboard-750gr3.dts │ │ │ ├── mt7621_mikrotik_routerboard-m11g.dts │ │ │ ├── mt7621_mikrotik_routerboard-m33g.dts │ │ │ ├── mt7621_motorola_mr2600.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_phicomm_k2p-32m.dts │ │ │ ├── mt7621_phicomm_k2p.dts │ │ │ ├── mt7621_phicomm_k2p.dtsi │ │ │ ├── mt7621_planex_vr500.dts │ │ │ ├── mt7621_samknows_whitebox-v8.dts │ │ │ ├── mt7621_storylink_sap-g3200u3.dts │ │ │ ├── mt7621_telco-electronics_x1.dts │ │ │ ├── mt7621_thunder_timecloud.dts │ │ │ ├── mt7621_totolink_a7000r.dts │ │ │ ├── mt7621_tplink_re350-v1.dts │ │ │ ├── mt7621_tplink_re650-v1.dts │ │ │ ├── mt7621_ubnt_edgerouter-x-sfp.dts │ │ │ ├── mt7621_ubnt_edgerouter-x.dts │ │ │ ├── mt7621_ubnt_edgerouter-x.dtsi │ │ │ ├── mt7621_ubnt_unifi-nanohd.dts │ │ │ ├── mt7621_unielec_u7621-06-16m.dts │ │ │ ├── mt7621_unielec_u7621-06-64m.dts │ │ │ ├── mt7621_unielec_u7621-06.dtsi │ │ │ ├── mt7621_wevo_11acnas.dts │ │ │ ├── mt7621_wevo_w2914ns-v2.dts │ │ │ ├── mt7621_wevo_w2914ns-v2.dtsi │ │ │ ├── mt7621_xiaomi_mi-router-ac2100.dts │ │ │ ├── mt7621_xiaomi_mir3g-v2.dts │ │ │ ├── mt7621_xiaomi_mir3g.dts │ │ │ ├── mt7621_xiaomi_mir3p.dts │ │ │ ├── mt7621_xiaomi_mir4.dts │ │ │ ├── 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 │ │ │ ├── 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_glinet_gl-mt300n-v2.dts │ │ │ ├── mt7628an_glinet_microuter-n300.dts │ │ │ ├── mt7628an_glinet_vixmini.dts │ │ │ ├── mt7628an_glinet_vixmini_microuter.dtsi │ │ │ ├── mt7628an_hilink_hlk-7628n.dts │ │ │ ├── mt7628an_hiwifi_hc5661a.dts │ │ │ ├── mt7628an_hiwifi_hc5761a.dts │ │ │ ├── mt7628an_hiwifi_hc5861b.dts │ │ │ ├── mt7628an_hiwifi_hc5x61a.dtsi │ │ │ ├── mt7628an_iptime.dtsi │ │ │ ├── mt7628an_iptime_a3.dts │ │ │ ├── mt7628an_iptime_a604m.dts │ │ │ ├── mt7628an_mediatek_linkit-smart-7688.dts │ │ │ ├── mt7628an_mediatek_mt7628an-eval-board.dts │ │ │ ├── mt7628an_mercury_mac1200r-v2.dts │ │ │ ├── mt7628an_netgear_r6080.dts │ │ │ ├── mt7628an_netgear_r6120.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.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-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-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_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_mir4a-100m.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_zyxel_nbg-419n-v2.dts │ │ │ ├── rt3662_asus_rt-n56u.dts │ │ │ ├── rt3662_dlink_dir-645.dts │ │ │ ├── rt3662_edimax_br-6475nd.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-start.dts │ │ ├── files │ │ │ └── drivers │ │ │ │ ├── mmc │ │ │ │ └── host │ │ │ │ │ └── mtk-mmc │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.h │ │ │ │ │ ├── dbg.c │ │ │ │ │ ├── dbg.h │ │ │ │ │ ├── mt6575_sd.h │ │ │ │ │ └── sd.c │ │ │ │ └── net │ │ │ │ └── ethernet │ │ │ │ └── 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 │ │ ├── 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 │ │ │ │ │ ├── init.d │ │ │ │ │ │ └── bootcount │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── 04_led_migration │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.14 │ │ │ ├── config-5.4 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── mt7621 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ ├── 02_network │ │ │ │ │ │ └── 03_gpio_switches │ │ │ │ │ ├── hotplug.d │ │ │ │ │ │ └── ieee80211 │ │ │ │ │ │ │ └── 10_fix_wifi_mac │ │ │ │ │ ├── init.d │ │ │ │ │ │ ├── bootcount │ │ │ │ │ │ └── set-irq-affinity │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── 04_led_migration │ │ │ │ ├── lib │ │ │ │ │ ├── preinit │ │ │ │ │ │ └── 07_mt7621_bringup_dsa_master │ │ │ │ │ └── upgrade │ │ │ │ │ │ ├── iodata.sh │ │ │ │ │ │ ├── platform.sh │ │ │ │ │ │ └── ubnt.sh │ │ │ │ └── sbin │ │ │ │ │ └── fixup-mac-address │ │ │ ├── config-5.4 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── mt76x8 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ ├── init.d │ │ │ │ │ │ └── bootcount │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── 04_led_migration │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-5.4 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── patches-4.14 │ │ │ ├── 0001-MIPS-ralink-Add-rt3352-SPI_CS1-pinmux.patch │ │ │ ├── 0002-MIPS-pci-rt2880-set-pci-controller-of_node.patch │ │ │ ├── 0003-MIPS-Fix-memory-reservation-in-bootmem_init-for-cert.patch │ │ │ ├── 0004-MIPS-ralink-add-MT7621-pcie-driver.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 │ │ │ ├── 0009-PCI-MIPS-enable-PCIe-on-MT7688.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 │ │ │ ├── 0025-pinctrl-ralink-add-pinctrl-driver.patch │ │ │ ├── 0026-DT-Add-documentation-for-gpio-ralink.patch │ │ │ ├── 0027-GPIO-MIPS-ralink-add-gpio-driver-for-ralink-SoC.patch │ │ │ ├── 0028-GPIO-ralink-add-mt7621-gpio-controller.patch │ │ │ ├── 0029-gpio-ralink-Add-support-for-GPIO-as-interrupt-contro.patch │ │ │ ├── 0031-uvc-add-iPassion-iP2970-support.patch │ │ │ ├── 0034-NET-multi-phy-support.patch │ │ │ ├── 0037-mtd-cfi-cmdset-0002-force-word-write.patch │ │ │ ├── 0038-Revert-mtd-nand-Remove-unused-chip-write_page-hook.patch │ │ │ ├── 0038-mtd-ralink-add-mt7620-nand-driver.patch │ │ │ ├── 0039-mtd-add-mt7621-nand-support.patch │ │ │ ├── 0040-nand-hack.patch │ │ │ ├── 0041-DT-Add-documentation-for-spi-rt2880.patch │ │ │ ├── 0042-SPI-ralink-add-Ralink-SoC-spi-driver.patch │ │ │ ├── 0043-spi-add-mt7621-support.patch │ │ │ ├── 0044-i2c-MIPS-adds-ralink-I2C-driver.patch │ │ │ ├── 0045-i2c-add-mt7621-driver.patch │ │ │ ├── 0046-mmc-MIPS-ralink-add-sdhci-for-mt7620a-SoC.patch │ │ │ ├── 0047-DMA-ralink-add-rt2880-dma-engine.patch │ │ │ ├── 0048-asoc-add-mt7620-support.patch │ │ │ ├── 0051-serial-add-ugly-custom-baud-rate-hack.patch │ │ │ ├── 0052-pwm-add-mediatek-support.patch │ │ │ ├── 0053-mtd-spi-nor-add-w25q256-3b-mode-switch.patch │ │ │ ├── 0054-mtd-spi-nor-w25q256-respect-default-mode.patch │ │ │ ├── 0069-awake-rt305x-dwc2-controller.patch │ │ │ ├── 0070-weak_reordering.patch │ │ │ ├── 0098-disable_cm.patch │ │ │ ├── 0099-pci-mt7620.patch │ │ │ ├── 0200-linkit_bootstrap.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 │ │ │ ├── 200-add-ralink-eth.patch │ │ │ ├── 300-mt7620-export-chip-version-and-pkg.patch │ │ │ ├── 302-spi-nor-add-gd25q512.patch │ │ │ ├── 304-spi-nor-enable-4B-opcodes-for-mx25l25635f.patch │ │ │ ├── 999-fix-m25p-shutdown.patch │ │ │ └── 999-fix-pci-init-mt7620.patch │ │ ├── patches-5.4 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 401-net-ethernet-mediatek-support-net-labels.patch │ │ │ ├── 990-NET-no-auto-carrier-off-support.patch │ │ │ ├── 991-at803x.patch │ │ │ └── 999-fix-pci-init-mt7620.patch │ │ ├── rt288x │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.14 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── rt305x │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── 04_led_migration │ │ │ │ └── lib │ │ │ │ │ ├── preinit │ │ │ │ │ └── 04_handle_checksumming │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-4.14 │ │ │ ├── config-5.4 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ └── rt3883 │ │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 04_handle_checksumming │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ │ ├── config-4.14 │ │ │ ├── config-5.4 │ │ │ ├── profiles │ │ │ └── 00-default.mk │ │ │ └── target.mk │ ├── rb532 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── network │ │ │ │ └── diag.sh │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 01_sysinfo │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.14 │ │ ├── image │ │ │ ├── Makefile │ │ │ └── gen_image.sh │ │ ├── modules.mk │ │ └── patches-4.14 │ │ │ ├── 001-cmdline_hack.patch │ │ │ ├── 004-rb532-fix-partition-info.patch │ │ │ ├── 106-dont-use-rx-overflow-and-tx-underflow-interrupts.patch │ │ │ ├── 107-korina-refactor-rx-descriptor-flags-processing.patch │ │ │ ├── 107-use-NAPI_POLL_WEIGHT.patch │ │ │ ├── 108-korina-use-gro.patch │ │ │ ├── 109-korina-whitespace-cleanup-2.patch │ │ │ ├── 110-korina-update-authors.patch │ │ │ └── 111-korina-version-bump.patch │ ├── rockchip │ │ ├── Makefile │ │ ├── armv8 │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ ├── board.d │ │ │ │ │ │ ├── 01_leds │ │ │ │ │ │ └── 02_network │ │ │ │ │ └── hotplug.d │ │ │ │ │ │ └── net │ │ │ │ │ │ └── 40-net-smp-affinity │ │ │ │ └── lib │ │ │ │ │ ├── preinit │ │ │ │ │ └── 79_move_config │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── config-default │ │ ├── files │ │ │ └── drivers │ │ │ │ └── char │ │ │ │ └── hw_random │ │ │ │ └── rockchip-rng.c │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── armv8.mk │ │ │ ├── mmc.bootscript │ │ │ ├── nanopi-r2s.bootscript │ │ │ └── nanopi-r4s.bootscript │ │ └── 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 │ │ │ ├── 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 │ │ │ ├── 200-rockchip-rk3399-Add-support-for-FriendlyARM-NanoPi-R.patch │ │ │ ├── 201-rockchip-rk3328-add-i2c0-controller-for-nanopi-r2s.patch │ │ │ ├── 801-char-add-support-for-rockchip-hardware-random-number.patch │ │ │ ├── 802-arm64-dts-rockchip-add-hardware-random-number-genera.patch │ │ │ └── 991-arm64-dts-rockchip-add-more-cpu-operating-points-for.patch │ ├── samsung │ │ ├── Makefile │ │ ├── dts │ │ │ └── s5pv210_embedsky_tq210.dts │ │ ├── files-4.14 │ │ │ └── drivers │ │ │ │ └── mtd │ │ │ │ └── nand │ │ │ │ └── s5pxx_nand.c │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-4.14 │ │ │ ├── 001-s5pv210-nand.patch │ │ │ └── 002-dm9000-clk.patch │ │ └── s5pv210 │ │ │ ├── config-4.14 │ │ │ ├── profiles │ │ │ └── 00-default.mk │ │ │ └── target.mk │ ├── sunxi │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── firmware │ │ │ │ └── brcm │ │ │ │ │ ├── brcmfmac4329-sdio.txt │ │ │ │ │ ├── brcmfmac43362-sdio.txt │ │ │ │ │ ├── brcmfmac43430-sdio.txt │ │ │ │ │ └── brcmfmac43430a0-sdio.txt │ │ │ │ ├── preinit │ │ │ │ ├── 03_b53_hack.sh │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.19 │ │ ├── config-5.4 │ │ ├── cortexa53 │ │ │ ├── config-4.19 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── cortexa7 │ │ │ ├── config-4.19 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── cortexa8 │ │ │ ├── config-4.19 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── cortexa53.mk │ │ │ ├── cortexa7.mk │ │ │ ├── cortexa8.mk │ │ │ └── gen_sunxi_sdcard_img.sh │ │ ├── modules.mk │ │ ├── patches-4.19 │ │ │ ├── 010-v5.3-drivers-ata-ahci_sunxi-Increased-SATA-AHCI-DMA-TX-RX.patch │ │ │ ├── 101-arm64-dts-allwinner-a64-Enable-A64-timer-workaround.patch │ │ │ ├── 301-orangepi_pc2_usb_otg_to_host_key_power.patch │ │ │ ├── 310-Revert-ARM-dts-sun7i-Add-BCM53125-switch-nodes-to-th.patch │ │ │ └── 400-arm64-allwinner-a64-sopine-Add-Sopine-flash-partitio.patch │ │ ├── patches-5.4 │ │ │ ├── 062-add-sun8i-h3-zeropi-support.patch │ │ │ ├── 100-sunxi-h3-add-support-for-nanopi-r1.patch │ │ │ ├── 301-orangepi_pc2_usb_otg_to_host_key_power.patch │ │ │ ├── 310-Revert-ARM-dts-sun7i-Add-BCM53125-switch-nodes-to-th.patch │ │ │ ├── 400-arm64-allwinner-a64-sopine-Add-Sopine-flash-partitio.patch │ │ │ ├── 410-v5.6-arm64-dts-allwinner-a64-olinuxino-Add-bank-supply-re.patch │ │ │ ├── 420-v5.7-arm64-dts-allwinner-a64-olinuxino-add-user-red-LED.patch │ │ │ └── 430-arm64-dts-allwinner-a64-olinuxino-add-status-LED-ali.patch │ │ └── profiles │ │ │ └── 00-default.mk │ ├── tegra │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.19 │ │ ├── config-5.4 │ │ ├── image │ │ │ ├── Makefile │ │ │ └── generic-bootscript │ │ ├── patches-4.19 │ │ │ ├── 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 │ │ │ ├── i386 │ │ │ └── x86_64 │ │ ├── files │ │ │ └── arch │ │ │ │ └── um │ │ │ │ └── include │ │ │ │ └── uapi │ │ │ │ └── asm │ │ │ │ └── Kbuild │ │ ├── image │ │ │ └── Makefile │ │ └── patches-5.4 │ │ │ ├── 101-mconsole-exec.patch │ │ │ └── 102-pseudo-random-mac.patch │ ├── x86 │ │ ├── 64 │ │ │ ├── base-files │ │ │ │ └── lib │ │ │ │ │ └── preinit │ │ │ │ │ └── 45_mount_xenfs │ │ │ ├── config-4.19 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 01_sysinfo │ │ │ │ ├── 02_load_x86_ucode │ │ │ │ ├── 15_essential_fs_x86 │ │ │ │ ├── 20_check_iso │ │ │ │ ├── 79_move_config │ │ │ │ └── 81_upgrade_bootloader │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.19 │ │ ├── config-5.4 │ │ ├── generic │ │ │ ├── base-files │ │ │ │ └── lib │ │ │ │ │ └── preinit │ │ │ │ │ └── 45_mount_xenfs │ │ │ ├── config-4.19 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── geode │ │ │ ├── config-4.19 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── image │ │ │ ├── 64.mk │ │ │ ├── Makefile │ │ │ ├── generic.mk │ │ │ ├── geode.mk │ │ │ ├── grub-efi.cfg │ │ │ ├── grub-iso.cfg │ │ │ ├── grub-pc.cfg │ │ │ └── legacy.mk │ │ ├── legacy │ │ │ ├── config-4.19 │ │ │ ├── config-5.4 │ │ │ └── target.mk │ │ ├── modules.mk │ │ ├── patches-4.19 │ │ │ ├── 011-tune_lzma_options.patch │ │ │ ├── 100-fix_cs5535_clockevt.patch │ │ │ ├── 200-pcengines-apu2-reboot.patch │ │ │ └── 800-hwmon-w83627ehf-dont-claim-nct677x.patch │ │ └── patches-5.4 │ │ │ ├── 011-tune_lzma_options.patch │ │ │ ├── 100-fix_cs5535_clockevt.patch │ │ │ ├── 200-pcengines-apu2-reboot.patch │ │ │ └── 800-hwmon-w83627ehf-dont-claim-nct677x.patch │ └── zynq │ │ ├── Makefile │ │ ├── base-files │ │ └── etc │ │ │ ├── board.d │ │ │ └── 02_network │ │ │ └── inittab │ │ ├── config-4.19 │ │ ├── config-5.4 │ │ └── image │ │ ├── Makefile │ │ └── gen_zynq_sdcard_img.sh ├── 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.29.1 │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 300-012_check_ldrunpath_length.patch │ │ ├── 400-mips_no_dynamic_linking_sym.patch │ │ └── 500-Change-default-emulation-for-mips64-linux.patch │ │ ├── 2.31.1 │ │ ├── 100-delay_evaluation_of_alignment_expressions_in_output_sections.patch │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 300-012_check_ldrunpath_length.patch │ │ ├── 400-mips_no_dynamic_linking_sym.patch │ │ └── 500-Change-default-emulation-for-mips64-linux.patch │ │ ├── 2.32 │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 300-012_check_ldrunpath_length.patch │ │ ├── 400-mips_no_dynamic_linking_sym.patch │ │ └── 500-Change-default-emulation-for-mips64-linux.patch │ │ └── 2.34 │ │ ├── 300-001_ld_makefile_patch.patch │ │ ├── 400-mips_no_dynamic_linking_sym.patch │ │ └── 500-Change-default-emulation-for-mips64-linux.patch ├── fortify-headers │ └── Makefile ├── gcc │ ├── Config.in │ ├── Config.version │ ├── common.mk │ ├── exclude-testsuite │ ├── files │ │ └── alternate-arch-cc.in │ ├── final │ │ └── Makefile │ ├── initial │ │ └── Makefile │ ├── minimal │ │ └── Makefile │ └── patches │ │ ├── 5.5.0 │ │ ├── 001-revert_register_mode_search.patch │ │ ├── 002-case_insensitive.patch │ │ ├── 010-documentation.patch │ │ ├── 020-no-plt-backport.patch │ │ ├── 040-fix-mips-ICE-PR-68400.patch │ │ ├── 050-libitm-Don-t-redefine-__always_inline-in-local_atomi.patch │ │ ├── 200-musl_config.patch │ │ ├── 201-musl_arm.patch │ │ ├── 202-musl_mips.patch │ │ ├── 203-musl_powerpc.patch │ │ ├── 204-musl_sh.patch │ │ ├── 205-musl_x86.patch │ │ ├── 206-musl_aarch64.patch │ │ ├── 207-musl_fixincludes.patch │ │ ├── 209-musl_libstdc++.patch │ │ ├── 230-musl_libssp.patch │ │ ├── 240-musl-libitm-fixes.patch │ │ ├── 250-add-musl.patch │ │ ├── 260-musl-add-unwind-fix.patch │ │ ├── 270-musl-add-powerpc-softfloat-fix.patch │ │ ├── 280-musl-disable-ifunc-by-default.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 │ │ ├── 830-arm_unbreak_armv4t.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 880-no_java_section.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-fix-MIPS-softfloat-build-issue.patch │ │ ├── 940-no-clobber-stamp-bits.patch │ │ ├── 950-cpp_file_path_translation.patch │ │ ├── 960-go_libm.patch │ │ └── 970-warn_bug.patch │ │ ├── 7.5.0 │ │ ├── 001-revert_register_mode_search.patch │ │ ├── 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 │ │ ├── 940-no-clobber-stamp-bits.patch │ │ ├── 950-cpp_file_path_translation.patch │ │ └── 960-gotools-fix-compilation-when-making-cross-compiler.patch │ │ ├── 8.4.0 │ │ ├── 002-case_insensitive.patch │ │ ├── 010-documentation.patch │ │ ├── 110-Fix-MIPS-PR-84790.patch │ │ ├── 230-musl_libssp.patch │ │ ├── 300-mips_Os_cpu_rtx_cost_model.patch │ │ ├── 800-arm_v5te_no_ldrd_strd.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 881-no_tm_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 930-fix-mips-noexecstack.patch │ │ ├── 931-libffi-fix-MIPS-softfloat-build-issue.patch │ │ └── 960-gotools-fix-compilation-when-making-cross-compiler.patch │ │ └── 9.3.0 │ │ ├── 002-case_insensitive.patch │ │ ├── 010-documentation.patch │ │ ├── 110-Fix-MIPS-PR-84790.patch │ │ ├── 230-musl_libssp.patch │ │ ├── 300-mips_Os_cpu_rtx_cost_model.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 881-no_tm_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 930-fix-mips-noexecstack.patch │ │ ├── 931-libffi-fix-MIPS-softfloat-build-issue.patch │ │ └── 960-gotools-fix-compilation-when-making-cross-compiler.patch ├── gdb │ ├── Makefile │ ├── patches-arc │ │ ├── 100-no_extern_inline.patch │ │ ├── 110-no_testsuite.patch │ │ └── 120-fix-compile-flag-mismatch.patch │ └── patches │ │ ├── 100-no_extern_inline.patch │ │ ├── 110-no_testsuite.patch │ │ └── 120-fix-compile-flag-mismatch.patch ├── glibc │ ├── Makefile │ ├── common.mk │ ├── headers │ │ └── Makefile │ ├── include │ │ └── libintl.h │ └── patches │ │ ├── 050-Revert-Disallow-use-of-DES-encryption-functions-in-n.patch │ │ ├── 100-fix_cross_rpcgen.patch │ │ └── 200-add-dl-search-paths.patch ├── info.mk ├── kernel-headers │ └── Makefile ├── musl │ ├── Config.in │ ├── Makefile │ ├── common.mk │ ├── include │ │ ├── bits │ │ │ └── wordsize.h │ │ ├── features.h │ │ ├── sgidefs.h │ │ └── sys │ │ │ ├── cdefs.h │ │ │ ├── glibc-types.h │ │ │ └── queue.h │ └── patches │ │ ├── 100-add_glob_onlydir.patch │ │ ├── 110-read_timezone_from_fs.patch │ │ ├── 200-add_libssp_nonshared.patch │ │ ├── 300-relative.patch │ │ ├── 400-Add-format-attribute-to-some-function-declarations.patch │ │ ├── 500-0001-reorder-thread-list-unlink-in-pthread_exit-after-all.patch │ │ ├── 500-0002-don-t-use-libc.threads_minus_1-as-relaxed-atomic-for.patch │ │ ├── 500-0003-cut-down-size-of-some-libc-struct-members.patch │ │ ├── 500-0004-restore-lock-skipping-for-processes-that-return-to-s.patch │ │ ├── 900-iconv_size_hack.patch │ │ └── 901-crypt_size_hack.patch ├── nasm │ └── Makefile ├── uClibc │ ├── Config.in │ ├── Makefile │ ├── common.mk │ ├── config │ │ ├── arc │ │ ├── archs │ │ ├── arm │ │ ├── armeb │ │ ├── common │ │ ├── debug │ │ ├── i386 │ │ ├── i686 │ │ ├── m68k │ │ ├── mips │ │ ├── mips64 │ │ ├── mips64.32 │ │ ├── mips64.64 │ │ ├── mips64.n32 │ │ ├── mips64el │ │ ├── mips64el.32 │ │ ├── mips64el.64 │ │ ├── mips64el.n32 │ │ ├── mipsel │ │ ├── mipsel.cobalt │ │ ├── powerpc │ │ ├── powerpc.e500 │ │ ├── sparc │ │ ├── sparc.leon │ │ └── x86_64 │ ├── headers │ │ └── Makefile │ └── utils │ │ └── Makefile └── wrapper │ └── Makefile └── tools ├── Makefile ├── autoconf-archive └── Makefile ├── autoconf ├── Makefile └── patches │ ├── 000-relocatable.patch │ ├── 001-no_emacs_lib.patch │ └── 002-musl_host_fixup.patch ├── automake ├── Makefile ├── files │ └── aclocal └── patches │ ├── 000-relocatable.patch │ └── 100-aclocal-skip-not-existing-directories.patch ├── b43-tools ├── Makefile ├── files │ └── b43-fwsquash.py └── patches │ ├── 001-fw-dirname.patch │ └── 002-no_libfl.patch ├── bc ├── Makefile └── patches │ └── 001-no_doc.patch ├── bison ├── Makefile ├── patches │ └── 100-fix-gets-removal.patch └── scripts │ └── yacc ├── cbootimage-configs └── Makefile ├── cbootimage └── Makefile ├── ccache ├── Makefile ├── files │ ├── ccache_cc │ └── ccache_cxx └── patches │ └── 100-honour-copts.patch ├── cmake ├── Makefile └── patches │ ├── 100-no-testing.patch │ ├── 120-curl-fix-libressl-linking.patch │ └── 130-bootstrap_parallel_make_flag.patch ├── coreutils ├── Makefile └── patches │ └── 001-fix-macos-vasnprintf.patch ├── dosfstools ├── Makefile └── patches │ └── 0002-Switch-to-AC_CHECK_LIB-for-iconv-library-linking.patch ├── e2fsprogs ├── Makefile └── patches │ ├── 001-exit_0_on_corrected_errors.patch │ ├── 002-dont-build-e4defrag.patch │ └── 003-no-crond.patch ├── elftosb ├── Makefile └── patches │ ├── 001-libm.patch │ ├── 002-fix-header-path.patch │ └── 003-use-ldflags.patch ├── expat └── Makefile ├── findutils └── Makefile ├── firmware-utils ├── Makefile └── src │ ├── add_header.c │ ├── addpattern.c │ ├── asustrx.c │ ├── bcm_tag.h │ ├── bcmalgo.c │ ├── bcmalgo.h │ ├── buffalo-enc.c │ ├── buffalo-lib.c │ ├── buffalo-lib.h │ ├── buffalo-tag.c │ ├── buffalo-tftp.c │ ├── csysimg.h │ ├── cyg_crc.h │ ├── cyg_crc16.c │ ├── cyg_crc32.c │ ├── dgfirmware.c │ ├── dgn3500sum.c │ ├── dns313-header.c │ ├── edimax_fw_header.c │ ├── encode_crc.c │ ├── fix-u-media-header.c │ ├── fw.h │ ├── hcsmakeimage.c │ ├── imagetag.c │ ├── imagetag.ggo │ ├── imagetag_cmdline.c │ ├── imagetag_cmdline.h │ ├── jcgimage.c │ ├── lxlfw.c │ ├── lzma2eva.c │ ├── makeamitbin.c │ ├── md5.c │ ├── md5.h │ ├── mkbrncmdline.c │ ├── mkbrnimg.c │ ├── mkbuffaloimg.c │ ├── mkcameofw.c │ ├── mkcasfw.c │ ├── mkchkimg.c │ ├── mkcsysimg.c │ ├── mkdapimg.c │ ├── mkdapimg2.c │ ├── mkdhpimg.c │ ├── mkdlinkfw-lib.c │ ├── mkdlinkfw-lib.h │ ├── mkdlinkfw.c │ ├── mkdniimg.c │ ├── mkedimaximg.c │ ├── mkfwimage.c │ ├── mkfwimage2.c │ ├── mkheader_gemtek.c │ ├── mkhilinkfw.c │ ├── mkmerakifw-old.c │ ├── mkmerakifw.c │ ├── mkmylofw.c │ ├── mkplanexfw.c │ ├── mkporayfw.c │ ├── mkrasimage.c │ ├── mkrtn56uimg.c │ ├── mksenaofw.c │ ├── mksercommfw.c │ ├── mktitanimg.c │ ├── mktitanimg.h │ ├── mktplinkfw-lib.c │ ├── mktplinkfw-lib.h │ ├── mktplinkfw.c │ ├── mktplinkfw2.c │ ├── mkwrggimg.c │ ├── mkwrgimg.c │ ├── mkzcfw.c │ ├── mkzynfw.c │ ├── motorola-bin.c │ ├── myloader.h │ ├── nand_ecc.c │ ├── nec-enc.c │ ├── osbridge-crc.c │ ├── oseama.c │ ├── otrx.c │ ├── pc1crypt.c │ ├── ptgen.c │ ├── seama.c │ ├── seama.h │ ├── sha1.c │ ├── sha1.h │ ├── spw303v.c │ ├── srec2bin.c │ ├── tplink-safeloader.c │ ├── trx.c │ ├── trx2edips.c │ ├── trx2usr.c │ ├── uimage_padhdr.c │ ├── utils.h │ ├── wrt400n.c │ ├── xorimage.c │ ├── zyimage.c │ ├── zynos.h │ └── zyxbcm.c ├── flex ├── Makefile └── patches │ ├── 100-disable-tests-docs.patch │ └── 200-build-AC_USE_SYSTEM_EXTENSIONS-in-configure.ac.patch ├── flock ├── Makefile └── src │ └── flock.c ├── genext2fs ├── Makefile └── patches │ ├── 100-c99_scanf.patch │ ├── 200-autoconf.patch │ ├── 300-blocksize-creator.patch │ └── 400-byteswap_fix.patch ├── gengetopt ├── Makefile └── patches │ └── 100-no-tests-docs.patch ├── gmp └── Makefile ├── include ├── asm │ └── types.h ├── byteswap.h ├── elf.h ├── endian.h └── sys │ └── sysmacros.h ├── isl └── Makefile ├── kernel2minor └── Makefile ├── libelf ├── Makefile └── patches │ └── 900-fix-undefined-macro-access.patch ├── libressl ├── Makefile └── patches │ └── 001-dont-build-tests-man.patch ├── libtool ├── Makefile ├── files │ ├── libtool-v1.5.patch │ ├── libtool-v2.2.patch │ └── libtool-v2.4.patch └── patches │ ├── 000-relocatable.patch │ ├── 001-fix-func_append.patch │ ├── 100-libdir-fixes.patch │ ├── 110-dont-use-target-dir-for-relinking.patch │ ├── 120-strip-unsafe-dirs-for-relinking.patch │ ├── 150-trailingslash.patch │ ├── 160-passthrough-ssp.patch │ └── 200-openwrt-branding.patch ├── 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 ├── m4 ├── Makefile └── patches │ ├── 001-fix-macos-vasnprintf.patch │ └── 010-glibc-change-work-around.patch ├── make-ext4fs └── Makefile ├── missing-macros ├── Makefile └── src │ ├── README │ ├── bin │ ├── help2man │ └── makeinfo │ └── m4 │ ├── as-ac-expand.m4 │ ├── as-compiler-flag.m4 │ ├── as-unaligned-access.m4 │ ├── as-version.m4 │ ├── dnet.m4 │ ├── fake-gtk-doc-check.m4 │ ├── fake-intltool.m4 │ ├── glibc2.m4 │ ├── glibc21.m4 │ ├── intdiv0.m4 │ ├── intmax.m4 │ ├── inttypes-pri.m4 │ ├── inttypes_h.m4 │ ├── lib-ld.m4 │ ├── lib-link.m4 │ ├── lib-prefix.m4 │ ├── mfx_acc.m4 │ ├── mfx_cppflags.m4 │ ├── mfx_limits.m4 │ ├── progtest.m4 │ ├── stdint_h.m4 │ ├── uintmax_t.m4 │ ├── va_copy.m4 │ └── wint_t.m4 ├── mkimage ├── Makefile └── patches │ ├── 030-allow-to-use-different-magic.patch │ ├── 050-Add-compatibility-with-non-Linux-hosts.patch │ ├── 070-remove_generated_autoconf.patch │ └── 210-link-libcrypto-static.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 │ ├── 006-uclibc_init.patch │ ├── 007-gc_sections.patch │ ├── 008-uclibc_libgcc_link.patch │ ├── 009-uclibc_libpthread_symbols.patch │ ├── 010-remove_STT_GNU_IFUNC.patch │ ├── 011-remove_multiarch.patch │ └── 100-apply-2to3.patch ├── mm-macros └── 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 ├── 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 ├── patchelf └── Makefile ├── pkgconf ├── Makefile ├── files │ └── pkg-config └── patches │ └── 0001-cli-remove-version-to-modversion-remapping.patch ├── qemu ├── Makefile └── patches │ ├── 0001-vmdk-fix-endianness-bugs.patch │ ├── 0002-VMDK-introduce-VmdkExtent.patch │ ├── 0003-VMDK-bugfix-align-offset-to-cluster-in-get_whole_clu.patch │ ├── 0004-VMDK-probe-for-monolithicFlat-images.patch │ ├── 0005-VMDK-separate-vmdk_open-by-format-version.patch │ ├── 0006-VMDK-add-field-BDRVVmdkState.desc_offset.patch │ ├── 0007-VMDK-flush-multiple-extents.patch │ ├── 0008-VMDK-move-static-cid_update-flag-to-bs-field.patch │ ├── 0009-VMDK-change-get_cluster_offset-return-type.patch │ ├── 0010-VMDK-open-read-write-for-monolithicFlat-image.patch │ ├── 0011-VMDK-create-different-subformats.patch │ └── 0012-vmdk-Allow-selecting-SCSI-adapter-in-image-creation.patch ├── quilt ├── Makefile └── patches │ ├── 000-relocatable.patch │ └── 001-fix_compile.patch ├── sdimage ├── Makefile └── patches │ └── 100-deactivate-ufb.patch ├── sed └── Makefile ├── sparse └── Makefile ├── squashfs ├── Makefile └── patches │ ├── 100-lzma.patch │ ├── 110-no_nonstatic_inline.patch │ ├── 120-add-fixed-timestamp-support.patch │ ├── 130-include_sysmacros.patch │ └── 140-gcc-10-fix.patch ├── squashfskit4 ├── Makefile └── patches │ ├── 0001-fix-version.sh.patch │ └── 0002-fix-build-failure-against-gcc-10.patch ├── sstrip ├── Makefile └── src │ └── sstrip.c ├── tar ├── Makefile └── patches │ ├── 100-symlink-force-root-name.patch │ └── 110-symlink-force-permissions.patch ├── ucl └── Makefile ├── upslug2 ├── Makefile └── patches │ └── 100-libpcap_fix.patch ├── upx └── Makefile ├── wrt350nv2-builder ├── Makefile └── src │ ├── crypt.h │ ├── ioapi.c │ ├── ioapi.h │ ├── md5.c │ ├── md5.h │ ├── upgrade.h │ └── wrt350nv2-builder.c ├── xz └── Makefile ├── zip ├── Makefile └── patches │ ├── 001-unix-configure-borrow-the-LFS-test-from-autotools.patch │ ├── 004-do-not-set-unwanted-cflags.patch │ ├── 006-stack-markings-to-avoid-executable-stack.patch │ ├── 007-fclose-in-file-not-fclose-x.patch │ ├── 008-hardening-build-fix-1.patch │ ├── 009-hardening-build-fix-2.patch │ ├── 010-remove-build-date.patch │ └── 011-add-option-for-reproducible-archives.patch ├── zlib ├── Makefile └── patches │ └── 900-overridable-pc-exec-prefix.patch └── zstd ├── Makefile └── patches └── 0001-build-issue-More-portable-header-prefix-usage-1987.patch /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Q:你知道这是`pull request`吗?(使用 "x" 选择) 2 | * [ ] 我知道 3 | -------------------------------------------------------------------------------- /.github/workflows/openwrt-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/.github/workflows/openwrt-ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/.gitignore -------------------------------------------------------------------------------- /BSDmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/BSDmakefile -------------------------------------------------------------------------------- /Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/Config.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/README_EN.md -------------------------------------------------------------------------------- /config/Config-build.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/config/Config-build.in -------------------------------------------------------------------------------- /config/Config-devel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/config/Config-devel.in -------------------------------------------------------------------------------- /config/Config-images.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/config/Config-images.in -------------------------------------------------------------------------------- /config/Config-kernel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/config/Config-kernel.in -------------------------------------------------------------------------------- /doc/alipay_donate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/doc/alipay_donate.jpg -------------------------------------------------------------------------------- /doc/wechat_donate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/doc/wechat_donate.jpg -------------------------------------------------------------------------------- /doc/xm5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/doc/xm5.jpg -------------------------------------------------------------------------------- /doc/xm6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/doc/xm6.jpg -------------------------------------------------------------------------------- /feeds.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/feeds.conf.default -------------------------------------------------------------------------------- /include/autotools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/autotools.mk -------------------------------------------------------------------------------- /include/cmake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/cmake.mk -------------------------------------------------------------------------------- /include/debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/debug.mk -------------------------------------------------------------------------------- /include/depends.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/depends.mk -------------------------------------------------------------------------------- /include/device_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/device_table.txt -------------------------------------------------------------------------------- /include/download.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/download.mk -------------------------------------------------------------------------------- /include/feeds.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/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/tossp/lede-k3/HEAD/include/hardening.mk -------------------------------------------------------------------------------- /include/host-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/host-build.mk -------------------------------------------------------------------------------- /include/image-commands.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/image-commands.mk -------------------------------------------------------------------------------- /include/image-legacy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/image-legacy.mk -------------------------------------------------------------------------------- /include/image.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/image.mk -------------------------------------------------------------------------------- /include/kernel-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/kernel-build.mk -------------------------------------------------------------------------------- /include/kernel-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/kernel-defaults.mk -------------------------------------------------------------------------------- /include/kernel-version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/kernel-version.mk -------------------------------------------------------------------------------- /include/kernel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/kernel.mk -------------------------------------------------------------------------------- /include/netfilter.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/netfilter.mk -------------------------------------------------------------------------------- /include/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/nls.mk -------------------------------------------------------------------------------- /include/package-bin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/package-bin.mk -------------------------------------------------------------------------------- /include/package-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/package-defaults.mk -------------------------------------------------------------------------------- /include/package-dumpinfo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/package-dumpinfo.mk -------------------------------------------------------------------------------- /include/package-ipkg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/package-ipkg.mk -------------------------------------------------------------------------------- /include/package-seccomp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/package-seccomp.mk -------------------------------------------------------------------------------- /include/package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/package.mk -------------------------------------------------------------------------------- /include/prereq-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/prereq-build.mk -------------------------------------------------------------------------------- /include/prereq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/prereq.mk -------------------------------------------------------------------------------- /include/quilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/quilt.mk -------------------------------------------------------------------------------- /include/rootfs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/rootfs.mk -------------------------------------------------------------------------------- /include/scan.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/scan.awk -------------------------------------------------------------------------------- /include/scan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/scan.mk -------------------------------------------------------------------------------- /include/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/shell.sh -------------------------------------------------------------------------------- /include/site/aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/site/aarch64 -------------------------------------------------------------------------------- /include/site/aarch64_be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/site/aarch64_be -------------------------------------------------------------------------------- /include/site/arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/site/arc -------------------------------------------------------------------------------- /include/site/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/site/arm -------------------------------------------------------------------------------- /include/site/armeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/site/armeb -------------------------------------------------------------------------------- /include/site/darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/site/darwin -------------------------------------------------------------------------------- /include/site/i386: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . $TOPDIR/include/site/i486 3 | 4 | -------------------------------------------------------------------------------- /include/site/i486: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/site/i486 -------------------------------------------------------------------------------- /include/site/i686: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . $TOPDIR/include/site/i486 3 | 4 | -------------------------------------------------------------------------------- /include/site/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/site/linux -------------------------------------------------------------------------------- /include/site/m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/site/m68k -------------------------------------------------------------------------------- /include/site/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/site/mips -------------------------------------------------------------------------------- /include/site/mips64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/site/mips64 -------------------------------------------------------------------------------- /include/site/mips64el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/site/mips64el -------------------------------------------------------------------------------- /include/site/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/site/mipsel -------------------------------------------------------------------------------- /include/site/powerpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/site/powerpc -------------------------------------------------------------------------------- /include/site/powerpc64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/site/powerpc64 -------------------------------------------------------------------------------- /include/site/sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/site/sparc -------------------------------------------------------------------------------- /include/site/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/site/x86_64 -------------------------------------------------------------------------------- /include/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/subdir.mk -------------------------------------------------------------------------------- /include/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/target.mk -------------------------------------------------------------------------------- /include/toolchain-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/toolchain-build.mk -------------------------------------------------------------------------------- /include/toplevel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/toplevel.mk -------------------------------------------------------------------------------- /include/u-boot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/u-boot.mk -------------------------------------------------------------------------------- /include/uclibc++.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/uclibc++.mk -------------------------------------------------------------------------------- /include/unpack.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/unpack.mk -------------------------------------------------------------------------------- /include/verbose.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/verbose.mk -------------------------------------------------------------------------------- /include/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/include/version.mk -------------------------------------------------------------------------------- /package/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/Makefile -------------------------------------------------------------------------------- /package/base-files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/base-files/Makefile -------------------------------------------------------------------------------- /package/base-files/files/etc/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/base-files/files/etc/banner -------------------------------------------------------------------------------- /package/base-files/files/etc/diag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/base-files/files/etc/diag.sh -------------------------------------------------------------------------------- /package/base-files/files/etc/ethers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/base-files/files/etc/ethers -------------------------------------------------------------------------------- /package/base-files/files/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/base-files/files/etc/fstab -------------------------------------------------------------------------------- /package/base-files/files/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/base-files/files/etc/group -------------------------------------------------------------------------------- /package/base-files/files/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/base-files/files/etc/hosts -------------------------------------------------------------------------------- /package/base-files/files/etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/base-files/files/etc/inittab -------------------------------------------------------------------------------- /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/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/base-files/files/etc/passwd -------------------------------------------------------------------------------- /package/base-files/files/etc/preinit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/base-files/files/etc/preinit -------------------------------------------------------------------------------- /package/base-files/files/etc/shells: -------------------------------------------------------------------------------- 1 | /bin/ash 2 | -------------------------------------------------------------------------------- /package/base-files/files/rom/note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/base-files/files/rom/note -------------------------------------------------------------------------------- /package/base-files/files/sbin/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/base-files/files/sbin/wifi -------------------------------------------------------------------------------- /package/base-files/image-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/base-files/image-config.in -------------------------------------------------------------------------------- /package/boot/fconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/fconfig/Makefile -------------------------------------------------------------------------------- /package/boot/grub2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/grub2/Makefile -------------------------------------------------------------------------------- /package/boot/imx-bootlets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/imx-bootlets/Makefile -------------------------------------------------------------------------------- /package/boot/kexec-tools/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/kexec-tools/Config.in -------------------------------------------------------------------------------- /package/boot/kexec-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/kexec-tools/Makefile -------------------------------------------------------------------------------- /package/boot/kobs-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/kobs-ng/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-ar71xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/uboot-ar71xx/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-at91/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/uboot-at91/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-imx6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/uboot-imx6/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-lantiq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/uboot-lantiq/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-lantiq/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/uboot-lantiq/README -------------------------------------------------------------------------------- /package/boot/uboot-mvebu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/uboot-mvebu/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-mxs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/uboot-mxs/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-omap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/uboot-omap/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-oxnas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/uboot-oxnas/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-ramips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/uboot-ramips/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/uboot-sunxi/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-tegra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/uboot-tegra/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-zynq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/boot/uboot-zynq/Makefile -------------------------------------------------------------------------------- /package/devel/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/devel/binutils/Makefile -------------------------------------------------------------------------------- /package/devel/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/devel/gdb/Makefile -------------------------------------------------------------------------------- /package/devel/perf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/devel/perf/Makefile -------------------------------------------------------------------------------- /package/devel/strace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/devel/strace/Makefile -------------------------------------------------------------------------------- /package/devel/trace-cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/devel/trace-cmd/Makefile -------------------------------------------------------------------------------- /package/devel/valgrind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/devel/valgrind/Makefile -------------------------------------------------------------------------------- /package/firmware/ipq-wifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/firmware/ipq-wifi/Makefile -------------------------------------------------------------------------------- /package/kernel/ath10k-ct/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/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/exfat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/kernel/exfat/Makefile -------------------------------------------------------------------------------- /package/kernel/gpio-button-hotplug/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m += gpio-button-hotplug.o 2 | -------------------------------------------------------------------------------- /package/kernel/hwmon-gsc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/kernel/hwmon-gsc/Makefile -------------------------------------------------------------------------------- /package/kernel/hwmon-gsc/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m := gsc.o 2 | -------------------------------------------------------------------------------- /package/kernel/hwmon-gsc/src/gsc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/kernel/hwmon-gsc/src/gsc.c -------------------------------------------------------------------------------- /package/kernel/i2c-gpio-custom/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_I2C_GPIO_CUSTOM} += i2c-gpio-custom.o -------------------------------------------------------------------------------- /package/kernel/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/kernel/linux/Makefile -------------------------------------------------------------------------------- /package/kernel/linux/modules/fs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/kernel/linux/modules/fs.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/w1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/kernel/linux/modules/w1.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/kernel/mac80211/Makefile -------------------------------------------------------------------------------- /package/kernel/mac80211/ath.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/kernel/mac80211/ath.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/intel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/kernel/mac80211/intel.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/marvell.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/kernel/mac80211/marvell.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/ralink.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/kernel/mac80211/ralink.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/realtek.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/kernel/mac80211/realtek.mk -------------------------------------------------------------------------------- /package/kernel/mt76/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/kernel/mt76/Makefile -------------------------------------------------------------------------------- /package/kernel/mwlwifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/kernel/mwlwifi/Makefile -------------------------------------------------------------------------------- /package/kernel/nat46/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/kernel/nat46/Makefile -------------------------------------------------------------------------------- /package/kernel/spi-gpio-custom/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_SPI_GPIO_CUSTOM} += spi-gpio-custom.o -------------------------------------------------------------------------------- /package/kernel/trelay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/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/tossp/lede-k3/HEAD/package/kernel/trelay/src/trelay.c -------------------------------------------------------------------------------- /package/kernel/w1-gpio-custom/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_W1_MASTER_GPIO_CUSTOM} += w1-gpio-custom.o -------------------------------------------------------------------------------- /package/lean/adbyby/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/adbyby/Makefile -------------------------------------------------------------------------------- /package/lean/adbyby/files/data/user.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/lean/adbyby/files/user.action: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/lean/amule/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/amule/Makefile -------------------------------------------------------------------------------- /package/lean/antileech/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/antileech/Makefile -------------------------------------------------------------------------------- /package/lean/autocore/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/autocore/Makefile -------------------------------------------------------------------------------- /package/lean/automount/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/automount/Makefile -------------------------------------------------------------------------------- /package/lean/autosamba/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/autosamba/Makefile -------------------------------------------------------------------------------- /package/lean/baidupcs-web/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/baidupcs-web/Makefile -------------------------------------------------------------------------------- /package/lean/coremark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/coremark/Makefile -------------------------------------------------------------------------------- /package/lean/coremark/coremark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/coremark/coremark -------------------------------------------------------------------------------- /package/lean/coremark/coremark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/coremark/coremark.sh -------------------------------------------------------------------------------- /package/lean/csstidy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/csstidy/Makefile -------------------------------------------------------------------------------- /package/lean/dns2socks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/dns2socks/Makefile -------------------------------------------------------------------------------- /package/lean/dnsforwarder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/dnsforwarder/Makefile -------------------------------------------------------------------------------- /package/lean/dsmboot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/dsmboot/Makefile -------------------------------------------------------------------------------- /package/lean/dsmboot/files/dsm.iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/dsmboot/files/dsm.iso -------------------------------------------------------------------------------- /package/lean/dsmboot/files/dsmboot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/dsmboot/files/dsmboot -------------------------------------------------------------------------------- /package/lean/frp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/frp/Makefile -------------------------------------------------------------------------------- /package/lean/gmediarender/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/gmediarender/Makefile -------------------------------------------------------------------------------- /package/lean/ipt2socks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/ipt2socks/Makefile -------------------------------------------------------------------------------- /package/lean/ipv6-helper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/ipv6-helper/Makefile -------------------------------------------------------------------------------- /package/lean/k3screenctrl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/k3screenctrl/Makefile -------------------------------------------------------------------------------- /package/lean/kcptun/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/kcptun/Makefile -------------------------------------------------------------------------------- /package/lean/libcryptopp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/libcryptopp/Makefile -------------------------------------------------------------------------------- /package/lean/luci-app-accesscontrol/root/etc/config/mia: -------------------------------------------------------------------------------- 1 | 2 | config basic 3 | option enable '0' 4 | -------------------------------------------------------------------------------- /package/lean/luci-app-accesscontrol/root/etc/mia.include: -------------------------------------------------------------------------------- 1 | /etc/init.d/mia restart -------------------------------------------------------------------------------- /package/lean/luci-app-adbyby-plus/root/usr/share/adbyby/dnsmasq.adblock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/lean/luci-app-cifsd/root/etc/modules.d/ksmbd: -------------------------------------------------------------------------------- 1 | ksmbd -------------------------------------------------------------------------------- /package/lean/luci-app-docker/root/etc/config/dockerd: -------------------------------------------------------------------------------- 1 | 2 | config docker 3 | option wan_mode '0' 4 | 5 | -------------------------------------------------------------------------------- /package/lean/luci-app-familycloud/root/usr/share/familycloud/FamilyCloud/config.json: -------------------------------------------------------------------------------- 1 | /tmp/config.json -------------------------------------------------------------------------------- /package/lean/luci-app-jd-dailybonus/root/usr/lib/node/request/node_modules/delayed-stream/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /package/lean/luci-app-jd-dailybonus/root/usr/lib/node/request/node_modules/extsprintf/.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/lean/luci-app-jd-dailybonus/root/usr/lib/node/request/node_modules/isstream/.npmignore: -------------------------------------------------------------------------------- 1 | *.tgz 2 | -------------------------------------------------------------------------------- /package/lean/luci-app-jd-dailybonus/root/usr/lib/node/request/node_modules/jsbn/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /package/lean/luci-app-jd-dailybonus/root/usr/lib/node/request/node_modules/json-stringify-safe/.npmignore: -------------------------------------------------------------------------------- 1 | /*.tgz 2 | -------------------------------------------------------------------------------- /package/lean/luci-app-jd-dailybonus/root/usr/lib/node/request/node_modules/performance-now/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /package/lean/luci-app-jd-dailybonus/root/usr/lib/node/request/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /package/lean/luci-app-nfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/luci-app-nfs/Makefile -------------------------------------------------------------------------------- /package/lean/luci-app-nps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/luci-app-nps/Makefile -------------------------------------------------------------------------------- /package/lean/luci-app-openvpn-server/root/etc/easy-rsa/keys/index.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /package/lean/luci-app-openvpn-server/root/etc/easy-rsa/keys/index.txt.attr.old: -------------------------------------------------------------------------------- 1 | unique_subject = yes 2 | -------------------------------------------------------------------------------- /package/lean/luci-app-openvpn-server/root/etc/easy-rsa/keys/serial: -------------------------------------------------------------------------------- 1 | 03 2 | -------------------------------------------------------------------------------- /package/lean/luci-app-openvpn-server/root/etc/easy-rsa/keys/serial.old: -------------------------------------------------------------------------------- 1 | 02 2 | -------------------------------------------------------------------------------- /package/lean/luci-app-openvpn-server/root/etc/ovpnadd.conf: -------------------------------------------------------------------------------- 1 | comp-lzo 2 | -------------------------------------------------------------------------------- /package/lean/luci-app-pppoe-relay/root/etc/config/pppoe-relay: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /package/lean/luci-app-ramfree/po/zh-cn/release_ram.po: -------------------------------------------------------------------------------- 1 | msgid "Release Ram" 2 | msgstr "释放内存" 3 | -------------------------------------------------------------------------------- /package/lean/luci-app-rclone/po/zh-cn/rclone.po: -------------------------------------------------------------------------------- 1 | ../zh_Hans/luci-app-rclone.po -------------------------------------------------------------------------------- /package/lean/luci-app-sfe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/luci-app-sfe/Makefile -------------------------------------------------------------------------------- /package/lean/luci-app-softethervpn/root/etc/config/softethervpn: -------------------------------------------------------------------------------- 1 | 2 | config softether 3 | option enable '0' 4 | 5 | -------------------------------------------------------------------------------- /package/lean/luci-app-ssrserver-python/root/usr/share/ssr/debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /package/lean/luci-app-ssrserver-python/root/usr/share/ssr/debian/install: -------------------------------------------------------------------------------- 1 | debian/config.json etc/shadowsocks/ -------------------------------------------------------------------------------- /package/lean/luci-app-ssrserver-python/root/usr/share/ssr/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /package/lean/luci-app-ssrserver-python/root/usr/share/ssr/mudb.json: -------------------------------------------------------------------------------- 1 | [ 2 | ] 3 | -------------------------------------------------------------------------------- /package/lean/luci-app-usb-printer/root/etc/config/usb_printer: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/lean/luci-app-v2ray-server/root/etc/config/v2ray_server: -------------------------------------------------------------------------------- 1 | 2 | config global 3 | option enable '0' 4 | 5 | -------------------------------------------------------------------------------- /package/lean/luci-app-wrtbwmon/root/etc/wrtbwmon.include: -------------------------------------------------------------------------------- 1 | /etc/init.d/wrtbwmon restart >/dev/null 2>&1 2 | -------------------------------------------------------------------------------- /package/lean/luci-app-zerotier/root/etc/zerotier/zerotier.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package/lean/luci-lib-fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/luci-lib-fs/Makefile -------------------------------------------------------------------------------- /package/lean/microsocks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/microsocks/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/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/n2n_v2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/n2n_v2/Makefile -------------------------------------------------------------------------------- /package/lean/nft-qos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/nft-qos/Makefile -------------------------------------------------------------------------------- /package/lean/npc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/npc/Makefile -------------------------------------------------------------------------------- /package/lean/parted/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/parted/Makefile -------------------------------------------------------------------------------- /package/lean/pdnsd-alt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/pdnsd-alt/Makefile -------------------------------------------------------------------------------- /package/lean/polarssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/polarssl/Makefile -------------------------------------------------------------------------------- /package/lean/ps3netsrv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/ps3netsrv/Makefile -------------------------------------------------------------------------------- /package/lean/qBittorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/qBittorrent/Makefile -------------------------------------------------------------------------------- /package/lean/qt5/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/qt5/Makefile -------------------------------------------------------------------------------- /package/lean/r8125/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8125/Makefile -------------------------------------------------------------------------------- /package/lean/r8125/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8125/src/Makefile -------------------------------------------------------------------------------- /package/lean/r8125/src/r8125.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8125/src/r8125.h -------------------------------------------------------------------------------- /package/lean/r8125/src/r8125_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8125/src/r8125_n.c -------------------------------------------------------------------------------- /package/lean/r8125/src/r8125_ptp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8125/src/r8125_ptp.c -------------------------------------------------------------------------------- /package/lean/r8125/src/r8125_ptp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8125/src/r8125_ptp.h -------------------------------------------------------------------------------- /package/lean/r8125/src/r8125_rss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8125/src/r8125_rss.c -------------------------------------------------------------------------------- /package/lean/r8125/src/r8125_rss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8125/src/r8125_rss.h -------------------------------------------------------------------------------- /package/lean/r8125/src/rtltool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8125/src/rtltool.c -------------------------------------------------------------------------------- /package/lean/r8125/src/rtltool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8125/src/rtltool.h -------------------------------------------------------------------------------- /package/lean/r8152/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8152/Makefile -------------------------------------------------------------------------------- /package/lean/r8168/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8168/Makefile -------------------------------------------------------------------------------- /package/lean/r8168/README.md: -------------------------------------------------------------------------------- 1 | Realtek RTL8168 Driver for Openwrt by "github.com/BROBIRD". 2 | -------------------------------------------------------------------------------- /package/lean/r8168/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8168/src/Makefile -------------------------------------------------------------------------------- /package/lean/r8168/src/r8168.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8168/src/r8168.h -------------------------------------------------------------------------------- /package/lean/r8168/src/r8168_asf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8168/src/r8168_asf.c -------------------------------------------------------------------------------- /package/lean/r8168/src/r8168_asf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8168/src/r8168_asf.h -------------------------------------------------------------------------------- /package/lean/r8168/src/r8168_n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8168/src/r8168_n.c -------------------------------------------------------------------------------- /package/lean/r8168/src/rtltool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8168/src/rtltool.c -------------------------------------------------------------------------------- /package/lean/r8168/src/rtltool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/r8168/src/rtltool.h -------------------------------------------------------------------------------- /package/lean/rblibtorrent/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/rblibtorrent/Makefile -------------------------------------------------------------------------------- /package/lean/rclone-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/rclone-ng/Makefile -------------------------------------------------------------------------------- /package/lean/rclone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/rclone/Makefile -------------------------------------------------------------------------------- /package/lean/redsocks2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/redsocks2/Makefile -------------------------------------------------------------------------------- /package/lean/samba4/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/samba4/Config.in -------------------------------------------------------------------------------- /package/lean/samba4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/samba4/Makefile -------------------------------------------------------------------------------- /package/lean/shortcut-fe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/shortcut-fe/Makefile -------------------------------------------------------------------------------- /package/lean/shortcut-fe/src/sfe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/shortcut-fe/src/sfe.h -------------------------------------------------------------------------------- /package/lean/simple-obfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/simple-obfs/Makefile -------------------------------------------------------------------------------- /package/lean/softethervpn5/files/dummy: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /package/lean/srelay/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/srelay/Makefile -------------------------------------------------------------------------------- /package/lean/tcpping/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/tcpping/Makefile -------------------------------------------------------------------------------- /package/lean/trojan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/trojan/Makefile -------------------------------------------------------------------------------- /package/lean/v2ray-plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/v2ray-plugin/Makefile -------------------------------------------------------------------------------- /package/lean/verysync/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/verysync/Makefile -------------------------------------------------------------------------------- /package/lean/vlmcsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/vlmcsd/Makefile -------------------------------------------------------------------------------- /package/lean/vsftpd-alt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/vsftpd-alt/Makefile -------------------------------------------------------------------------------- /package/lean/wget/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/wget/Makefile -------------------------------------------------------------------------------- /package/lean/wol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/wol/Makefile -------------------------------------------------------------------------------- /package/lean/wxbase/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/lean/wxbase/Makefile -------------------------------------------------------------------------------- /package/libs/elfutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/elfutils/Makefile -------------------------------------------------------------------------------- /package/libs/gettext-full/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/gettext-full/Makefile -------------------------------------------------------------------------------- /package/libs/gettext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/gettext/Makefile -------------------------------------------------------------------------------- /package/libs/gettext/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/gettext/src/LICENSE -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/gettext/src/m4/nls.m4 -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/gettext/src/m4/po.m4 -------------------------------------------------------------------------------- /package/libs/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/gmp/Makefile -------------------------------------------------------------------------------- /package/libs/jansson/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/jansson/Makefile -------------------------------------------------------------------------------- /package/libs/libbsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libbsd/Makefile -------------------------------------------------------------------------------- /package/libs/libcxx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libcxx/Makefile -------------------------------------------------------------------------------- /package/libs/libevent2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libevent2/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libiconv/COPYING -------------------------------------------------------------------------------- /package/libs/libiconv/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libiconv/COPYRIGHT -------------------------------------------------------------------------------- /package/libs/libiconv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libiconv/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libiconv/src/LICENSE -------------------------------------------------------------------------------- /package/libs/libiconv/src/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libiconv/src/iconv.c -------------------------------------------------------------------------------- /package/libs/libjson-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libjson-c/Makefile -------------------------------------------------------------------------------- /package/libs/libmnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libmnl/Makefile -------------------------------------------------------------------------------- /package/libs/libnfnetlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libnfnetlink/Makefile -------------------------------------------------------------------------------- /package/libs/libnftnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libnftnl/Makefile -------------------------------------------------------------------------------- /package/libs/libnl-tiny/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libnl-tiny/Makefile -------------------------------------------------------------------------------- /package/libs/libnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libnl/Makefile -------------------------------------------------------------------------------- /package/libs/libpcap/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libpcap/Config.in -------------------------------------------------------------------------------- /package/libs/libpcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libpcap/Makefile -------------------------------------------------------------------------------- /package/libs/libroxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libroxml/Makefile -------------------------------------------------------------------------------- /package/libs/libselinux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libselinux/Makefile -------------------------------------------------------------------------------- /package/libs/libsepol/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libsepol/Makefile -------------------------------------------------------------------------------- /package/libs/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libtool/Makefile -------------------------------------------------------------------------------- /package/libs/libubox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libubox/Makefile -------------------------------------------------------------------------------- /package/libs/libunwind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libunwind/Makefile -------------------------------------------------------------------------------- /package/libs/libusb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/libusb/Makefile -------------------------------------------------------------------------------- /package/libs/lzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/lzo/Makefile -------------------------------------------------------------------------------- /package/libs/mbedtls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/mbedtls/Makefile -------------------------------------------------------------------------------- /package/libs/ncurses/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/ncurses/Makefile -------------------------------------------------------------------------------- /package/libs/nettle/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/nettle/Config.in -------------------------------------------------------------------------------- /package/libs/nettle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/nettle/Makefile -------------------------------------------------------------------------------- /package/libs/nghttp2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/nghttp2/Makefile -------------------------------------------------------------------------------- /package/libs/openssl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/openssl/Config.in -------------------------------------------------------------------------------- /package/libs/openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/openssl/Makefile -------------------------------------------------------------------------------- /package/libs/pcre/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/pcre/Config.in -------------------------------------------------------------------------------- /package/libs/pcre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/pcre/Makefile -------------------------------------------------------------------------------- /package/libs/popt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/popt/Makefile -------------------------------------------------------------------------------- /package/libs/readline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/readline/Makefile -------------------------------------------------------------------------------- /package/libs/sysfsutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/sysfsutils/Makefile -------------------------------------------------------------------------------- /package/libs/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/toolchain/Makefile -------------------------------------------------------------------------------- /package/libs/uclibc++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/uclibc++/Makefile -------------------------------------------------------------------------------- /package/libs/uclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/uclient/Makefile -------------------------------------------------------------------------------- /package/libs/ustream-ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/ustream-ssl/Makefile -------------------------------------------------------------------------------- /package/libs/wolfssl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/wolfssl/Config.in -------------------------------------------------------------------------------- /package/libs/wolfssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/wolfssl/Makefile -------------------------------------------------------------------------------- /package/libs/zlib/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/zlib/Config.in -------------------------------------------------------------------------------- /package/libs/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/libs/zlib/Makefile -------------------------------------------------------------------------------- /package/network/config/netifd/files/sbin/ifdown: -------------------------------------------------------------------------------- 1 | ifup -------------------------------------------------------------------------------- /package/network/ipv6/6in4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/network/ipv6/6in4/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6rd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/network/ipv6/6rd/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6to4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/network/ipv6/6to4/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/map/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/network/ipv6/map/Makefile -------------------------------------------------------------------------------- /package/network/services/ead/src/tinysrp/stamp-h.in: -------------------------------------------------------------------------------- 1 | timestamp 2 | -------------------------------------------------------------------------------- /package/network/services/openvpn-easy-rsa/files/openvpn-easy-rsa.upgrade: -------------------------------------------------------------------------------- 1 | /etc/easy-rsa/pki/ 2 | -------------------------------------------------------------------------------- /package/network/services/openvpn/files/files/openvpn.upgrade: -------------------------------------------------------------------------------- 1 | /etc/openvpn/ 2 | -------------------------------------------------------------------------------- /package/network/services/openvpn/files/openvpn.upgrade: -------------------------------------------------------------------------------- 1 | /etc/openvpn/ 2 | -------------------------------------------------------------------------------- /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/tossp/lede-k3/HEAD/package/network/utils/iw/Makefile -------------------------------------------------------------------------------- /package/system/fstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/fstools/Makefile -------------------------------------------------------------------------------- /package/system/fwtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/fwtool/Makefile -------------------------------------------------------------------------------- /package/system/mtd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/Makefile -------------------------------------------------------------------------------- /package/system/mtd/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/src/Makefile -------------------------------------------------------------------------------- /package/system/mtd/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/src/crc32.c -------------------------------------------------------------------------------- /package/system/mtd/src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/src/crc32.h -------------------------------------------------------------------------------- /package/system/mtd/src/fis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/src/fis.c -------------------------------------------------------------------------------- /package/system/mtd/src/fis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/src/fis.h -------------------------------------------------------------------------------- /package/system/mtd/src/imagetag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/src/imagetag.c -------------------------------------------------------------------------------- /package/system/mtd/src/jffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/src/jffs2.c -------------------------------------------------------------------------------- /package/system/mtd/src/jffs2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/src/jffs2.h -------------------------------------------------------------------------------- /package/system/mtd/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/src/md5.c -------------------------------------------------------------------------------- /package/system/mtd/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/src/md5.h -------------------------------------------------------------------------------- /package/system/mtd/src/mtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/src/mtd.c -------------------------------------------------------------------------------- /package/system/mtd/src/mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/src/mtd.h -------------------------------------------------------------------------------- /package/system/mtd/src/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/src/seama.c -------------------------------------------------------------------------------- /package/system/mtd/src/seama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/src/seama.h -------------------------------------------------------------------------------- /package/system/mtd/src/trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/src/trx.c -------------------------------------------------------------------------------- /package/system/mtd/src/wrg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/src/wrg.c -------------------------------------------------------------------------------- /package/system/mtd/src/wrgg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/src/wrgg.c -------------------------------------------------------------------------------- /package/system/mtd/src/wrgg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/mtd/src/wrgg.h -------------------------------------------------------------------------------- /package/system/opkg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/opkg/Makefile -------------------------------------------------------------------------------- /package/system/opkg/files/opkg-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/opkg/files/opkg-key -------------------------------------------------------------------------------- /package/system/procd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/procd/Makefile -------------------------------------------------------------------------------- /package/system/rpcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/rpcd/Makefile -------------------------------------------------------------------------------- /package/system/ubox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/ubox/Makefile -------------------------------------------------------------------------------- /package/system/ubox/files/log.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/ubox/files/log.init -------------------------------------------------------------------------------- /package/system/ubus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/ubus/Makefile -------------------------------------------------------------------------------- /package/system/ucert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/ucert/Makefile -------------------------------------------------------------------------------- /package/system/uci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/uci/Makefile -------------------------------------------------------------------------------- /package/system/urngd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/urngd/Makefile -------------------------------------------------------------------------------- /package/system/usign/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/usign/Makefile -------------------------------------------------------------------------------- /package/system/zram-swap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/system/zram-swap/Makefile -------------------------------------------------------------------------------- /package/utils/adb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/adb/Makefile -------------------------------------------------------------------------------- /package/utils/bsdiff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/bsdiff/Makefile -------------------------------------------------------------------------------- /package/utils/busybox/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/busybox/Config.in -------------------------------------------------------------------------------- /package/utils/busybox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/busybox/Makefile -------------------------------------------------------------------------------- /package/utils/busybox/files/cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/busybox/files/cron -------------------------------------------------------------------------------- /package/utils/busybox/files/ntpd-hotplug: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | ACTION="$1" /sbin/hotplug-call ntp 3 | -------------------------------------------------------------------------------- /package/utils/bzip2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/bzip2/Makefile -------------------------------------------------------------------------------- /package/utils/ct-bugcheck/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/ct-bugcheck/Makefile -------------------------------------------------------------------------------- /package/utils/e2fsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/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/tossp/lede-k3/HEAD/package/utils/f2fs-tools/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/fbtest/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/fbtest/src/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/src/fbtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/fbtest/src/fbtest.c -------------------------------------------------------------------------------- /package/utils/fritz-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/fritz-tools/Makefile -------------------------------------------------------------------------------- /package/utils/jboot-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/jboot-tools/Makefile -------------------------------------------------------------------------------- /package/utils/jsonfilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/jsonfilter/Makefile -------------------------------------------------------------------------------- /package/utils/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/lua/Makefile -------------------------------------------------------------------------------- /package/utils/lua5.3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/lua5.3/Makefile -------------------------------------------------------------------------------- /package/utils/mdadm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/mdadm/Makefile -------------------------------------------------------------------------------- /package/utils/mtd-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/mtd-utils/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/nvram/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/nvram/src/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/src/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/nvram/src/cli.c -------------------------------------------------------------------------------- /package/utils/nvram/src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/nvram/src/crc.c -------------------------------------------------------------------------------- /package/utils/nvram/src/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/nvram/src/nvram.c -------------------------------------------------------------------------------- /package/utils/nvram/src/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/nvram/src/nvram.h -------------------------------------------------------------------------------- /package/utils/osafeloader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/osafeloader/Makefile -------------------------------------------------------------------------------- /package/utils/oseama/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/oseama/Makefile -------------------------------------------------------------------------------- /package/utils/oseama/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/oseama/src/Makefile -------------------------------------------------------------------------------- /package/utils/oseama/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/oseama/src/md5.c -------------------------------------------------------------------------------- /package/utils/oseama/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/oseama/src/md5.h -------------------------------------------------------------------------------- /package/utils/oseama/src/oseama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/oseama/src/oseama.c -------------------------------------------------------------------------------- /package/utils/otrx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/otrx/Makefile -------------------------------------------------------------------------------- /package/utils/otrx/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/otrx/src/Makefile -------------------------------------------------------------------------------- /package/utils/otrx/src/otrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/otrx/src/otrx.c -------------------------------------------------------------------------------- /package/utils/px5g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/px5g/Makefile -------------------------------------------------------------------------------- /package/utils/px5g/px5g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/px5g/px5g.c -------------------------------------------------------------------------------- /package/utils/spidev_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/spidev_test/Makefile -------------------------------------------------------------------------------- /package/utils/ugps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/ugps/Makefile -------------------------------------------------------------------------------- /package/utils/ugps/files/ugps.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/ugps/files/ugps.init -------------------------------------------------------------------------------- /package/utils/usbmode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/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/usbreset/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/usbreset/Makefile -------------------------------------------------------------------------------- /package/utils/usbutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/usbutils/Makefile -------------------------------------------------------------------------------- /package/utils/util-linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/package/utils/util-linux/Makefile -------------------------------------------------------------------------------- /rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/rules.mk -------------------------------------------------------------------------------- /scripts/arm-magic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/arm-magic.sh -------------------------------------------------------------------------------- /scripts/brcmImage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/brcmImage.pl -------------------------------------------------------------------------------- /scripts/bundle-libraries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/bundle-libraries.sh -------------------------------------------------------------------------------- /scripts/cfe-bin-header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/cfe-bin-header.py -------------------------------------------------------------------------------- /scripts/cfe-partition-tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/cfe-partition-tag.py -------------------------------------------------------------------------------- /scripts/cfe-wfi-tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/cfe-wfi-tag.py -------------------------------------------------------------------------------- /scripts/checkpatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/checkpatch.pl -------------------------------------------------------------------------------- /scripts/clang-gcc-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/clang-gcc-wrapper -------------------------------------------------------------------------------- /scripts/clean-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/clean-package.sh -------------------------------------------------------------------------------- /scripts/cleanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/cleanfile -------------------------------------------------------------------------------- /scripts/cleanpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/cleanpatch -------------------------------------------------------------------------------- /scripts/combined-ext-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/combined-ext-image.sh -------------------------------------------------------------------------------- /scripts/combined-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/combined-image.sh -------------------------------------------------------------------------------- /scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config.guess -------------------------------------------------------------------------------- /scripts/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config.rpath -------------------------------------------------------------------------------- /scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config.sub -------------------------------------------------------------------------------- /scripts/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/.gitignore -------------------------------------------------------------------------------- /scripts/config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/Makefile -------------------------------------------------------------------------------- /scripts/config/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/README -------------------------------------------------------------------------------- /scripts/config/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/conf.c -------------------------------------------------------------------------------- /scripts/config/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/confdata.c -------------------------------------------------------------------------------- /scripts/config/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/expr.c -------------------------------------------------------------------------------- /scripts/config/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/expr.h -------------------------------------------------------------------------------- /scripts/config/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/images.c -------------------------------------------------------------------------------- /scripts/config/images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/images.h -------------------------------------------------------------------------------- /scripts/config/lexer.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/lexer.l -------------------------------------------------------------------------------- /scripts/config/lexer.lex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/lexer.lex.c -------------------------------------------------------------------------------- /scripts/config/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/list.h -------------------------------------------------------------------------------- /scripts/config/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/lkc.h -------------------------------------------------------------------------------- /scripts/config/lkc_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/lkc_proto.h -------------------------------------------------------------------------------- /scripts/config/lxdialog/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/lxdialog/dialog.h -------------------------------------------------------------------------------- /scripts/config/lxdialog/inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/lxdialog/inputbox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/lxdialog/menubox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/lxdialog/textbox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/lxdialog/util.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/lxdialog/yesno.c -------------------------------------------------------------------------------- /scripts/config/mconf-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/mconf-cfg.sh -------------------------------------------------------------------------------- /scripts/config/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/mconf.c -------------------------------------------------------------------------------- /scripts/config/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/menu.c -------------------------------------------------------------------------------- /scripts/config/parser.tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/parser.tab.c -------------------------------------------------------------------------------- /scripts/config/parser.tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/parser.tab.h -------------------------------------------------------------------------------- /scripts/config/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/parser.y -------------------------------------------------------------------------------- /scripts/config/preprocess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/preprocess.c -------------------------------------------------------------------------------- /scripts/config/qconf-cfg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/qconf-cfg.sh -------------------------------------------------------------------------------- /scripts/config/qconf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/qconf.cc -------------------------------------------------------------------------------- /scripts/config/qconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/qconf.h -------------------------------------------------------------------------------- /scripts/config/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/symbol.c -------------------------------------------------------------------------------- /scripts/config/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/config/util.c -------------------------------------------------------------------------------- /scripts/deptest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/deptest.sh -------------------------------------------------------------------------------- /scripts/diffconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/diffconfig.sh -------------------------------------------------------------------------------- /scripts/dl_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/dl_cleanup.py -------------------------------------------------------------------------------- /scripts/dl_github_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/dl_github_archive.py -------------------------------------------------------------------------------- /scripts/download.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/download.pl -------------------------------------------------------------------------------- /scripts/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/env -------------------------------------------------------------------------------- /scripts/ext-toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/ext-toolchain.sh -------------------------------------------------------------------------------- /scripts/feeds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/feeds -------------------------------------------------------------------------------- /scripts/fixup-makefile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/fixup-makefile.pl -------------------------------------------------------------------------------- /scripts/flashing/adam2flash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/flashing/adam2flash.pl -------------------------------------------------------------------------------- /scripts/flashing/adsl2mue_flash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/flashing/adsl2mue_flash.pl -------------------------------------------------------------------------------- /scripts/flashing/eva_ramboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/flashing/eva_ramboot.py -------------------------------------------------------------------------------- /scripts/flashing/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/flashing/flash.sh -------------------------------------------------------------------------------- /scripts/flashing/jungo-image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/flashing/jungo-image.py -------------------------------------------------------------------------------- /scripts/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/functions.sh -------------------------------------------------------------------------------- /scripts/gen-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/gen-dependencies.sh -------------------------------------------------------------------------------- /scripts/gen_image_generic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/gen_image_generic.sh -------------------------------------------------------------------------------- /scripts/get_source_date_epoch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/get_source_date_epoch.sh -------------------------------------------------------------------------------- /scripts/getver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/getver.sh -------------------------------------------------------------------------------- /scripts/ipkg-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/ipkg-build -------------------------------------------------------------------------------- /scripts/ipkg-make-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/ipkg-make-index.sh -------------------------------------------------------------------------------- /scripts/ipkg-remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/ipkg-remove -------------------------------------------------------------------------------- /scripts/json_add_image_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/json_add_image_info.py -------------------------------------------------------------------------------- /scripts/kconfig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/kconfig.pl -------------------------------------------------------------------------------- /scripts/linksys-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/linksys-image.sh -------------------------------------------------------------------------------- /scripts/make-ipkg-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/make-ipkg-dir.sh -------------------------------------------------------------------------------- /scripts/md5sum: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat "$@" | md5 3 | -------------------------------------------------------------------------------- /scripts/metadata.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/metadata.pm -------------------------------------------------------------------------------- /scripts/mkhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/mkhash.c -------------------------------------------------------------------------------- /scripts/mkits-qsdk-ipq-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/mkits-qsdk-ipq-image.sh -------------------------------------------------------------------------------- /scripts/mkits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/mkits.sh -------------------------------------------------------------------------------- /scripts/om-fwupgradecfg-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/om-fwupgradecfg-gen.sh -------------------------------------------------------------------------------- /scripts/package-metadata.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/package-metadata.pl -------------------------------------------------------------------------------- /scripts/pad_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/pad_image -------------------------------------------------------------------------------- /scripts/patch-kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/patch-kernel.sh -------------------------------------------------------------------------------- /scripts/patch-specs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/patch-specs.sh -------------------------------------------------------------------------------- /scripts/portable_date.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/portable_date.sh -------------------------------------------------------------------------------- /scripts/qemustart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/qemustart -------------------------------------------------------------------------------- /scripts/redboot-script.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/redboot-script.pl -------------------------------------------------------------------------------- /scripts/relink-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/relink-lib.sh -------------------------------------------------------------------------------- /scripts/remote-gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/remote-gdb -------------------------------------------------------------------------------- /scripts/rstrip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/rstrip.sh -------------------------------------------------------------------------------- /scripts/sercomm-crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/sercomm-crypto.py -------------------------------------------------------------------------------- /scripts/sercomm-partition-tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/sercomm-partition-tag.py -------------------------------------------------------------------------------- /scripts/sercomm-payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/sercomm-payload.py -------------------------------------------------------------------------------- /scripts/sign_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/sign_images.sh -------------------------------------------------------------------------------- /scripts/slugimage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/slugimage.pl -------------------------------------------------------------------------------- /scripts/srecimage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/srecimage.pl -------------------------------------------------------------------------------- /scripts/strip-kmod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/strip-kmod.sh -------------------------------------------------------------------------------- /scripts/symlink-tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/symlink-tree.sh -------------------------------------------------------------------------------- /scripts/sysupgrade-tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/sysupgrade-tar.sh -------------------------------------------------------------------------------- /scripts/target-metadata.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/target-metadata.pl -------------------------------------------------------------------------------- /scripts/time.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/time.pl -------------------------------------------------------------------------------- /scripts/timestamp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/timestamp.pl -------------------------------------------------------------------------------- /scripts/ubinize-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/scripts/ubinize-image.sh -------------------------------------------------------------------------------- /target/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/Config.in -------------------------------------------------------------------------------- /target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/Makefile -------------------------------------------------------------------------------- /target/imagebuilder/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/imagebuilder/Config.in -------------------------------------------------------------------------------- /target/imagebuilder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/imagebuilder/Makefile -------------------------------------------------------------------------------- /target/imagebuilder/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/imagebuilder/files/Makefile -------------------------------------------------------------------------------- /target/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/Makefile -------------------------------------------------------------------------------- /target/linux/apm821xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/apm821xx/Makefile -------------------------------------------------------------------------------- /target/linux/apm821xx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/apm821xx/config-4.19 -------------------------------------------------------------------------------- /target/linux/apm821xx/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/apm821xx/config-5.4 -------------------------------------------------------------------------------- /target/linux/ar71xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ar71xx/Makefile -------------------------------------------------------------------------------- /target/linux/ar71xx/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ar71xx/config-4.14 -------------------------------------------------------------------------------- /target/linux/ar71xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ar71xx/image/Makefile -------------------------------------------------------------------------------- /target/linux/ar71xx/image/nand.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ar71xx/image/nand.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/image/tiny.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ar71xx/image/tiny.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ar71xx/modules.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/nand/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ar71xx/nand/target.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/tiny/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ar71xx/tiny/target.mk -------------------------------------------------------------------------------- /target/linux/arc770/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/arc770/Makefile -------------------------------------------------------------------------------- /target/linux/arc770/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/arc770/config-5.4 -------------------------------------------------------------------------------- /target/linux/arc770/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/arc770/image/Makefile -------------------------------------------------------------------------------- /target/linux/arc770/image/uEnv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/arc770/image/uEnv.txt -------------------------------------------------------------------------------- /target/linux/archs38/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/archs38/Makefile -------------------------------------------------------------------------------- /target/linux/archs38/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/archs38/config-5.4 -------------------------------------------------------------------------------- /target/linux/armvirt/32/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/armvirt/32/config-5.4 -------------------------------------------------------------------------------- /target/linux/armvirt/32/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/armvirt/32/target.mk -------------------------------------------------------------------------------- /target/linux/armvirt/64/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/armvirt/64/config-5.4 -------------------------------------------------------------------------------- /target/linux/armvirt/64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/armvirt/64/target.mk -------------------------------------------------------------------------------- /target/linux/armvirt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/armvirt/Makefile -------------------------------------------------------------------------------- /target/linux/armvirt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/armvirt/README -------------------------------------------------------------------------------- /target/linux/armvirt/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/armvirt/config-4.19 -------------------------------------------------------------------------------- /target/linux/armvirt/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/armvirt/config-5.4 -------------------------------------------------------------------------------- /target/linux/at91/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/at91/Makefile -------------------------------------------------------------------------------- /target/linux/at91/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/at91/image/Config.in -------------------------------------------------------------------------------- /target/linux/at91/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/at91/image/Makefile -------------------------------------------------------------------------------- /target/linux/at91/image/sam9x.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/at91/image/sam9x.mk -------------------------------------------------------------------------------- /target/linux/at91/image/sama5.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/at91/image/sama5.mk -------------------------------------------------------------------------------- /target/linux/at91/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/at91/modules.mk -------------------------------------------------------------------------------- /target/linux/at91/sam9x/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/at91/sam9x/target.mk -------------------------------------------------------------------------------- /target/linux/at91/sama5/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/at91/sama5/target.mk -------------------------------------------------------------------------------- /target/linux/ath25/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath25/Makefile -------------------------------------------------------------------------------- /target/linux/ath25/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath25/config-5.4 -------------------------------------------------------------------------------- /target/linux/ath25/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath25/image/Makefile -------------------------------------------------------------------------------- /target/linux/ath79/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/Makefile -------------------------------------------------------------------------------- /target/linux/ath79/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/config-4.19 -------------------------------------------------------------------------------- /target/linux/ath79/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/config-5.4 -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar7100.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/dts/ar7100.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar7240.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/dts/ar7240.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar7241.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/dts/ar7241.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar7242.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/dts/ar7242.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar724x.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/dts/ar724x.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar9132.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/dts/ar9132.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar9330.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/dts/ar9330.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar9331.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/dts/ar9331.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar9341.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/dts/ar9341.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar9344.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/dts/ar9344.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar934x.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/dts/ar934x.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ath79.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/dts/ath79.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/image/Makefile -------------------------------------------------------------------------------- /target/linux/ath79/image/nand.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/image/nand.mk -------------------------------------------------------------------------------- /target/linux/ath79/image/tiny.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/image/tiny.mk -------------------------------------------------------------------------------- /target/linux/ath79/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/modules.mk -------------------------------------------------------------------------------- /target/linux/ath79/nand/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/nand/target.mk -------------------------------------------------------------------------------- /target/linux/ath79/tiny/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ath79/tiny/target.mk -------------------------------------------------------------------------------- /target/linux/bcm27xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/bcm27xx/Makefile -------------------------------------------------------------------------------- /target/linux/bcm27xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/bcm27xx/modules.mk -------------------------------------------------------------------------------- /target/linux/bcm47xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/bcm47xx/Makefile -------------------------------------------------------------------------------- /target/linux/bcm47xx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/bcm47xx/config-4.19 -------------------------------------------------------------------------------- /target/linux/bcm47xx/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/bcm47xx/config-5.4 -------------------------------------------------------------------------------- /target/linux/bcm47xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/bcm47xx/modules.mk -------------------------------------------------------------------------------- /target/linux/bcm53xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/bcm53xx/Makefile -------------------------------------------------------------------------------- /target/linux/bcm53xx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/bcm53xx/config-4.19 -------------------------------------------------------------------------------- /target/linux/bcm53xx/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/bcm53xx/config-5.4 -------------------------------------------------------------------------------- /target/linux/bcm53xx/generic/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=Generic 2 | -------------------------------------------------------------------------------- /target/linux/bcm53xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/bcm53xx/modules.mk -------------------------------------------------------------------------------- /target/linux/bcm63xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/bcm63xx/Makefile -------------------------------------------------------------------------------- /target/linux/bcm63xx/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/bcm63xx/config-5.4 -------------------------------------------------------------------------------- /target/linux/bcm63xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/bcm63xx/modules.mk -------------------------------------------------------------------------------- /target/linux/bcm63xx/smp/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/bcm63xx/smp/target.mk -------------------------------------------------------------------------------- /target/linux/cns3xxx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/cns3xxx/Makefile -------------------------------------------------------------------------------- /target/linux/cns3xxx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/cns3xxx/config-4.19 -------------------------------------------------------------------------------- /target/linux/gemini/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/gemini/Makefile -------------------------------------------------------------------------------- /target/linux/gemini/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/gemini/config-4.19 -------------------------------------------------------------------------------- /target/linux/gemini/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/gemini/config-5.4 -------------------------------------------------------------------------------- /target/linux/gemini/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/gemini/image/Makefile -------------------------------------------------------------------------------- /target/linux/gemini/image/copy-kernel/.gitignore: -------------------------------------------------------------------------------- 1 | copy-kernel.bin 2 | -------------------------------------------------------------------------------- /target/linux/generic/PATCHES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/generic/PATCHES -------------------------------------------------------------------------------- /target/linux/generic/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/generic/config-4.14 -------------------------------------------------------------------------------- /target/linux/generic/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/generic/config-4.19 -------------------------------------------------------------------------------- /target/linux/generic/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/generic/config-5.4 -------------------------------------------------------------------------------- /target/linux/imx6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/imx6/Makefile -------------------------------------------------------------------------------- /target/linux/imx6/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/imx6/config-4.19 -------------------------------------------------------------------------------- /target/linux/imx6/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/imx6/config-5.4 -------------------------------------------------------------------------------- /target/linux/imx6/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/imx6/image/Makefile -------------------------------------------------------------------------------- /target/linux/ipq40xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ipq40xx/Makefile -------------------------------------------------------------------------------- /target/linux/ipq40xx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ipq40xx/config-4.19 -------------------------------------------------------------------------------- /target/linux/ipq40xx/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ipq40xx/config-5.4 -------------------------------------------------------------------------------- /target/linux/ipq40xx/generic/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=Generic 2 | -------------------------------------------------------------------------------- /target/linux/ipq806x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ipq806x/Makefile -------------------------------------------------------------------------------- /target/linux/ipq806x/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ipq806x/config-4.19 -------------------------------------------------------------------------------- /target/linux/ipq806x/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ipq806x/config-5.4 -------------------------------------------------------------------------------- /target/linux/ipq806x/generic/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=Generic 2 | -------------------------------------------------------------------------------- /target/linux/ipq806x/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ipq806x/modules.mk -------------------------------------------------------------------------------- /target/linux/ipq807x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ipq807x/Makefile -------------------------------------------------------------------------------- /target/linux/kirkwood/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/kirkwood/Makefile -------------------------------------------------------------------------------- /target/linux/kirkwood/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/kirkwood/config-5.4 -------------------------------------------------------------------------------- /target/linux/lantiq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/lantiq/Makefile -------------------------------------------------------------------------------- /target/linux/lantiq/ase/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/lantiq/ase/config-5.4 -------------------------------------------------------------------------------- /target/linux/lantiq/ase/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/lantiq/ase/target.mk -------------------------------------------------------------------------------- /target/linux/lantiq/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/lantiq/config-4.19 -------------------------------------------------------------------------------- /target/linux/lantiq/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/lantiq/config-5.4 -------------------------------------------------------------------------------- /target/linux/lantiq/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/lantiq/image/Makefile -------------------------------------------------------------------------------- /target/linux/lantiq/image/ar9.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/lantiq/image/ar9.mk -------------------------------------------------------------------------------- /target/linux/lantiq/image/vr9.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/lantiq/image/vr9.mk -------------------------------------------------------------------------------- /target/linux/lantiq/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/lantiq/modules.mk -------------------------------------------------------------------------------- /target/linux/lantiq/xway/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/lantiq/xway/target.mk -------------------------------------------------------------------------------- /target/linux/layerscape/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/layerscape/Makefile -------------------------------------------------------------------------------- /target/linux/layerscape/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/layerscape/README -------------------------------------------------------------------------------- /target/linux/layerscape/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/layerscape/modules.mk -------------------------------------------------------------------------------- /target/linux/malta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/malta/Makefile -------------------------------------------------------------------------------- /target/linux/malta/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/malta/README -------------------------------------------------------------------------------- /target/linux/malta/be/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/malta/be/target.mk -------------------------------------------------------------------------------- /target/linux/malta/be64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/malta/be64/target.mk -------------------------------------------------------------------------------- /target/linux/malta/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/malta/config-4.19 -------------------------------------------------------------------------------- /target/linux/malta/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/malta/config-5.4 -------------------------------------------------------------------------------- /target/linux/malta/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/malta/image/Makefile -------------------------------------------------------------------------------- /target/linux/malta/le/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/malta/le/target.mk -------------------------------------------------------------------------------- /target/linux/malta/le64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/malta/le64/target.mk -------------------------------------------------------------------------------- /target/linux/mediatek/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/mediatek/Makefile -------------------------------------------------------------------------------- /target/linux/mediatek/files-5.4/drivers/net/phy/rtk/modules.builtin: -------------------------------------------------------------------------------- 1 | kernel/drivers/net/phy/rtk/rtl8367s_gsw.ko 2 | -------------------------------------------------------------------------------- /target/linux/mediatek/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/mediatek/modules.mk -------------------------------------------------------------------------------- /target/linux/mpc85xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/mpc85xx/Makefile -------------------------------------------------------------------------------- /target/linux/mpc85xx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/mpc85xx/config-4.19 -------------------------------------------------------------------------------- /target/linux/mpc85xx/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/mpc85xx/config-5.4 -------------------------------------------------------------------------------- /target/linux/mvebu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/mvebu/Makefile -------------------------------------------------------------------------------- /target/linux/mvebu/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/mvebu/config-4.19 -------------------------------------------------------------------------------- /target/linux/mvebu/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/mvebu/config-5.4 -------------------------------------------------------------------------------- /target/linux/mvebu/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/mvebu/image/Makefile -------------------------------------------------------------------------------- /target/linux/mvebu/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/mvebu/modules.mk -------------------------------------------------------------------------------- /target/linux/mxs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/mxs/Makefile -------------------------------------------------------------------------------- /target/linux/mxs/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/mxs/config-5.4 -------------------------------------------------------------------------------- /target/linux/mxs/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/mxs/image/Config.in -------------------------------------------------------------------------------- /target/linux/mxs/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/mxs/image/Makefile -------------------------------------------------------------------------------- /target/linux/octeon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/octeon/Makefile -------------------------------------------------------------------------------- /target/linux/octeon/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/octeon/config-4.19 -------------------------------------------------------------------------------- /target/linux/octeon/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/octeon/config-5.4 -------------------------------------------------------------------------------- /target/linux/octeon/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/octeon/image/Makefile -------------------------------------------------------------------------------- /target/linux/octeontx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/octeontx/Makefile -------------------------------------------------------------------------------- /target/linux/octeontx/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/octeontx/config-5.4 -------------------------------------------------------------------------------- /target/linux/omap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/omap/Makefile -------------------------------------------------------------------------------- /target/linux/omap/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/omap/config-4.19 -------------------------------------------------------------------------------- /target/linux/omap/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/omap/config-5.4 -------------------------------------------------------------------------------- /target/linux/omap/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/omap/image/Config.in -------------------------------------------------------------------------------- /target/linux/omap/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/omap/image/Makefile -------------------------------------------------------------------------------- /target/linux/oxnas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/oxnas/Makefile -------------------------------------------------------------------------------- /target/linux/oxnas/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/oxnas/config-5.4 -------------------------------------------------------------------------------- /target/linux/oxnas/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/oxnas/image/Makefile -------------------------------------------------------------------------------- /target/linux/oxnas/image/ox820.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/oxnas/image/ox820.mk -------------------------------------------------------------------------------- /target/linux/oxnas/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/oxnas/modules.mk -------------------------------------------------------------------------------- /target/linux/oxnas/ox820/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/oxnas/ox820/target.mk -------------------------------------------------------------------------------- /target/linux/pistachio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/pistachio/Makefile -------------------------------------------------------------------------------- /target/linux/pistachio/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/pistachio/config-5.4 -------------------------------------------------------------------------------- /target/linux/ramips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ramips/Makefile -------------------------------------------------------------------------------- /target/linux/ramips/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ramips/image/Makefile -------------------------------------------------------------------------------- /target/linux/ramips/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/ramips/modules.mk -------------------------------------------------------------------------------- /target/linux/rb532/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/rb532/Makefile -------------------------------------------------------------------------------- /target/linux/rb532/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/rb532/config-4.14 -------------------------------------------------------------------------------- /target/linux/rb532/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/rb532/image/Makefile -------------------------------------------------------------------------------- /target/linux/rb532/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/rb532/modules.mk -------------------------------------------------------------------------------- /target/linux/rockchip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/rockchip/Makefile -------------------------------------------------------------------------------- /target/linux/samsung/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/samsung/Makefile -------------------------------------------------------------------------------- /target/linux/sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/sunxi/Makefile -------------------------------------------------------------------------------- /target/linux/sunxi/base-files/lib/firmware/brcm/brcmfmac43430a0-sdio.txt: -------------------------------------------------------------------------------- 1 | brcmfmac43430-sdio.txt -------------------------------------------------------------------------------- /target/linux/sunxi/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/sunxi/config-4.19 -------------------------------------------------------------------------------- /target/linux/sunxi/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/sunxi/config-5.4 -------------------------------------------------------------------------------- /target/linux/sunxi/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/sunxi/image/Config.in -------------------------------------------------------------------------------- /target/linux/sunxi/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/sunxi/image/Makefile -------------------------------------------------------------------------------- /target/linux/sunxi/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/sunxi/modules.mk -------------------------------------------------------------------------------- /target/linux/tegra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/tegra/Makefile -------------------------------------------------------------------------------- /target/linux/tegra/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/tegra/config-4.19 -------------------------------------------------------------------------------- /target/linux/tegra/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/tegra/config-5.4 -------------------------------------------------------------------------------- /target/linux/tegra/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/tegra/image/Makefile -------------------------------------------------------------------------------- /target/linux/uml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/uml/Makefile -------------------------------------------------------------------------------- /target/linux/uml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/uml/README -------------------------------------------------------------------------------- /target/linux/uml/config/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/uml/config/i386 -------------------------------------------------------------------------------- /target/linux/uml/config/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/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/tossp/lede-k3/HEAD/target/linux/uml/image/Makefile -------------------------------------------------------------------------------- /target/linux/x86/64/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/64/config-4.19 -------------------------------------------------------------------------------- /target/linux/x86/64/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/64/config-5.4 -------------------------------------------------------------------------------- /target/linux/x86/64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/64/target.mk -------------------------------------------------------------------------------- /target/linux/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/Makefile -------------------------------------------------------------------------------- /target/linux/x86/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/config-4.19 -------------------------------------------------------------------------------- /target/linux/x86/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/config-5.4 -------------------------------------------------------------------------------- /target/linux/x86/generic/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/generic/target.mk -------------------------------------------------------------------------------- /target/linux/x86/geode/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/geode/config-4.19 -------------------------------------------------------------------------------- /target/linux/x86/geode/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/geode/config-5.4 -------------------------------------------------------------------------------- /target/linux/x86/geode/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/geode/target.mk -------------------------------------------------------------------------------- /target/linux/x86/image/64.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/image/64.mk -------------------------------------------------------------------------------- /target/linux/x86/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/image/Makefile -------------------------------------------------------------------------------- /target/linux/x86/image/generic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/image/generic.mk -------------------------------------------------------------------------------- /target/linux/x86/image/geode.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/image/geode.mk -------------------------------------------------------------------------------- /target/linux/x86/image/grub-pc.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/image/grub-pc.cfg -------------------------------------------------------------------------------- /target/linux/x86/image/legacy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/image/legacy.mk -------------------------------------------------------------------------------- /target/linux/x86/legacy/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/legacy/config-5.4 -------------------------------------------------------------------------------- /target/linux/x86/legacy/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/legacy/target.mk -------------------------------------------------------------------------------- /target/linux/x86/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/x86/modules.mk -------------------------------------------------------------------------------- /target/linux/zynq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/zynq/Makefile -------------------------------------------------------------------------------- /target/linux/zynq/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/zynq/config-4.19 -------------------------------------------------------------------------------- /target/linux/zynq/config-5.4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/zynq/config-5.4 -------------------------------------------------------------------------------- /target/linux/zynq/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/linux/zynq/image/Makefile -------------------------------------------------------------------------------- /target/sdk/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/sdk/Config.in -------------------------------------------------------------------------------- /target/sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/sdk/Makefile -------------------------------------------------------------------------------- /target/sdk/convert-config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/sdk/convert-config.pl -------------------------------------------------------------------------------- /target/sdk/files/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/sdk/files/Config.in -------------------------------------------------------------------------------- /target/sdk/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/sdk/files/Makefile -------------------------------------------------------------------------------- /target/sdk/files/README.SDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/sdk/files/README.SDK -------------------------------------------------------------------------------- /target/toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/toolchain/Config.in -------------------------------------------------------------------------------- /target/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/toolchain/Makefile -------------------------------------------------------------------------------- /target/toolchain/files/wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/target/toolchain/files/wrapper.sh -------------------------------------------------------------------------------- /toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/Config.in -------------------------------------------------------------------------------- /toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/Makefile -------------------------------------------------------------------------------- /toolchain/binutils/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/binutils/Config.in -------------------------------------------------------------------------------- /toolchain/binutils/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/binutils/Config.version -------------------------------------------------------------------------------- /toolchain/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/binutils/Makefile -------------------------------------------------------------------------------- /toolchain/fortify-headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/fortify-headers/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/gcc/Config.in -------------------------------------------------------------------------------- /toolchain/gcc/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/gcc/Config.version -------------------------------------------------------------------------------- /toolchain/gcc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/gcc/common.mk -------------------------------------------------------------------------------- /toolchain/gcc/exclude-testsuite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/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/tossp/lede-k3/HEAD/toolchain/gcc/final/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/initial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/gcc/initial/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/gcc/minimal/Makefile -------------------------------------------------------------------------------- /toolchain/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/gdb/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/glibc/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/glibc/common.mk -------------------------------------------------------------------------------- /toolchain/glibc/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/glibc/headers/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/include/libintl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/glibc/include/libintl.h -------------------------------------------------------------------------------- /toolchain/info.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/info.mk -------------------------------------------------------------------------------- /toolchain/kernel-headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/kernel-headers/Makefile -------------------------------------------------------------------------------- /toolchain/musl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/musl/Config.in -------------------------------------------------------------------------------- /toolchain/musl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/musl/Makefile -------------------------------------------------------------------------------- /toolchain/musl/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/musl/common.mk -------------------------------------------------------------------------------- /toolchain/musl/include/bits/wordsize.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /toolchain/musl/include/features.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/musl/include/features.h -------------------------------------------------------------------------------- /toolchain/musl/include/sgidefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/musl/include/sgidefs.h -------------------------------------------------------------------------------- /toolchain/musl/include/sys/cdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/musl/include/sys/cdefs.h -------------------------------------------------------------------------------- /toolchain/musl/include/sys/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/musl/include/sys/queue.h -------------------------------------------------------------------------------- /toolchain/nasm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/nasm/Makefile -------------------------------------------------------------------------------- /toolchain/uClibc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/Config.in -------------------------------------------------------------------------------- /toolchain/uClibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/Makefile -------------------------------------------------------------------------------- /toolchain/uClibc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/common.mk -------------------------------------------------------------------------------- /toolchain/uClibc/config/arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/arc -------------------------------------------------------------------------------- /toolchain/uClibc/config/archs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/archs -------------------------------------------------------------------------------- /toolchain/uClibc/config/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/arm -------------------------------------------------------------------------------- /toolchain/uClibc/config/armeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/armeb -------------------------------------------------------------------------------- /toolchain/uClibc/config/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/common -------------------------------------------------------------------------------- /toolchain/uClibc/config/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/debug -------------------------------------------------------------------------------- /toolchain/uClibc/config/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/i386 -------------------------------------------------------------------------------- /toolchain/uClibc/config/i686: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/i686 -------------------------------------------------------------------------------- /toolchain/uClibc/config/m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/m68k -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/mips -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/mips64 -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64.32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/mips64.32 -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64.64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/mips64.64 -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64.n32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/mips64.n32 -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/mips64el -------------------------------------------------------------------------------- /toolchain/uClibc/config/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/mipsel -------------------------------------------------------------------------------- /toolchain/uClibc/config/powerpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/powerpc -------------------------------------------------------------------------------- /toolchain/uClibc/config/sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/sparc -------------------------------------------------------------------------------- /toolchain/uClibc/config/sparc.leon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/sparc.leon -------------------------------------------------------------------------------- /toolchain/uClibc/config/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/config/x86_64 -------------------------------------------------------------------------------- /toolchain/uClibc/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/headers/Makefile -------------------------------------------------------------------------------- /toolchain/uClibc/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/uClibc/utils/Makefile -------------------------------------------------------------------------------- /toolchain/wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/toolchain/wrapper/Makefile -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/autoconf-archive/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/autoconf-archive/Makefile -------------------------------------------------------------------------------- /tools/autoconf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/autoconf/Makefile -------------------------------------------------------------------------------- /tools/automake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/automake/Makefile -------------------------------------------------------------------------------- /tools/automake/files/aclocal: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | aclocal.real $ACLOCAL_INCLUDE $@ 3 | -------------------------------------------------------------------------------- /tools/b43-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/b43-tools/Makefile -------------------------------------------------------------------------------- /tools/bc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/bc/Makefile -------------------------------------------------------------------------------- /tools/bc/patches/001-no_doc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/bc/patches/001-no_doc.patch -------------------------------------------------------------------------------- /tools/bison/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/bison/Makefile -------------------------------------------------------------------------------- /tools/bison/scripts/yacc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec bison -y "$@" 3 | -------------------------------------------------------------------------------- /tools/cbootimage-configs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/cbootimage-configs/Makefile -------------------------------------------------------------------------------- /tools/cbootimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/cbootimage/Makefile -------------------------------------------------------------------------------- /tools/ccache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/ccache/Makefile -------------------------------------------------------------------------------- /tools/ccache/files/ccache_cc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ccache "${TARGET_CC_NOCACHE}" "$@" 3 | -------------------------------------------------------------------------------- /tools/ccache/files/ccache_cxx: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec ccache "${TARGET_CXX_NOCACHE}" "$@" 3 | -------------------------------------------------------------------------------- /tools/cmake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/cmake/Makefile -------------------------------------------------------------------------------- /tools/coreutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/coreutils/Makefile -------------------------------------------------------------------------------- /tools/dosfstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/dosfstools/Makefile -------------------------------------------------------------------------------- /tools/e2fsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/e2fsprogs/Makefile -------------------------------------------------------------------------------- /tools/elftosb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/elftosb/Makefile -------------------------------------------------------------------------------- /tools/expat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/expat/Makefile -------------------------------------------------------------------------------- /tools/findutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/findutils/Makefile -------------------------------------------------------------------------------- /tools/firmware-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/Makefile -------------------------------------------------------------------------------- /tools/firmware-utils/src/asustrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/asustrx.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/bcm_tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/bcm_tag.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/bcmalgo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/bcmalgo.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/bcmalgo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/bcmalgo.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/csysimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/csysimg.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/cyg_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/cyg_crc.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/fw.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/lxlfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/lxlfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/md5.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/md5.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkcasfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/mkcasfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkzcfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/mkzcfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/mkzynfw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/mkzynfw.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/nec-enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/nec-enc.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/oseama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/oseama.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/otrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/otrx.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/ptgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/ptgen.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/seama.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/seama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/seama.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/sha1.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/sha1.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/spw303v.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/spw303v.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/trx.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/trx2usr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/trx2usr.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/utils.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/wrt400n.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/wrt400n.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/zyimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/zyimage.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/zynos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/zynos.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/zyxbcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/firmware-utils/src/zyxbcm.c -------------------------------------------------------------------------------- /tools/flex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/flex/Makefile -------------------------------------------------------------------------------- /tools/flock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/flock/Makefile -------------------------------------------------------------------------------- /tools/flock/src/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/flock/src/flock.c -------------------------------------------------------------------------------- /tools/genext2fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/genext2fs/Makefile -------------------------------------------------------------------------------- /tools/gengetopt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/gengetopt/Makefile -------------------------------------------------------------------------------- /tools/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/gmp/Makefile -------------------------------------------------------------------------------- /tools/include/asm/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/include/asm/types.h -------------------------------------------------------------------------------- /tools/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/include/byteswap.h -------------------------------------------------------------------------------- /tools/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/include/elf.h -------------------------------------------------------------------------------- /tools/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/include/endian.h -------------------------------------------------------------------------------- /tools/include/sys/sysmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/include/sys/sysmacros.h -------------------------------------------------------------------------------- /tools/isl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/isl/Makefile -------------------------------------------------------------------------------- /tools/kernel2minor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/kernel2minor/Makefile -------------------------------------------------------------------------------- /tools/libelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/libelf/Makefile -------------------------------------------------------------------------------- /tools/libressl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/libressl/Makefile -------------------------------------------------------------------------------- /tools/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/libtool/Makefile -------------------------------------------------------------------------------- /tools/lzma-old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/lzma-old/Makefile -------------------------------------------------------------------------------- /tools/lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/lzma/Makefile -------------------------------------------------------------------------------- /tools/lzma/patches/002-lzmp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/lzma/patches/002-lzmp.patch -------------------------------------------------------------------------------- /tools/m4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/m4/Makefile -------------------------------------------------------------------------------- /tools/make-ext4fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/make-ext4fs/Makefile -------------------------------------------------------------------------------- /tools/missing-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/missing-macros/Makefile -------------------------------------------------------------------------------- /tools/missing-macros/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/missing-macros/src/README -------------------------------------------------------------------------------- /tools/mkimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/mkimage/Makefile -------------------------------------------------------------------------------- /tools/mklibs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/mklibs/Makefile -------------------------------------------------------------------------------- /tools/mklibs/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/mklibs/include/elf.h -------------------------------------------------------------------------------- /tools/mm-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/mm-macros/Makefile -------------------------------------------------------------------------------- /tools/mpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/mpc/Makefile -------------------------------------------------------------------------------- /tools/mpfr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/mpfr/Makefile -------------------------------------------------------------------------------- /tools/mtd-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/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/tossp/lede-k3/HEAD/tools/mtools/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/padjffs2/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/padjffs2/src/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/src/padjffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/padjffs2/src/padjffs2.c -------------------------------------------------------------------------------- /tools/patch-image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/patch-image/Makefile -------------------------------------------------------------------------------- /tools/patch-image/src/patch-dtb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/patch-image/src/patch-dtb.c -------------------------------------------------------------------------------- /tools/patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/patch/Makefile -------------------------------------------------------------------------------- /tools/patchelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/patchelf/Makefile -------------------------------------------------------------------------------- /tools/pkgconf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/pkgconf/Makefile -------------------------------------------------------------------------------- /tools/pkgconf/files/pkg-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/pkgconf/files/pkg-config -------------------------------------------------------------------------------- /tools/qemu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/qemu/Makefile -------------------------------------------------------------------------------- /tools/quilt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/quilt/Makefile -------------------------------------------------------------------------------- /tools/sdimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/sdimage/Makefile -------------------------------------------------------------------------------- /tools/sed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/sed/Makefile -------------------------------------------------------------------------------- /tools/sparse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/sparse/Makefile -------------------------------------------------------------------------------- /tools/squashfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/squashfs/Makefile -------------------------------------------------------------------------------- /tools/squashfskit4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/squashfskit4/Makefile -------------------------------------------------------------------------------- /tools/sstrip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/sstrip/Makefile -------------------------------------------------------------------------------- /tools/sstrip/src/sstrip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/sstrip/src/sstrip.c -------------------------------------------------------------------------------- /tools/tar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/tar/Makefile -------------------------------------------------------------------------------- /tools/ucl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/ucl/Makefile -------------------------------------------------------------------------------- /tools/upslug2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/upslug2/Makefile -------------------------------------------------------------------------------- /tools/upx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/upx/Makefile -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/wrt350nv2-builder/Makefile -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/wrt350nv2-builder/src/md5.c -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/wrt350nv2-builder/src/md5.h -------------------------------------------------------------------------------- /tools/xz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/xz/Makefile -------------------------------------------------------------------------------- /tools/zip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/zip/Makefile -------------------------------------------------------------------------------- /tools/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/zlib/Makefile -------------------------------------------------------------------------------- /tools/zstd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tossp/lede-k3/HEAD/tools/zstd/Makefile --------------------------------------------------------------------------------