├── .gitattributes ├── .github ├── issue_template └── pull_request_template ├── .gitignore ├── BSDmakefile ├── Config.in ├── LICENSE ├── Makefile ├── README.md ├── README_openwrt ├── config ├── Config-build.in ├── Config-devel.in ├── Config-images.in └── Config-kernel.in ├── crosscompile.config ├── feeds.conf.default ├── files ├── etc │ ├── hostapd.conf │ └── wpa_supplicant.conf └── lib │ └── firmware │ ├── wil6210.brd │ └── wil6210.fw ├── 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 ├── scons.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 ├── mikrotik.config ├── 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 │ │ │ │ └── urandom_seed │ │ │ ├── inittab │ │ │ ├── iproute2 │ │ │ │ ├── ematch_map │ │ │ │ ├── rt_protos │ │ │ │ └── rt_tables │ │ │ ├── openwrt_release │ │ │ ├── openwrt_version │ │ │ ├── os-release │ │ │ ├── passwd │ │ │ ├── preinit │ │ │ ├── profile │ │ │ ├── protocols │ │ │ ├── rc.button │ │ │ │ ├── failsafe │ │ │ │ ├── power │ │ │ │ ├── reset │ │ │ │ └── rfkill │ │ │ ├── rc.common │ │ │ ├── rc.local │ │ │ ├── services │ │ │ ├── shadow │ │ │ ├── shells │ │ │ ├── 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 │ │ │ │ ├── leds.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 │ │ │ │ ├── 81_urandom_seed │ │ │ │ ├── 99_10_failsafe_login │ │ │ │ └── 99_10_run_init │ │ │ └── upgrade │ │ │ │ ├── common.sh │ │ │ │ ├── fwtool.sh │ │ │ │ ├── keep.d │ │ │ │ └── base-files-essential │ │ │ │ ├── nand.sh │ │ │ │ └── stage2 │ │ ├── rom │ │ │ └── note │ │ ├── sbin │ │ │ ├── firstboot │ │ │ ├── hotplug-call │ │ │ ├── led.sh │ │ │ ├── pkg_check │ │ │ ├── sysupgrade │ │ │ ├── urandom_seed │ │ │ └── wifi │ │ └── usr │ │ │ ├── lib │ │ │ └── os-release │ │ │ └── libexec │ │ │ └── login.sh │ └── image-config.in ├── boot │ ├── apex │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-compile_fix.patch │ │ │ ├── 100-openwrt_nslu2_armeb_config.patch │ │ │ ├── 120-openwrt_nslu2_16mb_armeb_config.patch │ │ │ ├── 140-openwrt_fsg3_armeb_config.patch │ │ │ ├── 150-limit_ram_to_64mb.patch │ │ │ └── 160-openwrt_nas100d_armeb_config.patch │ ├── arm-trusted-firmware-sunxi │ │ └── Makefile │ ├── at91bootstrap │ │ ├── Makefile │ │ └── at91bootstrap.mk │ ├── fconfig │ │ └── Makefile │ ├── grub2 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0008-Fix-packed-not-aligned-error-on-GCC-8.patch │ │ │ ├── 100-grub_setup_root.patch │ │ │ ├── 101-disable-gettext-check-macro-version.patch │ │ │ ├── 200-fix-gets-removal.patch │ │ │ ├── 300-CVE-2015-8370.patch │ │ │ └── 400-R_X86_64_PLT32.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 │ ├── kobs-ng │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-compile.patch │ │ │ ├── 002-add-init-size-param.patch │ │ │ ├── 003-raw-mode.patch │ │ │ └── 004-fix-cal_nfc_geometry.patch │ ├── rbcfg │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ ├── cyg_crc.h │ │ │ ├── cyg_crc32.c │ │ │ ├── main.c │ │ │ └── rbcfg.h │ ├── 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 │ ├── 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 │ │ │ ├── 100-wandboard-enable-fit.patch │ │ │ └── 110-mx6cuboxi-mmc-fallback.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 │ │ │ └── 200-openwrt-config.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-armv8_32b │ │ └── Makefile │ ├── uboot-layerscape │ │ ├── Makefile │ │ └── files │ │ │ ├── ls1012afrwy-uEnv.txt │ │ │ ├── ls1012ardb-uEnv.txt │ │ │ ├── ls1021aiot-sdboot-uEnv.txt │ │ │ ├── ls1021atwr-sdboot-uEnv.txt │ │ │ ├── ls1021atwr-uEnv.txt │ │ │ ├── ls1043ardb-sdboot-uEnv.txt │ │ │ ├── ls1043ardb-uEnv.txt │ │ │ ├── ls1046ardb-sdboot-uEnv.txt │ │ │ ├── ls1046ardb-uEnv.txt │ │ │ ├── ls1088ardb-sdboot-uEnv.txt │ │ │ ├── ls1088ardb-uEnv.txt │ │ │ └── ls2088ardb-uEnv.txt │ ├── uboot-mvebu │ │ ├── Makefile │ │ └── patches │ │ │ └── 210-link-libcrypto-static.patch │ ├── uboot-mxs │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-add-i2se-duckbill.patch │ │ │ └── 210-link-libcrypto-static.patch │ ├── uboot-omap │ │ ├── Makefile │ │ ├── files │ │ │ └── uEnv-default.txt │ │ └── patches │ │ │ ├── 101-disable-thumb-omap3.patch │ │ │ ├── 102-minify-spl.patch │ │ │ ├── 103-disable-fat-write-spl.patch │ │ │ ├── 104-omap3-overo-enable-thumb.patch │ │ │ ├── 105-serial-ns16550-bugfix-ns16550-fifo-not-enabled.patch │ │ │ ├── 106-backport-from-upstream-b08c8c4870831c9315dcae2377722.patch │ │ │ └── 107-tools-include-necessary-headers-explicitly.patch │ ├── 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-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 │ │ │ ├── 221-compatible-old-dtc.patch │ │ │ ├── 230-disable-axp209-on-a13-olinuxino.diff │ │ │ └── 240-sun50i-h5-Orange-Pi-Zero-Plus-Fix-SdCard-detection.patch │ │ ├── uEnv-a64.txt │ │ ├── uEnv-default.txt │ │ └── uEnv-pangolin.txt │ ├── uboot-xburst │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-qi_lb60-add-nand-spl-support.patch │ │ │ ├── 0002-qi_lb60-add-software-usbboot-support.patch │ │ │ ├── 0003-add-mmc-support.patch │ │ │ ├── 0004-add-more-boot-options-F1-F2-F3-F4-M-S.patch │ │ │ ├── 0005-add-nanonote-lcd-support.patch │ │ │ └── 0006-enable-silent-console.patch │ ├── uboot-zynq │ │ ├── Makefile │ │ ├── files │ │ │ └── uEnv-default.txt │ │ └── patches │ │ │ ├── 020-v2018.09-arm-zynq-dts-add-spi-flash-node-to-zedboard.patch │ │ │ ├── 025-v2018.09-arm-zynq-add-support-for-the-zybo-z7-board.patch │ │ │ ├── 110-zybo-z7-read-mac-address-from-SPI-flash-memory.patch │ │ │ └── 210-link-libcrypto-static.patch │ └── yamonenv │ │ ├── Makefile │ │ └── patches │ │ └── 001-yamonenv_mtd_partition.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-arc │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-no_extern_inline.patch │ │ │ ├── 110-no_testsuite.patch │ │ │ └── 120-fix-compile-flag-mismatch.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 │ ├── perf │ │ └── Makefile │ ├── strace │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-mips-o32-fix-build.patch │ │ │ └── 100-workaround--pt-reg-collisions-ppc.patch │ ├── trace-cmd │ │ ├── Makefile │ │ └── patches │ │ │ └── 110-mac80211_tracepoint.patch │ └── valgrind │ │ ├── Makefile │ │ ├── files │ │ └── default.supp │ │ └── patches │ │ ├── 100-fix_configure_check.patch │ │ └── 130-fix_arm_arch_detection.patch ├── firmware │ ├── am33x-cm3 │ │ └── Makefile │ ├── amd64-microcode │ │ └── Makefile │ ├── ath10k-firmware │ │ └── Makefile │ ├── b43legacy-firmware │ │ └── Makefile │ ├── brcmfmac-board-rpi │ │ └── Makefile │ ├── intel-microcode │ │ └── Makefile │ ├── ipq-wifi │ │ ├── Makefile │ │ ├── board-alfa-network_ap120c-ac.bin │ │ ├── board-avm_fritzbox-7530.bin │ │ ├── board-avm_fritzrepeater-3000.bin │ │ ├── board-engenius_eap1300.bin │ │ ├── board-engenius_ens620ext.bin │ │ ├── board-linksys_ea6350v3.bin │ │ ├── board-map-ac2200.bin │ │ └── board-qxwlan-e2600ac.bin │ ├── ixp4xx-microcode │ │ ├── Makefile │ │ └── src │ │ │ ├── IxNpeMicrocode.h │ │ │ └── LICENSE.IPL │ ├── lantiq │ │ └── dsl-vrx200-firmware-xdsl │ │ │ └── Makefile │ ├── layerscape │ │ ├── fman-ucode │ │ │ └── Makefile │ │ ├── ls-dpl │ │ │ └── Makefile │ │ ├── ls-mc │ │ │ └── Makefile │ │ ├── ls-ppa │ │ │ └── Makefile │ │ ├── ls-rcw │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ └── 0001-rcw-support-byte-swapping-without-tclsh-tool.patch │ │ └── ppfe-firmware │ │ │ └── Makefile │ ├── linux-firmware │ │ ├── Makefile │ │ ├── amdgpu.mk │ │ ├── broadcom.mk │ │ ├── cis.mk │ │ ├── edgeport.mk │ │ ├── intel.mk │ │ ├── marvell.mk │ │ ├── mediatek.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 │ │ ├── 100-regdb-write-firmware-file-format-version-code-20.patch │ │ └── 500-world-regd-5GHz.patch ├── kernel │ ├── acx-mac80211 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-compat.patch │ │ │ ├── 200-initial-macaddr.patch │ │ │ └── 300-api_sync.patch │ ├── ar7-atm │ │ ├── Config.in │ │ ├── Makefile │ │ ├── patches-D7.04.03.00 │ │ │ ├── 090-no-date-time.patch │ │ │ ├── 100-compile_fix.patch │ │ │ ├── 110-interrupt_fix.patch │ │ │ ├── 120-no_dumb_inline.patch │ │ │ ├── 130-powercutback.patch │ │ │ ├── 140-debug_mode.patch │ │ │ ├── 150-tasklet_mode.patch │ │ │ ├── 160-module-params.patch │ │ │ ├── 170-bus_id_removal.patch │ │ │ ├── 180-git_headers_include.patch │ │ │ ├── 190-2.6.32_proc_fixes.patch │ │ │ ├── 200-2.6.37_args.patch │ │ │ ├── 210-3.3-remove-smp_lock.h.patch │ │ │ ├── 220-3.10-update_proc_code.patch │ │ │ ├── 230-compile_fixes.patch │ │ │ ├── 240-3.18_fixes.patch │ │ │ ├── 250-4.1_fixes.patch │ │ │ └── 260-fix_function_signatures.patch │ │ └── patches-D7.05.01.00 │ │ │ ├── 090-no-date-time.patch │ │ │ ├── 100-compile_fix.patch │ │ │ ├── 110-interrupt_fix.patch │ │ │ ├── 120-no_dumb_inline.patch │ │ │ ├── 130-powercutback.patch │ │ │ ├── 140-debug_mode.patch │ │ │ ├── 150-tasklet_mode.patch │ │ │ ├── 160-module-params.patch │ │ │ ├── 170-bus_id_removal.patch │ │ │ ├── 180-git_headers_include.patch │ │ │ ├── 190-2.6.32_proc_fixes.patch │ │ │ ├── 200-2.6.37_args.patch │ │ │ ├── 210-3.3-remove-smp_lock.h.patch │ │ │ ├── 220-3.10-update_proc_code.patch │ │ │ ├── 240-3.18_fixes.patch │ │ │ ├── 250-4.1_fixes.patch │ │ │ └── 260-fix_function_signatures.patch │ ├── ath10k-ct │ │ ├── Makefile │ │ └── patches │ │ │ ├── 081-ath10k-calibration-variant.patch │ │ │ ├── 100-kernel_compat.patch │ │ │ ├── 110-api_fix.patch │ │ │ ├── 120-mac80211-4-14-api.patch │ │ │ ├── 160-ath10k-search-all-IEs-for-variant-before-falling-back.patch │ │ │ ├── 161-ath10k-add-support-for-configuring-management-packet.patch │ │ │ ├── 162-ath10k-fix-possible-out-of-bound-access-of-ath10k_ra.patch │ │ │ ├── 163-ath10k-fix-incorrect-multicast-broadcast-rate-settin.patch │ │ │ ├── 164-ath10k-commit-rates-from-mac80211.patch │ │ │ ├── 200-ath10k-move-spectral-scan-support-under-a-separate-c.patch │ │ │ ├── 201-ath10k-4.16_add-LED-and-GPIO-controlling-support-for-various-chipsets.patch │ │ │ ├── 202-ath10k-4.16-use-tpt-trigger-by-default.patch │ │ │ └── 203-ath10k-Limit-available-channels-via-DT-ieee80211-fre.patch │ ├── avila-wdt │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── avila-wdt.c │ ├── brcm2708-gpu-fw │ │ └── 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 │ │ └── src │ │ │ ├── glue │ │ │ ├── Makefile │ │ │ ├── wl_glue.c │ │ │ └── wl_glue.h │ │ │ └── wlc.c │ ├── button-hotplug │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── button-hotplug.c │ ├── cryptodev-linux │ │ └── Makefile │ ├── dtc │ │ └── patches │ │ │ └── 0001-scripts-dtc-Update-to-version-with-overlays.patch │ ├── gpio-button-hotplug │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── gpio-button-hotplug.c │ ├── gpio-nct5104d │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── gpio-nct5104d.c │ ├── hwmon-gsc │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── gsc.c │ ├── i2c-gpio-custom │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── i2c-gpio-custom.c │ ├── kmod-sched-cake │ │ └── 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 │ │ ├── ltq-vdsl-fw │ │ │ ├── Makefile │ │ │ └── src │ │ │ │ ├── LzmaDecode.c │ │ │ │ ├── LzmaDecode.h │ │ │ │ ├── LzmaTypes.h │ │ │ │ ├── LzmaWrapper.c │ │ │ │ ├── LzmaWrapper.h │ │ │ │ ├── Makefile │ │ │ │ ├── vdsl_fw_install.sh │ │ │ │ └── w921v_fw_cutter.c │ │ ├── ltq-vdsl-mei │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ ├── 001-fix-compile.patch │ │ │ │ ├── 010-warnings.patch │ │ │ │ ├── 020-not-leak-cflags.patch │ │ │ │ ├── 100-compat.patch │ │ │ │ ├── 101_no-date-time.patch │ │ │ │ └── 110-reset-g_tx_link_rate-on-showtime-exit.patch │ │ ├── ltq-vdsl │ │ │ ├── Makefile │ │ │ └── patches │ │ │ │ ├── 001-fix-compile.patch │ │ │ │ ├── 020-not-leak-cflags.patch │ │ │ │ ├── 100-compat.patch │ │ │ │ └── 110-semaphore-lock.patch │ │ └── ltq-vmmc │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ └── vmmc.init │ │ │ └── patches │ │ │ ├── 000-portability.patch │ │ │ ├── 020-not-leak-cflags.patch │ │ │ ├── 100-target.patch │ │ │ ├── 200-compat.patch │ │ │ ├── 400-falcon.patch │ │ │ └── 500-ar9_vr9.patch │ ├── leds-apu2 │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── leds-apu2.c │ ├── linux │ │ ├── Makefile │ │ ├── files │ │ │ ├── sysctl-br-netfilter.conf │ │ │ ├── sysctl-nf-conntrack.conf │ │ │ ├── sysctl-tcp-bbr-k4_9.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 │ │ │ │ │ └── wireless │ │ │ │ │ │ └── mac80211.sh │ │ │ │ └── wifi │ │ │ │ │ └── mac80211.sh │ │ │ └── mac80211.hotplug │ │ ├── intel.mk │ │ ├── marvell.mk │ │ ├── patches │ │ │ ├── ath │ │ │ │ ├── 070-ath_common_config.patch │ │ │ │ ├── 080-ath10k_thermal_config.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 │ │ │ │ ├── 381-ath9k-fix-tx99-with-monitor-mode-interface.patch │ │ │ │ ├── 395-ath9k-add-back-support-for-using-active-monitor-inte.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 │ │ │ │ ├── 407-regd_add_extra_country_codes.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 │ │ │ │ ├── 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 │ │ │ │ ├── 554-ath9k-dynack-move-debug-log-after-buffer-increments.patch │ │ │ │ ├── 557-ath9k-dynack-remove-experimental-tag.patch │ │ │ │ ├── 558-ath9k-only-mask-use_eeprom-on-of-noeeprom.patch │ │ │ │ ├── 921-ath10k_init_devices_synchronously.patch │ │ │ │ ├── 930-ath10k_add_tpt_led_trigger.patch │ │ │ │ ├── 960-0010-ath10k-limit-htt-rx-ring-size.patch │ │ │ │ ├── 960-0011-ath10k-limit-pci-buffer-size.patch │ │ │ │ ├── 972-ath10k_fix-crash-due-to-wrong-handling-of-peer_bw_rxnss_override-parameter.patch │ │ │ │ ├── 973-ath10k_fix-band_center_freq-handling-for-VHT160-in-recent-firmwares.patch │ │ │ │ ├── 974-ath10k_add-LED-and-GPIO-controlling-support-for-various-chipsets.patch │ │ │ │ ├── 975-ath10k-use-tpt-trigger-by-default.patch │ │ │ │ ├── 976-ath10k-Limit-available-channels-via-DT-ieee80211-fre.patch │ │ │ │ ├── 977-ath10k-add-support-for-configuring-management-packet.patch │ │ │ │ ├── 978-ath10k-fix-possible-out-of-bound-access-of-ath10k_ra.patch │ │ │ │ └── 979-ath10k-fix-incorrect-multicast-broadcast-rate-settin.patch │ │ │ ├── brcm │ │ │ │ ├── 040-brcmutil_option.patch │ │ │ │ ├── 300-v4.20-0001-brcmfmac-add-CYW89342-mini-PCIe-device.patch │ │ │ │ ├── 302-v4.20-0001-brcmfmac-fix-wrong-strnchr-usage.patch │ │ │ │ ├── 304-v4.20-0002-brcmfmac-increase-buffer-for-obtaining-firmware-capa.patch │ │ │ │ ├── 305-v4.20-0001-brcmfmac-remove-set-but-not-used-variables-sfdoff-an.patch │ │ │ │ ├── 306-v4.20-0001-brcmfmac-reduce-timeout-for-action-frame-scan.patch │ │ │ │ ├── 306-v4.20-0002-brcmfmac-fix-full-timeout-waiting-for-action-frame-o.patch │ │ │ │ ├── 320-v5.0-0001-brcmfmac-Remove-firmware-loading-code-duplication.patch │ │ │ │ ├── 320-v5.0-0002-brcmfmac-Remove-recursion-from-firmware-load-error-h.patch │ │ │ │ ├── 320-v5.0-0003-brcmfmac-Add-support-for-first-trying-to-get-a-board.patch │ │ │ │ ├── 320-v5.0-0004-brcmfmac-Set-board_type-used-for-nvram-file-selectio.patch │ │ │ │ ├── 320-v5.0-0005-brcmfmac-Set-board_type-from-DMI-on-x86-based-machin.patch │ │ │ │ ├── 320-v5.0-0006-brcmfmac-Cleanup-brcmf_fw_request_done.patch │ │ │ │ ├── 321-v5.0-0001-brcmfmac-Add-support-for-getting-nvram-contents-from.patch │ │ │ │ ├── 321-v5.0-0002-brcmfmac-Fix-ccode-from-EFI-nvram-when-necessary.patch │ │ │ │ ├── 322-v5.0-0001-brcmfmac-fix-spelling-mistake-Retreiving-Retrieving.patch │ │ │ │ ├── 323-v5.0-0001-brcmutil-print-invalid-chanspec-when-WARN-ing.patch │ │ │ │ ├── 325-v5.0-brcmfmac-support-STA-info-struct-v7.patch │ │ │ │ ├── 326-v5.0-brcmfmac-Call-brcmf_dmi_probe-before-brcmf_of_probe.patch │ │ │ │ ├── 328-v5.0-0001-brcmfmac-add-credit-numbers-updating-support.patch │ │ │ │ ├── 328-v5.0-0002-brcmfmac-enable-frameburst-mode-in-default-firmware-.patch │ │ │ │ ├── 328-v5.0-0003-brcmfmac-handle-compressed-tx-status-signal.patch │ │ │ │ ├── 329-v5.0-0001-brcmfmac-add-4354-raw-pcie-device-id.patch │ │ │ │ ├── 329-v5.0-0002-brcmfmac-set-F2-watermark-to-256-for-4373.patch │ │ │ │ ├── 329-v5.0-0003-brcmfmac-set-SDIO-F1-MesBusyCtrl-for-CYW4373.patch │ │ │ │ ├── 329-v5.0-0004-brcmfmac-add-support-for-CYW43012-SDIO-chipset.patch │ │ │ │ ├── 329-v5.0-0005-brcmfmac-allow-GCI-core-enumuration.patch │ │ │ │ ├── 329-v5.0-0006-brcmfmac-update-43012-F2-watermark-setting-to-fix-DM.patch │ │ │ │ ├── 329-v5.0-0007-brcmfmac-4373-save-restore-support.patch │ │ │ │ ├── 329-v5.0-0008-brcmfmac-disable-command-decode-in-sdio_aos.patch │ │ │ │ ├── 330-v5.0-0001-brcmfmac-fix-false-positive-Wmaybe-unintialized-warn.patch │ │ │ │ ├── 332-v5.0-0001-brcmfmac-Fix-access-point-mode.patch │ │ │ │ ├── 340-v5.1-brcmfmac-Add-DMI-nvram-filename-quirk-for-PoV-TAB-P1.patch │ │ │ │ ├── 341-v5.1-brcmfmac-add-a-check-for-the-status-of-usb_register.patch │ │ │ │ ├── 342-v5.1-brcmfmac-fix-system-warning-message-during-wowl-susp.patch │ │ │ │ ├── 344-v5.1-brcmfmac-modify-__brcmf_err-to-take-bus-as-a-paramet.patch │ │ │ │ ├── 345-v5.1-brcmfmac-pass-bus-to-the-__brcmf_err-in-pcie.c.patch │ │ │ │ ├── 346-v5.1-brcmfmac-add-bphy_err-and-use-it-in-the-cfg80211.c.patch │ │ │ │ ├── 347-v5.1-brcmfmac-fix-typos.patch │ │ │ │ ├── 348-v5.1-brcmfmac-support-monitor-frames-with-the-hardware-uc.patch │ │ │ │ ├── 349-v5.1-0001-brcmfmac-assure-SSID-length-from-firmware-is-limited.patch │ │ │ │ ├── 349-v5.1-0002-brcmfmac-add-subtype-check-for-event-handling-in-dat.patch │ │ │ │ ├── 349-v5.1-0003-brcmfmac-create-debugfs-files-for-bus-specific-layer.patch │ │ │ │ ├── 349-v5.1-0004-brcmfmac-disable-MBSS-feature-for-bcm4330-device.patch │ │ │ │ ├── 349-v5.1-0005-brcmfmac-check-and-dump-trap-info-during-sdio-probe.patch │ │ │ │ ├── 349-v5.1-0006-brcmfmac-use-chipname-in-brcmf_fw_alloc_request-for-.patch │ │ │ │ ├── 350-v5.1-brcmfmac-print-firmware-reported-ring-status-errors.patch │ │ │ │ ├── 351-v5.1-0001-brcmfmac-improve-code-handling-bandwidth-of-firmware.patch │ │ │ │ ├── 351-v5.1-0002-brcmfmac-support-firmware-reporting-160-MHz-channels.patch │ │ │ │ ├── 352-v5.1-brcmfmac-rework-bphy_err-to-take-struct-brcmf_pub-ar.patch │ │ │ │ ├── 353-v5.1-brcmfmac-remove-set-but-not-used-variable-old_state.patch │ │ │ │ ├── 354-v5.1-brcmfmac-use-bphy_err-in-all-wiphy-related-code.patch │ │ │ │ ├── 355-v5.1-brcmfmac-add-basic-validation-of-shared-RAM-address.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 │ │ │ ├── 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 │ │ │ ├── imdea │ │ │ │ ├── 960-0001-wil6210-seemoo-port.patch │ │ │ │ └── 960-0005-wil6210-imdea-enable-ftm.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 │ │ │ │ ├── 001-rt2x00-use-simple_read_from_buffer.patch │ │ │ │ ├── 002-rt2800-move-usb-specific-txdone-txstatus-routines-to.patch │ │ │ │ ├── 003-rt2800mmio-use-txdone-txstatus-routines-from-lib.patch │ │ │ │ ├── 004-rt2x00-do-not-check-for-txstatus-timeout-every-time-.patch │ │ │ │ ├── 005-rt2x00-use-different-txstatus-timeouts-when-flushing.patch │ │ │ │ ├── 006-rt2800-flush-and-txstatus-rework-for-rt2800mmio.patch │ │ │ │ ├── 007-rt2x00-rt2400pci-mark-expected-switch-fall-through.patch │ │ │ │ ├── 008-rt2x00-rt2500pci-mark-expected-switch-fall-through.patch │ │ │ │ ├── 009-rt2x00-rt2800lib-mark-expected-switch-fall-throughs.patch │ │ │ │ ├── 010-rt2x00-rt61pci-mark-expected-switch-fall-through.patch │ │ │ │ ├── 011-cross-tree-phase-out-dma_zalloc_coherent.patch │ │ │ │ ├── 012-rt2x00-reduce-tx-power-to-nominal-level-on-RT6352.patch │ │ │ │ ├── 013-rt2x00-Work-around-a-firmware-bug-with-shared-keys.patch │ │ │ │ ├── 014-rt2x00-no-need-to-check-return-value-of-debugfs_crea.patch │ │ │ │ ├── 015-rt2x00-remove-unneeded-check.patch │ │ │ │ ├── 016-rt2x00-remove-confusing-AGC-register.patch │ │ │ │ ├── 017-rt2800-enable-TX_PIN_CFG_LNA_PE_-bits-per-band.patch │ │ │ │ ├── 018-rt2800-enable-TX_PIN_CFG_RFRX_EN-only-for-MT7620.patch │ │ │ │ ├── 019-rt2800-comment-and-simplify-AGC-init-for-RT6352.patch │ │ │ │ ├── 020-cfg80211-add-ratelimited-variants-of-err-and-warn.patch │ │ │ │ ├── 021-rt2x00-use-ratelimited-variants-dev_warn-dev_err.patch │ │ │ │ ├── 022-rt2x00-check-number-of-EPROTO-errors.patch │ │ │ │ ├── 023-rt2x00-do-not-print-error-when-queue-is-full.patch │ │ │ │ ├── 024-rt2800-partially-restore-old-mmio-txstatus-behaviour.patch │ │ │ │ ├── 025-rt2800-new-flush-implementation-for-SoC-devices.patch │ │ │ │ ├── 026-rt2800-move-txstatus-pending-routine.patch │ │ │ │ ├── 027-rt2800mmio-fetch-tx-status-changes.patch │ │ │ │ ├── 028-rt2800mmio-use-timer-and-work-for-handling-tx-status.patch │ │ │ │ ├── 029-rt2x00-remove-last_nostatus_check.patch │ │ │ │ ├── 030-rt2x00-remove-not-used-entry-field.patch │ │ │ │ ├── 031-rt2x00mmio-remove-legacy-comment.patch │ │ │ │ ├── 100-rt2x00_options.patch │ │ │ │ ├── 501-rt2x00-allow-to-build-rt2800soc-module-for-RT3883.patch │ │ │ │ ├── 502-rt2x00-rt2800lib-enable-support-for-RT3883.patch │ │ │ │ ├── 503-rt2x00-rt2800lib-add-rf_vals-for-RF3853.patch │ │ │ │ ├── 504-rt2x00-rt2800lib-enable-VCO-calibration-for-RF3853.patch │ │ │ │ ├── 505-rt2x00-rt2800lib-add-channel-configuration-function-.patch │ │ │ │ ├── 506-rt2x00-rt2800lib-enable-RF3853-support.patch │ │ │ │ ├── 507-rt2x00-rt2800lib-add-MAC-register-initialization-for.patch │ │ │ │ ├── 508-rt2x00-rt2800soc-fix-rt2800soc_disable_radio-for-RT3.patch │ │ │ │ ├── 509-rt2x00-rt2800lib-add-BBP-register-initialization-for.patch │ │ │ │ ├── 510-rt2x00-rt2800lib-add-RFCSR-initialization-for-RT3883.patch │ │ │ │ ├── 511-rt2x00-rt2800lib-use-the-extended-EEPROM-map-for-RT3.patch │ │ │ │ ├── 512-rt2x00-rt2800lib-force-rf-type-to-RF3853-on-RT3883.patch │ │ │ │ ├── 513-rt2x00-rt2800lib-add-channel-configuration-code-for-.patch │ │ │ │ ├── 514-rt2x00-rt2800lib-fix-txpower_to_dev-function-for-RT3.patch │ │ │ │ ├── 515-rt2x00-rt2800lib-use-correct-txpower-calculation-fun.patch │ │ │ │ ├── 516-rt2x00-rt2800lib-hardcode-txmixer-gain-values-to-zer.patch │ │ │ │ ├── 517-rt2x00-rt2800lib-use-correct-RT-XWI-size-for-RT3883.patch │ │ │ │ ├── 518-rt2x00-rt2800lib-fix-antenna-configuration-for-RT388.patch │ │ │ │ ├── 519-rt2x00-rt2800lib-fix-LNA-gain-configuration-for-RT38.patch │ │ │ │ ├── 520-rt2x00-rt2800lib-fix-VGC-setup-for-RT3883.patch │ │ │ │ ├── 521-rt2x00-rt2800lib-fix-EEPROM-LNA-validation-for-RT388.patch │ │ │ │ ├── 522-rt2x00-rt2800lib-fix-txpower-compensation-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 │ │ │ │ ├── 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 │ │ │ │ └── 987-rt2x00-do-not-increment-management-frame-sequence-number-while-retry.patch │ │ │ └── subsys │ │ │ │ ├── 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 │ │ │ │ ├── 140-tweak-TSQ-setting.patch │ │ │ │ ├── 150-disable_addr_notifier.patch │ │ │ │ ├── 210-ap_scan.patch │ │ │ │ ├── 300-mac80211-add-stop-start-logic-for-software-TXQs.patch │ │ │ │ ├── 301-mac80211-do-not-call-driver-wake_tx_queue-op-during-.patch │ │ │ │ ├── 302-mac80211-allocate-tailroom-for-forwarded-mesh-packet.patch │ │ │ │ ├── 303-mac80211-minstrel-Enable-STBC-and-LDPC-for-VHT-Rates.patch │ │ │ │ ├── 304-mac80211-minstrel-remove-unnecessary-debugfs-cleanup.patch │ │ │ │ ├── 305-mac80211-minstrel-merge-with-minstrel_ht-always-enab.patch │ │ │ │ ├── 306-mac80211-minstrel-reduce-minstrel_mcs_groups-size.patch │ │ │ │ ├── 307-mac80211-minstrel-fix-using-short-preamble-CCK-rates.patch │ │ │ │ ├── 308-mac80211-minstrel-fix-CCK-rate-group-streams-value.patch │ │ │ │ ├── 309-mac80211-minstrel-fix-sampling-reporting-of-CCK-rate.patch │ │ │ │ ├── 310-mac80211-minstrel-do-not-sample-rates-3-times-slower.patch │ │ │ │ ├── 311-mac80211-fix-memory-accounting-with-A-MSDU-aggregati.patch │ │ │ │ ├── 312-mac80211-minstrel_ht-add-flag-to-indicate-missing-in.patch │ │ │ │ ├── 313-mac80211-fix-unaligned-access-in-mesh-table-hash-fun.patch │ │ │ │ ├── 320-mac80211-Add-TXQ-scheduling-API.patch │ │ │ │ ├── 321-cfg80211-Add-airtime-statistics-and-settings.patch │ │ │ │ ├── 322-mac80211-Add-airtime-accounting-and-scheduling-to-TX.patch │ │ │ │ ├── 323-mac80211-Expose-ieee80211_schedule_txq-function.patch │ │ │ │ ├── 350-mac80211-add-hdrlen-to-ieee80211_tx_data.patch │ │ │ │ ├── 351-mac80211-add-TX_NEEDS_ALIGNED4_SKBS-hw-flag.patch │ │ │ │ ├── 352-mac80211-rework-locking-for-txq-scheduling-airtime-f.patch │ │ │ │ ├── 353-mac80211-mesh-drop-redundant-rcu_read_lock-unlock-ca.patch │ │ │ │ ├── 354-mac80211-calculate-hash-for-fq-without-holding-fq-lo.patch │ │ │ │ ├── 355-mac80211-run-late-dequeue-late-tx-handlers-without-h.patch │ │ │ │ ├── 356-mac80211-set-NETIF_F_LLTX-when-using-intermediate-tx.patch │ │ │ │ ├── 357-mac80211-optimize-skb-resizing.patch │ │ │ │ ├── 358-mac80211-make-ieee80211_schedule_txq-schedule-empty-.patch │ │ │ │ ├── 359-mac80211-un-schedule-TXQs-on-powersave-start.patch │ │ │ │ ├── 390-nl-mac-80211-allow-4addr-AP-operation-on-crypto-cont.patch │ │ │ │ └── 522-mac80211_configure_antenna_gain.patch │ │ ├── ralink.mk │ │ ├── realtek.mk │ │ └── scripts │ │ │ └── import-backports.sh │ ├── mt76 │ │ └── Makefile │ ├── mwlwifi │ │ └── Makefile │ ├── nat46 │ │ └── Makefile │ ├── om-watchdog │ │ ├── Makefile │ │ └── files │ │ │ ├── om-watchdog │ │ │ └── om-watchdog.init │ ├── rotary-gpio-custom │ │ ├── Makefile │ │ └── src │ │ │ ├── Kconfig │ │ │ ├── Makefile │ │ │ └── rotary-gpio-custom.c │ ├── rtc-rv5c386a │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ └── rtc.c │ ├── rtl8812au-ct │ │ ├── Makefile │ │ └── patches │ │ │ └── 001-use-kernel-byteorder.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 ├── libs │ ├── argp-standalone │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-throw-in-funcdef.patch │ │ │ └── 002-no_optimize.patch │ ├── elfutils │ │ ├── Makefile │ │ └── patches │ │ │ ├── 003-libintl-compatibility.patch │ │ │ ├── 005-build_only_libs.patch │ │ │ ├── 100-musl-compat.patch │ │ │ └── 101-no-fts.patch │ ├── gettext-full │ │ ├── Makefile │ │ └── patches │ │ │ ├── 000-relocatable.patch │ │ │ ├── 001-autotools.patch │ │ │ ├── 001-no_examples_and_tests.patch │ │ │ ├── 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 │ ├── libbsd │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-handle-systems-missing-sys_cdefs.h.patch │ │ │ └── 002-fix_function_declaration_protection_for_glibc_already_providing_them.patch │ ├── libconfig │ │ └── Makefile │ ├── libevent2 │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-Do-not-check-for-ERR_remove_thread_state-do-not-link.patch │ │ │ └── 0002-Makefile.am-omit-building-sample-and-test.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 │ ├── 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 │ │ ├── files │ │ │ └── libnl-tiny.pc │ │ └── src │ │ │ ├── Makefile │ │ │ ├── attr.c │ │ │ ├── cache.c │ │ │ ├── cache_mngt.c │ │ │ ├── error.c │ │ │ ├── genl.c │ │ │ ├── genl_ctrl.c │ │ │ ├── genl_family.c │ │ │ ├── genl_mngt.c │ │ │ ├── handlers.c │ │ │ ├── include │ │ │ ├── netlink-generic.h │ │ │ ├── netlink-local.h │ │ │ ├── netlink-types.h │ │ │ ├── netlink │ │ │ │ ├── addr.h │ │ │ │ ├── attr.h │ │ │ │ ├── cache-api.h │ │ │ │ ├── cache.h │ │ │ │ ├── data.h │ │ │ │ ├── errno.h │ │ │ │ ├── genl │ │ │ │ │ ├── ctrl.h │ │ │ │ │ ├── family.h │ │ │ │ │ ├── genl.h │ │ │ │ │ └── mngt.h │ │ │ │ ├── handlers.h │ │ │ │ ├── list.h │ │ │ │ ├── msg.h │ │ │ │ ├── netlink-compat.h │ │ │ │ ├── netlink-kernel.h │ │ │ │ ├── netlink.h │ │ │ │ ├── object-api.h │ │ │ │ ├── object.h │ │ │ │ ├── socket.h │ │ │ │ ├── types.h │ │ │ │ ├── utils.h │ │ │ │ └── version.h │ │ │ └── unl.h │ │ │ ├── msg.c │ │ │ ├── nl.c │ │ │ ├── object.c │ │ │ ├── socket.c │ │ │ └── unl.c │ ├── libnl │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-build-add-Libs.private-field-in-libnl-pkg-config-file.patch │ │ │ ├── 101-add-musl-workaround-to-the-libc-compat.h-copy.patch │ │ │ └── 102-revert-build-enable-building-cli-during-tests.patch │ ├── libpcap │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-debian_shared_lib.patch │ │ │ ├── 102-makefile_disable_manpages.patch │ │ │ ├── 103-makefile_flex_workaround.patch │ │ │ ├── 201-space_optimization.patch │ │ │ ├── 203-undef_iw_mode_monitor.patch │ │ │ ├── 204-usb-bus-path.patch │ │ │ └── 205-pcap-usb-linux.c-add-missing-limits.h.patch │ ├── libroxml │ │ └── Makefile │ ├── libtool │ │ └── Makefile │ ├── libubox │ │ └── Makefile │ ├── libunwind │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-disable-tests.patch │ │ │ ├── 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 │ │ │ ├── 200-config.patch │ │ │ └── 300-bn_mul.h-Use-optimized-MULADDC-code-only-on-ARM-6.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 │ │ │ ├── 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 │ ├── 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 │ │ ├── eglibc-files │ │ │ └── etc │ │ │ │ └── nsswitch.conf │ │ └── glibc-files │ │ │ └── etc │ │ │ └── nsswitch.conf │ ├── uclibc++ │ │ ├── Makefile │ │ ├── files │ │ │ └── config.default │ │ └── patches │ │ │ ├── 002-path_to_bash.patch │ │ │ ├── 006-eabi_fix.patch │ │ │ ├── 010-honor-ldflags.patch │ │ │ ├── 020-template-fix.patch │ │ │ ├── 030-memory_corruption_fix.patch │ │ │ ├── 040-delete-c++14.patch │ │ │ └── 050-Bugfix-erase-on-derived-__base_associative.patch │ ├── uclient │ │ └── Makefile │ ├── ustream-ssl │ │ └── Makefile │ ├── wolfssl │ │ ├── Config.in │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-disable-hardening-check.patch │ │ │ ├── 101-AR-flags-configure-update.patch │ │ │ ├── 400-additional_compatibility.patch │ │ │ └── 900-remove-broken-autoconf-macros.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 ├── network │ ├── config │ │ ├── firewall │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── firewall.config │ │ │ │ ├── firewall.hotplug │ │ │ │ ├── firewall.init │ │ │ │ └── firewall.user │ │ ├── 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-tune │ │ │ │ └── init.d │ │ │ │ │ └── network │ │ │ │ ├── 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-default │ │ │ │ │ │ └── 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 │ ├── 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 │ │ │ │ ├── dhcp-script.sh │ │ │ │ ├── dhcp.conf │ │ │ │ ├── dhcpbogushostname.conf │ │ │ │ ├── dnsmasq.conf │ │ │ │ ├── dnsmasq.init │ │ │ │ ├── dnsmasq_acl.json │ │ │ │ ├── dnsmasqsec.hotplug │ │ │ │ └── rfc6761.conf │ │ │ └── patches │ │ │ │ ├── 0001-Impove-cache-behaviour-for-TCP-connections.patch │ │ │ │ ├── 0002-Ensure-that-AD-bit-is-reset-on-answers-from-address-.patch │ │ │ │ ├── 0003-Remove-ability-to-compile-without-IPv6-support.patch │ │ │ │ ├── 0004-Don-t-forward-.bind-.server-queries-upstream.patch │ │ │ │ ├── 0005-Fix-logging-in-cf5984367bc6a949e3803a576512c5a7bc48e.patch │ │ │ │ ├── 0006-Fix-spurious-AD-flags-in-some-DNS-replies-from-local.patch │ │ │ │ ├── 0007-Do-not-rely-on-dead-code-elimination-use-array-inste.patch │ │ │ │ ├── 0008-Fix-Makefile-lines-generating-UBUS-linker-config.patch │ │ │ │ ├── 0009-Revert-68f6312d4bae30b78daafcd6f51dc441b8685b1e.patch │ │ │ │ ├── 0010-Remove-the-NO_FORK-compile-time-option-and-support-f.patch │ │ │ │ ├── 0011-Free-config-file-values-on-parsing-errors.patch │ │ │ │ ├── 0013-Treat-DS-and-DNSKEY-queries-being-forwarded-the-same.patch │ │ │ │ ├── 0014-Fix-option-parsing-errors-introduced-in-59e470381f84.patch │ │ │ │ ├── 0015-fix-ipv6-ipset-bug-in-master.patch │ │ │ │ ├── 0016-build-failure-on-master-with-NO_DHCPv6-and-fix.patch │ │ │ │ ├── 0017-Alter-DHCP-address-selection-after-DECLINE-in-consec.patch │ │ │ │ ├── 0018-Tidy-all_addr-union-merge-log-and-rcode-fields.patch │ │ │ │ ├── 0019-Tidy-address-union-handling-move-class-into-explicit.patch │ │ │ │ ├── 0020-Futher-address-union-tidying.patch │ │ │ │ ├── 0021-Remove-nested-struct-union-in-cache-records-and-all_.patch │ │ │ │ ├── 0022-File-logic-bug-in-cache-marshalling-code.-Introduced.patch │ │ │ │ ├── 0023-Fix-typo-in-ra-param-man-page-section.patch │ │ │ │ ├── 0024-Cache-SRV-records.patch │ │ │ │ ├── 0025-Fix-crash-freeing-negative-SRV-cache-entries.patch │ │ │ │ ├── 0026-Check-for-not-DS-or-DNSKEY-in-is_outdated_cname_poin.patch │ │ │ │ ├── 0027-Fix-e7bfd556c079c8b5e7425aed44abc35925b24043-to-actu.patch │ │ │ │ ├── 0028-Tidy-cache_blockdata_free.patch │ │ │ │ ├── 0029-Fix-removal-of-DHCP_CLIENT_MAC-options-from-DHCPv6-r.patch │ │ │ │ ├── 0030-Fix-entries-in-etc-hosts-disabling-static-leases.patch │ │ │ │ ├── 0031-Fix-missing-braces-in-8eac67c0a15b673c8d27002c248651.patch │ │ │ │ ├── 0032-Change-read_leases-to-skip-invalid-entries.patch │ │ │ │ ├── 110-ipset-remove-old-kernel-support.patch │ │ │ │ └── 230-fix-poll-h-include-warning-on-musl.patch │ │ ├── dropbear │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── dropbear.config │ │ │ │ └── dropbear.init │ │ │ └── patches │ │ │ │ ├── 010-tty-modes-werent-reset-for-client.patch │ │ │ │ ├── 100-pubkey_path.patch │ │ │ │ ├── 110-change_user.patch │ │ │ │ ├── 130-ssh_ignore_x_args.patch │ │ │ │ ├── 140-disable_assert.patch │ │ │ │ ├── 160-lto-jobserver.patch │ │ │ │ ├── 600-allow-blank-root-password.patch │ │ │ │ ├── 900-configure-hardening.patch │ │ │ │ └── 901-bundled-libs-cflags.patch │ │ ├── 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 │ │ │ │ └── wps-hotplug.sh │ │ │ ├── patches │ │ │ │ ├── 001-mesh-factor-out-mesh-join-function.patch │ │ │ │ ├── 002-mesh-factor-out-rsn-initialization.patch │ │ │ │ ├── 003-mesh-relocate-RSN-init-function.patch │ │ │ │ ├── 004-mesh-use-setup-completion-callback-to-complete-mesh-.patch │ │ │ │ ├── 005-mesh-reflect-country-setting-to-mesh-configuration.patch │ │ │ │ ├── 006-mesh-inform-kernel-driver-DFS-handler-in-userspace.patch │ │ │ │ ├── 007-mesh-apply-channel-attributes-before-running-Mesh.patch │ │ │ │ ├── 008-mesh-set-interface-type-to-mesh-before-setting-inter.patch │ │ │ │ ├── 009-mesh-set-mesh-center-frequency.patch │ │ │ │ ├── 010-mesh-consider-mesh-interface-on-dfs-event-handler.patch │ │ │ │ ├── 011-mesh-Allow-DFS-channels-to-be-selected-if-dfs-is-ena.patch │ │ │ │ ├── 013-mesh-do-not-allow-pri-sec-channel-switch.patch │ │ │ │ ├── 014-mesh-do-not-allow-scan-result-to-swap-pri-sec.patch │ │ │ │ ├── 015-mesh-do-not-use-offchan-mgmt-tx-on-DFS.patch │ │ │ │ ├── 016-mesh-fix-channel-switch-error-during-CAC.patch │ │ │ │ ├── 017-mesh-use-right-interface-context-to-send-DFS-event-m.patch │ │ │ │ ├── 018-mesh-make-forwarding-configurable.patch │ │ │ │ ├── 031-mesh-add-VHT_CHANWIDTH_USE_HT-to-max_oper_chwidth.patch │ │ │ │ ├── 032-mesh-implement-use-of-VHT20-config-in-mesh-mode.patch │ │ │ │ ├── 040-FT-Fix-CONFIG_IEEE80211X-y-build-without-CONFIG_FILS.patch │ │ │ │ ├── 051-wpa_supplicant-fix-race-condition-in-mesh-mpm-new-pe.patch │ │ │ │ ├── 100-daemonize_fix.patch │ │ │ │ ├── 110-no_eapol_fix.patch │ │ │ │ ├── 120-disable_bridge_packet_workaround.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 │ │ │ │ ├── 550-hostapd-Add-Multi-AP-protocol-support.patch │ │ │ │ ├── 551-wpa_supplicant-Add-Multi-AP-protocol-support-to-supp.patch │ │ │ │ ├── 552-tests-Multi-AP-association.patch │ │ │ │ ├── 553-tests-refactor-test_multi_ap.patch │ │ │ │ ├── 554-multi_ap-don-t-reject-backhaul-STA-on-fronhaul-BSS.patch │ │ │ │ ├── 555-WPS-wps_build_wfa_ext-add-multi_ap_subelem-parameter.patch │ │ │ │ ├── 556-wpa_supplicant-support-Multi-AP-backhaul-STA-onboard.patch │ │ │ │ ├── 557-hostapd-support-Multi-AP-backhaul-STA-onboarding.patch │ │ │ │ ├── 558-hostapd-add-README-MULTI-AP.patch │ │ │ │ ├── 559-tests-add-WPS-tests-to-multi_ap-hwsim-tests.patch │ │ │ │ └── 600-ubus_support.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 │ │ ├── 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 │ │ │ │ ├── openvpn.config │ │ │ │ ├── openvpn.init │ │ │ │ ├── openvpn.options │ │ │ │ └── openvpn.upgrade │ │ │ └── patches │ │ │ │ ├── 001-reproducible-remove_DATE.patch │ │ │ │ ├── 100-mbedtls-disable-runtime-version-check.patch │ │ │ │ ├── 210-build_always_use_internal_lz4.patch │ │ │ │ └── 220-disable_des.patch │ │ ├── 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 │ │ │ │ ├── 130-no_cdefs_h.patch │ │ │ │ ├── 131-missing_prototype_macro.patch │ │ │ │ ├── 132-fix_linux_includes.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 │ │ │ │ ├── 520-uniq.patch │ │ │ │ ├── 540-save-pppol2tp_fd_str.patch │ │ │ │ └── 600-Revert-pppd-Use-openssl-for-the-DES-instead-of-the-l.patch │ │ │ └── utils │ │ │ │ └── pfc.c │ │ ├── relayd │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ └── relay.init │ │ ├── samba36 │ │ │ ├── Makefile │ │ │ ├── files │ │ │ │ ├── samba.config │ │ │ │ ├── samba.hotplug │ │ │ │ ├── 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 │ │ ├── uhttpd │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── ubus.default │ │ │ │ ├── uhttpd.config │ │ │ │ └── uhttpd.init │ │ ├── umdns │ │ │ ├── Makefile │ │ │ └── files │ │ │ │ ├── umdns.config │ │ │ │ ├── umdns.init │ │ │ │ └── umdns.json │ │ └── wireguard │ │ │ ├── Makefile │ │ │ └── files │ │ │ ├── wireguard.sh │ │ │ └── wireguard_watchdog │ └── 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 │ │ │ └── 310-mbedtls-disable-runtime-version-check.patch │ │ ├── dante │ │ ├── Makefile │ │ └── patches │ │ │ └── 200-fix-RTLD_NEXT.patch │ │ ├── ebtables │ │ ├── Makefile │ │ └── patches │ │ │ ├── 100-musl_fix.patch │ │ │ └── 200-fix-extension-init.patch │ │ ├── ethtool │ │ └── Makefile │ │ ├── iftop │ │ └── Makefile │ │ ├── iperf │ │ ├── Makefile │ │ └── patches │ │ │ ├── 0001-fix-latent-bug-in-signal-handling-per-POSIX-calling-.patch │ │ │ ├── 0002-cleanup-main-startup-fix-daemon-mode-per-redirecting.patch │ │ │ └── 0003-fix-non-ipv6-builds.patch │ │ ├── iperf3 │ │ └── Makefile │ │ ├── iproute2 │ │ ├── Makefile │ │ ├── files │ │ │ └── 15-teql │ │ └── patches │ │ │ ├── 010-cake-fwmark.patch │ │ │ ├── 100-configure.patch │ │ │ ├── 110-darwin_fixes.patch │ │ │ ├── 115-add-config-xtlibdir.patch │ │ │ ├── 120-no_arpd.patch │ │ │ ├── 130-no_netem.patch │ │ │ ├── 135-sync-iptables-header.patch │ │ │ ├── 140-allow_pfifo_fast.patch │ │ │ ├── 140-keep_libmnl_optional.patch │ │ │ ├── 145-keep_libelf_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 │ │ ├── ipset │ │ └── Makefile │ │ ├── iptables │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-extensions_format-security_fixes_in_libip.patch │ │ │ ├── 002-include_fix_build_with_kernel_headers_before_4_2.patch │ │ │ ├── 003-ebtables-vlan-fix_userspace_kernel_headers_collision.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 │ │ ├── iputils │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-iputils.patch │ │ │ ├── 002-fix-ipv6.patch │ │ │ ├── 003-fix-makefile.patch │ │ │ ├── 010-ping6_uclibc_resolv.patch │ │ │ ├── 011-ping6_use_gnu_source.patch │ │ │ └── 020-include_fixes.patch │ │ ├── iw │ │ ├── Makefile │ │ └── patches │ │ │ ├── 001-nl80211_h_sync.patch │ │ │ ├── 120-antenna_gain.patch │ │ │ └── 200-reduce_size.patch │ │ ├── iwcap │ │ ├── Makefile │ │ └── src │ │ │ └── iwcap.c │ │ ├── iwinfo │ │ └── Makefile │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ │ ├── 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 │ ├── fwtool │ │ ├── Makefile │ │ └── src │ │ │ ├── crc32.h │ │ │ ├── fwimage.h │ │ │ ├── fwtool.c │ │ │ └── utils.h │ ├── iucode-tool │ │ └── Makefile │ ├── mtd │ │ ├── Makefile │ │ └── src │ │ │ ├── Makefile │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── fis.c │ │ │ ├── fis.h │ │ │ ├── imagetag.c │ │ │ ├── jffs2.c │ │ │ ├── jffs2.h │ │ │ ├── linksys_bootcount.c │ │ │ ├── linksys_bootcount_fix.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 │ ├── usign │ │ └── Makefile │ └── zram-swap │ │ ├── Makefile │ │ └── files │ │ └── zram.init └── utils │ ├── adb │ ├── Makefile │ └── patches │ │ ├── 001-create_Makefile.patch │ │ └── 010-openssl-1.1.patch │ ├── admswconfig │ ├── Makefile │ ├── files │ │ ├── admswconfig │ │ └── admswswitch.sh │ └── patches │ │ ├── 001-matrix.patch │ │ └── 002-fix-musl.patch │ ├── 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 │ │ ├── 100-trylink_bash.patch │ │ ├── 101-gen_build_files_bash.patch │ │ ├── 110-no_static_libgcc.patch │ │ ├── 120-lto-jobserver.patch │ │ ├── 130-mconf_missing_sigwinch.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 │ ├── bzip2 │ ├── Makefile │ └── patches │ │ └── 010-CVE-2016-3189.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 │ └── patches │ │ ├── 010-fsck-Fix-big-endian-platforms.patch │ │ └── 020-dump.f2fs-fix-incorrect-endian-conversion.patch │ ├── fbtest │ ├── Makefile │ └── src │ │ ├── Makefile │ │ └── fbtest.c │ ├── fritz-tools │ ├── Makefile │ ├── README.md │ └── src │ │ ├── CMakeLists.txt │ │ ├── fritz_cal_extract.c │ │ ├── fritz_tffs_nand_read.c │ │ └── fritz_tffs_read.c │ ├── fuse │ ├── Makefile │ └── patches │ │ ├── 100-missing_includes.patch │ │ ├── 112-no_break_on_mknod.patch │ │ └── 200-backport_arm64_fuse_kernel_h_clean_includes.patch │ ├── jboot-tools │ ├── Makefile │ ├── README.md │ └── src │ │ ├── CMakeLists.txt │ │ └── jboot_config_read.c │ ├── jsonfilter │ └── Makefile │ ├── lua │ ├── Makefile │ ├── patches-host │ │ ├── 010-lua-5.1.3-lnum-full-260308.patch │ │ ├── 011-lnum-use-double.patch │ │ ├── 012-lnum-fix-ltle-relational-operators.patch │ │ ├── 015-lnum-ppc-compat.patch │ │ ├── 030-archindependent-bytecode.patch │ │ └── 100-no_readline.patch │ └── patches │ │ ├── 010-lua-5.1.3-lnum-full-260308.patch │ │ ├── 011-lnum-use-double.patch │ │ ├── 012-lnum-fix-ltle-relational-operators.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 │ ├── mdadm │ ├── Makefile │ ├── files │ │ ├── mdadm.config │ │ └── mdadm.init │ └── patches │ │ ├── 100-cross_compile.patch │ │ ├── 101-mdadm.h-Undefine-dprintf-before-redefining.patch │ │ └── 200-reduce_size.patch │ ├── mtd-utils │ ├── Makefile │ └── patches │ │ ├── 100-fix_includes.patch │ │ ├── 130-lzma_jffs2.patch │ │ └── 200-Revert-Return-correct-error-number-in-ubi_get_vol_in.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 │ ├── spidev_test │ ├── Makefile │ └── src │ │ └── spidev_test.c │ ├── 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 │ └── xfsprogs │ ├── Makefile │ └── patches │ ├── 100-no-selftest.patch │ ├── 110-subdirs.patch │ └── 120-disable_assert.patch ├── repo_figures ├── bootp.png └── tftp.png ├── rules.mk ├── scripts ├── arm-magic.sh ├── brcmImage.pl ├── bundle-libraries.sh ├── 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 │ ├── list.h │ ├── lkc.h │ ├── lkc_proto.h │ ├── lxdialog │ │ ├── .gitignore │ │ ├── check-lxdialog.sh │ │ ├── checklist.c │ │ ├── dialog.h │ │ ├── inputbox.c │ │ ├── menubox.c │ │ ├── textbox.c │ │ ├── util.c │ │ └── yesno.c │ ├── mconf.c │ ├── menu.c │ ├── qconf.cc │ ├── qconf.h │ ├── symbol.c │ ├── util.c │ ├── zconf.gperf │ ├── zconf.hash.c_shipped │ ├── zconf.l │ ├── zconf.lex.c_shipped │ ├── zconf.tab.c_shipped │ └── zconf.y ├── 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 ├── gen-dependencies.sh ├── gen_image_generic.sh ├── get_source_date_epoch.sh ├── getver.sh ├── ipkg-build ├── ipkg-make-index.sh ├── ipkg-remove ├── 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 ├── 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 │ ├── adm5120 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 01_leds │ │ │ │ ├── config │ │ │ │ │ └── network │ │ │ │ ├── diag.sh │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── adm5120.sh │ │ │ │ ├── preinit │ │ │ │ ├── 01_preinit_do_adm5120.sh │ │ │ │ └── 05_set_preinit_iface_adm5120 │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.18 │ │ ├── files-3.18 │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ ├── adm5120 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Platform │ │ │ │ │ ├── cellvision │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── cas-771.c │ │ │ │ │ │ ├── cellvision.c │ │ │ │ │ │ ├── cellvision.h │ │ │ │ │ │ └── nfs-101.c │ │ │ │ │ ├── common │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── adm5120.c │ │ │ │ │ │ ├── clock.c │ │ │ │ │ │ ├── early-printk.c │ │ │ │ │ │ ├── gpio.c │ │ │ │ │ │ ├── irq.c │ │ │ │ │ │ ├── memory.c │ │ │ │ │ │ ├── platform.c │ │ │ │ │ │ ├── prom.c │ │ │ │ │ │ └── setup.c │ │ │ │ │ ├── compex │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── compex.c │ │ │ │ │ │ ├── compex.h │ │ │ │ │ │ ├── np27g.c │ │ │ │ │ │ ├── np28g.c │ │ │ │ │ │ └── wp54.c │ │ │ │ │ ├── edimax │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── br-6104k.c │ │ │ │ │ │ ├── br-6104kp.c │ │ │ │ │ │ ├── br-61x4wg.c │ │ │ │ │ │ ├── br-61xx.c │ │ │ │ │ │ └── br-61xx.h │ │ │ │ │ ├── generic │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── eb-214a.c │ │ │ │ │ ├── infineon │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── easy5120-rt.c │ │ │ │ │ │ ├── easy5120-wvoip.c │ │ │ │ │ │ ├── easy5120p-ata.c │ │ │ │ │ │ ├── easy83000.c │ │ │ │ │ │ ├── infineon.c │ │ │ │ │ │ └── infineon.h │ │ │ │ │ ├── mikrotik │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── rb-11x.c │ │ │ │ │ │ ├── rb-133.c │ │ │ │ │ │ ├── rb-133c.c │ │ │ │ │ │ ├── rb-150.c │ │ │ │ │ │ ├── rb-153.c │ │ │ │ │ │ ├── rb-192.c │ │ │ │ │ │ ├── rb-1xx.c │ │ │ │ │ │ └── rb-1xx.h │ │ │ │ │ ├── motorola │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── pmugw.c │ │ │ │ │ ├── osbridge │ │ │ │ │ │ ├── 5gxi.c │ │ │ │ │ │ └── Makefile │ │ │ │ │ ├── prom │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── admboot.c │ │ │ │ │ │ ├── bootbase.c │ │ │ │ │ │ ├── cfe.c │ │ │ │ │ │ ├── generic.c │ │ │ │ │ │ ├── myloader.c │ │ │ │ │ │ ├── prom_read.h │ │ │ │ │ │ └── routerboot.c │ │ │ │ │ └── zyxel │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── p-334wt.c │ │ │ │ │ │ ├── p-335.c │ │ │ │ │ │ ├── p-33x.c │ │ │ │ │ │ └── p-33x.h │ │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ └── mach-adm5120 │ │ │ │ │ │ ├── adm5120_defs.h │ │ │ │ │ │ ├── adm5120_info.h │ │ │ │ │ │ ├── adm5120_intc.h │ │ │ │ │ │ ├── adm5120_mpmc.h │ │ │ │ │ │ ├── adm5120_nand.h │ │ │ │ │ │ ├── adm5120_platform.h │ │ │ │ │ │ ├── adm5120_switch.h │ │ │ │ │ │ ├── adm5120_uart.h │ │ │ │ │ │ ├── asm │ │ │ │ │ │ └── sizes.h │ │ │ │ │ │ ├── cpu-feature-overrides.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ ├── prom │ │ │ │ │ │ ├── admboot.h │ │ │ │ │ │ ├── cfe.h │ │ │ │ │ │ ├── generic.h │ │ │ │ │ │ ├── myloader.h │ │ │ │ │ │ ├── routerboot.h │ │ │ │ │ │ └── zynos.h │ │ │ │ │ │ └── war.h │ │ │ │ │ └── pci │ │ │ │ │ └── pci-adm5120.c │ │ │ └── drivers │ │ │ │ ├── ata │ │ │ │ └── pata_rb153_cf.c │ │ │ │ ├── leds │ │ │ │ └── ledtrig-adm5120-switch.c │ │ │ │ ├── mtd │ │ │ │ ├── maps │ │ │ │ │ └── adm5120-flash.c │ │ │ │ └── trxsplit.c │ │ │ │ ├── net │ │ │ │ ├── adm5120sw.c │ │ │ │ └── adm5120sw.h │ │ │ │ ├── usb │ │ │ │ └── host │ │ │ │ │ ├── adm5120-dbg.c │ │ │ │ │ ├── adm5120-drv.c │ │ │ │ │ ├── adm5120-hcd.c │ │ │ │ │ ├── adm5120-hub.c │ │ │ │ │ ├── adm5120-mem.c │ │ │ │ │ ├── adm5120-pm.c │ │ │ │ │ ├── adm5120-q.c │ │ │ │ │ └── adm5120.h │ │ │ │ └── watchdog │ │ │ │ └── adm5120_wdt.c │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── lzma-loader │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── LzmaTypes.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── board.c │ │ │ │ │ ├── config.h │ │ │ │ │ ├── decompress.c │ │ │ │ │ ├── head.S │ │ │ │ │ ├── loader.lds │ │ │ │ │ ├── lzma-data.lds │ │ │ │ │ ├── printf.c │ │ │ │ │ └── printf.h │ │ │ ├── rb1xx.mk │ │ │ ├── router_be.mk │ │ │ └── router_le.mk │ │ ├── modules.mk │ │ ├── patches-3.18 │ │ │ ├── 001-adm5120.patch │ │ │ ├── 002-adm5120_flash.patch │ │ │ ├── 003-adm5120_switch.patch │ │ │ ├── 005-adm5120_usb.patch │ │ │ ├── 007-adm5120_pci.patch │ │ │ ├── 009-adm5120_leds_switch_trigger.patch │ │ │ ├── 050-revert_rootfs_splits.patch │ │ │ ├── 100-rootfs_split.patch │ │ │ ├── 101-cfi_fixup_macronix_bootloc.patch │ │ │ ├── 102-jedec_pmc_39lvxxx_chips.patch │ │ │ ├── 103-mtd_trxsplit.patch │ │ │ ├── 120-rb153_cf_driver.patch │ │ │ ├── 200-amba_pl010_hacks.patch │ │ │ ├── 203-gpio_leds_brightness.patch │ │ │ └── 310-adm5120_wdt.patch │ │ ├── rb1xx │ │ │ ├── base-files │ │ │ │ └── sbin │ │ │ │ │ └── wget2nand │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── RB1xx.mk │ │ │ └── target.mk │ │ ├── router_be │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── 010-Generic.mk │ │ │ │ └── 200-ZyXEL.mk │ │ │ └── target.mk │ │ └── router_le │ │ │ ├── config-3.8 │ │ │ ├── profiles │ │ │ ├── 010-Generic.mk │ │ │ ├── Cellvision.mk │ │ │ ├── Compex.mk │ │ │ ├── Edimax.mk │ │ │ ├── Infineon.mk │ │ │ ├── Motorola.mk │ │ │ └── Osbridge.mk │ │ │ └── target.mk │ ├── adm8668 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ └── network │ │ │ │ └── diag.sh │ │ │ ├── lib │ │ │ │ ├── preinit │ │ │ │ │ ├── 03_init_hotplug_failsafe_adm8668 │ │ │ │ │ └── 05_set_preinit_face_adm8668 │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ └── sbin │ │ │ │ └── hotplug.failsafe │ │ ├── config-3.18 │ │ ├── files-3.18 │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ ├── adm8668 │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Platform │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── early_printk.c │ │ │ │ │ ├── gpio.c │ │ │ │ │ ├── irq.c │ │ │ │ │ ├── platform.c │ │ │ │ │ ├── prom.c │ │ │ │ │ ├── setup.c │ │ │ │ │ ├── time.c │ │ │ │ │ └── u-boot.h │ │ │ │ │ ├── include │ │ │ │ │ └── asm │ │ │ │ │ │ └── mach-adm8668 │ │ │ │ │ │ ├── adm8668.h │ │ │ │ │ │ ├── asm │ │ │ │ │ │ └── sizes.h │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── irq.h │ │ │ │ │ │ └── war.h │ │ │ │ │ └── pci │ │ │ │ │ └── pci-adm8668.c │ │ │ └── drivers │ │ │ │ └── mtd │ │ │ │ └── maps │ │ │ │ └── adm8668.c │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── lzma-loader │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ │ ├── LzmaDecode.c │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── decompress.c │ │ │ │ │ ├── include │ │ │ │ │ ├── _exports.h │ │ │ │ │ ├── asm │ │ │ │ │ │ ├── global_data.h │ │ │ │ │ │ └── u-boot.h │ │ │ │ │ ├── common.h │ │ │ │ │ ├── exports.h │ │ │ │ │ └── image.h │ │ │ │ │ ├── lzma.lds.in │ │ │ │ │ └── stubs.c │ │ │ └── my-mkimage │ │ ├── patches-3.18 │ │ │ ├── 001-adm8668_arch.patch │ │ │ ├── 002-adm8668_pci.patch │ │ │ ├── 003-adm8668_nor_map.patch │ │ │ ├── 004-tulip_pci_split.patch │ │ │ ├── 005-tulip_platform.patch │ │ │ ├── 200-amba_pl010_hacks.patch │ │ │ └── 201-amba_bus_hacks.patch │ │ └── profiles │ │ │ └── 100-WRTU54G-TM.mk │ ├── apm821xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── firmware │ │ │ │ │ │ └── 10-ath9k-eeprom │ │ │ │ │ └── ieee80211 │ │ │ │ │ │ └── 10_fix_wifi_mac │ │ │ │ ├── inittab │ │ │ │ └── rc.button │ │ │ │ │ └── BTN_1 │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 05_set_iface_mac_apm821xx │ │ │ │ ├── 05_set_preinit_iface_apm821xx │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ ├── platform.sh │ │ │ │ └── wdbook.sh │ │ ├── config-4.14 │ │ ├── config-4.19 │ │ ├── dts │ │ │ ├── apm82181.dtsi │ │ │ ├── meraki-mr24.dts │ │ │ ├── meraki-mx60.dts │ │ │ ├── netgear-wndap620.dts │ │ │ ├── netgear-wndap660.dts │ │ │ ├── netgear-wndap6x0.dtsi │ │ │ ├── netgear-wndr4700.dts │ │ │ └── wd-mybooklive.dts │ │ ├── files │ │ │ └── arch │ │ │ │ └── powerpc │ │ │ │ └── platforms │ │ │ │ └── 44x │ │ │ │ └── wndr4700.c │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── mbl_boot.scr │ │ │ └── mbl_gen_hdd_img.sh │ │ ├── nand │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── patches-4.14 │ │ │ ├── 020-0002-crypto-crypto4xx-remove-unused-definitions-and-write.patch │ │ │ ├── 020-0003-crypto-crypto4xx-set-CRYPTO_ALG_KERN_DRIVER_ONLY-fla.patch │ │ │ ├── 020-0004-crypto-crypto4xx-remove-extern-statement-before-func.patch │ │ │ ├── 020-0005-crypto-crypto4xx-remove-double-assignment-of-pd_uinf.patch │ │ │ ├── 020-0006-crypto-crypto4xx-fix-dynamic_sa_ctl-s-sa_contents-de.patch │ │ │ ├── 020-0007-crypto-crypto4xx-move-and-refactor-dynamic_contents-.patch │ │ │ ├── 020-0008-crypto-crypto4xx-enable-AES-RFC3686-ECB-CFB-and-OFB-.patch │ │ │ ├── 020-0009-crypto-crypto4xx-refactor-crypto4xx_copy_pkt_to_dst.patch │ │ │ ├── 020-0010-crypto-crypto4xx-replace-crypto4xx_dev-s-scatter_buf.patch │ │ │ ├── 020-0012-crypto-crypto4xx-pointer-arithmetic-overhaul.patch │ │ │ ├── 020-0013-crypto-crypto4xx-wire-up-hmac_mc-to-hmac_muting.patch │ │ │ ├── 020-0014-crypto-crypto4xx-fix-off-by-one-AES-OFB.patch │ │ │ ├── 020-0015-crypto-crypto4xx-fix-type-mismatch-compiler-error.patch │ │ │ ├── 020-0017-crypto-crypto4xx-add-backlog-queue-support.patch │ │ │ ├── 020-0018-crypto-crypto4xx-use-the-correct-LE32-format-for-IV-.patch │ │ │ ├── 020-0019-crypto-crypto4xx-overhaul-crypto4xx_build_pd.patch │ │ │ ├── 020-0020-crypto-crypto4xx-fix-various-warnings.patch │ │ │ ├── 020-0021-crypto-crypto4xx-fix-stalls-under-heavy-load.patch │ │ │ ├── 020-0022-crypto-crypto4xx-simplify-sa-and-state-context-acqui.patch │ │ │ ├── 020-0023-crypto-crypto4xx-prepare-for-AEAD-support.patch │ │ │ ├── 020-0024-crypto-crypto4xx-add-aes-ccm-support.patch │ │ │ ├── 020-0025-crypto-crypto4xx-add-aes-gcm-support.patch │ │ │ ├── 021-0001-crypto-crypto4xx-shuffle-iomap-in-front-of-request_i.patch │ │ │ ├── 021-0002-crypto-crypto4xx-support-Revision-B-parts.patch │ │ │ ├── 021-0003-crypto-crypto4xx-fix-missing-irq-devname.patch │ │ │ ├── 021-0004-crypto-crypto4xx-kill-MODULE_NAME.patch │ │ │ ├── 021-0005-crypto-crypto4xx-perform-aead-icv-check-in-the-drive.patch │ │ │ ├── 022-0001-crypto-Use-zeroing-memory-allocator-instead-of-alloc.patch │ │ │ ├── 022-0002-crypto-crypto4xx-performance-optimizations.patch │ │ │ ├── 022-0003-crypto-crypto4xx-convert-to-skcipher.patch │ │ │ ├── 022-0004-crypto-crypto4xx-avoid-VLA-use.patch │ │ │ ├── 022-0005-crypto-crypto4xx-add-aes-ctr-support.patch │ │ │ ├── 022-0006-crypto-crypto4xx-properly-set-IV-after-de-and-encryp.patch │ │ │ ├── 022-0007-crypto-crypto4xx-extend-aead-fallback-checks.patch │ │ │ ├── 022-0008-crypto-crypto4xx-put-temporary-dst-sg-into-request-c.patch │ │ │ ├── 030-0001-net-ibm-emac-replace-custom-rgmii_mode_name-with-phy.patch │ │ │ ├── 030-0002-net-ibm-emac-replace-custom-PHY_MODE_-macros.patch │ │ │ ├── 030-0003-net-ibm-emac-support-RGMII-RX-TX-ID-phymode.patch │ │ │ ├── 140-GPIO-add-named-gpio-exports.patch │ │ │ ├── 200-add-meraki-mr24-ikarem-support.patch │ │ │ ├── 201-add-amcc-apollo3g-support.patch │ │ │ ├── 202-add-netgear-wndr4700-support.patch │ │ │ ├── 203-add-meraki-mx60-buckminster-support.patch │ │ │ ├── 300-fix-atheros-nics-on-apm82181.patch │ │ │ ├── 301-fix-memory-map-wndr4700.patch │ │ │ ├── 302-0001-dt-bindings-add-protection-control-property.patch │ │ │ ├── 302-0002-dmaengine-dw-implement-per-channel-protection-contro.patch │ │ │ ├── 701-powerpc_ibm_apm82181_phyclk_fix.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-4.19 │ │ │ ├── 010-dmaengine-dw-dmac-implement-dma-prot.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 │ │ └── sata │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ └── 00-default.mk │ │ │ └── target.mk │ ├── ar7 │ │ ├── Makefile │ │ ├── ac49x │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 210-None.mk │ │ │ └── target.mk │ │ ├── base-files.mk │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── init.d │ │ │ │ └── adam2 │ │ ├── config-4.9 │ │ ├── files │ │ │ └── drivers │ │ │ │ └── mtd │ │ │ │ ├── ac49xpart.c │ │ │ │ └── titanpart.c │ │ ├── generic │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── 100-Annex-A.mk │ │ │ │ ├── 110-Annex-B.mk │ │ │ │ ├── 200-Texas.mk │ │ │ │ └── 210-None.mk │ │ │ └── target.mk │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-4.9 │ │ │ ├── 100-fix-highmem-offset.patch │ │ │ ├── 101-MIPS-AR7-allow-NULL-clock-for-clk_get_rate.patch │ │ │ ├── 110-flash.patch │ │ │ ├── 160-vlynq_try_remote_first.patch │ │ │ ├── 200-free-mem-below-kernel-offset.patch │ │ │ ├── 300-add-ac49x-platform.patch │ │ │ ├── 310-ac49x-prom-support.patch │ │ │ ├── 320-ac49x-mtd-partitions.patch │ │ │ ├── 920-ar7part.patch │ │ │ ├── 925-actiontec_leds.patch │ │ │ └── 950-cpmac_titan.patch │ │ └── src │ │ │ └── adam2patcher.c │ ├── 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-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 │ │ │ ├── 401-mtd-physmap-add-lock-unlock.patch │ │ │ ├── 402-mtd-SST39VF6401B-support.patch │ │ │ ├── 403-mtd_fix_cfi_cmdset_0002_status_check.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 │ │ └── tiny │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ └── 00-default.mk │ │ │ └── target.mk │ ├── arc770 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── arc.sh │ │ │ │ └── preinit │ │ │ │ └── 01_preinit_arc.sh │ │ ├── config-4.14 │ │ ├── generic │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_axs10x_sdcard_img.sh │ │ │ └── uEnv.txt │ │ └── patches-4.14 │ │ │ └── 700-stmmac-Disable-frame-filtering-completely.patch │ ├── archs38 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── arc.sh │ │ │ │ └── preinit │ │ │ │ └── 01_preinit_arc.sh │ │ ├── config-4.14 │ │ ├── generic │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_axs10x_sdcard_img.sh │ │ │ ├── uEnv.txt │ │ │ └── uboot.env.txt │ │ └── patches-4.14 │ │ │ └── 700-stmmac-Disable-frame-filtering-completely.patch │ ├── armvirt │ │ ├── 32 │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── 64 │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── Makefile │ │ ├── README │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ └── 00_model │ │ │ │ └── inittab │ │ ├── config-4.14 │ │ └── image │ │ │ └── Makefile │ ├── at91 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ └── config │ │ │ │ │ ├── firewall │ │ │ │ │ └── network │ │ │ └── lib │ │ │ │ ├── at91.sh │ │ │ │ └── preinit │ │ │ │ └── 01_preinit_do_at91.sh │ │ ├── config-4.9 │ │ ├── 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 │ │ │ ├── legacy.mk │ │ │ ├── sama5d2.mk │ │ │ ├── sama5d3.mk │ │ │ └── sama5d4.mk │ │ ├── legacy │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── modules.mk │ │ ├── patches-4.9 │ │ │ ├── 100-ARM-at91-build-dtb-for-LMU5000.patch │ │ │ ├── 101-ARM-at91-build-dtb-for-q5xr5.patch │ │ │ ├── 102-ARM-at91-build-dtb-for-wb45n.patch │ │ │ ├── 103-ARM-at91-build-dtb-for-wb50n.patch │ │ │ ├── 104-ARM-at91-build-dtb-for-sama5d27-SOM1-Ek.patch │ │ │ └── 105-ARM-at91-build-dtb-for-sama5d2-ptc-Ek.patch │ │ ├── sama5d2 │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── sama5d3 │ │ │ ├── config-default │ │ │ └── target.mk │ │ └── sama5d4 │ │ │ ├── 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-4.14 │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-4.14 │ │ │ ├── 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 │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 03_gpio_switches │ │ │ │ └── hotplug.d │ │ │ │ │ ├── firmware │ │ │ │ │ ├── 10-ath9k-eeprom │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ │ └── ieee80211 │ │ │ │ │ ├── 00-wmac-migration │ │ │ │ │ └── 10_fix_wifi_mac │ │ │ └── lib │ │ │ │ ├── functions │ │ │ │ └── k2t.sh │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.14 │ │ ├── config-4.19 │ │ ├── dts │ │ │ ├── ar1022_iodata_wn-ag300dgr.dts │ │ │ ├── ar7100.dtsi │ │ │ ├── ar7161_buffalo_wzr-hp-ag300h.dts │ │ │ ├── ar7161_dlink_dir-825-b1.dts │ │ │ ├── ar7161_jjplus_ja76pf2.dts │ │ │ ├── ar7161_netgear_wndr3700.dts │ │ │ ├── ar7161_netgear_wndr3700.dtsi │ │ │ ├── ar7161_netgear_wndr3700v2.dts │ │ │ ├── ar7161_netgear_wndr3800.dts │ │ │ ├── ar7161_ubnt_routerstation-pro.dts │ │ │ ├── ar7161_ubnt_routerstation.dts │ │ │ ├── ar7161_ubnt_routerstation.dtsi │ │ │ ├── ar7240.dtsi │ │ │ ├── ar7240_buffalo_whr-g301n.dts │ │ │ ├── ar7240_netgear_wnr612-v2.dts │ │ │ ├── ar7240_netgear_wnr612-v2.dtsi │ │ │ ├── ar7240_on_n150r.dts │ │ │ ├── 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-wr74xn-v1.dtsi │ │ │ ├── ar7240_tplink_tl-wr841-v5.dts │ │ │ ├── ar7240_tplink_tl-wr941-v4.dts │ │ │ ├── ar7241.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.dts │ │ │ ├── ar7241_ubnt_nanostation-m.dts │ │ │ ├── ar7241_ubnt_rocket-m.dts │ │ │ ├── ar7241_ubnt_unifi.dts │ │ │ ├── ar7241_ubnt_xm.dtsi │ │ │ ├── ar7241_ubnt_xm_outdoor.dtsi │ │ │ ├── ar7242.dtsi │ │ │ ├── ar7242_avm_fritz300e.dts │ │ │ ├── ar7242_buffalo_bhr-4grv.dts │ │ │ ├── ar7242_buffalo_wzr-bhr.dtsi │ │ │ ├── ar7242_buffalo_wzr-hp-g302h-a1a0.dts │ │ │ ├── ar7242_buffalo_wzr-hp-g450h.dts │ │ │ ├── ar7242_tplink_tl-wr2543-v1.dts │ │ │ ├── ar724x.dtsi │ │ │ ├── ar9132.dtsi │ │ │ ├── ar9132_tplink_tl-wa901nd-v2.dts │ │ │ ├── ar9132_tplink_tl-wr1043nd-v1.dts │ │ │ ├── ar9132_tplink_tl-wr941-v2.dts │ │ │ ├── ar9330.dtsi │ │ │ ├── ar9330_glinet_gl-ar150.dts │ │ │ ├── ar9330_pqi_air-pen.dts │ │ │ ├── ar9331.dtsi │ │ │ ├── ar9331_dptechnics_dpt-module.dts │ │ │ ├── ar9331_dragino_ms14.dts │ │ │ ├── ar9331_embeddedwireless_dorin.dts │ │ │ ├── ar9331_etactica_eg200.dts │ │ │ ├── ar9331_onion_omega.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-v1.dts │ │ │ ├── ar9331_tplink_tl-wr740n-v4.dts │ │ │ ├── ar9331_tplink_tl-wr741nd-v4.dts │ │ │ ├── ar9331_tplink_tl-wr741nd-v4.dtsi │ │ │ ├── ar9341.dtsi │ │ │ ├── ar9341_pcs_cr3000.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_nanobeam-ac.dts │ │ │ ├── ar9342_ubnt_nanostation-ac-loco.dts │ │ │ ├── ar9342_ubnt_nanostation-ac.dts │ │ │ ├── ar9342_ubnt_nanostation-m-xw.dts │ │ │ ├── ar9342_ubnt_wa.dtsi │ │ │ ├── ar9342_ubnt_xw.dtsi │ │ │ ├── ar9344.dtsi │ │ │ ├── ar9344_comfast_cf-e120a-v3.dts │ │ │ ├── ar9344_dlink_dir-825-c1.dts │ │ │ ├── ar9344_dlink_dir-835-a1.dts │ │ │ ├── ar9344_dlink_dir-8x5.dtsi │ │ │ ├── ar9344_ocedo_raccoon.dts │ │ │ ├── ar9344_pcs_cap324.dts │ │ │ ├── ar9344_pcs_cr5000.dts │ │ │ ├── ar9344_tplink_tl-wdr3600.dts │ │ │ ├── ar9344_tplink_tl-wdr4300.dts │ │ │ ├── ar9344_tplink_tl-wdr4300.dtsi │ │ │ ├── ar9344_wd_mynet-wifi-rangeextender.dts │ │ │ ├── ar9344_winchannel_wb2000.dts │ │ │ ├── ar934x.dtsi │ │ │ ├── ath79.dtsi │ │ │ ├── qca9531_comfast_cf-e5.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-x750.dts │ │ │ ├── qca9531_tplink_tl-wr810n-v1.dts │ │ │ ├── qca9531_yuncore_a770.dts │ │ │ ├── qca9533_comfast_cf-e110n-v2.dts │ │ │ ├── qca9533_tplink_tl-wr810n-v2.dts │ │ │ ├── qca9533_tplink_tl-wr841-v11.dts │ │ │ ├── qca9533_tplink_tl-wr841-v9.dts │ │ │ ├── qca9533_tplink_tl-wr841.dtsi │ │ │ ├── qca953x.dtsi │ │ │ ├── qca953x_tplink_tl-wr810n.dtsi │ │ │ ├── qca9557.dtsi │ │ │ ├── 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 │ │ │ ├── qca9558_devolo_dvl1200e.dts │ │ │ ├── qca9558_devolo_dvl1200i.dts │ │ │ ├── qca9558_devolo_dvl1750c.dts │ │ │ ├── qca9558_devolo_dvl1750e.dts │ │ │ ├── qca9558_devolo_dvl1750i.dts │ │ │ ├── qca9558_devolo_dvl1xxx.dtsi │ │ │ ├── qca9558_engenius_epg5000.dts │ │ │ ├── qca9558_librerouter_librerouter-v1.dts │ │ │ ├── qca9558_ocedo_koala.dts │ │ │ ├── qca9558_openmesh_om5p-ac-v2.dts │ │ │ ├── qca9558_tplink_archer-c5-v1.dts │ │ │ ├── qca9558_tplink_archer-c7-v1.dts │ │ │ ├── qca9558_tplink_archer-c7-v2.dts │ │ │ ├── qca9558_tplink_archer-c7.dtsi │ │ │ ├── qca9558_tplink_re350k-v1.dts │ │ │ ├── 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-wr941n-v7-cn.dts │ │ │ ├── qca9561_avm_fritz4020.dts │ │ │ ├── qca9561_tplink_archer-c58-v1.dts │ │ │ ├── qca9561_tplink_archer-c59-v1.dts │ │ │ ├── qca9561_tplink_archer-c5x.dtsi │ │ │ ├── qca9561_xiaomi_mi-router-4q.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.dts │ │ │ ├── qca9563_nec_wg800hp.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.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_re450-v2.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-mesh-pro.dts │ │ │ ├── qca9563_ubnt_unifiac-mesh.dts │ │ │ ├── qca9563_ubnt_unifiac-pro.dts │ │ │ ├── qca9563_ubnt_unifiac-pro.dtsi │ │ │ ├── qca9563_ubnt_unifiac.dtsi │ │ │ └── qca956x.dtsi │ │ ├── files │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ ├── ath79 │ │ │ │ │ ├── pci-ath9k-fixup.c │ │ │ │ │ └── pci-ath9k-fixup.h │ │ │ │ │ └── include │ │ │ │ │ └── asm │ │ │ │ │ └── fw │ │ │ │ │ └── myloader │ │ │ │ │ └── myloader.h │ │ │ └── drivers │ │ │ │ ├── mtd │ │ │ │ ├── parsers │ │ │ │ │ └── parser_cybertan.c │ │ │ │ └── tplinkpart.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 │ │ ├── generic │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── common-buffalo.mk │ │ │ ├── common-netgear.mk │ │ │ ├── common-tp-link.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 │ │ │ ├── nand.mk │ │ │ ├── tiny-netgear.mk │ │ │ ├── tiny-tp-link.mk │ │ │ └── tiny.mk │ │ ├── modules.mk │ │ ├── nand │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── patches-4.14 │ │ │ ├── 0001-tty-serial-drop-QCA-pecific-SoC-symbols.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 │ │ │ ├── 0006-usb-drop-deprecated-symbols.patch │ │ │ ├── 0007-irqchip-irq-ath79-intc-add-irq-cascade-driver-for-QC.patch │ │ │ ├── 0008-irqchip-irq-ath79-cpu-drop-OF-init-helper.patch │ │ │ ├── 0009-MIPS-ath79-add-lots-of-missing-registers.patch │ │ │ ├── 0010-MIPS-ath79-add-support-for-QCA953x-QCA956x-TP9343.patch │ │ │ ├── 0011-MIPS-ath79-select-the-PINCTRL-subsystem.patch │ │ │ ├── 0014-MIPS-ath79-finetune-cpu-overrides.patch │ │ │ ├── 0015-MIPS-ath79-enable-uart-during-early_prink.patch │ │ │ ├── 0016-MIPS-ath79-get-PCIe-controller-out-of-reset.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 │ │ │ ├── 004-register_gpio_driver_earlier.patch │ │ │ ├── 403-mtd_fix_cfi_cmdset_0002_status_check.patch │ │ │ ├── 404-mtd-cybertan-trx-parser.patch │ │ │ ├── 405-mtd-tp-link-partition-parser.patch │ │ │ ├── 408-mtd-redboot_partition_scan.patch │ │ │ ├── 420-net-ar71xx_mac_driver.patch │ │ │ ├── 430-drivers-link-spi-before-mtd.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 │ │ │ ├── 900-mdio_bitbang_ignore_ta_value.patch │ │ │ ├── 901-phy-mdio-bitbang-prevent-rescheduling-during-command.patch │ │ │ └── 910-unaligned_access_hacks.patch │ │ ├── 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 │ │ │ ├── 004-register_gpio_driver_earlier.patch │ │ │ ├── 403-mtd_fix_cfi_cmdset_0002_status_check.patch │ │ │ ├── 404-mtd-cybertan-trx-parser.patch │ │ │ ├── 405-mtd-tp-link-partition-parser.patch │ │ │ ├── 420-net-ar71xx_mac_driver.patch │ │ │ ├── 430-drivers-link-spi-before-mtd.patch │ │ │ ├── 470-MIPS-ath79-swizzle-pci-address-for-ar71xx.patch │ │ │ ├── 490-usb-ehci-add-quirks-for-qca-socs.patch │ │ │ ├── 900-mdio_bitbang_ignore_ta_value.patch │ │ │ ├── 901-phy-mdio-bitbang-prevent-rescheduling-during-command.patch │ │ │ └── 910-unaligned_access_hacks.patch │ │ └── tiny │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ └── 00-default.mk │ │ │ └── target.mk │ ├── au1000 │ │ ├── Makefile │ │ ├── au1500 │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ ├── Atheros.mk │ │ │ │ ├── InternetBox.mk │ │ │ │ └── MeshCube.mk │ │ │ └── target.mk │ │ ├── au1550 │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── DBAu1550.mk │ │ │ └── target.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── diag.sh │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.18 │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ └── patches-3.18 │ │ │ ├── 002-openwrt_rootfs.patch │ │ │ ├── 003-au1000_eth_ioctl.patch │ │ │ ├── 004-watchdog_low_init.patch │ │ │ └── 006-codec.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.14 │ │ ├── config-4.19 │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── compressed │ │ │ │ └── cache-v7-min.S │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ ├── patches-4.14 │ │ │ ├── 030-v4.15-0001-ARM-dts-BCM5301X-Specify-USB-ports-for-USB-LED-of-Lu.patch │ │ │ ├── 030-v4.15-0002-ARM-dts-BCM5301X-Add-DT-for-Luxul-XBR-4500.patch │ │ │ ├── 030-v4.15-0003-ARM-dts-BCM5301X-Add-DT-for-Luxul-ABR-4500.patch │ │ │ ├── 030-v4.15-0004-ARM-dts-BCM53573-Add-DT-for-Luxul-XAP-810.patch │ │ │ ├── 030-v4.15-0005-ARM-dts-BCM53573-Add-DT-for-Luxul-XAP-1440.patch │ │ │ ├── 031-v4.17-0001-ARM-dts-BCM5301X-add-missing-LEDs-for-Buffalo-WZR-90.patch │ │ │ ├── 032-v4.18-0001-ARM-dts-BCM5301X-Switch-Luxul-XWC-1000-to-the-new-fi.patch │ │ │ ├── 032-v4.18-0002-ARM-dts-BCM5301X-Relicense-most-DTS-files-to-the-GPL.patch │ │ │ ├── 032-v4.18-0003-ARM-dts-BCM5301X-Relicense-Buffalo-files-to-the-GPL-.patch │ │ │ ├── 032-v4.18-0004-ARM-dts-BCM5301X-Add-DT-for-Luxul-XWR-3150-V1.patch │ │ │ ├── 032-v4.18-0005-ARM-dts-BCM5301X-Add-DT-for-Luxul-XAP-1610.patch │ │ │ ├── 032-v4.18-0006-ARM-dts-BCM5301X-Relicense-Asus-RT-AC87U-file-to-the.patch │ │ │ ├── 032-v4.18-0007-ARM-dts-BCM5301X-Switch-D-Link-DIR-885L-to-the-new-p.patch │ │ │ ├── 033-v4.19-0001-ARM-dts-BCM5301X-Make-USB-3.0-PHY-use-MDIO-PHY-drive.patch │ │ │ ├── 033-v4.19-0002-ARM-dts-BCM53573-Add-architected-timer.patch │ │ │ ├── 033-v4.19-0003-ARM-dts-BCM5301X-Add-support-for-Linksys-EA9500.patch │ │ │ ├── 034-v4.20-0001-ARM-dts-BCM5301X-Specify-flash-partitions.patch │ │ │ ├── 035-v4.21-0001-ARM-dts-BCM5301X-Relicense-BCM47081-BCM4709-files-to.patch │ │ │ ├── 035-v4.21-0002-ARM-dts-BCM5301X-Relicense-BCM47094-file-to-the-GPL-.patch │ │ │ ├── 035-v4.21-0003-ARM-dts-BCM53573-Relicense-Tenda-AC9-file-to-the-GPL.patch │ │ │ ├── 035-v4.21-0004-ARM-dts-BCM53573-Relicense-SoC-file-to-the-GPL-2.0-M.patch │ │ │ ├── 035-v4.21-0005-ARM-dts-BCM5301X-Add-basic-DT-for-Linksys-EA6500-V2.patch │ │ │ ├── 035-v4.21-0006-ARM-dts-BCM5301X-Describe-Northstar-pins-mux-control.patch │ │ │ ├── 036-v5.1-0001-ARM-dts-BCM53573-Relicense-Luxul-files-to-the-GPL-2..patch │ │ │ ├── 036-v5.1-0002-ARM-dts-BCM5301X-Add-basic-DT-for-Phicomm-K3.patch │ │ │ ├── 080-spi-bcm53xx-simplify-reading-SPI-data.patch │ │ │ ├── 082-pinctrl-bcm-add-Northstar-driver.patch │ │ │ ├── 083-pinctrl-bcm-ns-Use-uintptr_t-for-casting-data.patch │ │ │ ├── 084-v4.21-pinctrl-bcm-ns-support-updated-DT-binding-as-syscon-.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-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 │ │ │ ├── 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 │ │ └── profiles │ │ │ └── 100-Generic.mk │ ├── brcm2708 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 05_set_preinit_iface_brcm2708 │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ ├── keep.d │ │ │ │ └── platform │ │ │ │ └── platform.sh │ │ ├── bcm2708 │ │ │ ├── config-4.14 │ │ │ └── target.mk │ │ ├── bcm2709 │ │ │ ├── config-4.14 │ │ │ └── target.mk │ │ ├── bcm2710 │ │ │ ├── config-4.14 │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── cmdline.txt │ │ │ ├── config.txt │ │ │ └── gen_rpi_sdcard_img.sh │ │ ├── modules.mk │ │ └── patches-4.14 │ │ │ ├── 950-0001-arm-partially-revert-702b94bff3c50542a6e4ab9a4f4cef0.patch │ │ │ ├── 950-0002-smsx95xx-fix-crimes-against-truesize.patch │ │ │ ├── 950-0003-smsc95xx-Experimental-Enable-turbo_mode-and-packetsi.patch │ │ │ ├── 950-0004-Allow-mac-address-to-be-set-in-smsc95xx.patch │ │ │ ├── 950-0005-Protect-__release_resource-against-resources-without.patch │ │ │ ├── 950-0006-irq-bcm2836-Prevent-spurious-interrupts-and-trap-the.patch │ │ │ ├── 950-0007-irq-bcm2836-Avoid-Invalid-trigger-warning.patch │ │ │ ├── 950-0008-irqchip-bcm2835-Add-FIQ-support.patch │ │ │ ├── 950-0009-irqchip-irq-bcm2835-Add-2836-FIQ-support.patch │ │ │ ├── 950-0010-irq_bcm2836-Send-event-when-onlining-sleeping-cores.patch │ │ │ ├── 950-0011-spidev-Add-spidev-compatible-string-to-silence-warni.patch │ │ │ ├── 950-0012-spi-bcm2835-Support-pin-groups-other-than-7-11.patch │ │ │ ├── 950-0013-spi-bcm2835-Disable-forced-software-CS.patch │ │ │ ├── 950-0014-spi-bcm2835-Remove-unused-code.patch │ │ │ ├── 950-0015-ARM-bcm2835-Set-Serial-number-and-Revision.patch │ │ │ ├── 950-0016-dmaengine-bcm2835-Load-driver-early-and-support-lega.patch │ │ │ ├── 950-0017-firmware-Updated-mailbox-header.patch │ │ │ ├── 950-0018-rtc-Add-SPI-alias-for-pcf2123-driver.patch │ │ │ ├── 950-0019-watchdog-bcm2835-Support-setting-reboot-partition.patch │ │ │ ├── 950-0020-reboot-Use-power-off-rather-than-busy-spinning-when-.patch │ │ │ ├── 950-0021-bcm-Make-RASPBERRYPI_POWER-depend-on-PM.patch │ │ │ ├── 950-0022-Register-the-clocks-early-during-the-boot-process-so.patch │ │ │ ├── 950-0023-bcm2835-rng-Avoid-initialising-if-already-enabled.patch │ │ │ ├── 950-0024-kbuild-Ignore-dtco-targets-when-filtering-symbols.patch │ │ │ ├── 950-0025-BCM2835_DT-Fix-I2S-register-map.patch │ │ │ ├── 950-0026-clk-bcm2835-Mark-used-PLLs-and-dividers-CRITICAL.patch │ │ │ ├── 950-0027-clk-bcm2835-Add-claim-clocks-property.patch │ │ │ ├── 950-0028-clk-bcm2835-Read-max-core-clock-from-firmware.patch │ │ │ ├── 950-0029-clk-bcm2835-Mark-GPIO-clocks-enabled-at-boot-as-crit.patch │ │ │ ├── 950-0030-sound-Demote-deferral-errors-to-INFO-level.patch │ │ │ ├── 950-0031-Update-vfpmodule.c.patch │ │ │ ├── 950-0032-ASoC-bcm2835_i2s.c-relax-the-ch2-register-setting-fo.patch │ │ │ ├── 950-0033-i2c-bcm2835-Add-debug-support.patch │ │ │ ├── 950-0034-mm-Remove-the-PFN-busy-warning.patch │ │ │ ├── 950-0035-ASoC-Add-prompt-for-ICS43432-codec.patch │ │ │ ├── 950-0036-Main-bcm2708-bcm2709-linux-port.patch │ │ │ ├── 950-0037-Add-dwc_otg-driver.patch │ │ │ ├── 950-0038-bcm2708-framebuffer-driver.patch │ │ │ ├── 950-0039-dmaengine-Add-support-for-BCM2708.patch │ │ │ ├── 950-0040-MMC-added-alternative-MMC-driver.patch │ │ │ ├── 950-0041-Adding-bcm2835-sdhost-driver-and-an-overlay-to-enabl.patch │ │ │ ├── 950-0042-vc_mem-Add-vc_mem-driver-for-querying-firmware-memor.patch │ │ │ ├── 950-0043-vcsm-VideoCore-shared-memory-service-for-BCM2835.patch │ │ │ ├── 950-0044-Add-dev-gpiomem-device-for-rootless-user-GPIO-access.patch │ │ │ ├── 950-0045-Add-SMI-driver.patch │ │ │ ├── 950-0046-MISC-bcm2835-smi-use-clock-manager-and-fix-reload-is.patch │ │ │ ├── 950-0047-Add-SMI-NAND-driver.patch │ │ │ ├── 950-0048-lirc-added-support-for-RaspberryPi-GPIO.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-scripts-Add-mkknlimg-and-knlinfo-scripts-from-tools-.patch │ │ │ ├── 950-0054-BCM2708-Add-core-Device-Tree-support.patch │ │ │ ├── 950-0055-BCM270x_DT-Add-pwr_led-and-the-required-input-trigge.patch │ │ │ ├── 950-0056-fbdev-add-FBIOCOPYAREA-ioctl.patch │ │ │ ├── 950-0057-Speed-up-console-framebuffer-imageblit-function.patch │ │ │ ├── 950-0058-enabling-the-realtime-clock-1-wire-chip-DS1307-and-1.patch │ │ │ ├── 950-0059-Added-Device-IDs-for-August-DVB-T-205.patch │ │ │ ├── 950-0060-rpi-ft5406-Add-touchscreen-driver-for-pi-LCD-display.patch │ │ │ ├── 950-0061-Improve-__copy_to_user-and-__copy_from_user-performa.patch │ │ │ ├── 950-0062-gpio-poweroff-Allow-it-to-work-on-Raspberry-Pi.patch │ │ │ ├── 950-0063-mfd-Add-Raspberry-Pi-Sense-HAT-core-driver.patch │ │ │ ├── 950-0064-ASoC-Add-support-for-HifiBerry-DAC.patch │ │ │ ├── 950-0065-ASoC-Add-support-for-Rpi-DAC.patch │ │ │ ├── 950-0066-ASoC-wm8804-Implement-MCLK-configuration-options-add.patch │ │ │ ├── 950-0067-ASoC-BCM-Add-support-for-HiFiBerry-Digi.-Driver-is-b.patch │ │ │ ├── 950-0068-Add-IQaudIO-Sound-Card-support-for-Raspberry-Pi.patch │ │ │ ├── 950-0069-Added-support-for-HiFiBerry-DAC.patch │ │ │ ├── 950-0070-Added-driver-for-HiFiBerry-Amp-amplifier-add-on-boar.patch │ │ │ ├── 950-0071-Add-driver-for-rpi-proto.patch │ │ │ ├── 950-0072-RaspiDAC3-support.patch │ │ │ ├── 950-0073-Add-Support-for-JustBoom-Audio-boards.patch │ │ │ ├── 950-0074-ARM-adau1977-adc-Add-basic-machine-driver-for-adau19.patch │ │ │ ├── 950-0075-New-AudioInjector.net-Pi-soundcard-with-low-jitter-a.patch │ │ │ ├── 950-0076-Add-IQAudIO-Digi-WM8804-board-support.patch │ │ │ ├── 950-0077-New-driver-for-RRA-DigiDAC1-soundcard-using-WM8741-W.patch │ │ │ ├── 950-0078-Add-support-for-Dion-Audio-LOCO-DAC-AMP-HAT.patch │ │ │ ├── 950-0079-Allo-Piano-DAC-boards-Initial-2-channel-stereo-suppo.patch │ │ │ ├── 950-0080-Add-support-for-Allo-Piano-DAC-2.1-plus-add-on-board.patch │ │ │ ├── 950-0081-Add-support-for-Allo-Boss-DAC-add-on-board-for-Raspb.patch │ │ │ ├── 950-0082-Support-for-Blokas-Labs-pisound-board.patch │ │ │ ├── 950-0083-ASoC-Add-driver-for-Cirrus-Logic-Audio-Card.patch │ │ │ ├── 950-0084-sound-Support-for-Dion-Audio-LOCO-V2-DAC-AMP-HAT.patch │ │ │ ├── 950-0085-Add-support-for-Fe-Pi-audio-sound-card.-1867.patch │ │ │ ├── 950-0086-Add-support-for-the-AudioInjector.net-Octo-sound-car.patch │ │ │ ├── 950-0087-Driver-support-for-Google-voiceHAT-soundcard.patch │ │ │ ├── 950-0088-Allo-Digione-Driver-2048.patch │ │ │ ├── 950-0089-rpi_display-add-backlight-driver-and-overlay.patch │ │ │ ├── 950-0090-bcm2835-virtgpio-Virtual-GPIO-driver.patch │ │ │ ├── 950-0091-bcm2835-gpio-exp-Driver-for-GPIO-expander-via-mailbo.patch │ │ │ ├── 950-0092-amba_pl011-Don-t-use-DT-aliases-for-numbering.patch │ │ │ ├── 950-0093-amba_pl011-Round-input-clock-up.patch │ │ │ ├── 950-0094-OF-DT-Overlay-configfs-interface.patch │ │ │ ├── 950-0095-hci_h5-Don-t-send-conf_req-when-ACTIVE.patch │ │ │ ├── 950-0096-config-Add-default-configs.patch │ │ │ ├── 950-0097-Add-arm64-configuration-and-device-tree-differences..patch │ │ │ ├── 950-0098-ARM64-Make-it-work-again-on-4.9-1790.patch │ │ │ ├── 950-0099-ARM64-Enable-HDMI-audio-and-vc04_services-in-bcmrpi3.patch │ │ │ ├── 950-0100-ARM64-Run-bcmrpi3_defconfig-through-savedefconfig.patch │ │ │ ├── 950-0101-ARM64-Enable-Kernel-Address-Space-Randomization-1792.patch │ │ │ ├── 950-0102-ARM64-DWC_OTG-Port-dwc_otg-driver-to-ARM64.patch │ │ │ ├── 950-0103-ARM64-Round-Robin-dispatch-IRQs-between-CPUs.patch │ │ │ ├── 950-0104-ARM64-Enable-DWC_OTG-Driver-In-ARM64-Build-Config-bc.patch │ │ │ ├── 950-0105-ARM64-Force-hardware-emulation-of-deprecated-instruc.patch │ │ │ ├── 950-0106-build-arm64-Add-rules-for-.dtbo-files-for-dts-overla.patch │ │ │ ├── 950-0107-enable-drivers-for-GPIO-expander-and-vcio.patch │ │ │ ├── 950-0108-bcm2835-aux-Add-aux-interrupt-controller.patch │ │ │ ├── 950-0109-raspberrypi-firmware-Export-the-general-transaction-.patch │ │ │ ├── 950-0110-drm-vc4-Add-a-mode-for-using-the-closed-firmware-for.patch │ │ │ ├── 950-0111-drm-vc4-Name-the-primary-and-cursor-planes-in-fkms.patch │ │ │ ├── 950-0112-drm-vc4-Add-DRM_DEBUG_ATOMIC-for-the-insides-of-fkms.patch │ │ │ ├── 950-0113-drm-vc4-Fix-sending-of-page-flip-completion-events-i.patch │ │ │ ├── 950-0114-vc4_fkms-Apply-firmware-overscan-offset-to-hardware-.patch │ │ │ ├── 950-0115-ASoC-bcm2835-Add-support-for-TDM-modes.patch │ │ │ ├── 950-0116-ASoC-bcm2835-Support-left-right-justified-and-DSP-mo.patch │ │ │ ├── 950-0117-ASoC-bcm2835-Support-additional-samplerates-up-to-38.patch │ │ │ ├── 950-0118-ASoC-bcm2835-Enforce-full-symmetry.patch │ │ │ ├── 950-0119-dma-bcm2708-Fix-module-compilation-of-CONFIG_DMA_BCM.patch │ │ │ ├── 950-0120-cache-export-clean-and-invalidate.patch │ │ │ ├── 950-0121-amba_pl011-Insert-mb-for-correct-FIFO-handling.patch │ │ │ ├── 950-0122-amba_pl011-Add-cts-event-workaround-DT-property.patch │ │ │ ├── 950-0123-amba-pl011-Report-AUTOCTS-capability-to-framework.patch │ │ │ ├── 950-0124-scripts-Update-mkknlimg-just-in-case.patch │ │ │ ├── 950-0125-AXI-performance-monitor-driver-2222.patch │ │ │ ├── 950-0126-drm-panel-Add-support-for-the-Raspberry-Pi-7-Touchsc.patch │ │ │ ├── 950-0127-panel-raspberrypi-touchscreen-Fix-NULL-deref-if-prob.patch │ │ │ ├── 950-0128-panel-raspberrypi-touchscreen-Round-up-clk-rate-to-f.patch │ │ │ ├── 950-0129-BCM270X-Add-the-DSI-panel-to-the-defconfig.patch │ │ │ ├── 950-0130-drm-vc4-Add-support-for-setting-DPMS-in-firmwarekms.patch │ │ │ ├── 950-0131-drm-vc4-Fix-pitch-setup-for-T-format-scanout.patch │ │ │ ├── 950-0132-mcp2515-Use-DT-supplied-interrupt-flags.patch │ │ │ ├── 950-0133-Tidy-up-of-the-ft5406-driver-to-use-DT-2189.patch │ │ │ ├── 950-0134-pinctrl-bcm2835-Set-base-to-0-give-expected-gpio-num.patch │ │ │ ├── 950-0135-fiq_fsm-rewind-DMA-pointer-for-OUT-transactions-that.patch │ │ │ ├── 950-0136-cgroup-Disable-cgroup-memory-by-default.patch │ │ │ ├── 950-0137-pwm-Set-class-for-exported-channels-in-sysfs.patch │ │ │ ├── 950-0138-Updates-for-Pisound-module-code.patch │ │ │ ├── 950-0139-overlays-Add-applepi-dac-overlay.patch │ │ │ ├── 950-0140-staging-vchiq_arm-Make-debugfs-failure-non-fatal.patch │ │ │ ├── 950-0141-config-Add-PINCTRL_MCP23S08.patch │ │ │ ├── 950-0142-Add-Raspberry-Pi-firmware-driver-to-the-dependencies.patch │ │ │ ├── 950-0143-overlays-Add-media-center-HAT-overlay-2313.patch │ │ │ ├── 950-0144-add-backlight-control-to-rpi-display-overlay.patch │ │ │ ├── 950-0145-add-backlight-control-to-media-center-overlay.patch │ │ │ ├── 950-0146-Add-overlay-for-mcp3202-12-bit-ADC.patch │ │ │ ├── 950-0147-dwc_otg-don-t-unconditionally-force-host-mode-in-dwc.patch │ │ │ ├── 950-0148-vcsm-Define-cache-operation-constants-in-user-header.patch │ │ │ ├── 950-0149-vcsm-Support-for-finding-user-vc-handle-in-memory-po.patch │ │ │ ├── 950-0150-vcsm-Unify-cache-manipulating-functions.patch │ │ │ ├── 950-0151-vcsm-Fix-obscure-conditions.patch │ │ │ ├── 950-0152-vcsm-Fix-memory-leaking-on-clean_invalid2-ioctl-hand.patch │ │ │ ├── 950-0153-vcsm-Describe-the-use-of-cache-operation-constants.patch │ │ │ ├── 950-0154-vcsm-Fix-obscure-conditions-again.patch │ │ │ ├── 950-0155-vcsm-Add-no-op-cache-operation-constant.patch │ │ │ ├── 950-0156-vcsm-Revert-to-do-page-table-walk-based-cache-manipu.patch │ │ │ ├── 950-0157-add-gpio-key-overlay-2329.patch │ │ │ ├── 950-0158-add-additional-overrides-to-rotary-encoder-overlay-2.patch │ │ │ ├── 950-0159-overlays-Add-uart0-overlay-to-change-pin-usage.patch │ │ │ ├── 950-0160-overlays-Fix-resetgpio-and-ledgpio-for-hy28a-b.patch │ │ │ ├── 950-0161-ASoC-bcm2835-fix-hw_params-error-when-device-is-in-p.patch │ │ │ ├── 950-0162-Input-add-I2C-attached-EETI-EXC3000-multi-touch-driv.patch │ │ │ ├── 950-0163-config-Add-EETI-EXC3000-touch-controller-module.patch │ │ │ ├── 950-0164-overlays-Add-EETI-EXC3000-overlay.patch │ │ │ ├── 950-0165-Added-support-for-mbed-AudioCODEC-TLV320AIC23B.patch │ │ │ ├── 950-0166-mmc-bcm2835-sdhost-Support-underclocking.patch │ │ │ ├── 950-0167-mmc-bcm2835-mmc-Support-underclocking.patch │ │ │ ├── 950-0168-serial-8250-bcm2835aux-suppress-EPROBE_DEFER.patch │ │ │ ├── 950-0169-irqchip-irq-bcm2836-Remove-regmap-and-syscon-use.patch │ │ │ ├── 950-0170-lan78xx-Avoid-spurious-kevent-4-error.patch │ │ │ ├── 950-0171-overlays-Allow-multiple-pps-gpio-instantiations.patch │ │ │ ├── 950-0172-drm-vc4-Use-correct-path-to-trace-include.patch │ │ │ ├── 950-0173-drm-vc4-clean-up-error-handling-on-devm_kzalloc-fail.patch │ │ │ ├── 950-0174-drm-vc4-Add-the-DRM_IOCTL_VC4_GEM_MADVISE-ioctl.patch │ │ │ ├── 950-0175-drm-vc4-Fix-false-positive-WARN-backtrace-on-refcoun.patch │ │ │ ├── 950-0176-drm-vc4-Fix-sleeps-during-the-IRQ-handler-for-DSI-tr.patch │ │ │ ├── 950-0177-drm-vc4-Convert-timers-to-use-timer_setup.patch │ │ │ ├── 950-0178-drm-vc4-Fix-wrong-printk-format-in-vc4_bo_stats_debu.patch │ │ │ ├── 950-0179-drm-vc4-Reject-HDMI-modes-with-too-high-of-clocks.patch │ │ │ ├── 950-0180-drm-vc4-Add-support-for-DRM_FORMAT_RGB888-and-DRM_FO.patch │ │ │ ├── 950-0181-drm-vc4-Use-.pixel_order-instead-of-custom-.flip_cbc.patch │ │ │ ├── 950-0182-drm-vc4-Add-support-for-NV21-and-NV61.patch │ │ │ ├── 950-0183-BCM270X-Disable-VEC-unless-vc4-kms-v3d-is-present.patch │ │ │ ├── 950-0184-drm-vc4-Flush-the-caches-before-the-render-jobs-as-w.patch │ │ │ ├── 950-0185-drm-vc4-Add-FB-modifier-support-to-firmwarekms.patch │ │ │ ├── 950-0186-drm-vc4-Add-missing-enable-disable-vblank-handlers-i.patch │ │ │ ├── 950-0187-drm-vc4-Fix-warning-about-vblank-interrupts-before-D.patch │ │ │ ├── 950-0188-drm-vc4-Skip-SET_CURSOR_INFO-when-the-cursor-content.patch │ │ │ ├── 950-0189-drm-vc4-Remove-duplicate-primary-cursor-fields-from-.patch │ │ │ ├── 950-0190-drm-vc4-Don-t-wait-for-vblank-on-fkms-cursor-updates.patch │ │ │ ├── 950-0191-config-Add-SND_USB_HIFACE-m.patch │ │ │ ├── 950-0192-mmc-bcm2835-sdhost-Add-include.patch │ │ │ ├── 950-0193-hid-Reduce-default-mouse-polling-interval-to-60Hz.patch │ │ │ ├── 950-0194-BCM270X_DT-Minor-cosmetic-DT-tidy.patch │ │ │ ├── 950-0195-BCM270X_DT-More-cosmetic-DT-changes.patch │ │ │ ├── 950-0196-config-enable-Audio-Graph-Card-module.patch │ │ │ ├── 950-0197-Add-missing-SND_PISOUND-selects-dependency-to-SND_RA.patch │ │ │ ├── 950-0198-BCM2835-V4L2-Ensure-H264-header-bytes-get-a-sensible.patch │ │ │ ├── 950-0199-BCM2835-V4L2-Correctly-denote-key-frames-in-encoded-.patch │ │ │ ├── 950-0200-bcm2835-camera-Fix-timestamp-calculation-problem-221.patch │ │ │ ├── 950-0201-drm-panel-rpi-touchscreen-propagate-errors-in-rpi_to.patch │ │ │ ├── 950-0202-drm-vc4-Fix-crash-if-we-have-to-unbind-HDMI.patch │ │ │ ├── 950-0203-drm-vc4-Skip-ULPS-latching-when-we-re-in-that-ULPS-s.patch │ │ │ ├── 950-0204-drm-vc4-Move-the-DSI-clock-divider-workaround-closer.patch │ │ │ ├── 950-0205-dwc_otg-Fix-a-regression-when-dequeueing-isochronous.patch │ │ │ ├── 950-0206-overlays-Allow-multiple-instances-of-gpio-ir-tx.patch │ │ │ ├── 950-0207-dwc_otg-add-smp_mb-to-prevent-driver-state-corruptio.patch │ │ │ ├── 950-0208-overlay-Add-missing-pinctrl-reference-to-gpio-ir.patch │ │ │ ├── 950-0209-ASoC-pcm512x-revert-downstream-changes.patch │ │ │ ├── 950-0210-ASoC-allo-boss-dac-fix-S24_LE-format.patch │ │ │ ├── 950-0211-ASoC-allo-piano-dac-plus-fix-S24_LE-format.patch │ │ │ ├── 950-0212-ASoC-allo-piano-dac-fix-S24_LE-format.patch │ │ │ ├── 950-0213-ASoC-dionaudio_loco-v2-fix-S24_LE-format.patch │ │ │ ├── 950-0214-ASoC-hifiberry_dacplus-fix-S24_LE-format.patch │ │ │ ├── 950-0215-ASoC-iqaudio-dac-fix-S24_LE-format.patch │ │ │ ├── 950-0216-ASoC-justboom-dac-fix-S24_LE-format.patch │ │ │ ├── 950-0217-ASoC-raspidac3-fix-S24_LE-format.patch │ │ │ ├── 950-0218-Generic-Rotary-Encoder-overlay-for-multiple-instance.patch │ │ │ ├── 950-0219-Add-support-for-SuperAudioBoard-sound-card-2386.patch │ │ │ ├── 950-0220-Revert-downstream-wm8804-changes.patch │ │ │ ├── 950-0221-BCM270X_DT-Add-brcm-bcm2835-sdhci-as-a-fallback.patch │ │ │ ├── 950-0222-overlays-i2c-gpio-Support-for-multiple-instances.patch │ │ │ ├── 950-0223-i2c-gpio-Also-set-bus-numbers-from-reg-property.patch │ │ │ ├── 950-0224-overlays-i2c-gpio-Explain-bus-numbers-in-README.patch │ │ │ ├── 950-0225-Update-rpi-ft5406-overlay.dts.patch │ │ │ ├── 950-0226-overlays-Add-overlay-for-missing-AUX-interrupt-contr.patch │ │ │ ├── 950-0227-overlays-Add-sc16is752-i2c-overlay.patch │ │ │ ├── 950-0228-bcm2709-enable-usb-gadget-functions.patch │ │ │ ├── 950-0229-ASoC-pcm512x-implement-set_tdm_slot-interface.patch │ │ │ ├── 950-0230-ASoC-allo-boss-dac-transmit-S24_LE-with-64-BCLK-cycl.patch │ │ │ ├── 950-0231-ASoC-hifiberry_dacplus-transmit-S24_LE-with-64-BCLK-.patch │ │ │ ├── 950-0232-Fixing-memset-call-in-pisound.c.patch │ │ │ ├── 950-0233-overlays-Rework-sdio-overlays-to-allow-polling.patch │ │ │ ├── 950-0234-firmware-raspberrypi-Add-a-get_throttled-sysfs-file.patch │ │ │ ├── 950-0235-overlays-Add-overlay-for-PiBell-soundcard.patch │ │ │ ├── 950-0236-Removing-broken-RaspiDac3-support.patch │ │ │ ├── 950-0237-overlays-Add-updated-mmc1-alias-to-sdio-overlays.patch │ │ │ ├── 950-0238-config-Enable-CONFIG_GPIO_MOCKUP-module.patch │ │ │ ├── 950-0239-overlays-Add-upstream-overlay.patch │ │ │ ├── 950-0240-audioinjector-octo-Add-continuous-clock-feature.patch │ │ │ ├── 950-0241-sound-bcm-Fix-memset-dereference-warning.patch │ │ │ ├── 950-0242-staging-vchiq_arm-Remove-unused-variable.patch │ │ │ ├── 950-0243-usb-dwb_otg-Fix-unreachable-switch-statement-warning.patch │ │ │ ├── 950-0244-ARM-dts-Add-model-specific-compatible-strings.patch │ │ │ ├── 950-0245-irqchip-bcm2836-Move-SMP-startup-code-to-arch-arm-v2.patch │ │ │ ├── 950-0246-arm64-enable-thermal-enable-mmc-2425.patch │ │ │ ├── 950-0247-added-capture_clear-option-to-pps-gpio-via-dtoverlay.patch │ │ │ ├── 950-0248-bcm2710-rpi-3-b.dts-Remove-duplicate-memreserve.patch │ │ │ ├── 950-0249-config-Set-CONFIG_USB_LAN78XX-y.patch │ │ │ ├── 950-0250-BCM270X_DT-Add-Pi-3-dts-files.patch │ │ │ ├── 950-0251-lan78xx-Read-initial-EEE-status-from-DT.patch │ │ │ ├── 950-0252-lan78xx-Change-LEDs-to-include-10Mb-activity.patch │ │ │ ├── 950-0253-BCM27XX_DT-Delete-stdout-path-property.patch │ │ │ ├── 950-0254-Fix-for-Pisound-s-MIDI-Input-getting-blocked-for-a-w.patch │ │ │ ├── 950-0255-overlays-use-all-seven-dwc2-gadget-fifos.patch │ │ │ ├── 950-0256-overlays-Update-upstream-overlay-with-new-dwc2.patch │ │ │ ├── 950-0257-lan78xx-Read-LED-states-from-Device-Tree.patch │ │ │ ├── 950-0258-BCM27XX_DT-Set-LED-modes-from-Device-Tree.patch │ │ │ ├── 950-0259-This-commit-adds-support-for-RP3-B-Plus-in-in-arch-a.patch │ │ │ ├── 950-0260-Add-overlay-for-Semtech-SX150X-I2C-GPIO-Expanders.patch │ │ │ ├── 950-0261-usb-dwc_otg-fix-memory-corruption-in-dwc_otg-driver.patch │ │ │ ├── 950-0262-config-Add-NFS_V4_1-support.patch │ │ │ ├── 950-0263-config-Add-IPVLAN-module.patch │ │ │ ├── 950-0264-Add-overlay-for-JEDEC-SPI-NOR-flash.patch │ │ │ ├── 950-0265-net-lan78xx-Allow-for-VLAN-headers-in-timeout.patch │ │ │ ├── 950-0266-config-Add-BT_HCIUART_BCM-y-and-SERIAL_DEV_BUS-m.patch │ │ │ ├── 950-0267-arm64-Add-CONFIG_SERIAL_DEV_BUS-m-to-bcmrpi3_defconf.patch │ │ │ ├── 950-0268-lan78xx-Move-enabling-of-EEE-into-PHY-init-code.patch │ │ │ ├── 950-0269-net-lan78xx-Request-s-w-csum-check-on-VLAN-tagged-pa.patch │ │ │ ├── 950-0270-net-lan78xx-Add-support-for-VLAN-filtering.patch │ │ │ ├── 950-0271-net-lan78xx-Add-support-for-VLAN-tag-stripping.patch │ │ │ ├── 950-0272-net-lan78xx-Reduce-s-w-csum-check-on-VLANs.patch │ │ │ ├── 950-0273-config-Enable-the-DS1621-I2C-temperature-sensor.patch │ │ │ ├── 950-0274-overlays-Add-ds1621-to-the-i2c-sensor-overlay.patch │ │ │ ├── 950-0275-overlays-Fix-typo-in-README.patch │ │ │ ├── 950-0276-configs-Add-CONFIG_BCM2835_DEVGPIOMEM-for-aarch64.patch │ │ │ ├── 950-0277-overlays-Add-combine-option-to-i2c-overlays.patch │ │ │ ├── 950-0278-Prevent-voltage-low-warnings-from-filling-log.patch │ │ │ ├── 950-0279-BCM270X_DT-Add-sdio_overclock-parameter.patch │ │ │ ├── 950-0280-gpiolib-Don-t-prevent-IRQ-usage-of-output-GPIOs.patch │ │ │ ├── 950-0281-Drivers-for-Allo-Katana-DAC.patch │ │ │ ├── 950-0282-Drivers-for-Allo-Katana-DAC.patch │ │ │ ├── 950-0283-Driver-for-Allo-Katana-DAC.patch │ │ │ ├── 950-0284-Driver-for-Allo-Katana-DAC.patch │ │ │ ├── 950-0285-Reduce-log-spam-when-mailbox-call-not-implemented.patch │ │ │ ├── 950-0286-config-Add-I2C_TINY_USB-m.patch │ │ │ ├── 950-0287-ARM-bcm_defconfig-Re-enable-QCA7000-SPI-driver.patch │ │ │ ├── 950-0288-config-Add-CONFIG_BATTERY_GAUGE_LTC2941-m.patch │ │ │ ├── 950-0289-overlays-Add-ltc294x-battery-gauge.patch │ │ │ ├── 950-0290-overlays-Add-support-for-Balena-Fin-board.patch │ │ │ ├── 950-0291-ARM-dts-bcm283x-Fix-DTC-warnings-about-missing-phy-c.patch │ │ │ ├── 950-0292-net-mdiobus-add-unlocked-accessors.patch │ │ │ ├── 950-0293-net-phy-use-unlocked-accessors-for-indirect-MMD-acce.patch │ │ │ ├── 950-0294-net-phy-add-unlocked-accessors.patch │ │ │ ├── 950-0295-net-phy-add-paged-phy-register-accessors.patch │ │ │ ├── 950-0296-lan78xx-PHY-DSP-registers-initialization-to-address-.patch │ │ │ ├── 950-0297-Cleanup-of-bcm2708_fb-file-to-kernel-coding-standard.patch │ │ │ ├── 950-0298-Add-ability-to-export-gpio-used-by-gpio-poweroff.patch │ │ │ ├── 950-0299-Added-export-feature-to-gpio-poweroff-documentation.patch │ │ │ ├── 950-0300-Updated-the-gpio-poweroff-overlay-and-README-entry.patch │ │ │ ├── 950-0301-config-Add-CONFIG_DM_CACHE.patch │ │ │ ├── 950-0302-firmware-raspberrypi-Add-two-new-messages.patch │ │ │ ├── 950-0303-firmware-raspberrypi-Notify-firmware-of-a-reboot.patch │ │ │ ├── 950-0304-config-Add-CONFIG_MTD_BLOCK2MTD-m.patch │ │ │ ├── 950-0305-config-Add-LZ4-compression-support-to-arm64-kernel-2.patch │ │ │ ├── 950-0306-config-Add-KEYBOARD_MATRIX-m.patch │ │ │ ├── 950-0307-Enable-AES-AES-bit-slice-and-AES-NEON-engines-on-arm.patch │ │ │ ├── 950-0308-overlays-Add-sdtweak-features-for-network-booting.patch │ │ │ ├── 950-0309-Enable-bbr-module-for-arm64.patch │ │ │ ├── 950-0310-Added-mute-stream-func.patch │ │ │ ├── 950-0311-sc16is7xx-Fix-for-Unexpected-interrupt-8.patch │ │ │ ├── 950-0312-config-Add-CONFIG_SPI_GPIO.patch │ │ │ ├── 950-0313-config-Add-CONFIG_NET_IPVTI-m.patch │ │ │ ├── 950-0314-net-lan78xx-Disable-TCP-Segmentation-Offload-TSO.patch │ │ │ ├── 950-0315-usb-gadget-ethernet-Re-enable-Jumbo-frames.patch │ │ │ ├── 950-0316-overlays-Add-gpio-no-irq-overlay.patch │ │ │ ├── 950-0317-ifb-fix-packets-checksum.patch │ │ │ ├── 950-0318-netfilter-ip6t_MASQUERADE-add-dependency-on-conntrac.patch │ │ │ ├── 950-0319-Allo-Katana-DAC-Updated-default-values.patch │ │ │ ├── 950-0320-ARM-bcm283x-Add-missing-interrupt-for-RNG-block.patch │ │ │ ├── 950-0321-ov5647-Add-set_fmt-and-get_fmt-calls.patch │ │ │ ├── 950-0322-ov5647-dt-add-device-tree-for-PWDN-control.patch │ │ │ ├── 950-0323-ov5647-Add-support-for-PWDN-GPIO.patch │ │ │ ├── 950-0324-ov5647-Add-support-for-non-continuous-clock-mode.patch │ │ │ ├── 950-0325-media-tc358743-Increase-FIFO-level-to-374.patch │ │ │ ├── 950-0326-tc358743-fix-connected-active-CSI-2-lane-reporting.patch │ │ │ ├── 950-0327-tc358743-Add-support-for-972Mbit-s-link-freq.patch │ │ │ ├── 950-0328-media-tc358743-Check-I2C-succeeded-during-probe.patch │ │ │ ├── 950-0329-adv7180-Default-to-the-first-valid-input.patch │ │ │ ├── 950-0330-videodev2-Add-helper-defines-for-printing-FOURCCs.patch │ │ │ ├── 950-0331-dt-bindings-Document-BCM283x-CSI2-CCP2-receiver.patch │ │ │ ├── 950-0332-bcm2835-unicam-Driver-for-CCP2-CSI2-camera-interface.patch │ │ │ ├── 950-0333-bcm2835-unicam-Revert-changes-for-notifier-fn-ptrs.patch │ │ │ ├── 950-0334-MAINTAINERS-Add-entry-for-BCM2835-camera-driver.patch │ │ │ ├── 950-0335-defconfig-Enable-Unicam-driver-and-various-sources-o.patch │ │ │ ├── 950-0336-media-adv7180-Nasty-hack-to-allow-input-selection.patch │ │ │ ├── 950-0337-media-adv7180-Add-YPrPb-support-for-ADV7282M.patch │ │ │ ├── 950-0338-arm-dts-bcm2710-rpi-3-b-plus-fix-hpd-gpio-pin.patch │ │ │ ├── 950-0339-Add-device-tree-overlay-for-HD44780.patch │ │ │ ├── 950-0340-Add-hd44780-module-to-defconfig.patch │ │ │ ├── 950-0341-BCM283x-DT-Add-CSI-nodes-to-the-device-tree.patch │ │ │ ├── 950-0342-BCM270X_DT-Add-CSI-defines-for-all-the-downstream-Pi.patch │ │ │ ├── 950-0343-arm-dt-Add-DT-overlays-for-ADV7282M-OV5647-and-TC358.patch │ │ │ ├── 950-0344-drm-vc4-Set-premultiplied-for-alpha-formats.patch │ │ │ ├── 950-0345-drm-vc4-Check-if-plane-requires-background-fill.patch │ │ │ ├── 950-0346-drm-vc4-Move-plane-state-to-header.patch │ │ │ ├── 950-0347-drm-vc4-Enable-background-color-fill-when-necessary.patch │ │ │ ├── 950-0348-overlays-Add-addr-parameter-to-i2c-rtc-gpio.patch │ │ │ ├── 950-0349-drm-vc4-Fix-oops-dereferencing-DPI-s-connector-since.patch │ │ │ ├── 950-0350-ARM-bcm2835-Add-the-DPI-hardware-to-the-device-tree.patch │ │ │ ├── 950-0351-ARM-BCM270X-Add-the-18-bit-DPI-pinmux-to-the-RPI-DTs.patch │ │ │ ├── 950-0352-overlays-Add-an-overlay-for-the-Adafruit-Kippah-with.patch │ │ │ ├── 950-0353-overlays-Remove-stale-notes-about-vc4-s-CMA-alignmen.patch │ │ │ ├── 950-0354-drm-vc4-Advertise-supported-modifiers-for-planes.patch │ │ │ ├── 950-0355-drm-vc4-Add-some-missing-HVS-register-definitions.patch │ │ │ ├── 950-0356-drm-vc4-Add-missing-formats-to-vc4_format_mod_suppor.patch │ │ │ ├── 950-0357-drm-vc4-Add-support-for-SAND-modifier.patch │ │ │ ├── 950-0358-spi-Make-GPIO-CSs-honour-the-SPI_NO_CS-flag.patch │ │ │ ├── 950-0359-net-lan78xx-fix-rx-handling-before-first-packet-is-s.patch │ │ │ ├── 950-0360-lan78xx-Fix-link-status-notifications.patch │ │ │ ├── 950-0361-overlays-Fix-vc4-kms-kippah-7inch.patch │ │ │ ├── 950-0362-dwc-otg-FIQ-Fix-bad-mode-in-data-abort-handler.patch │ │ │ ├── 950-0363-End-log-messages-in-one-newline-not-two.patch │ │ │ ├── 950-0364-Fix-one-more-log-message-ending-in-two-newlines.patch │ │ │ ├── 950-0365-Add-rpi-poe-fan-driver.patch │ │ │ ├── 950-0366-devicetree-add-RPi-CM3-dts-to-arm64-mimic-the-RPi-3B.patch │ │ │ ├── 950-0367-staging-bcm2835-camera-Skip-ISP-pass-to-eliminate-pa.patch │ │ │ ├── 950-0368-staging-bcm2835-camera-Allocate-context-once-per-buf.patch │ │ │ ├── 950-0369-staging-bcm2835-camera-Remove-bulk_mutex-as-it-is-no.patch │ │ │ ├── 950-0370-staging-bcm2835-camera-Match-MMAL-buffer-count-to-V4.patch │ │ │ ├── 950-0371-staging-bcm2835-camera-Remove-V4L2-MMAL-buffer-remap.patch │ │ │ ├── 950-0372-staging-bcm2835-camera-Add-multiple-include-protecti.patch │ │ │ ├── 950-0373-staging-bcm2835-camera-Move-struct-vchiq_mmal_rect.patch │ │ │ ├── 950-0374-staging-bcm2835-camera-Replace-BUG_ON-with-return-er.patch │ │ │ ├── 950-0375-staging-bcm2835-camera-Fix-comment-typos.patch │ │ │ ├── 950-0376-staging-bcm2835-camera-Fix-indentation-of-tables.patch │ │ │ ├── 950-0377-staging-bcm2835-camera-Fix-warnings-about-string-ops.patch │ │ │ ├── 950-0378-staging-bcm2835-Remove-dead-code-related-to-framerat.patch │ │ │ ├── 950-0379-staging-bcm2835-Fix-mmal_port_parameter_get-signed-u.patch │ │ │ ├── 950-0380-staging-bcm2835-Use-BIT_ULL-macro.patch │ │ │ ├── 950-0381-staging-vc04_services-no-need-to-check-debugfs-retur.patch │ │ │ ├── 950-0382-staging-vc04_services-remove-odd-vchiq_debugfs_top-w.patch │ │ │ ├── 950-0383-staging-vc04_services-move-client-dbg-directory-into.patch │ │ │ ├── 950-0384-staging-vc04_services-remove-struct-vchiq_debugfs_in.patch │ │ │ ├── 950-0385-staging-vc04_services-vchiq_debugfs_log_entry-can-be.patch │ │ │ ├── 950-0386-staging-vc04_services-no-need-to-save-the-log-debufs.patch │ │ │ ├── 950-0387-staging-vc04_services-Join-multiline-dereferences.patch │ │ │ ├── 950-0388-Revert-bcm2835-camera-Fix-timestamp-calculation-prob.patch │ │ │ ├── 950-0389-staging-bcm2835-camera-use-ktime_t-for-timestamps.patch │ │ │ ├── 950-0390-staging-vc04_services-Unsplit-user-visible-strings.patch │ │ │ ├── 950-0391-staging-vc04_services-Use-__func__.patch │ │ │ ├── 950-0392-staging-bcm2835-camera-Do-not-bulk-receive-from-serv.patch │ │ │ ├── 950-0393-staging-bcm2835-camera-Return-early-on-errors.patch │ │ │ ├── 950-0394-staging-bcm2835-camera-Remove-dead-email-addresses.patch │ │ │ ├── 950-0395-staging-bcm2835-camera-Fix-comment-style-violations.patch │ │ │ ├── 950-0396-staging-bcm2835-camera-Fix-spacing-around-operators.patch │ │ │ ├── 950-0397-staging-bcm2835-camera-Reduce-length-of-enum-names.patch │ │ │ ├── 950-0398-staging-bcm2835-camera-Fix-multiple-line-dereference.patch │ │ │ ├── 950-0399-staging-bcm2835-camera-Fix-brace-style-issues.patch │ │ │ ├── 950-0400-staging-bcm2835-camera-Fix-missing-lines-between-ite.patch │ │ │ ├── 950-0401-staging-bcm2835-camera-Fix-logical-continuation-spli.patch │ │ │ ├── 950-0402-staging-bcm2835-camera-Fix-open-parenthesis-alignmen.patch │ │ │ ├── 950-0403-staging-bcm2835-camera-Fix-typo.patch │ │ │ ├── 950-0404-staging-bcm2835_camera-Ensure-all-buffers-are-return.patch │ │ │ ├── 950-0405-staging-mmal-vchiq-Remove-check-of-the-number-of-buf.patch │ │ │ ├── 950-0406-staging-bcm2835-camera-Handle-empty-EOS-buffers-whil.patch │ │ │ ├── 950-0407-staging-bcm2835-camera-Set-sequence-number-correctly.patch │ │ │ ├── 950-0408-staging-bcm2835-camera-Ensure-timestamps-never-go-ba.patch │ │ │ ├── 950-0409-dtoverlays-Add-support-for-ADV7280-M-ADV7281-M-and-A.patch │ │ │ ├── 950-0410-bcm2835-interpolate-audio-delay.patch │ │ │ ├── 950-0411-Add-support-for-audioinjector.net-ultra-soundcard.-2.patch │ │ │ ├── 950-0412-PoE-HAT-driver-cleanup.patch │ │ │ ├── 950-0413-ASoC-cs4265-Add-a-S-PDIF-enable-switch.patch │ │ │ ├── 950-0414-ASoC-cs4265-Add-native-32bit-I2S-transport.patch │ │ │ ├── 950-0416-configs-Add-SENSOR_GPIO_FAN-m.patch │ │ │ ├── 950-0417-BCM270X_DT-Add-gpio-fan-overlay.patch │ │ │ ├── 950-0418-dtoverlays-Correct-DT-handling-camera-GPIOs.patch │ │ │ ├── 950-0419-media-ov5647-Use-gpiod_set_value_cansleep.patch │ │ │ ├── 950-0420-dwc_otg-fiq_fsm-fix-incorrect-DMA-register-offset-ca.patch │ │ │ ├── 950-0422-configs-Add-CONFIG_HID_BIGBEN_FF-m.patch │ │ │ ├── 950-0423-ASoC-cs4265-Add-a-MIC-pre.-route-2696.patch │ │ │ ├── 950-0424-vchiq_2835_arm-Implement-a-DMA-pool-for-small-bulk-t.patch │ │ │ ├── 950-0425-Update-gpio-fan-overlay.dts-2711.patch │ │ │ ├── 950-0426-drivers-thermal-step_wise-add-support-for-hysteresis.patch │ │ │ ├── 950-0427-drivers-thermal-step_wise-avoid-throttling-at-hyster.patch │ │ │ ├── 950-0428-hwmon-adjust-rpi-poe-fan-overlay-trip-points.patch │ │ │ ├── 950-0429-overlays-add-overrides-for-PoE-HAT-fan-control.patch │ │ │ ├── 950-0430-overlays-Add-gpio-no-bank0-irq-overlay.patch │ │ │ ├── 950-0431-Add-hy28b-2017-model-device-tree-overlay-2721.patch │ │ │ ├── 950-0432-config-Add-CONFIG_USBIP_VUDC.patch │ │ │ ├── 950-0433-mmc-bcm2835-sdhost-Recover-from-MMC_SEND_EXT_CSD.patch │ │ │ ├── 950-0435-overlays-pi3-disable-bt-Clear-out-bt_pins-node.patch │ │ │ ├── 950-0436-Revert-rtc-pcf8523-properly-handle-oscillator-stop-b.patch │ │ │ ├── 950-0437-Update-issue-templates-2736.patch │ │ │ ├── 950-0438-sc16is7xx-Don-t-spin-if-no-data-received.patch │ │ │ ├── 950-0439-overlays-uart0-return-GPIOs-14-and-15-to-inputs.patch │ │ │ ├── 950-0440-Update-README-2750.patch │ │ │ ├── 950-0441-overlays-Remove-superfluous-address-size-cells.patch │ │ │ ├── 950-0442-vcsm-Fix-an-NULL-dereference-in-the-import_dmabuf-er.patch │ │ │ ├── 950-0443-net-lan78xx-Support-auto-downshift-to-100Mb-s.patch │ │ │ ├── 950-0444-ARM-dts-bcm283x-Set-downshift-after-for-Pi-3B.patch │ │ │ ├── 950-0445-BCM270X_DT-Add-new-Ethernet-DT-parameters.patch │ │ │ ├── 950-0446-staging-bcm2835-camera-Fix-stride-on-RGB3-BGR3-forma.patch │ │ │ ├── 950-0447-tpm-Make-SECURITYFS-a-weak-dependency.patch │ │ │ ├── 950-0448-Enable-TPM-TIS-SPI-support-for-TPM1.2-and-TPM2.0-chi.patch │ │ │ ├── 950-0449-Add-overlay-for-SLB9760-Iridium-LetsTrust-TPM.patch │ │ │ ├── 950-0450-ASoC-add-driver-for-3Dlab-Nano-soundcard-2758.patch │ │ │ ├── 950-0451-dtoverlays-fe-pi-audio-fix-sgtl5000-compatible-strin.patch │ │ │ ├── 950-0452-bcm2835_smi-re-add-dereference-to-fix-DMA-transfers.patch │ │ │ ├── 950-0454-lan78xx-Debounce-link-events-to-minimize-poll-storm.patch │ │ │ ├── 960-add-rasbperrypi-compatible.patch │ │ │ └── 961-lan78xx-enable-LED.patch │ ├── brcm47xx │ │ ├── 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.14 │ │ ├── config-4.19 │ │ ├── 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 │ │ │ └── lzma-loader │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ ├── LzmaDecode.c │ │ │ │ ├── LzmaDecode.h │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── decompress.c │ │ │ │ ├── decompress.lds.in │ │ │ │ ├── head.S │ │ │ │ └── loader.lds.in │ │ ├── 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.14 │ │ │ ├── 031-MIPS-BCM47XX-Add-Luxul-XAP1500-XWR1750-WiFi-LEDs.patch │ │ │ ├── 032-MIPS-BCM47XX-Add-support-for-Netgear-WNR1000-V3.patch │ │ │ ├── 033-firmware-bcm47xx_nvram-support-small-0x6000-B-NVRAM-.patch │ │ │ ├── 034-v4.20-MIPS-BCM47XX-Enable-USB-power-on-Netgear-WNDR3400v3.patch │ │ │ ├── 035-v5.1-mips-bcm47xx-Enable-USB-power-on-Netgear-WNDR3400v2.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 │ │ │ ├── 901-Revert-bcma-switch-GPIO-portions-to-use-GPIOLIB_IRQC.patch │ │ │ ├── 940-bcm47xx-yenta.patch │ │ │ ├── 976-ssb_increase_pci_delay.patch │ │ │ └── 999-wl_exports.patch │ │ └── patches-4.19 │ │ │ ├── 030-v4.20-MIPS-BCM47XX-Enable-USB-power-on-Netgear-WNDR3400v3.patch │ │ │ ├── 031-v5.1-mips-bcm47xx-Enable-USB-power-on-Netgear-WNDR3400v2.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 │ ├── brcm63xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ │ └── 10-rt2x00-eeprom │ │ │ │ └── uci-defaults │ │ │ │ │ └── 09_fix_crc │ │ │ └── lib │ │ │ │ ├── brcm63xx.sh │ │ │ │ ├── preinit │ │ │ │ └── 01_do_brcm63xx.sh │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.14 │ │ ├── config-4.9 │ │ ├── dts │ │ │ ├── a226g.dts │ │ │ ├── a226m-fwb.dts │ │ │ ├── a226m.dts │ │ │ ├── a4001n.dts │ │ │ ├── a4001n1.dts │ │ │ ├── ad1018-nor.dts │ │ │ ├── agpf-s0.dts │ │ │ ├── ar-5315u.dts │ │ │ ├── ar-5381u.dts │ │ │ ├── ar-5387un.dts │ │ │ ├── ar1004g.dts │ │ │ ├── av4202n.dts │ │ │ ├── bcm3368.dtsi │ │ │ ├── bcm6318.dtsi │ │ │ ├── bcm63268.dtsi │ │ │ ├── bcm6328.dtsi │ │ │ ├── bcm6338.dtsi │ │ │ ├── bcm6345.dtsi │ │ │ ├── bcm6348.dtsi │ │ │ ├── bcm6358.dtsi │ │ │ ├── bcm6362.dtsi │ │ │ ├── bcm6368.dtsi │ │ │ ├── bcm96318ref.dts │ │ │ ├── bcm96318ref_p300.dts │ │ │ ├── bcm963268bu_p300.dts │ │ │ ├── bcm963269bhr.dts │ │ │ ├── bcm963281TAN.dts │ │ │ ├── bcm96328avng.dts │ │ │ ├── bcm96338GW.dts │ │ │ ├── bcm96338W.dts │ │ │ ├── bcm96345GW2.dts │ │ │ ├── bcm96348GW-10.dts │ │ │ ├── bcm96348GW-11.dts │ │ │ ├── bcm96348GW.dts │ │ │ ├── bcm96348R.dts │ │ │ ├── bcm96358VW.dts │ │ │ ├── bcm96358VW2.dts │ │ │ ├── bcm96368MVNgr.dts │ │ │ ├── bcm96368MVWG.dts │ │ │ ├── cpva502plus.dts │ │ │ ├── cpva642.dts │ │ │ ├── ct-5365.dts │ │ │ ├── ct-6373.dts │ │ │ ├── ct536plus.dts │ │ │ ├── cvg834g.dts │ │ │ ├── dg834g_v4.dts │ │ │ ├── dg834gtpn.dts │ │ │ ├── dgnd3700v1.dts │ │ │ ├── dsl-2640b-b.dts │ │ │ ├── dsl-2640u.dts │ │ │ ├── dsl-2650u.dts │ │ │ ├── dsl-274xb-c.dts │ │ │ ├── dsl-274xb-f.dts │ │ │ ├── dsl-275xb-d.dts │ │ │ ├── dv-201amr.dts │ │ │ ├── dva-g3810bn_tl.dts │ │ │ ├── evg2000.dts │ │ │ ├── f5d7633.dts │ │ │ ├── fast2404.dts │ │ │ ├── fast2504n.dts │ │ │ ├── fast2604.dts │ │ │ ├── fast2704n.dts │ │ │ ├── fast2704v2.dts │ │ │ ├── gw6000.dts │ │ │ ├── gw6200.dts │ │ │ ├── hg520v.dts │ │ │ ├── hg553.dts │ │ │ ├── hg556a-a.dts │ │ │ ├── hg556a-b.dts │ │ │ ├── hg556a-c.dts │ │ │ ├── hg622.dts │ │ │ ├── hg655b.dts │ │ │ ├── homehub2a.dts │ │ │ ├── livebox-blue-5g.dts │ │ │ ├── magic.dts │ │ │ ├── nb4-fxc-r1.dts │ │ │ ├── nb4-ser-r0.dts │ │ │ ├── nb6-ser-r0.dts │ │ │ ├── p870hw-51a-v2.dts │ │ │ ├── r1000h.dts │ │ │ ├── r5010unv2.dts │ │ │ ├── rg100a.dts │ │ │ ├── rta1025w.dts │ │ │ ├── rta1320.dts │ │ │ ├── rta770bw.dts │ │ │ ├── rta770w.dts │ │ │ ├── spw303v.dts │ │ │ ├── spw500v.dts │ │ │ ├── sr102.dts │ │ │ ├── td-w8900gb.dts │ │ │ ├── usr9108.dts │ │ │ ├── v2110.dts │ │ │ ├── v2500v-bb.dts │ │ │ ├── vg50.dts │ │ │ ├── vh4032n.dts │ │ │ ├── vr-3025u.dts │ │ │ ├── vr-3025un.dts │ │ │ ├── vr-3026e.dts │ │ │ └── wap-5813n.dts │ │ ├── generic │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── README.images-bcm63xx │ │ │ ├── bcm63xx.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-4.14 │ │ │ ├── 001-4.15-01-MIPS-BCM63XX-add-clkdev-lookup-support.patch │ │ │ ├── 001-4.15-02-MIPS-BCM63XX-provide-periph-clock-as-refclk-for-uart.patch │ │ │ ├── 001-4.15-03-tty-bcm63xx_uart-use-refclk-for-the-expected-clock-n.patch │ │ │ ├── 001-4.15-04-tty-bcm63xx_uart-allow-naming-clock-in-device-tree.patch │ │ │ ├── 001-4.15-05-MIPS-BCM63XX-move-the-HSSPI-PLL-HZ-into-its-own-cloc.patch │ │ │ ├── 001-4.15-06-MIPS-BCM63XX-provide-enet-clocks-as-enet-to-the-ethe.patch │ │ │ ├── 001-4.15-07-MIPS-BCM63XX-split-out-swpkt_sar-usb-clocks.patch │ │ │ ├── 001-4.15-10-bcm63xx_enet-do-not-rely-on-probe-order.patch │ │ │ ├── 001-4.15-11-bcm63xx_enet-use-managed-functions-for-clock-ioremap.patch │ │ │ ├── 001-4.15-12-bcm63xx_enet-drop-unneeded-NULL-phy_clk-check.patch │ │ │ ├── 001-4.15-13-bcm63xx_enet-remove-unneeded-include.patch │ │ │ ├── 001-4.16-01-bcm63xx_enet-just-use-enet-as-the-clock-name.patch │ │ │ ├── 001-4.16-02-bcm63xx_enet-use-platform-data-for-dma-channel-numbe.patch │ │ │ ├── 001-4.16-03-bcm63xx_enet-remove-pointless-mac_id-check.patch │ │ │ ├── 001-4.16-04-bcm63xx_enet-use-platform-device-id-directly-for-mii.patch │ │ │ ├── 001-4.21-01-BCM63XX-fix-switch-core-reset-on-BCM6368.patch │ │ │ ├── 001-4.22-01-MIPS-BCM63XX-drop-unused-and-broken-DSP-platform-dev.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 │ │ │ ├── 121-mtd-bcm63xxpart-move-imagetag-parsing-to-its-own-par.patch │ │ │ ├── 122-mtd-bcm63xxpart-add-of_match_table.patch │ │ │ ├── 123-mtd-parser_bcm63xx_imagetag-add-of_match_table-suppo.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 │ │ │ ├── 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 │ │ │ ├── 309-cfe_version_mod.patch │ │ │ ├── 310-cfe_simplify_detection.patch │ │ │ ├── 311-bcm63xxpart_use_cfedetection.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 │ │ │ ├── 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 │ │ │ ├── 369-MIPS-BCM63XX-populate-the-compatible-to-board_info-l.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 │ │ │ ├── 499-allow_better_context_for_board_patches.patch │ │ │ ├── 500-board-D4PW.patch │ │ │ ├── 501-board-NB4.patch │ │ │ ├── 502-board-96338W2_E7T.patch │ │ │ ├── 503-board-CPVA642.patch │ │ │ ├── 504-board_dsl_274xb_rev_c.patch │ │ │ ├── 505-board_spw500v.patch │ │ │ ├── 506-board_gw6200_gw6000.patch │ │ │ ├── 507-board-MAGIC.patch │ │ │ ├── 508-board_hw553.patch │ │ │ ├── 509-board_rta1320_16m.patch │ │ │ ├── 510-board_spw303v.patch │ │ │ ├── 511-board_V2500V.patch │ │ │ ├── 512-board_BTV2110.patch │ │ │ ├── 513-MIPS-BCM63XX-add-inventel-Livebox-support.patch │ │ │ ├── 514-board_ct536_ct5621.patch │ │ │ ├── 515-board_DWV-S0_fixes.patch │ │ │ ├── 516-board_96348A-122.patch │ │ │ ├── 519_board_CPVA502plus.patch │ │ │ ├── 520-bcm63xx-add-support-for-96368MVWG-board.patch │ │ │ ├── 521-bcm63xx-add-support-for-96368MVNgr-board.patch │ │ │ ├── 522-MIPS-BCM63XX-add-96328avng-reference-board.patch │ │ │ ├── 523-MIPS-BCM63XX-add-963281TAN-reference-board.patch │ │ │ ├── 524-board_dsl_274xb_rev_f.patch │ │ │ ├── 525-board_96348w3.patch │ │ │ ├── 526-board_CT6373-1.patch │ │ │ ├── 527-board_dva-g3810bn-tl-1.patch │ │ │ ├── 528-board_nb6.patch │ │ │ ├── 529-board_fast2604.patch │ │ │ ├── 530-board_A4001N1.patch │ │ │ ├── 531-board_AR-5387un.patch │ │ │ ├── 532-board_AR-5381u.patch │ │ │ ├── 533-board_rta770bw.patch │ │ │ ├── 534-board_hw556.patch │ │ │ ├── 535-board_rta770w.patch │ │ │ ├── 536-board_fast2704.patch │ │ │ ├── 537-board_fast2504n.patch │ │ │ ├── 555-board_96318ref.patch │ │ │ ├── 556-board_96318ref_p300.patch │ │ │ ├── 557-board_bcm963269bhr.patch │ │ │ ├── 558-board_AR1004G.patch │ │ │ ├── 559-board_vw6339gu.patch │ │ │ ├── 560-board_963268gu_p300.patch │ │ │ ├── 561-board_WAP-5813n.patch │ │ │ ├── 562-board_VR-3025u.patch │ │ │ ├── 563-board_VR-3025un.patch │ │ │ ├── 564-board_P870HW-51a_v2.patch │ │ │ ├── 565-board_hw520.patch │ │ │ ├── 566-board_A4001N.patch │ │ │ ├── 567-board_dsl-2751b_e1.patch │ │ │ ├── 568-board_DGND3700v1_3800B.patch │ │ │ ├── 569-board_homehub2a.patch │ │ │ ├── 570-board_HG655b.patch │ │ │ ├── 571-board_fast2704n.patch │ │ │ ├── 572-board_VR-3026e.patch │ │ │ ├── 573-board_R5010UNv2.patch │ │ │ ├── 574-board_HG622.patch │ │ │ ├── 575-board_EVG2000.patch │ │ │ ├── 576-board_AV4202N.patch │ │ │ ├── 577-board_VH4032N.patch │ │ │ ├── 578-board_R1000H.patch │ │ │ ├── 579-board_AR-5315u.patch │ │ │ ├── 580-board_AD1018.patch │ │ │ ├── 598-board_sr102.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 │ │ │ └── 804-bcm63xx_enet_63268_rgmii_ports.patch │ │ ├── patches-4.9 │ │ │ ├── 001-4.12-01-spi-bcm63xx-make-spi-subsystem-aware-of-message-size.patch │ │ │ ├── 001-4.12-02-spi-bcm63xx-document-device-tree-bindings.patch │ │ │ ├── 001-4.12-03-spi-bcm63xx-add-support-for-probing-through-devicetr.patch │ │ │ ├── 001-4.12-04-spi-bcm63xx-hsspi-allow-providing-clock-rate-through.patch │ │ │ ├── 001-4.12-05-spi-bcm63xx-hsspi-document-device-tree-bindings.patch │ │ │ ├── 001-4.12-06-spi-bcm63xx-hsspi-add-support-for-probing-through-de.patch │ │ │ ├── 001-4.12-07-mdio_bus-Issue-GPIO-RESET-to-PHYs.patch │ │ │ ├── 001-4.12-08-net-phy-Call-bus-reset-after-releasing-PHYs-from-res.patch │ │ │ ├── 001-4.13-01-leds-bcm6328-fix-signal-source-assignment-for-high-l.patch │ │ │ ├── 001-4.15-01-MIPS-BCM63XX-add-clkdev-lookup-support.patch │ │ │ ├── 001-4.15-02-MIPS-BCM63XX-provide-periph-clock-as-refclk-for-uart.patch │ │ │ ├── 001-4.15-03-tty-bcm63xx_uart-use-refclk-for-the-expected-clock-n.patch │ │ │ ├── 001-4.15-04-tty-bcm63xx_uart-allow-naming-clock-in-device-tree.patch │ │ │ ├── 001-4.15-05-MIPS-BCM63XX-move-the-HSSPI-PLL-HZ-into-its-own-cloc.patch │ │ │ ├── 001-4.15-06-MIPS-BCM63XX-provide-enet-clocks-as-enet-to-the-ethe.patch │ │ │ ├── 001-4.15-07-MIPS-BCM63XX-split-out-swpkt_sar-usb-clocks.patch │ │ │ ├── 001-4.15-10-bcm63xx_enet-do-not-rely-on-probe-order.patch │ │ │ ├── 001-4.15-11-bcm63xx_enet-use-managed-functions-for-clock-ioremap.patch │ │ │ ├── 001-4.15-12-bcm63xx_enet-drop-unneeded-NULL-phy_clk-check.patch │ │ │ ├── 001-4.15-13-bcm63xx_enet-remove-unneeded-include.patch │ │ │ ├── 001-4.16-01-bcm63xx_enet-just-use-enet-as-the-clock-name.patch │ │ │ ├── 001-4.16-02-bcm63xx_enet-use-platform-data-for-dma-channel-numbe.patch │ │ │ ├── 001-4.16-03-bcm63xx_enet-remove-pointless-mac_id-check.patch │ │ │ ├── 001-4.16-04-bcm63xx_enet-use-platform-device-id-directly-for-mii.patch │ │ │ ├── 001-4.21-01-BCM63XX-fix-switch-core-reset-on-BCM6368.patch │ │ │ ├── 001-4.22-01-MIPS-BCM63XX-drop-unused-and-broken-DSP-platform-dev.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 │ │ │ ├── 111-MIPS-BCM63XX-allow-NULL-clock-for-clk_get_rate.patch │ │ │ ├── 121-mtd-bcm63xxpart-move-imagetag-parsing-to-its-own-par.patch │ │ │ ├── 122-mtd-bcm63xxpart-add-of_match_table.patch │ │ │ ├── 123-mtd-parser_bcm63xx_imagetag-add-of_match_table-suppo.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 │ │ │ ├── 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 │ │ │ ├── 309-cfe_version_mod.patch │ │ │ ├── 310-cfe_simplify_detection.patch │ │ │ ├── 311-bcm63xxpart_use_cfedetection.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 │ │ │ ├── 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 │ │ │ ├── 369-MIPS-BCM63XX-populate-the-compatible-to-board_info-l.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 │ │ │ ├── 499-allow_better_context_for_board_patches.patch │ │ │ ├── 500-board-D4PW.patch │ │ │ ├── 501-board-NB4.patch │ │ │ ├── 502-board-96338W2_E7T.patch │ │ │ ├── 503-board-CPVA642.patch │ │ │ ├── 504-board_dsl_274xb_rev_c.patch │ │ │ ├── 505-board_spw500v.patch │ │ │ ├── 506-board_gw6200_gw6000.patch │ │ │ ├── 507-board-MAGIC.patch │ │ │ ├── 508-board_hw553.patch │ │ │ ├── 509-board_rta1320_16m.patch │ │ │ ├── 510-board_spw303v.patch │ │ │ ├── 511-board_V2500V.patch │ │ │ ├── 512-board_BTV2110.patch │ │ │ ├── 513-MIPS-BCM63XX-add-inventel-Livebox-support.patch │ │ │ ├── 514-board_ct536_ct5621.patch │ │ │ ├── 515-board_DWV-S0_fixes.patch │ │ │ ├── 516-board_96348A-122.patch │ │ │ ├── 519_board_CPVA502plus.patch │ │ │ ├── 520-bcm63xx-add-support-for-96368MVWG-board.patch │ │ │ ├── 521-bcm63xx-add-support-for-96368MVNgr-board.patch │ │ │ ├── 522-MIPS-BCM63XX-add-96328avng-reference-board.patch │ │ │ ├── 523-MIPS-BCM63XX-add-963281TAN-reference-board.patch │ │ │ ├── 524-board_dsl_274xb_rev_f.patch │ │ │ ├── 525-board_96348w3.patch │ │ │ ├── 526-board_CT6373-1.patch │ │ │ ├── 527-board_dva-g3810bn-tl-1.patch │ │ │ ├── 528-board_nb6.patch │ │ │ ├── 529-board_fast2604.patch │ │ │ ├── 530-board_A4001N1.patch │ │ │ ├── 531-board_AR-5387un.patch │ │ │ ├── 532-board_AR-5381u.patch │ │ │ ├── 533-board_rta770bw.patch │ │ │ ├── 534-board_hw556.patch │ │ │ ├── 535-board_rta770w.patch │ │ │ ├── 536-board_fast2704.patch │ │ │ ├── 537-board_fast2504n.patch │ │ │ ├── 555-board_96318ref.patch │ │ │ ├── 556-board_96318ref_p300.patch │ │ │ ├── 557-board_bcm963269bhr.patch │ │ │ ├── 558-board_AR1004G.patch │ │ │ ├── 559-board_vw6339gu.patch │ │ │ ├── 560-board_963268gu_p300.patch │ │ │ ├── 561-board_WAP-5813n.patch │ │ │ ├── 562-board_VR-3025u.patch │ │ │ ├── 563-board_VR-3025un.patch │ │ │ ├── 564-board_P870HW-51a_v2.patch │ │ │ ├── 565-board_hw520.patch │ │ │ ├── 566-board_A4001N.patch │ │ │ ├── 567-board_dsl-2751b_e1.patch │ │ │ ├── 568-board_DGND3700v1_3800B.patch │ │ │ ├── 569-board_homehub2a.patch │ │ │ ├── 570-board_HG655b.patch │ │ │ ├── 571-board_fast2704n.patch │ │ │ ├── 572-board_VR-3026e.patch │ │ │ ├── 573-board_R5010UNv2.patch │ │ │ ├── 574-board_HG622.patch │ │ │ ├── 575-board_EVG2000.patch │ │ │ ├── 576-board_AV4202N.patch │ │ │ ├── 577-board_VH4032N.patch │ │ │ ├── 578-board_R1000H.patch │ │ │ ├── 579-board_AR-5315u.patch │ │ │ ├── 580-board_AD1018.patch │ │ │ ├── 598-board_sr102.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 │ │ │ └── 804-bcm63xx_enet_63268_rgmii_ports.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.14 │ │ ├── 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.14 │ │ │ ├── 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 │ │ └── 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 │ │ │ └── lib │ │ │ │ └── preinit │ │ │ │ └── 05_set_ether_mac_gemini │ │ ├── config-4.14 │ │ ├── config-4.19 │ │ ├── image │ │ │ ├── ImageInfo-itian_sq201 │ │ │ ├── ImageInfo-raidsonic_ib-4220-b │ │ │ ├── Makefile │ │ │ └── dns313_gen_hdd_img.sh │ │ ├── patches-4.14 │ │ │ ├── 0001-cache-patch-from-OpenWRT.patch │ │ │ ├── 0002-pinctrl-gemini-Add-missing-functions.patch │ │ │ ├── 0003-ARM-dts-Add-TVE200-to-the-Gemini-SoC-DTSI.patch │ │ │ ├── 0004-pinctrl-Add-skew-delay-pin-config-and-bindings.patch │ │ │ ├── 0005-pinctrl-gemini-Use-generic-DT-parser.patch │ │ │ ├── 0006-pinctrl-gemini-Implement-clock-skew-delay-config.patch │ │ │ ├── 0007-pinctrl-gemini-Fix-GMAC-groups.patch │ │ │ ├── 0008-pinctrl-gemini-Fix-missing-pad-descriptions.patch │ │ │ ├── 0009-pinctrl-gemini-Add-two-missing-GPIO-groups.patch │ │ │ ├── 0010-pinctrl-gemini-Fix-usage-of-3512-groups.patch │ │ │ ├── 0011-pinctrl-gemini-Support-drive-strength-setting.patch │ │ │ ├── 0012-ARM-dts-Add-ethernet-PHYs-to-the-a-bunch-of-Geminis.patch │ │ │ ├── 0013-ARM-dts-Add-basic-devicetree-for-D-Link-DNS-313.patch │ │ │ ├── 0014-ARM-dts-Flags-D-Link-DIR-685-I2C-bus-gpios.patch │ │ │ ├── 0015-ARM-dts-Add-PCI-to-WBD111-and-WBD222.patch │ │ │ ├── 0016-ARM-dts-Add-TVE-TVC-and-ILI9322-panel-to-DIR-685.patch │ │ │ ├── 0017-watchdog-gemini-ftwdt010-rename-DT-bindings.patch │ │ │ ├── 0018-watchdog-gemini-ftwdt010-rename-driver-and-symbols.patch │ │ │ ├── 0019-watchdog-ftwdt010-Make-interrupt-optional.patch │ │ │ ├── 0020-soc-Add-SoC-driver-for-Gemini.patch │ │ │ ├── 0021-net-ethernet-Add-DT-bindings-for-the-Gemini-ethernet.patch │ │ │ ├── 0022-net-ethernet-Add-a-driver-for-Gemini-gigabit-etherne.patch │ │ │ ├── 0023-ARM-dts-Add-ethernet-to-the-Gemini-SoC.patch │ │ │ ├── 0024-net-gemini-Depend-on-HAS_IOMEM.patch │ │ │ ├── 0025-ARM-dts-Set-D-Link-DNS-313-SATA-to-muxmode-0.patch │ │ │ ├── 0026-power-gemini-poweroff-Avoid-spurious-poweroff.patch │ │ │ ├── 0027-usb-host-add-DT-bindings-for-faraday-fotg2.patch │ │ │ ├── 0028-usb-host-fotg2-add-device-tree-probing.patch │ │ │ ├── 0029-usb-host-fotg2-add-silicon-clock-handling.patch │ │ │ ├── 0030-usb-host-fotg2-add-Gemini-specific-handling.patch │ │ │ ├── 0031-ARM-dts-Add-the-FOTG210-USB-host-to-Gemini.patch │ │ │ ├── 0032-usb-host-fotg2-restart-hcd-after-port-reset.patch │ │ │ ├── 0033-ARM-dts-Fix-bootargs-for-Gemini-D-Link-devices.patch │ │ │ ├── 0034-ARM-dts-Add-ethernet-to-a-bunch-of-platforms.patch │ │ │ ├── 0900-arm-dts-gemini-add-openwrt-partitions-for-nas4220b.patch │ │ │ ├── 0901-arm-dts-gemini-fix-ethernet-for-nas4220b.patch │ │ │ ├── 0902-arm-dts-gemini-add-second-ata-for-nas4220b.patch │ │ │ ├── 0903-arm-dts-gemini-disable-usb-port-1-until-fixed.patch │ │ │ ├── 0904-net-cortina-fix-uninitialized-struct-member-usage.patch │ │ │ └── 0905-arm-dts-gemini-dlink-dir-685-add-rtl8366rb.patch │ │ └── patches-4.19 │ │ │ ├── 0001-pinctrl-gemini-Mask-and-set-properly.patch │ │ │ ├── 0002-pinctrl-gemini-Fix-up-TVC-clock-group.patch │ │ │ ├── 0003-pinctrl-gemini-Drop-noisy-debug-prints.patch │ │ │ ├── 0004-boot-sq201-from-sda1.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 │ │ │ ├── 0017-usb-host-fotg2-restart-hcd-after-port-reset.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 │ ├── 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 │ │ │ ├── 060-v5.1-serial-ar933x_uart-Fix-build-failure-with-disabled-c.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 │ │ │ ├── 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-nf_flow_table-clean-up-and-fix-dst-handlin.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 │ │ │ ├── 400-v4.16-leds-trigger-Introduce-a-NETDEV-trigger.patch │ │ │ ├── 401-v5.2-leds-trigger-netdev-fix-refcnt-leak-on-interface-ren.patch │ │ │ └── 420-enable-CONFIG_MMC_SDHCI_IO_ACCESSORS.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 │ │ │ ├── 030-PCI-dwc-skip-MSI-init-if-MSIs-have-been-explicitly-d.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 │ │ │ ├── 060-v5.1-serial-ar933x_uart-Fix-build-failure-with-disabled-c.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 │ │ │ ├── 343-netfilter-nft_flow_offload-handle-netdevice-events-f.patch │ │ │ ├── 366-netfilter-nf_flow_table-clean-up-and-fix-dst-handlin.patch │ │ │ ├── 370-netfilter-nf_flow_table-fix-offloaded-connection-tim.patch │ │ │ ├── 371-netfilter-nf_flow_table-fix-up-ct-state-of-flows-aft.patch │ │ │ └── 400-v5.2-leds-trigger-netdev-fix-refcnt-leak-on-interface-ren.patch │ │ ├── backport-4.9 │ │ │ ├── 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 │ │ │ ├── 021-bridge-multicast-to-unicast.patch │ │ │ ├── 022-net-add-devm-version-of-alloc_etherdev_mqs-function.patch │ │ │ ├── 024-1-tcp-tsq-add-tsq_flags-tsq_enum.patch │ │ │ ├── 024-2-tcp-tsq-remove-one-locked-operation-in-tcp_wfree.patch │ │ │ ├── 024-3-tcp-tsq-add-shortcut-in-tcp_tasklet_func.patch │ │ │ ├── 024-4-tcp-tsq-avoid-one-atomic-in-tcp_wfree.patch │ │ │ ├── 024-5-tcp-tsq-add-a-shortcut-in-tcp_small_queue_check.patch │ │ │ ├── 024-6-tcp-tcp_mtu_probe-is-likely-to-exit-early.patch │ │ │ ├── 024-7-net-reorganize-struct-sock-for-better-data-locality.patch │ │ │ ├── 024-8-tcp-tsq-move-tsq_flags-close-to-sk_wmem_alloc.patch │ │ │ ├── 024-9-tcp-add-a-missing-barrier-in-tcp_tasklet_func.patch │ │ │ ├── 025-tcp-allow-drivers-to-tweak-TSQ-logic.patch │ │ │ ├── 030-01-ubifs-Drop-softlimit-and-delta-fields-from-struct-ub.patch │ │ │ ├── 030-02-ubifs-Use-dirty_writeback_interval-value-for-wbuf-ti.patch │ │ │ ├── 040-mm-add-support-for-releasing-multiple-instances-of-a.patch │ │ │ ├── 041-mm-rename-__alloc_page_frag-to-page_frag_alloc-and-_.patch │ │ │ ├── 042-mm-rename-__page_frag-functions-to-__page_frag_cache.patch │ │ │ ├── 060-0002-mtd-bcm47xxsflash-use-platform_-set-get-_drvdata.patch │ │ │ ├── 060-0003-mtd-bcm47xxsflash-support-reading-flash-out-of-mappi.patch │ │ │ ├── 060-0004-mtd-bcm47xxpart-move-TRX-parsing-code-to-separated-f.patch │ │ │ ├── 060-0005-mtd-bcm47xxpart-support-layouts-with-multiple-TRX-pa.patch │ │ │ ├── 061-v4.10-0001-mtd-spi-nor-add-Macronix-mx25u25635f-to-list-of-know.patch │ │ │ ├── 061-v4.10-0002-mtd-spi-nor-fix-spansion-quad-enable.patch │ │ │ ├── 061-v4.10-0003-mtd-spi-nor-fix-flags-for-s25fl128s.patch │ │ │ ├── 061-v4.10-0004-mtd-spi-nor-add-support-for-s25fl208k.patch │ │ │ ├── 061-v4.10-0005-mtd-spi-nor-Add-at25df321-spi-nor-flash-support.patch │ │ │ ├── 061-v4.10-0006-mtd-spi-nor-Add-support-for-N25Q016A.patch │ │ │ ├── 061-v4.10-0007-mtd-spi-nor-Add-support-for-mr25h40.patch │ │ │ ├── 062-v4.11-0001-mtd-spi-nor-Add-support-for-S3AN-spi-nor-devices.patch │ │ │ ├── 062-v4.11-0002-mtd-spi-nor-improve-macronix_quad_enable.patch │ │ │ ├── 062-v4.11-0003-mtd-spi-nor-remove-WARN_ONCE-message-in-spi_nor_writ.patch │ │ │ ├── 062-v4.11-0004-mtd-spi-nor-rename-SPINOR_OP_-macros-of-the-4-byte-a.patch │ │ │ ├── 062-v4.11-0005-mtd-spi-nor-add-a-stateless-method-to-support-memory.patch │ │ │ ├── 062-v4.11-0006-mtd-spi-nor-Add-lock-unlock-support-for-f25l32pa.patch │ │ │ ├── 062-v4.11-0007-mtd-spi-nor-Fix-S3AN-addressing-calculation.patch │ │ │ ├── 062-v4.11-0008-mtd-spi-nor-Add-support-for-gd25q16.patch │ │ │ ├── 063-v4.11-0001-mtd-nand-Add-Winbond-manufacturer-id.patch │ │ │ ├── 063-v4.11-0002-mtd-introduce-function-max_bad_blocks.patch │ │ │ ├── 063-v4.11-0003-mtd-Add-partition-device-node-to-mtd-partition-devic.patch │ │ │ ├── 064-v4.12-mtd-spi-nor-enable-stateless-4b-op-codes-for-mx25u25.patch │ │ │ ├── 065-v4.13-0001-mtd-handle-partitioning-on-devices-with-0-erasesize.patch │ │ │ ├── 065-v4.13-0002-mtd-partitions-factor-out-code-calling-parser.patch │ │ │ ├── 065-v4.13-0003-mtd-partitions-add-helper-for-deleting-partition.patch │ │ │ ├── 065-v4.13-0004-mtd-partitions-remove-sysfs-files-when-deleting-all-.patch │ │ │ ├── 065-v4.13-0005-mtd-partitions-rename-master-to-the-parent-where-app.patch │ │ │ ├── 065-v4.13-0006-mtd-partitions-add-support-for-subpartitions.patch │ │ │ ├── 065-v4.13-0007-mtd-partitions-add-support-for-partition-parsers.patch │ │ │ ├── 065-v4.13-0008-mtd-extract-TRX-parser-out-of-bcm47xxpart-into-a-sep.patch │ │ │ ├── 066-v4.17-0001-mtd-move-code-adding-master-MTD-out-of-mtd_add_devic.patch │ │ │ ├── 066-v4.17-0002-mtd-get-rid-of-the-mtd_add_device_partitions.patch │ │ │ ├── 067-v4.17-0001-mtd-partitions-add-of_match_table-parser-matching-fo.patch │ │ │ ├── 067-v4.17-0002-mtd-rename-ofpart-parser-to-fixed-partitions-as-it-f.patch │ │ │ ├── 067-v4.17-0003-mtd-ofpart-add-of_match_table-with-fixed-partitions.patch │ │ │ ├── 068-v4.18-0001-mtd-move-code-adding-registering-partitions-to-the-p.patch │ │ │ ├── 069-v4.18-mtd-bcm47xxpart-improve-handling-TRX-partition-size.patch │ │ │ ├── 070-bcma-from-4.11.patch │ │ │ ├── 071-v4.10-0001-net-bgmac-allocate-struct-bgmac-just-once-don-t-copy.patch │ │ │ ├── 071-v4.10-0002-net-bgmac-drop-struct-bcma_mdio-we-don-t-need-anymor.patch │ │ │ ├── 071-v4.10-0003-net-bgmac-use-PHY-subsystem-for-initializing-PHY.patch │ │ │ ├── 071-v4.15-0001-net-bgmac-enable-master-mode-for-BCM54210E-and-B5021.patch │ │ │ ├── 072-bcma-from-4.12.patch │ │ │ ├── 075-v4.10-0001-net-phy-broadcom-Update-Auxiliary-Control-Register-m.patch │ │ │ ├── 075-v4.10-0002-net-phy-broadcom-Add-support-for-BCM54612E.patch │ │ │ ├── 075-v4.10-0003-net-phy-broadcom-add-bcm54xx_auxctl_read.patch │ │ │ ├── 075-v4.10-0004-net-phy-broadcom-Add-BCM54810-PHY-entry.patch │ │ │ ├── 075-v4.10-0005-net-phy-broadcom-Move-bcm54xx_auxctl_-read-write-to-.patch │ │ │ ├── 076-v4.11-0001-net-phy-broadcom-Allow-enabling-or-disabling-of-EEE.patch │ │ │ ├── 076-v4.11-0002-net-phy-broadcom-Add-support-code-for-reading-PHY-co.patch │ │ │ ├── 076-v4.11-0003-net-phy-bcm7xxx-Add-entry-for-BCM7278.patch │ │ │ ├── 076-v4.11-0004-net-phy-bcm7xxx-Implement-EGPHY-workaround-for-7278.patch │ │ │ ├── 076-v4.11-0005-net-phy-broadcom-use-auxctl-reading-helper-in-BCM546.patch │ │ │ ├── 076-v4.11-0006-net-phy-broadcom-add-support-for-BCM54210E.patch │ │ │ ├── 076-v4.11-0007-net-phy-broadcom-rehook-BCM54612E-specific-init.patch │ │ │ ├── 076-v4.15-0001-net-phy-broadcom-support-new-device-flag-for-setting.patch │ │ │ ├── 080-0001-leds-core-add-OF-variants-of-LED-registering-functio.patch │ │ │ ├── 080-0002-leds-gpio-use-OF-variant-of-LED-registering-function.patch │ │ │ ├── 081-0001-thermal-bcm2835-add-thermal-driver-for-bcm2835-SoC.patch │ │ │ ├── 081-0002-thermal-broadcom-add-Northstar-thermal-driver.patch │ │ │ ├── 082-0001-usb-core-read-USB-ports-from-DT-in-the-usbport-LED-t.patch │ │ │ ├── 085-v4.16-0001-i2c-gpio-Enable-working-over-slow-can_sleep-GPIOs.patch │ │ │ ├── 087-regmap-make-LZO-cache-optional.patch │ │ │ ├── 090-net-generalize-napi_complete_done.patch │ │ │ ├── 094-v4.12-0001-ip6_tunnel-Fix-missing-tunnel-encapsulation-limit-op.patch │ │ │ ├── 094-v4.12-0002-ipv6-Need-to-export-ipv6_push_frag_opts-for-tunnelin.patch │ │ │ ├── 095-Allow-class-e-address-assignment-via-ifconfig-ioctl.patch │ │ │ ├── 095-v4.13-0001-rtc-ds1307-add-ds1308-variant.patch │ │ │ ├── 096-v4.20-netfilter-ipv6-Preserve-link-scope-traffic-original-.patch │ │ │ ├── 101-arm-cns3xxx-use-actual-size-reads-for-PCIe.patch │ │ │ ├── 400-v4.16-leds-trigger-Introduce-a-NETDEV-trigger.patch │ │ │ ├── 400-v4.18-mtd-bcm47xxpart-add-of_match_table-with-a-new-DT-bin.patch │ │ │ ├── 401-v4.19-mtd-parsers-trx-add-of_match_table-with-the-new-DT-b.patch │ │ │ └── 402-v4.19-mtd-partitions-use-DT-info-for-parsing-partitions-wi.patch │ │ ├── config-3.18 │ │ ├── config-4.14 │ │ ├── config-4.19 │ │ ├── config-4.9 │ │ ├── files │ │ │ ├── Documentation │ │ │ │ └── networking │ │ │ │ │ └── adm6996.txt │ │ │ ├── arch │ │ │ │ └── mips │ │ │ │ │ └── fw │ │ │ │ │ └── myloader │ │ │ │ │ ├── Makefile │ │ │ │ │ └── myloader.c │ │ │ ├── drivers │ │ │ │ ├── misc │ │ │ │ │ └── owl-loader.c │ │ │ │ ├── mtd │ │ │ │ │ ├── mtdsplit │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── mtdsplit.c │ │ │ │ │ │ ├── mtdsplit.h │ │ │ │ │ │ ├── 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 │ │ │ │ │ └── myloader.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 │ │ │ └── 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 │ │ │ ├── 202-reduce_module_size.patch │ │ │ ├── 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 │ │ │ ├── 531-debloat_lzma.patch │ │ │ ├── 640-bridge-only-accept-EAP-locally.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 │ │ │ ├── 835-misc-owl_loader.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 │ │ ├── hack-4.19 │ │ │ ├── 202-reduce_module_size.patch │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 640-bridge-only-accept-EAP-locally.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 │ │ │ ├── 835-misc-owl_loader.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 │ │ │ └── 940-cleanup-offload-hooks-on-netdev-unregister.patch │ │ ├── hack-4.9 │ │ │ ├── 202-reduce_module_size.patch │ │ │ ├── 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 │ │ │ ├── 531-debloat_lzma.patch │ │ │ ├── 640-bridge-only-accept-EAP-locally.patch │ │ │ ├── 641-bridge_port_isolate.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 │ │ │ ├── 710-phy-add-mdio_register_board_info.patch │ │ │ ├── 721-phy_packets.patch │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ ├── 835-misc-owl_loader.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 │ │ ├── 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-3.18 │ │ │ ├── 001-mtdsplit_backport.patch │ │ │ ├── 002-phy_drivers_backport.patch │ │ │ ├── 003-myloader_backport.patch │ │ │ ├── 020-ssb_update.patch │ │ │ ├── 021-ssb_sprom.patch │ │ │ ├── 025-bcma_backport.patch │ │ │ ├── 026-bcma-from-3.20.patch │ │ │ ├── 027-bcma-from-4.1.patch │ │ │ ├── 028-bcma-from-4.2.patch │ │ │ ├── 029-bcma-from-4.4.patch │ │ │ ├── 030-backport_bcm47xx_nvram.patch │ │ │ ├── 030-nl80211-Allow-set-network-namespace-by-fd.patch │ │ │ ├── 031-bcma-from-4.5.patch │ │ │ ├── 032-bcma-from-4.6.patch │ │ │ ├── 040-mtd-bcm47xxpart-backports-from-3.19.patch │ │ │ ├── 041-mtd-bcm47xxpart-backports-from-3.20.patch │ │ │ ├── 043-mtd_GD25Q128B_support_backport_from_3.19.patch │ │ │ ├── 044-backport-m25p80-jedec-probe.patch │ │ │ ├── 050-backport_netfilter_rtcache.patch │ │ │ ├── 051-02-bridge-allow-setting-hash_max-multicast_router-if-in.patch │ │ │ ├── 060-mips_decompressor_memmove.patch │ │ │ ├── 070-bgmac-register-napi-before-the-device.patch │ │ │ ├── 071-bgmac-activate-irqs-only-if-there-is-nothing-to-poll.patch │ │ │ ├── 073-bgmac-Clean-warning-messages.patch │ │ │ ├── 074-bgmac-register-fixed-PHY-for-ARM-BCM470X-BCM5301X-ch.patch │ │ │ ├── 075-bgmac-allow-enabling-on-ARCH_BCM_5301X.patch │ │ │ ├── 076-net-phy-export-fixed_phy_register.patch │ │ │ ├── 077-01-bgmac-fix-descriptor-frame-start-end-definitions.patch │ │ │ ├── 077-02-bgmac-implement-GRO-and-use-build_skb.patch │ │ │ ├── 077-03-bgmac-implement-scatter-gather-support.patch │ │ │ ├── 077-04-bgmac-simplify-tx-ring-index-handling.patch │ │ │ ├── 077-05-bgmac-leave-interrupts-disabled-as-long-as-there-is-.patch │ │ │ ├── 077-06-bgmac-set-received-skb-headroom-to-NET_SKB_PAD.patch │ │ │ ├── 077-07-bgmac-simplify-rx-DMA-error-handling.patch │ │ │ ├── 077-08-bgmac-add-check-for-oversized-packets.patch │ │ │ ├── 077-09-bgmac-increase-rx-ring-size-from-511-to-512.patch │ │ │ ├── 077-10-bgmac-simplify-dma-init-cleanup.patch │ │ │ ├── 077-11-bgmac-fix-DMA-rx-corruption.patch │ │ │ ├── 077-12-bgmac-drop-ring-num_slots.patch │ │ │ ├── 078-bgmac-reset-enable-Ethernet-core-before-using-it.patch │ │ │ ├── 079-bgmac-fix-MAC-soft-reset-bit-for-corerev-4.patch │ │ │ ├── 080-00-fib_trie-Fix-proc-net-fib_trie-when-CONFIG_IP_MULTIP.patch │ │ │ ├── 080-01-fib_trie-Fix-trie-balancing-issue-if-new-node-pushes.patch │ │ │ ├── 080-02-fib_trie-Update-usage-stats-to-be-percpu-instead-of-.patch │ │ │ ├── 080-03-fib_trie-Make-leaf-and-tnode-more-uniform.patch │ │ │ ├── 080-04-fib_trie-Merge-tnode_free-and-leaf_free-into-node_fr.patch │ │ │ ├── 080-05-fib_trie-Merge-leaf-into-tnode.patch │ │ │ ├── 080-06-fib_trie-Optimize-fib_table_lookup-to-avoid-wasting-.patch │ │ │ ├── 080-07-fib_trie-Optimize-fib_find_node.patch │ │ │ ├── 080-08-fib_trie-Optimize-fib_table_insert.patch │ │ │ ├── 080-09-fib_trie-Update-meaning-of-pos-to-represent-unchecke.patch │ │ │ ├── 080-10-fib_trie-Use-unsigned-long-for-anything-dealing-with.patch │ │ │ ├── 080-11-fib_trie-Push-rcu_read_lock-unlock-to-callers.patch │ │ │ ├── 080-12-fib_trie-Move-resize-to-after-inflate-halve.patch │ │ │ ├── 080-13-fib_trie-Add-functions-should_inflate-and-should_hal.patch │ │ │ ├── 080-14-fib_trie-Push-assignment-of-child-to-parent-down-int.patch │ │ │ ├── 080-15-fib_trie-Push-tnode-flushing-down-to-inflate-halve.patch │ │ │ ├── 080-16-fib_trie-inflate-halve-nodes-in-a-more-RCU-friendly-.patch │ │ │ ├── 080-17-fib_trie-Remove-checks-for-index-tnode_child_length-.patch │ │ │ ├── 080-18-fib_trie-Add-tracking-value-for-suffix-length.patch │ │ │ ├── 080-19-fib_trie-Use-index-0ul-n-bits-instead-of-index-n-bit.patch │ │ │ ├── 080-20-fib_trie-Fix-RCU-bug-and-merge-similar-bits-of-infla.patch │ │ │ ├── 080-21-fib_trie-Fall-back-to-slen-update-on-inflate-halve-f.patch │ │ │ ├── 080-22-fib_trie-Add-collapse-and-should_collapse-to-resize.patch │ │ │ ├── 080-23-fib_trie-Use-empty_children-instead-of-counting-empt.patch │ │ │ ├── 080-24-fib_trie-Move-fib_find_alias-to-file-where-it-is-use.patch │ │ │ ├── 080-25-fib_trie-Various-clean-ups-for-handling-slen.patch │ │ │ ├── 081-01-pppoe-Use-workqueue-to-die-properly-when-a-PADT-is-r.patch │ │ │ ├── 081-02-pppoe-Lacks-DST-MAC-address-check.patch │ │ │ ├── 081-03-pppoe-drop-pppoe-device-in-pppoe_unbind_sock_work.patch │ │ │ ├── 081-06-ppp-don-t-set-sk_state-to-PPPOX_ZOMBIE-in-pppoe_disc.patch │ │ │ ├── 081-07-ppp-remove-PPPOX_ZOMBIE-socket-state.patch │ │ │ ├── 081-08-pppoe-fix-memory-corruption-in-padt-work-structure.patch │ │ │ ├── 082-ipv6-ip6_fragment-fix-headroom-tests-and-skb-leak.patch │ │ │ ├── 083-solos-pci-Increase-headroom-on-received-packets.patch │ │ │ ├── 087-regmap-make-LZO-cache-optional.patch │ │ │ ├── 090-overlayfs-fallback-to-readonly-when-full.patch │ │ │ ├── 091-mtd-spi-nor-add-support-Spansion_S25FL164K.patch │ │ │ ├── 092-01-spi-Check-to-see-if-the-device-is-processing-a-messa.patch │ │ │ ├── 092-02-spi-Pump-transfers-inside-calling-context-for-spi_sy.patch │ │ │ ├── 092-03-spi-Only-idle-the-message-pump-in-the-worker-kthread.patch │ │ │ ├── 095-api-fix-compatibility-of-linux-in.h-with-netinet-in..patch │ │ │ ├── 099-module_arch_freeing_init-new-hook-for-archs-before-m.patch │ │ │ ├── 102-ehci_hcd_ignore_oc.patch │ │ │ ├── 110-jffs2-use-.rename2-and-add-RENAME_WHITEOUT-support.patch │ │ │ ├── 111-jffs2-add-RENAME_EXCHANGE-support.patch │ │ │ ├── 120-bridge_allow_receiption_on_disabled_port.patch │ │ │ ├── 132-mips_inline_dma_ops.patch │ │ │ ├── 140-mtd-part-add-generic-parsing-of-linux-part-probe.patch │ │ │ ├── 142-mtd-bcm47xxpart-don-t-fail-because-of-bit-flips.patch │ │ │ ├── 180-usb-xhci-make-USB_XHCI_PLATFORM-selectable.patch │ │ │ ├── 190-cdc_ncm_add_support_for_moving_ndp_to_end_of_ncm_frame.patch │ │ │ ├── 192-USB-qcserial-Add-support-for-Quectel-EC20-Mini-PCIe-.patch │ │ │ ├── 193-USB-qmi_wwan-Add-quirk-for-Quectel-EC20-Mini-PCIe-mo.patch │ │ │ ├── 200-fix_localversion.patch │ │ │ ├── 201-extra_optimization.patch │ │ │ ├── 202-reduce_module_size.patch │ │ │ ├── 203-kallsyms_uncompressed.patch │ │ │ ├── 204-module_strip.patch │ │ │ ├── 205-backtrace_module_info.patch │ │ │ ├── 210-darwin_scripts_include.patch │ │ │ ├── 212-byteshift_portability.patch │ │ │ ├── 213-x86_vdso_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 │ │ │ ├── 252-mv_cesa_depends.patch │ │ │ ├── 253-ssb_b43_default_on.patch │ │ │ ├── 254-textsearch_kconfig_hacks.patch │ │ │ ├── 255-lib80211_kconfig_hacks.patch │ │ │ ├── 256-crypto_add_kconfig_prompts.patch │ │ │ ├── 257-wireless_ext_kconfig_hack.patch │ │ │ ├── 258-netfilter_netlink_kconfig_hack.patch │ │ │ ├── 259-regmap_dynamic.patch │ │ │ ├── 260-crypto_test_dependencies.patch │ │ │ ├── 270-uapi-libc-compat-add-fallback-for-unsupported-libcs.patch │ │ │ ├── 272-uapi-if_ether.h-prevent-redefinition-of-struct-ethhd.patch │ │ │ ├── 300-mips_expose_boot_raw.patch │ │ │ ├── 301-mips_image_cmdline_hack.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 │ │ │ ├── 310-arm_module_unresolved_weak_sym.patch │ │ │ ├── 320-ppc4xx_optimization.patch │ │ │ ├── 321-powerpc_crtsavres_prereq.patch │ │ │ ├── 330-MIPS-kexec-Accept-command-line-parameters-from-users.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 │ │ │ ├── 405-mtd-old-firmware-uimage-splitter.patch │ │ │ ├── 406-mtd-old-rootfs-squashfs-splitter.patch │ │ │ ├── 410-mtd-move-forward-declaration-of-struct-mtd_info.patch │ │ │ ├── 411-mtd-partial_eraseblock_write.patch │ │ │ ├── 412-mtd-partial_eraseblock_unlock.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 │ │ │ ├── 440-block2mtd_init.patch │ │ │ ├── 441-block2mtd_probe.patch │ │ │ ├── 450-mtd-nand-allow-to-use-platform-specific-chip-fixup.patch │ │ │ ├── 451-mtd-nand-fix-return-code-of-nand_correct_data-function.patch │ │ │ ├── 460-mtd-cfi_cmdset_0002-no-erase_suspend.patch │ │ │ ├── 461-mtd-cfi_cmdset_0002-add-buffer-write-cmd-timeout.patch │ │ │ ├── 472-mtd-m25p80-add-support-for-Winbond-W25X05-flash.patch │ │ │ ├── 473-mtd-spi-nor-add-support-for-the-Macronix-MX25L512E-S.patch │ │ │ ├── 474-mtd-spi-nor-add-support-for-the-ISSI-SI25CD512-SPI-f.patch │ │ │ ├── 475-mtd-spi-nor-add-macronix-mx25u25635f.patch │ │ │ ├── 476-mtd-spi-nor-add-eon-en25qh32.patch │ │ │ ├── 480-mtd-set-rootfs-to-be-root-dev.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 │ │ │ ├── 530-jffs2_make_lzma_available.patch │ │ │ ├── 531-debloat_lzma.patch │ │ │ ├── 532-jffs2_eofdetect.patch │ │ │ ├── 550-ubifs-symlink-xattr-support.patch │ │ │ ├── 551-ubifs-fix-default-compression-selection.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 │ │ │ ├── 616-net_optimize_xfrm_calls.patch │ │ │ ├── 621-sched_act_connmark.patch │ │ │ ├── 630-packet_socket_type.patch │ │ │ ├── 640-bridge_no_eap_forward.patch │ │ │ ├── 641-bridge_always_accept_eap.patch │ │ │ ├── 642-bridge_port_isolate.patch │ │ │ ├── 645-bridge_multicast_to_unicast.patch │ │ │ ├── 650-pppoe_header_pad.patch │ │ │ ├── 651-wireless_mesh_header.patch │ │ │ ├── 653-disable_netlink_trim.patch │ │ │ ├── 655-increase_skb_pad.patch │ │ │ ├── 656-skb_reduce_truesize-helper.patch │ │ │ ├── 657-qdisc_reduce_truesize.patch │ │ │ ├── 660-fq_codel_defaults.patch │ │ │ ├── 661-fq_codel_keep_dropped_stats.patch │ │ │ ├── 662-use_fq_codel_by_default.patch │ │ │ ├── 663-remove_pfifo_fast.patch │ │ │ ├── 666-Add-support-for-MAP-E-FMRs-mesh-mode.patch │ │ │ ├── 667-ipv6-Fixed-source-specific-default-route-handling.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 │ │ │ ├── 700-swconfig.patch │ │ │ ├── 701-phy_extension.patch │ │ │ ├── 702-phy_add_aneg_done_function.patch │ │ │ ├── 703-phy-add-detach-callback-to-struct-phy_driver.patch │ │ │ ├── 710-phy-add-mdio_register_board_info.patch │ │ │ ├── 720-phy_adm6996.patch │ │ │ ├── 721-phy_packets.patch │ │ │ ├── 722-phy_mvswitch.patch │ │ │ ├── 723-phy_ip175c.patch │ │ │ ├── 724-phy_ar8216.patch │ │ │ ├── 725-phy_rtl8306.patch │ │ │ ├── 726-phy_rtl8366.patch │ │ │ ├── 727-phy-rtl8367.patch │ │ │ ├── 728-phy-rtl8367b.patch │ │ │ ├── 729-phy-tantos.patch │ │ │ ├── 730-phy_b53.patch │ │ │ ├── 732-phy-ar8216-led-support.patch │ │ │ ├── 733-phy_mvsw61xx.patch │ │ │ ├── 734-net-phy-at803x-allow-to-configure-via-pdata.patch │ │ │ ├── 735-net-phy-at803x-fix-at8033-sgmii-mode.patch │ │ │ ├── 760-8139cp-fixes-from-4.3.patch │ │ │ ├── 773-bgmac-add-srab-switch.patch │ │ │ ├── 785-hso-support-0af0-9300.patch │ │ │ ├── 810-pci_disable_common_quirks.patch │ │ │ ├── 811-pci_disable_usb_common_quirks.patch │ │ │ ├── 821-usb-dwc2-dualrole.patch │ │ │ ├── 834-ledtrig-libata.patch │ │ │ ├── 840-rtc7301.patch │ │ │ ├── 841-rtc_pt7c4338.patch │ │ │ ├── 861-04_spi_gpio_implement_spi_delay.patch │ │ │ ├── 862-gpio_spi_driver.patch │ │ │ ├── 870-hifn795x_byteswap.patch │ │ │ ├── 890-8250_optional_sysrq.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-use_preinit_as_init.patch │ │ │ ├── 922-always-create-console-node-in-initramfs.patch │ │ │ ├── 930-crashlog.patch │ │ │ ├── 970-remove-unsane-filenames-from-deps_initramfs-list.patch │ │ │ ├── 980-arm_openwrt_machtypes.patch │ │ │ ├── 990-gpio_wdt.patch │ │ │ ├── 995-mangle_bootargs.patch │ │ │ ├── 997-device_tree_cmdline.patch │ │ │ ├── 998-enable_wilink_platform_without_drivers.patch │ │ │ └── 999-seccomp_log.patch │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 480-mtd-set-rootfs-to-be-root-dev.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 │ │ │ ├── 551-ubifs-fix-default-compression-selection.patch │ │ │ ├── 553-ubifs-Add-option-to-create-UBI-FS-version-4-on-empty.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 │ │ │ ├── 616-net_optimize_xfrm_calls.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 │ │ │ ├── 701-phy_extension.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 │ │ │ ├── 736-net-phy-at803x-allow-to-configure-via-dt.patch │ │ │ ├── 810-pci_disable_common_quirks.patch │ │ │ ├── 811-pci_disable_usb_common_quirks.patch │ │ │ ├── 834-ledtrig-libata.patch │ │ │ ├── 920-mangle_bootargs.patch │ │ │ └── 950-tty-serial-exar-generalize-rs485-setup.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 480-mtd-set-rootfs-to-be-root-dev.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 │ │ │ ├── 551-ubifs-fix-default-compression-selection.patch │ │ │ ├── 553-ubifs-Add-option-to-create-UBI-FS-version-4-on-empty.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 │ │ │ ├── 616-net_optimize_xfrm_calls.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 │ │ │ ├── 701-phy_extension.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 │ │ │ ├── 736-net-phy-at803x-allow-to-configure-via-dt.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 │ │ │ ├── 840-media-i2c-tda1997x-select-V4L2_FWNODE.patch │ │ │ └── 920-mangle_bootargs.patch │ │ └── pending-4.9 │ │ │ ├── 0931-w1-gpio-fix-problem-with-platfom-data-in-w1-gpio.patch │ │ │ ├── 100-MIPS-fix-cache-flushing-for-highmem-pages.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 │ │ │ ├── 170-MIPS-PCI-add-controllers-before-the-specified-head.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 440-block2mtd_init.patch │ │ │ ├── 441-block2mtd_probe.patch │ │ │ ├── 450-mtd-m25p80-allow-fallback-from-spi_flash_read-to-reg.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 │ │ │ ├── 480-mtd-set-rootfs-to-be-root-dev.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 │ │ │ ├── 530-jffs2_make_lzma_available.patch │ │ │ ├── 532-jffs2_eofdetect.patch │ │ │ ├── 551-ubifs-fix-default-compression-selection.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 │ │ │ ├── 616-net_optimize_xfrm_calls.patch │ │ │ ├── 620-net_sched-codel-do-not-defer-queue-length-update.patch │ │ │ ├── 630-packet_socket_type.patch │ │ │ ├── 655-increase_skb_pad.patch │ │ │ ├── 666-Add-support-for-MAP-E-FMRs-mesh-mode.patch │ │ │ ├── 670-ipv6-allow-rejecting-with-source-address-failed-policy.patch │ │ │ ├── 671-net-provide-defines-for-_POLICY_FAILED-until-all-cod.patch │ │ │ ├── 680-NET-skip-GRO-for-foreign-MAC-addresses.patch │ │ │ ├── 681-NET-add-of_get_mac_address_mtd.patch │ │ │ ├── 701-phy_extension.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 │ │ │ ├── 821-usb-Remove-annoying-warning-about-bogus-URB.patch │ │ │ ├── 834-ledtrig-libata.patch │ │ │ ├── 890-uart_optional_sysrq.patch │ │ │ └── 920-mangle_bootargs.patch │ ├── imx6 │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── imx6.sh │ │ │ │ ├── preinit │ │ │ │ └── 01_sysinfo │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.14 │ │ ├── config-4.19 │ │ ├── files │ │ │ └── firmware │ │ │ │ └── imx │ │ │ │ └── sdma │ │ │ │ └── sdma-imx6q.bin │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── bootscript-cubox │ │ │ └── bootscript-ventana │ │ ├── patches-4.14 │ │ │ ├── 100-bootargs.patch │ │ │ └── 200-disable-msi.patch │ │ ├── patches-4.19 │ │ │ └── 100-bootargs.patch │ │ └── profiles │ │ │ └── 100-default.mk │ ├── ipq40xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 03_gpio_switches │ │ │ │ ├── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ │ └── 11-ath10k-caldata │ │ │ │ ├── init.d │ │ │ │ │ ├── bootcount │ │ │ │ │ └── zlinksys_recovery │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 05_set_iface_mac_ipq40xx.sh │ │ │ │ └── 06_set_preinit_iface_ipq40xx.sh │ │ │ │ └── upgrade │ │ │ │ ├── linksys.sh │ │ │ │ ├── openmesh.sh │ │ │ │ └── platform.sh │ │ ├── config-4.14 │ │ ├── config-4.19 │ │ ├── files-4.14 │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── qcom-ipq4018-a42.dts │ │ │ │ ├── qcom-ipq4018-ap120c-ac.dts │ │ │ │ ├── qcom-ipq4018-ea6350v3.dts │ │ │ │ ├── qcom-ipq4018-eap1300.dts │ │ │ │ ├── qcom-ipq4018-ens620ext.dts │ │ │ │ ├── qcom-ipq4018-ex6100v2.dts │ │ │ │ ├── qcom-ipq4018-ex6150v2.dts │ │ │ │ ├── qcom-ipq4018-ex61x0v2.dtsi │ │ │ │ ├── qcom-ipq4018-fritz4040.dts │ │ │ │ ├── qcom-ipq4018-jalapeno.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-fritzbox-7530.dts │ │ │ │ ├── qcom-ipq4019-fritzrepeater-3000.dts │ │ │ │ ├── qcom-ipq4019-map-ac2200.dts │ │ │ │ ├── qcom-ipq4019-mikrotik-60ad.dts │ │ │ │ ├── qcom-ipq4019-qxwlan-e2600ac-c1.dts │ │ │ │ ├── qcom-ipq4019-qxwlan-e2600ac-c2.dts │ │ │ │ ├── qcom-ipq4019-qxwlan-e2600ac.dtsi │ │ │ │ ├── qcom-ipq4028-wpj428.dts │ │ │ │ ├── qcom-ipq4029-gl-b1300.dts │ │ │ │ └── qcom-ipq4029-mr33.dts │ │ ├── files-4.19 │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── qcom-ipq4018-a42.dts │ │ │ │ ├── qcom-ipq4018-ap120c-ac.dts │ │ │ │ ├── qcom-ipq4018-ea6350v3.dts │ │ │ │ ├── qcom-ipq4018-eap1300.dts │ │ │ │ ├── qcom-ipq4018-ens620ext.dts │ │ │ │ ├── qcom-ipq4018-ex6100v2.dts │ │ │ │ ├── qcom-ipq4018-ex6150v2.dts │ │ │ │ ├── qcom-ipq4018-ex61x0v2.dtsi │ │ │ │ ├── qcom-ipq4018-fritz4040.dts │ │ │ │ ├── qcom-ipq4018-jalapeno.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-fritzbox-7530.dts │ │ │ │ ├── qcom-ipq4019-fritzrepeater-3000.dts │ │ │ │ ├── qcom-ipq4019-map-ac2200.dts │ │ │ │ ├── qcom-ipq4019-mikrotik-60ad.dts │ │ │ │ ├── qcom-ipq4019-qxwlan-e2600ac-c1.dts │ │ │ │ ├── qcom-ipq4019-qxwlan-e2600ac-c2.dts │ │ │ │ ├── qcom-ipq4019-qxwlan-e2600ac.dtsi │ │ │ │ ├── qcom-ipq4028-wpj428.dts │ │ │ │ ├── qcom-ipq4029-gl-b1300.dts │ │ │ │ └── qcom-ipq4029-mr33.dts │ │ ├── image │ │ │ ├── Makefile │ │ │ └── ipq-aux-loader │ │ │ │ ├── Makefile │ │ │ │ └── src │ │ │ │ ├── Debug.sh │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── openwrt │ │ │ │ └── Makefile │ │ │ │ ├── src │ │ │ │ ├── Debug.sh │ │ │ │ ├── LzmaDecode.c │ │ │ │ ├── board.c │ │ │ │ ├── cpu.c │ │ │ │ ├── fdt.c │ │ │ │ ├── head.S │ │ │ │ ├── include │ │ │ │ │ ├── LzmaDecode.h │ │ │ │ │ ├── LzmaTypes.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── iomap.h │ │ │ │ │ ├── printf.h │ │ │ │ │ ├── types.h │ │ │ │ │ └── uimage │ │ │ │ │ │ ├── fdt.h │ │ │ │ │ │ └── legacy.h │ │ │ │ ├── kernel-data.lds │ │ │ │ ├── loader.c │ │ │ │ ├── loader.lds │ │ │ │ ├── loader2.lds │ │ │ │ ├── lzma.c │ │ │ │ ├── printf.c │ │ │ │ ├── qcom_uart.c │ │ │ │ ├── start.S │ │ │ │ └── watchdog.c │ │ │ │ └── ubi │ │ │ │ └── loader.ubi.ini │ │ ├── patches-4.14 │ │ │ ├── 030-mtd-nand-Use-standard-large-page-OOB-layout-when-usi.patch │ │ │ ├── 031-mtd-nand-use-usual-return-values-for-the-erase-hook.patch │ │ │ ├── 040-dmaengine-qcom-bam-Process-multiple-pending-descript.patch │ │ │ ├── 050-0002-mtd-nand-qcom-add-command-elements-in-BAM-transactio.patch │ │ │ ├── 050-0003-mtd-nand-qcom-support-for-command-descriptor-formati.patch │ │ │ ├── 050-0004-mtd-nand-provide-several-helpers-to-do-common-NAND-o.patch │ │ │ ├── 050-0005-mtd-nand-force-drivers-to-explicitly-send-READ-PROG-.patch │ │ │ ├── 070-qcom-spm-fix-probe-order.patch │ │ │ ├── 071-qcom-ipq4019-use-v2-of-the-kpss-bringup-mechanism.patch │ │ │ ├── 072-qcom-ipq4019-add-cpu-operating-points-for-cpufreq-su.patch │ │ │ ├── 073-qcom-ipq4019-fix-cpu0-s-qcom-saw2-reg-value.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 │ │ │ ├── 078-ARM-dts-ipq4019-Add-a-few-peripheral-nodes.patch │ │ │ ├── 079-ARM-dts-ipq4019-fix-PCI-range.patch │ │ │ ├── 080-pinctrl-msm-fix-gpio-hog-related-boot-issues.patch │ │ │ ├── 081-clk-fix-apss-cpu-overclocking.patch │ │ │ ├── 082-ARM-dts-ipq4019-Add-TZ-and-SMEM-reserved-regions.patch │ │ │ ├── 083-mtd-nand-add-Winbond-manufacturer-and-chip.patch │ │ │ ├── 084-ARM-dts-ipq4019-Add-a-default-chosen-node.patch │ │ │ ├── 085-mtd-nand-add-macronix-mx35lf1ge4ab.patch │ │ │ ├── 086-ARM-dts-qcom-ipq4019-enlarge-PCIe-BAR-range.patch │ │ │ ├── 087-ARM-dts-qcom-ipq4019-Fix-MSI-IRQ-type.patch │ │ │ ├── 088-0001-i2c-qup-fix-copyrights-and-update-to-SPDX-identifier.patch │ │ │ ├── 088-0002-i2c-qup-fixed-releasing-dma-without-flush-operation.patch │ │ │ ├── 088-0003-i2c-qup-minor-code-reorganization-for-use_dma.patch │ │ │ ├── 088-0004-i2c-qup-remove-redundant-variables-for-BAM-SG-count.patch │ │ │ ├── 088-0005-i2c-qup-schedule-EOT-and-FLUSH-tags-at-the-end-of-tr.patch │ │ │ ├── 088-0006-i2c-qup-fix-the-transfer-length-for-BAM-RX-EOT-FLUSH.patch │ │ │ ├── 088-0007-i2c-qup-proper-error-handling-for-i2c-error-in-BAM-m.patch │ │ │ ├── 088-0008-i2c-qup-use-the-complete-transfer-length-to-choose-D.patch │ │ │ ├── 088-0009-i2c-qup-change-completion-timeout-according-to-trans.patch │ │ │ ├── 088-0010-i2c-qup-fix-buffer-overflow-for-multiple-msg-of-maxi.patch │ │ │ ├── 088-0011-i2c-qup-send-NACK-for-last-read-sub-transfers.patch │ │ │ ├── 088-0012-i2c-qup-reorganization-of-driver-code-to-remove-poll.patch │ │ │ ├── 088-0013-i2c-qup-reorganization-of-driver-code-to-remove-poll.patch │ │ │ ├── 303-spi-nor-enable-4B-opcodes-for-mx25l25635f.patch │ │ │ ├── 700-net-add-qualcomm-mdio-and-phy.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ ├── patches-4.19 │ │ │ ├── 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 │ │ │ ├── 073-v4.20-ARM-dts-qcom-ipq4019-fix-cpu0-s-qcom-saw2-reg-value.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 │ │ │ ├── 079-v4.20-ARM-dts-qcom-ipq4019-fix-PCI-range.patch │ │ │ ├── 080-ARM-dts-qcom-add-gpio-ranges-property.patch │ │ │ ├── 081-clk-fix-apss-cpu-overclocking.patch │ │ │ ├── 082-v4.20-mtd-spinand-winbond-Add-support-for-W25N01GV.patch │ │ │ ├── 083-ARM-dts-qcom-ipq4019-enlarge-PCIe-BAR-range.patch │ │ │ ├── 084-ARM-dts-qcom-ipq4019-Fix-MSI-IRQ-type.patch │ │ │ ├── 303-spi-nor-enable-4B-opcodes-for-mx25l25635f.patch │ │ │ ├── 700-net-add-qualcomm-mdio-and-phy.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ └── 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 │ │ │ │ │ └── linksys_recovery │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ ├── buffalo.sh │ │ │ │ ├── linksys.sh │ │ │ │ ├── platform.sh │ │ │ │ └── zyxel.sh │ │ ├── config-4.14 │ │ ├── files-4.14 │ │ │ └── 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-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 │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-4.14 │ │ │ ├── 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-ARM-Add-Krait-L2-register-accessor-functions.patch │ │ │ ├── 0035-clk-mux-Split-out-register-accessors-for-reuse.patch │ │ │ ├── 0038-clk-qcom-Add-support-for-High-Frequency-PLLs-HFPLLs.patch │ │ │ ├── 0039-clk-qcom-Add-HFPLL-driver.patch │ │ │ ├── 0040-clk-qcom-Add-IPQ806X-s-HFPLLs.patch │ │ │ ├── 0041-clk-qcom-Add-support-for-Krait-clocks.patch │ │ │ ├── 0042-clk-qcom-Add-KPSS-ACC-GCC-driver.patch │ │ │ ├── 0043-clk-qcom-Add-Krait-clock-controller-driver.patch │ │ │ ├── 0044-clk-Add-safe-switch-hook.patch │ │ │ ├── 0045-cpufreq-Add-module-to-register-cpufreq-on-Krait-CPUs.patch │ │ │ ├── 0046-cpufreq-qcom-independent-core-clocks.patch │ │ │ ├── 0047-mtd-nand-Create-a-BBT-flag-to-access-bad-block-marke.patch │ │ │ ├── 0048-PM-OPP-HACK-Allow-to-set-regulator-without-opp_list.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 │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── 0074-ipq806x-usb-Control-USB-master-reset.patch │ │ │ ├── 0075-ipq8064-pinctrl-Fixed-missing-RGMII-pincontrol-defin.patch │ │ │ ├── 105-mtd-nor-add-mx25l25635f.patch │ │ │ ├── 310-msm-adhoc-bus-support.patch │ │ │ └── 850-soc-add-qualcomm-syscon.patch │ │ └── profiles │ │ │ └── 00-default.mk │ ├── ixp4xx │ │ ├── Makefile │ │ ├── base-files │ │ │ └── lib │ │ │ │ ├── ixp4xx.sh │ │ │ │ ├── preinit │ │ │ │ ├── 01_sysinfo │ │ │ │ └── 05_set_ether_mac_ixp4xx │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.9 │ │ ├── generic │ │ │ ├── profiles │ │ │ │ ├── 100-Default.mk │ │ │ │ ├── 105-Atheros-ath5k.mk │ │ │ │ ├── 200-NSLU2.mk │ │ │ │ ├── 300-NAS100d.mk │ │ │ │ ├── 400-DSMG600RevA.mk │ │ │ │ └── 500-USR8200.mk │ │ │ └── target.mk │ │ ├── harddisk │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 100-FSG3.mk │ │ │ └── target.mk │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ └── patches-4.9 │ │ │ ├── 001-arm-ixp4xx-set-cohorent_dma_mask-for-ethernet-platfo.patch │ │ │ ├── 002-ixp4xx_eth-use-parent-device-for-dma-allocations.patch │ │ │ ├── 020-gateworks_i2c_pld.patch │ │ │ ├── 030-gpio_line_config.patch │ │ │ ├── 040-arm_mach_types.patch │ │ │ ├── 090-increase_entropy_pools.patch │ │ │ ├── 100-wg302v2_gateway7001_mac_plat_info.patch │ │ │ ├── 105-wg302v1_support.patch │ │ │ ├── 110-pronghorn_series_support.patch │ │ │ ├── 111-pronghorn_swap_uarts.patch │ │ │ ├── 115-sidewinder_support.patch │ │ │ ├── 116-sidewinder_fis_location.patch │ │ │ ├── 120-compex_support.patch │ │ │ ├── 130-wrt300nv2_support.patch │ │ │ ├── 131-wrt300nv2_mac_plat_info.patch │ │ │ ├── 132-wrt300nv2_mac_fix.patch │ │ │ ├── 150-lanready_ap1000_support.patch │ │ │ ├── 151-lanready_ap1000_mac_plat_info.patch │ │ │ ├── 160-delayed_uart_io.patch │ │ │ ├── 162-wg302v1_mem_fixup.patch │ │ │ ├── 170-ixdpg425_mac_plat_info.patch │ │ │ ├── 175-avila_hss_audio_support.patch │ │ │ ├── 180-tw5334_support.patch │ │ │ ├── 185-mi424wr_support.patch │ │ │ ├── 190-cambria_support.patch │ │ │ ├── 201-npe_driver_print_license_location.patch │ │ │ ├── 205-npe_driver_separate_phy_functions.patch │ │ │ ├── 206-npe_driver_add_update_link_function.patch │ │ │ ├── 207-npe_driver_multiphy_support.patch │ │ │ ├── 295-latch_led_driver.patch │ │ │ ├── 300-avila_support.patch │ │ │ ├── 304-ixp4xx_eth_jumboframe.patch │ │ │ ├── 310-gtwx5717_spi_bus.patch │ │ │ ├── 311-gtwx5717_mac_plat_info.patch │ │ │ ├── 312-ixp4xx_pata_optimization.patch │ │ │ ├── 500-usr8200_support.patch │ │ │ ├── 520-tw2662_support.patch │ │ │ ├── 530-ap42x_support.patch │ │ │ ├── 600-skb_avoid_dmabounce.patch │ │ │ ├── 900-ixp4xx-crypto-include-module.h.patch │ │ │ └── 910-ixp4xx-nr_irq_lines.patch │ ├── kirkwood │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── init.d │ │ │ │ │ ├── hwmon_fancontrol │ │ │ │ │ └── linksys_recovery │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ ├── linksys.sh │ │ │ │ └── platform.sh │ │ ├── config-4.14 │ │ ├── config-4.19 │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-4.14 │ │ │ ├── 100-ib62x0.patch │ │ │ ├── 101-iconnect.patch │ │ │ ├── 102-dockstar.patch │ │ │ ├── 103-iomega-ix2-200.patch │ │ │ ├── 104-ea3500.patch │ │ │ ├── 105-ea4500.patch │ │ │ ├── 105-goflexhome.patch │ │ │ ├── 106-goflexnet.patch │ │ │ ├── 107-01-zyxel-nsa3x0-common-nand-partitions.patch │ │ │ ├── 107-02-nsa310b.patch │ │ │ ├── 108-on100.patch │ │ │ ├── 109-pogoplug_v4.patch │ │ │ ├── 200-disable-tso.patch │ │ │ ├── 201-enable-sata-port-specific-led-triggers.patch │ │ │ └── 202-linksys-find-active-root.patch │ │ ├── patches-4.19 │ │ │ ├── 100-ib62x0.patch │ │ │ ├── 101-iconnect.patch │ │ │ ├── 102-dockstar.patch │ │ │ ├── 103-iomega-ix2-200.patch │ │ │ ├── 104-ea3500.patch │ │ │ ├── 105-ea4500.patch │ │ │ ├── 105-goflexhome.patch │ │ │ ├── 106-goflexnet.patch │ │ │ ├── 107-01-zyxel-nsa3x0-common-nand-partitions.patch │ │ │ ├── 107-02-nsa310b.patch │ │ │ ├── 108-on100.patch │ │ │ ├── 109-pogoplug_v4.patch │ │ │ ├── 201-enable-sata-port-specific-led-triggers.patch │ │ │ └── 202-linksys-find-active-root.patch │ │ └── profiles │ │ │ └── 00-default.mk │ ├── lantiq │ │ ├── Makefile │ │ ├── ase │ │ │ ├── config-4.14 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── dsl │ │ │ │ │ │ ├── led_dsl.sh │ │ │ │ │ │ └── pppoa.sh │ │ │ │ │ └── firmware │ │ │ │ │ │ ├── 11-ath10k-caldata │ │ │ │ │ │ └── 12-ath9k-eeprom │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 01_led_migration │ │ │ │ │ └── 02_migrate_xdsl_iface │ │ │ ├── lib │ │ │ │ ├── functions │ │ │ │ │ ├── lantiq.sh │ │ │ │ │ └── lantiq_dsl.sh │ │ │ │ ├── preinit │ │ │ │ │ └── 05_set_preinit_iface_lantiq │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ └── sbin │ │ │ │ └── dsl_notify.sh │ │ ├── config-4.14 │ │ ├── falcon │ │ │ ├── config-4.14 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── files-4.14 │ │ │ └── arch │ │ │ │ └── mips │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ ├── ACMP252.dts │ │ │ │ ├── ALL0333CJ.dts │ │ │ │ ├── ARV4510PW.dts │ │ │ │ ├── ARV4518PWR01.dts │ │ │ │ ├── ARV4518PWR01.dtsi │ │ │ │ ├── ARV4518PWR01A.dts │ │ │ │ ├── ARV4519PW.dts │ │ │ │ ├── ARV4520PW.dts │ │ │ │ ├── ARV4525PW.dts │ │ │ │ ├── ARV452CQW.dts │ │ │ │ ├── ARV7506PW11.dts │ │ │ │ ├── ARV7510PW22.dts │ │ │ │ ├── ARV7518PW.dts │ │ │ │ ├── ARV7519PW.dts │ │ │ │ ├── ARV7519RW22.dts │ │ │ │ ├── ARV7525PW.dts │ │ │ │ ├── ARV752DPW.dts │ │ │ │ ├── ARV752DPW22.dts │ │ │ │ ├── ARV8539PW22.dts │ │ │ │ ├── ASL56026.dts │ │ │ │ ├── BTHOMEHUBV2B.dts │ │ │ │ ├── BTHOMEHUBV3A.dts │ │ │ │ ├── BTHOMEHUBV5A.dts │ │ │ │ ├── DGN1000B.dts │ │ │ │ ├── DGN3500.dts │ │ │ │ ├── DGN3500.dtsi │ │ │ │ ├── DGN3500B.dts │ │ │ │ ├── DM200.dts │ │ │ │ ├── EASY50712.dts │ │ │ │ ├── EASY50810.dts │ │ │ │ ├── EASY80920.dtsi │ │ │ │ ├── EASY80920NAND.dts │ │ │ │ ├── EASY80920NOR.dts │ │ │ │ ├── EASY88388.dts │ │ │ │ ├── EASY88444.dts │ │ │ │ ├── EASY98000-base.dtsi │ │ │ │ ├── EASY98000NAND.dts │ │ │ │ ├── EASY98000NOR.dts │ │ │ │ ├── EASY98000SFLASH.dts │ │ │ │ ├── EASY98020.dts │ │ │ │ ├── EASY98020V18.dts │ │ │ │ ├── EASY98021.dts │ │ │ │ ├── EASY98035SYNCE.dts │ │ │ │ ├── EASY98035SYNCE1588.dts │ │ │ │ ├── FALCON-MDU.dts │ │ │ │ ├── FALCON-SFP.dts │ │ │ │ ├── FRITZ3370-REV2-HYNIX.dts │ │ │ │ ├── FRITZ3370-REV2-MICRON.dts │ │ │ │ ├── FRITZ3370-REV2.dtsi │ │ │ │ ├── FRITZ7312.dts │ │ │ │ ├── FRITZ7320.dts │ │ │ │ ├── FRITZ7360SL.dts │ │ │ │ ├── FRITZ7362SL.dts │ │ │ │ ├── FRITZ736X.dtsi │ │ │ │ ├── FRITZ7412.dts │ │ │ │ ├── GIGASX76X.dts │ │ │ │ ├── H201L.dts │ │ │ │ ├── P2601HNFX.dts │ │ │ │ ├── P2812HNUF1.dts │ │ │ │ ├── P2812HNUF3.dts │ │ │ │ ├── P2812HNUFX.dtsi │ │ │ │ ├── TDW8970.dts │ │ │ │ ├── TDW8980.dts │ │ │ │ ├── TDW89X0.dtsi │ │ │ │ ├── VG3503J.dts │ │ │ │ ├── VGV7510KW22.dtsi │ │ │ │ ├── VGV7510KW22BRN.dts │ │ │ │ ├── VGV7510KW22NOR.dts │ │ │ │ ├── VGV7519.dtsi │ │ │ │ ├── VGV7519BRN.dts │ │ │ │ ├── VGV7519NOR.dts │ │ │ │ ├── VR200.dts │ │ │ │ ├── VR200.dtsi │ │ │ │ ├── VR200v.dts │ │ │ │ ├── WBMR.dts │ │ │ │ ├── WBMR300.dts │ │ │ │ ├── amazonse.dtsi │ │ │ │ ├── ar9.dtsi │ │ │ │ ├── danube.dtsi │ │ │ │ ├── falcon-sflash-16M.dtsi │ │ │ │ ├── falcon.dtsi │ │ │ │ └── vr9.dtsi │ │ ├── files │ │ │ └── firmware │ │ │ │ └── lantiq │ │ │ │ ├── xrx200_phy11g_a14.bin │ │ │ │ ├── xrx200_phy11g_a22.bin │ │ │ │ ├── xrx200_phy22f_a14.bin │ │ │ │ └── xrx200_phy22f_a22.bin │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── eva.dummy.squashfs │ │ │ ├── tp-link.mk │ │ │ ├── ubinize-overlay.cfg │ │ │ └── ubinize.cfg │ │ ├── modules.mk │ │ ├── patches-4.14 │ │ │ ├── 0001-MIPS-lantiq-add-pcie-driver.patch │ │ │ ├── 0002-gpio-stp-xway-Implement-get-callback.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 │ │ │ ├── 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 │ │ │ ├── 0027-01-net-phy-intel-xway-add-VR9-version-number.patch │ │ │ ├── 0027-02-net-phy-intel-xway-add-VR9-v1.1-phy-ids.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 │ │ │ ├── config-4.14 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── xway │ │ │ ├── config-4.14 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ └── xway_legacy │ │ │ ├── config-4.14 │ │ │ ├── profiles │ │ │ └── 00-default.mk │ │ │ └── target.mk │ ├── layerscape │ │ ├── Makefile │ │ ├── README │ │ ├── armv7 │ │ │ ├── config-4.14 │ │ │ └── target.mk │ │ ├── armv8_32b │ │ │ ├── config-4.14 │ │ │ └── target.mk │ │ ├── armv8_64b │ │ │ ├── config-4.14 │ │ │ └── target.mk │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ ├── 01_led │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 03_gpio_switches │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 05_layerscape_reorder_eth │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── files │ │ │ └── arch │ │ │ │ └── arm64 │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ └── freescale │ │ │ │ ├── traverse-ls1043s.dts │ │ │ │ └── traverse-ls1043v.dts │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── armv7.mk │ │ │ ├── armv8_32b.mk │ │ │ ├── armv8_64b.mk │ │ │ ├── gen_sdcard_head_img.sh │ │ │ └── mkits-multiple-config.sh │ │ ├── modules.mk │ │ └── patches-4.14 │ │ │ ├── 201-config-support-layerscape.patch │ │ │ ├── 202-core-linux-support-layerscape.patch │ │ │ ├── 301-arch-support-layerscape.patch │ │ │ ├── 302-dts-support-layerscape.patch │ │ │ ├── 303-add-DTS-for-Traverse-LS1043-Boards.patch │ │ │ ├── 304-arm-dts-ls1021a-Add-LS1021A-IOT-board-support.patch │ │ │ ├── 701-dpaa2-dpio-support-layerscape.patch │ │ │ ├── 702-dpaa2-ethernet-support-layerscape.patch │ │ │ ├── 703-dpaa2-l2switch-support-layerscape.patch │ │ │ ├── 704-dpaa2-mac-phy-support-layerscape.patch │ │ │ ├── 705-dpaa2-rtc-support-layerscape.patch │ │ │ ├── 706-dpaa2-virtualbridge-support-layerscape.patch │ │ │ ├── 707-dpaa-ethernet-support-layerscape.patch │ │ │ ├── 708-mc-bus-support-layerscape.patch │ │ │ ├── 709-mdio-phy-support-layerscape.patch │ │ │ ├── 710-pfe-eth-support-layerscape.patch │ │ │ ├── 711-dpaa-bqman-support-layerscape.patch │ │ │ ├── 712-sdk-dpaa-rgmii-fixed-link.patch │ │ │ ├── 801-sata-support-layerscape.patch │ │ │ ├── 802-dma-support-layerscape.patch │ │ │ ├── 803-flextimer-support-layerscape.patch │ │ │ ├── 804-i2c-support-layerscape.patch │ │ │ ├── 805-qe-support-layerscape.patch │ │ │ ├── 806-rtc-support-layerscape.patch │ │ │ ├── 807-usb-support-layerscape.patch │ │ │ ├── 808-vfio-support-layerscape.patch │ │ │ ├── 809-flexcan-support-layerscape.patch │ │ │ ├── 810-kvm-support-layerscape.patch │ │ │ ├── 811-clock-support-layerscape.patch │ │ │ ├── 812-flexspi-support-layerscape.patch │ │ │ ├── 813-ifc-nor-nand-support-layerscape.patch │ │ │ ├── 814-ls2-console-support-layerscape.patch │ │ │ ├── 815-msi-support-layerscape.patch │ │ │ ├── 816-pcie-support-layerscape.patch │ │ │ ├── 817-platform-security-support-layerscape.patch │ │ │ ├── 818-qspi-support-layerscape.patch │ │ │ ├── 819-sdhc-support-layerscape.patch │ │ │ ├── 820-sec-support-layerscape.patch │ │ │ ├── 821-smmu-support-layerscape.patch │ │ │ ├── 822-uart-support-layerscape.patch │ │ │ ├── 823-pm-support-layerscape.patch │ │ │ ├── 824-mmc-sdhci-of-esdhc-add-voltage-switch-support-for-ls.patch │ │ │ └── 825-vfio-fsl-mc-Improve-send-mc-command-and-read-respons.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.14 │ │ ├── config-4.19 │ │ ├── image │ │ │ └── Makefile │ │ ├── le │ │ │ ├── config-default │ │ │ └── target.mk │ │ └── le64 │ │ │ ├── config-default │ │ │ └── target.mk │ ├── mcs814x │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ └── lib │ │ │ │ ├── mcs814x.sh │ │ │ │ └── preinit │ │ │ │ └── 01_preinit_do_mcs814x.sh │ │ ├── config-3.18 │ │ ├── files-3.18 │ │ │ ├── arch │ │ │ │ └── arm │ │ │ │ │ ├── boot │ │ │ │ │ └── dts │ │ │ │ │ │ ├── dlan-usb-extender.dts │ │ │ │ │ │ ├── mcs8140.dtsi │ │ │ │ │ │ └── rbt-832.dts │ │ │ │ │ └── mach-mcs814x │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Makefile.boot │ │ │ │ │ ├── board-mcs8140-dt.c │ │ │ │ │ ├── clock.c │ │ │ │ │ ├── common.c │ │ │ │ │ ├── common.h │ │ │ │ │ ├── include │ │ │ │ │ └── mach │ │ │ │ │ │ ├── cpu.h │ │ │ │ │ │ ├── debug-macro.S │ │ │ │ │ │ ├── entry-macro.S │ │ │ │ │ │ ├── gpio.h │ │ │ │ │ │ ├── hardware.h │ │ │ │ │ │ ├── io.h │ │ │ │ │ │ ├── irqs.h │ │ │ │ │ │ ├── mcs814x.h │ │ │ │ │ │ ├── param.h │ │ │ │ │ │ ├── system.h │ │ │ │ │ │ ├── timex.h │ │ │ │ │ │ └── uncompress.h │ │ │ │ │ ├── irq.c │ │ │ │ │ └── timer.c │ │ │ └── drivers │ │ │ │ ├── char │ │ │ │ └── hw_random │ │ │ │ │ └── mcs814x-rng.c │ │ │ │ ├── gpio │ │ │ │ └── gpio-mcs814x.c │ │ │ │ ├── net │ │ │ │ ├── ethernet │ │ │ │ │ └── mcs8140 │ │ │ │ │ │ ├── Kconfig │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ └── nuport_mac.c │ │ │ │ └── phy │ │ │ │ │ └── mcs814x.c │ │ │ │ ├── usb │ │ │ │ └── host │ │ │ │ │ ├── ehci-mcs814x.c │ │ │ │ │ └── ohci-mcs814x.c │ │ │ │ └── watchdog │ │ │ │ └── mcs814x_wdt.c │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ ├── patches-3.18 │ │ │ ├── 001-platform.patch │ │ │ ├── 003-ethernet.patch │ │ │ ├── 004-usb.patch │ │ │ ├── 005-mcs814x_rng.patch │ │ │ ├── 006-mcs814x_wdt.patch │ │ │ ├── 008-mcs814x_gpio.patch │ │ │ ├── 011-mcs814x_internal_phy.patch │ │ │ ├── 012-mtd-cfi_cmdset_0002-force-word-write.patch │ │ │ ├── 013-ohci_workarounds.patch │ │ │ └── 014-debuguart.patch │ │ └── profiles │ │ │ ├── 000-Generic.mk │ │ │ └── 100-dLAN-USB-Extender.mk │ ├── mediatek │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ └── 99-net-ps │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ ├── 05_set_preinit_iface │ │ │ │ ├── 06_set_rps_sock_flow │ │ │ │ ├── 07_set_iface_mac │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── gen_mt7623_emmc_img.sh │ │ │ ├── mt7622.mk │ │ │ └── mt7623.mk │ │ ├── modules.mk │ │ ├── mt7622 │ │ │ ├── config-4.14 │ │ │ ├── profiles │ │ │ │ └── default.mk │ │ │ └── target.mk │ │ ├── mt7623 │ │ │ ├── config-4.14 │ │ │ ├── profiles │ │ │ │ └── default.mk │ │ │ └── target.mk │ │ └── patches-4.14 │ │ │ ├── 0006-reset-mediatek-mt2701-reset-driver.patch │ │ │ ├── 0012-clk-dont-disable-unused-clocks.patch │ │ │ ├── 0027-net-next-mediatek-fix-DQL-support.patch │ │ │ ├── 0032-net-dsa-mediatek-add-support-for-GMAC2-wired-to-ext-.patch │ │ │ ├── 0033-dsa-multi-cpu.patch │ │ │ ├── 0035-net-mediatek-disable-RX-VLan-offloading.patch │ │ │ ├── 0042-net-next-mediatek-honour-special-tag-bit-inside-RX-D.patch │ │ │ ├── 0043-net-next-mediatek-enable-special-tag-indication-for-.patch │ │ │ ├── 0044-net-next-dsa-mediatek-tell-GDMA-when-we-are-turning-.patch │ │ │ ├── 0045-net-dsa-mediatek-turn-into-platform-driver.patch │ │ │ ├── 0046-net-mediatek-add-irq-delay.patch │ │ │ ├── 0051-net-mediatek-increase-tx_timeout.patch │ │ │ ├── 0052-net-phy-add-FC.patch │ │ │ ├── 0062-mdio-atomic.patch │ │ │ ├── 0063-atomic-sleep.patch │ │ │ ├── 0064-dts.patch │ │ │ ├── 0101-reset-mediatek-add-reset-controller-dt-bindings-requ.patch │ │ │ ├── 0102-soc-mediatek-pwrap-fixup-warnings-from-coding-style.patch │ │ │ ├── 0104-usb-mtu3-support-option-to-disable-usb3-ports.patch │ │ │ ├── 0105-usb-mtu3-remove-dummy-wakeup-debounce-clocks.patch │ │ │ ├── 0106-usb-mtu3-add-optional-mcu-and-dma-bus-clocks.patch │ │ │ ├── 0107-usb-mtu3-support-36-bit-DMA-address.patch │ │ │ ├── 0108-usb-mtu3-use-FORCE-RG_IDDIG-to-implement-manual-DRD-.patch │ │ │ ├── 0109-usb-mtu3-add-support-for-usb3.1-IP.patch │ │ │ ├── 0110-usb-mtu3-get-optional-vbus-for-host-only-mode.patch │ │ │ ├── 0111-usb-mtu3-set-invalid-dr_mode-as-dual-role-mode.patch │ │ │ ├── 0112-usb-mtu3-set-otg_sel-for-u2port-only-if-works-as-dua.patch │ │ │ ├── 0113-dt-bindings-usb-mtu3-add-a-optional-property-to-disa.patch │ │ │ ├── 0114-dt-bindings-usb-mtu3-remove-dummy-clocks-and-add-opt.patch │ │ │ ├── 0115-dt-bindings-usb-mtu3-remove-optional-pinctrls.patch │ │ │ ├── 0116-dt-bindings-arm-mediatek-add-MT7622-string-to-the-PM.patch │ │ │ ├── 0117-soc-mediatek-pwrap-add-pwrap_read32-for-reading-in-3.patch │ │ │ ├── 0118-soc-mediatek-pwrap-add-pwrap_write32-for-writing-in-.patch │ │ │ ├── 0119-soc-mediatek-pwrap-refactor-pwrap_init-for-the-vario.patch │ │ │ ├── 0120-soc-mediatek-pwrap-add-MediaTek-MT6380-as-one-slave-.patch │ │ │ ├── 0121-soc-mediatek-pwrap-add-common-way-for-setup-CS-timin.patch │ │ │ ├── 0122-soc-mediatek-pwrap-add-support-for-MT7622-SoC.patch │ │ │ ├── 0123-soc-mediatek-place-Kconfig-for-all-SoC-drivers-under.patch │ │ │ ├── 0124-arm64-mediatek-cleanup-message-for-platform-selectio.patch │ │ │ ├── 0125-phy-phy-mtk-tphy-add-set_mode-callback.patch │ │ │ ├── 0126-usb-xhci-mtk-use-dma_set_mask_and_coherent-in-probe-.patch │ │ │ ├── 0127-usb-xhci-mtk-use-ports-count-from-xhci-in-xhci_mtk_s.patch │ │ │ ├── 0128-usb-xhci-mtk-check-clock-stability-of-U3_MAC.patch │ │ │ ├── 0129-usb-xhci-mtk-support-option-to-disable-usb3-ports.patch │ │ │ ├── 0130-usb-xhci-mtk-remove-dummy-wakeup-debounce-clocks.patch │ │ │ ├── 0131-usb-xhci-mtk-add-optional-mcu-and-dma-bus-clocks.patch │ │ │ ├── 0132-usb-host-modify-description-for-MTK-xHCI-config.patch │ │ │ ├── 0133-dt-bindings-usb-mtk-xhci-add-a-optional-property-to-.patch │ │ │ ├── 0134-dt-bindings-usb-mtk-xhci-remove-dummy-clocks-and-add.patch │ │ │ ├── 0135-dt-bindings-mtd-add-new-compatible-strings-and-impro.patch │ │ │ ├── 0136-mtd-mtk-nor-add-suspend-resume-support.patch │ │ │ ├── 0137-dt-bindings-rtc-mediatek-add-bindings-for-MediaTek-S.patch │ │ │ ├── 0138-rtc-mediatek-add-driver-for-RTC-on-MT7622-SoC.patch │ │ │ ├── 0139-rtc-mediatek-enhance-the-description-for-MediaTek-PM.patch │ │ │ ├── 0140-mtd-nand-mtk-change-the-compile-sequence-of-mtk_nand.patch │ │ │ ├── 0142-mmc-dt-bindings-Add-reg-source_cg-latch-ck-for-Media.patch │ │ │ ├── 0143-mmc-mediatek-add-support-of-mt2701-mt2712.patch │ │ │ ├── 0144-dt-bindings-ARM-Mediatek-Document-bindings-for-MT271.patch │ │ │ ├── 0145-clk-mediatek-Add-dt-bindings-for-MT2712-clocks.patch │ │ │ ├── 0146-clk-mediatek-Add-MT2712-clock-support.patch │ │ │ ├── 0147-dt-bindings-clock-mediatek-document-clk-bindings-for.patch │ │ │ ├── 0149-clk-mediatek-add-clocks-dt-bindings-required-header-.patch │ │ │ ├── 0150-clk-mediatek-add-clock-support-for-MT7622-SoC.patch │ │ │ ├── 0151-arm64-dts-mt8173-remove-mediatek-mt8135-mmc-from-mmc.patch │ │ │ ├── 0152-mmc-mediatek-make-hs400_tune_response-only-for-mt817.patch │ │ │ ├── 0153-mmc-mediatek-add-pad_tune0-support.patch │ │ │ ├── 0154-mmc-mediatek-add-async-fifo-and-data-tune-support.patch │ │ │ ├── 0155-mmc-mediatek-add-busy_check-support.patch │ │ │ ├── 0156-mmc-mediatek-add-stop_clk-fix-and-enhance_rx-support.patch │ │ │ ├── 0157-mmc-mediatek-add-support-of-source_cg-clock.patch │ │ │ ├── 0158-mmc-mediatek-add-latch-ck-support.patch │ │ │ ├── 0159-mmc-mediatek-improve-eMMC-hs400-mode-read-performanc.patch │ │ │ ├── 0160-mmc-mediatek-perfer-to-use-rise-edge-latching-for-cm.patch │ │ │ ├── 0161-pwm-mediatek-Add-MT2712-MT7622-support.patch │ │ │ ├── 0162-mtd-nand-mtk-use-nand_reset-to-reset-NAND-devices-in.patch │ │ │ ├── 0164-cpufreq-mediatek-add-mt2712-into-compatible-list.patch │ │ │ ├── 0165-mtd-nand-mtk-update-DT-bindings.patch │ │ │ ├── 0166-mtd-nand-mtk-Support-different-MTK-NAND-flash-contro.patch │ │ │ ├── 0167-mtd-nand-mtk-Support-MT7622-NAND-flash-controller.patch │ │ │ ├── 0168-mmc-dt-bindings-add-mmc-support-to-MT7623-SoC.patch │ │ │ ├── 0169-dt-bindings-pinctrl-add-bindings-for-MediaTek-MT7622.patch │ │ │ ├── 0170-pinctrl-mediatek-cleanup-for-placing-all-drivers-und.patch │ │ │ ├── 0171-pinctrl-mediatek-add-pinctrl-driver-for-MT7622-SoC.patch │ │ │ ├── 0172-clk-mediatek-group-drivers-under-indpendent-menu.patch │ │ │ ├── 0173-clk-mediatek-fixup-test-building-of-MediaTek-clock-d.patch │ │ │ ├── 0174-dt-bindings-net-mediatek-add-condition-to-property-m.patch │ │ │ ├── 0175-net-mediatek-remove-superfluous-pin-setup-for-MT7622.patch │ │ │ ├── 0176-clk-mediatek-Fix-all-warnings-for-missing-struct-clk.patch │ │ │ ├── 0178-phy-phy-mtk-tphy-make-shared-banks-optional-for-V1-T.patch │ │ │ ├── 0179-phy-phy-mtk-tphy-use-of_device_get_match_data.patch │ │ │ ├── 0180-ASoC-mediatek-fix-error-handling-in-mt2701_afe_pcm_d.patch │ │ │ ├── 0181-ASoC-mediatek-rework-clock-functions-for-MT2701.patch │ │ │ ├── 0182-ASoC-mediatek-cleanup-audio-driver-for-MT2701.patch │ │ │ ├── 0183-ASoC-mediatek-update-clock-related-properties-of-MT2.patch │ │ │ ├── 0184-ASoC-mediatek-add-some-core-clocks-for-MT2701-AFE.patch │ │ │ ├── 0185-ASoC-mediatek-modify-MT2701-AFE-driver-to-adapt-mfd-.patch │ │ │ ├── 0186-ASoC-mediatek-update-MT2701-AFE-documentation-to-ada.patch │ │ │ ├── 0187-usb-mtu3-fix-error-code-for-getting-extcon-device.patch │ │ │ ├── 0188-usb-mtu3-supports-remote-wakeup-for-mt2712-with-two-.patch │ │ │ ├── 0189-dt-bindings-usb-mtu3-update-USB-wakeup-properties.patch │ │ │ ├── 0190-usb-xhci-mtk-supports-remote-wakeup-for-mt2712-with-.patch │ │ │ ├── 0191-usb-xhci-allow-imod-interval-to-be-configurable.patch │ │ │ ├── 0192-dt-bindings-usb-mtk-xhci-update-USB-wakeup-propertie.patch │ │ │ ├── 0193-clk-mediatek-adjust-dependency-of-reset.c-to-avoid-u.patch │ │ │ ├── 0194-pinctrl-mediatek-mt7622-fix-potential-uninitialized-.patch │ │ │ ├── 0195-pinctrl-mediatek-mt7622-align-error-handling-of-mtk_.patch │ │ │ ├── 0196-mtd-mtk-nor-modify-functions-name-more-generally.patch │ │ │ ├── 0197-hwrng-mediatek-Setup-default-RNG-quality.patch │ │ │ ├── 0198-dt-bindings-thermal-add-binding-for-MT7622-SoC.patch │ │ │ ├── 0199-thermal-mtk-Cleanup-unused-defines.patch │ │ │ ├── 0200-thermal-mediatek-add-support-for-MT7622-SoC.patch │ │ │ ├── 0201-dt-bindings-clock-mediatek-add-missing-required-rese.patch │ │ │ ├── 0202-mmc-dt-bindings-add-support-for-MT7622-SoC.patch │ │ │ ├── 0203-mmc-mediatek-add-support-for-MT7622-SoC.patch │ │ │ ├── 0204-dt-bindings-dmaengine-Add-MediaTek-High-Speed-DMA-co.patch │ │ │ ├── 0205-dmaengine-mediatek-Add-MediaTek-High-Speed-DMA-contr.patch │ │ │ ├── 0206-dt-bindings-clock-mediatek-update-audsys-documentati.patch │ │ │ ├── 0207-dt-bindings-clock-mediatek-add-audsys-support-for-MT.patch │ │ │ ├── 0208-clk-mediatek-update-missing-clock-data-for-MT7622-au.patch │ │ │ ├── 0209-clk-mediatek-add-devm_of_platform_populate-for-MT762.patch │ │ │ ├── 0210-arm64-dts-mt7622-add-clock-controller-device-nodes.patch │ │ │ ├── 0211-arm64-dts-mt7622-add-power-domain-controller-device-.patch │ │ │ ├── 0212-arm64-dts-mt7622-add-pinctrl-related-device-nodes.patch │ │ │ ├── 0213-arm64-dts-mt7622-add-PMIC-MT6380-related-nodes.patch │ │ │ ├── 0214-arm64-dts-mt7622-add-cpufreq-related-device-nodes.patch │ │ │ ├── 0215-arm64-dts-mt7622-turn-uart0-clock-to-real-ones.patch │ │ │ ├── 0216-arm64-dts-mt7622-add-SoC-and-peripheral-related-devi.patch │ │ │ ├── 0217-arm64-dts-mt7622-add-flash-related-device-nodes.patch │ │ │ ├── 0218-arm64-dts-mt7622-add-ethernet-device-nodes.patch │ │ │ ├── 0219-arm64-dts-mt7622-add-PCIe-device-nodes.patch │ │ │ ├── 0220-arm64-dts-mt7622-add-SATA-device-nodes.patch │ │ │ ├── 0221-arm64-dts-mt7622-add-usb-device-nodes.patch │ │ │ ├── 0222-arm64-dts-mt7622-add-High-Speed-DMA-device-nodes.patch │ │ │ ├── 0223-arm64-dts-mt7622-add-mmc-related-device-nodes.patch │ │ │ ├── 0224-add-mt7622-defconfig-for-testing-these-new-drivers.patch │ │ │ ├── 0225-arm-dts-Add-missing-mt7623-pcie-nodes.patch │ │ │ ├── 0226-phy-phy-mtk-tphy-Add-hifsys-support.patch │ │ │ └── 0227-arm-dts-Add-Unielec-U7623-DTS.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.14 │ │ ├── config-4.19 │ │ ├── files │ │ │ └── arch │ │ │ │ └── powerpc │ │ │ │ ├── boot │ │ │ │ ├── cuboot-tl-wdr4900-v1.c │ │ │ │ └── dts │ │ │ │ │ ├── hiveap-330.dts │ │ │ │ │ ├── panda.dts │ │ │ │ │ ├── red-15w-rev1.dts │ │ │ │ │ └── tl-wdr4900-v1.dts │ │ │ │ └── platforms │ │ │ │ └── 85xx │ │ │ │ ├── hiveap-330.c │ │ │ │ ├── panda.c │ │ │ │ ├── red15w_rev1.c │ │ │ │ └── tl_wdr4900_v1.c │ │ ├── generic │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── image │ │ │ └── Makefile │ │ ├── p1020 │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── p2020 │ │ │ ├── config-default │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── patches-4.14 │ │ │ ├── 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-fix-build-cross32ar.patch │ │ │ ├── 104-powerpc-mpc85xx-change-P2020RDB-dts-file-for-OpenWRT.patch │ │ │ ├── 105-powerpc-85xx-red-15w-rev1.patch │ │ │ └── 106-powerpc-85xx-panda-support.patch │ │ └── 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 │ ├── mvebu │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ ├── hotplug.d │ │ │ │ │ └── ieee80211 │ │ │ │ │ │ └── 00-wifi-config-migrate │ │ │ │ ├── init.d │ │ │ │ │ └── linksys_recovery │ │ │ │ └── uci-defaults │ │ │ │ │ ├── 03_wireless │ │ │ │ │ └── 04_mambafan │ │ │ ├── lib │ │ │ │ ├── mvebu.sh │ │ │ │ ├── preinit │ │ │ │ │ ├── 01_sysinfo │ │ │ │ │ ├── 06_set_iface_mac │ │ │ │ │ ├── 79_move_config │ │ │ │ │ └── 81_linksys_syscfg │ │ │ │ └── upgrade │ │ │ │ │ ├── linksys.sh │ │ │ │ │ ├── platform.sh │ │ │ │ │ └── sdcard.sh │ │ │ └── sbin │ │ │ │ └── fan_ctrl.sh │ │ ├── config-4.14 │ │ ├── cortexa53 │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── cortexa72 │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── cortexa9 │ │ │ └── target.mk │ │ ├── files-4.14 │ │ │ └── arch │ │ │ │ └── arm │ │ │ │ └── boot │ │ │ │ └── dts │ │ │ │ └── armada-385-linksys-venom.dts │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── armada-3720-db.bootscript │ │ │ ├── armada-388-clearfog-base.bootscript │ │ │ ├── armada-388-clearfog-pro.bootscript │ │ │ ├── armada-macchiatobin.bootscript │ │ │ ├── cortex-a53.mk │ │ │ ├── cortex-a72.mk │ │ │ ├── cortex-a9.mk │ │ │ ├── gen_mvebu_sdcard_img.sh │ │ │ └── globalscale-espressobin.bootscript │ │ └── patches-4.14 │ │ │ ├── 002-add_powertables.patch │ │ │ ├── 003-add_switch_nodes.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 │ │ │ ├── 103-remove-nand-driver-bug.patch │ │ │ ├── 104-linksys_mamba_disable_keep_config.patch │ │ │ ├── 105-build_new_dtbs.patch │ │ │ ├── 110-pxa3xxx_revert_irq_thread.patch │ │ │ ├── 205-armada-385-rd-mtd-partitions.patch │ │ │ ├── 206-ARM-mvebu-385-ap-Add-partitions.patch │ │ │ ├── 210-clearfog_switch_node.patch │ │ │ ├── 220-disable-untested-dsa-boards.patch │ │ │ ├── 230-armada-xp-linksys-mamba-broken-idle.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 │ │ │ ├── 402-sfp-display-SFP-module-information.patch │ │ │ ├── 403-net-mvneta-convert-to-phylink.patch │ │ │ ├── 404-net-mvneta-hack-fix-phy_interface.patch │ │ │ ├── 405-net-mvneta-disable-MVNETA_CAUSE_PSC_SYNC_CHANGE-inte.patch │ │ │ ├── 406-net-mvneta-add-module-EEPROM-reading-support.patch │ │ │ ├── 407-phy-fixed-phy-remove-fixed_phy_update_state.patch │ │ │ ├── 408-sfp-move-module-eeprom-ethtool-access-into-netdev-co.patch │ │ │ ├── 409-sfp-use-netdev-sfp_bus-for-start-stop.patch │ │ │ ├── 410-sfp-hack-allow-marvell-10G-phy-support-to-use-SFP.patch │ │ │ ├── 411-sfp-add-sfp-compatible.patch │ │ │ ├── 412-ARM-dts-armada388-clearfog-emmc-on-clearfog-base.patch │ │ │ ├── 413-ARM-dts-armada388-clearfog-increase-speed-of-i2c0-to.patch │ │ │ ├── 414-ARM-dts-armada388-clearfog-add-SFP-module-support.patch │ │ │ ├── 415-ARM-dts-armada388-clearfog-document-MPP-usage.patch │ │ │ ├── 420-rtc-armada38x-add-support-for-trimming-the-RTC.patch │ │ │ ├── 421-rtc-armada38x-reset-after-rtc-power-loss.patch │ │ │ ├── 423-ARM-dts-armada-385-linksys-Disable-internal-RTC.patch │ │ │ ├── 450-reprobe_sfp_phy.patch │ │ │ ├── 500-arm64-dts-marvell-Fix-A37xx-UART0-register-size.patch │ │ │ ├── 501-spi-a3700-Change-SPI-mode-before-asserting-chip-sele.patch │ │ │ ├── 502-arm64-dts-marvell-armada-37xx-add-UART-clock.patch │ │ │ ├── 503-clk-mvebu-armada-37xx-periph-cosmetic-changes.patch │ │ │ ├── 504-clk-mvebu-armada-37xx-periph-prepare-cpu-clk-to-be-u.patch │ │ │ ├── 505-clk-mvebu-armada-37xx-periph-add-DVFS-support-for-cp.patch │ │ │ ├── 506-cpufreq-Add-DVFS-support-for-Armada-37xx.patch │ │ │ ├── 507-arm64-dts-marvell-armada-37xx-add-nodes-allowing-cpu.patch │ │ │ ├── 508-arm64-dts-armada-3720-espressobin-wire-up-spi-flash.patch │ │ │ ├── 509-cpufreq-armada-37xx-Fix-clock-leak.patch │ │ │ ├── 510-clk-mvebu-armada-37xx-periph-Fix-switching-CPU-rate-.patch │ │ │ ├── 511-clk-mvebu-armada-37xx-periph-Fix-wrong-return-value-.patch │ │ │ ├── 512-clk-mvebu-armada-37xx-periph-Remove-unused-var-num_p.patch │ │ │ ├── 520-arm64-dts-marvell-armada37xx-Add-eth0-alias.patch │ │ │ ├── 521-arm64-dts-armada-3720-espressobin-correct-spi-node.patch │ │ │ ├── 524-PCI-aardvark-set-host-and-device-to-the-same-MAX-payload-size.patch │ │ │ ├── 526-PCI-aardvark-disable-LOS-state-by-default.patch │ │ │ ├── 527-PCI-aardvark-allow-to-specify-link-capability.patch │ │ │ └── 528-arm64-dts-armada-3720-espressobin-set-max-link-to-ge.patch │ ├── mxs │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ └── 02_network │ │ │ │ ├── diag.sh │ │ │ │ └── inittab │ │ ├── config-4.14 │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_sdcard_ext4_ext4.sh │ │ │ └── gen_sdcard_vfat_ext4.sh │ │ ├── patches-4.14 │ │ │ └── 110-crypto-mxsdcp-provide-importexport.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.14 │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-4.14 │ │ │ ├── 100-ubnt_edgerouter2_support.patch │ │ │ ├── 110-er200-ethernet_probe_order.patch │ │ │ ├── 160-cmdline-hack.patch │ │ │ └── 170-cisco-hack.patch │ │ └── profiles │ │ │ └── 000-Generic.mk │ ├── octeontx │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ └── 02_network │ │ │ │ └── inittab │ │ ├── config-4.14 │ │ ├── image │ │ │ └── Makefile │ │ └── patches-4.14 │ │ │ ├── 0001-net-thunderx-add-support-for-rgmii-internal-delay-mo.patch │ │ │ └── 0001-net-thunderx-workaround-BGX-TX-Underflow-issue.patch │ ├── omap │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── inittab │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 79_move_config │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.14 │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── gen_omap_sdcard_img.sh │ │ │ └── ubinize.cfg │ │ └── profiles │ │ │ └── 00-default.mk │ ├── omap24xx │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── config │ │ │ │ │ ├── fstab │ │ │ │ │ ├── network │ │ │ │ │ └── wireless │ │ │ │ ├── hotplug.d │ │ │ │ │ └── firmware │ │ │ │ │ │ ├── 10-bme-pmm-image │ │ │ │ │ │ └── 20-p54spi-eeprom │ │ │ │ ├── init.d │ │ │ │ │ └── watchdog │ │ │ │ ├── inittab │ │ │ │ └── pointercal │ │ │ └── lib │ │ │ │ └── firmware │ │ │ │ └── bc4fw.bin │ │ ├── config-4.1 │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ └── profiles │ │ │ ├── 100-n810.mk │ │ │ └── 110-n810-gui.mk │ ├── orion │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ └── 02_network │ │ │ │ └── hotplug.d │ │ │ │ │ └── usb │ │ │ │ │ └── 10-usb │ │ │ └── lib │ │ │ │ └── preinit │ │ │ │ └── 01_sysinfo │ │ ├── config-4.9 │ │ ├── generic │ │ │ ├── base-files │ │ │ │ ├── etc │ │ │ │ │ └── uci-defaults │ │ │ │ │ │ └── 09_hardware │ │ │ │ └── lib │ │ │ │ │ └── upgrade │ │ │ │ │ └── platform.sh │ │ │ └── target.mk │ │ ├── harddisk │ │ │ ├── config-default │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── generic.mk │ │ │ └── harddisk.mk │ │ └── patches-4.9 │ │ │ ├── 000-arm_openwrt_machtypes.patch │ │ │ ├── 100-wrt350nv2_openwrt_partition_map.patch │ │ │ ├── 101-wnr854t_partition_map.patch │ │ │ ├── 200-dt2_board_support.patch │ │ │ └── 210-wn802t_support.patch │ ├── oxnas │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ └── board.d │ │ │ │ │ └── 02_network │ │ │ ├── init.d │ │ │ │ └── set-irq-affinity │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.14 │ │ ├── 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 │ │ │ │ └── host │ │ │ │ │ └── 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-4.14 │ │ │ ├── 0001-ARM-dts-rename-oxnas-dts-files.patch │ │ │ ├── 0002-MAINTAINERS-update-ARM-OXNAS-platform-support-patter.patch │ │ │ ├── 0003-ARM-configs-add-OXNAS-v6-defconfig.patch │ │ │ ├── 010-add-console-to-pogoplogv3-bootargs.patch │ │ │ ├── 020-nand-partitions-on-pogoplug-v3.patch │ │ │ ├── 030-led-aliases-on-pogoplug-v3.patch │ │ │ ├── 040-pogoplug-series-3-compatible-string.patch │ │ │ ├── 050-ox820-remove-left-overs.patch │ │ │ ├── 060-fix-oxnas-rps-dt-match.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 │ │ │ │ └── diag.sh │ │ │ └── lib │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.14 │ │ ├── image │ │ │ └── Makefile │ │ ├── patches-4.14 │ │ │ ├── 101-dmaengine-img-mdc-Handle-early-status-read.patch │ │ │ ├── 102-spi-img-spfi-Implement-dual-and-quad-mode.patch │ │ │ ├── 103-spi-img-spfi-set-device-select-bits-for-SPFI-port-st.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 │ │ │ ├── 107-clockevents-Retry-programming-min-delta-up-to-10-tim.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 │ │ │ ├── 411-mtd-nand-Check-length-of-ID-before-reading-bits-per-.patch │ │ │ ├── 412-mtd-nand-Add-JEDEC-manufacturer-ID-for-Gigadevice.patch │ │ │ ├── 413-mtd-Introduce-SPI-NAND-framework.patch │ │ │ ├── 414-mtd-spi-nand-Support-Gigadevice-GD5F.patch │ │ │ ├── 901-MIPS-DTS-img-marduk-add-nor-partition-name.patch │ │ │ └── 902-MIPS-DTS-img-marduk-add-nand-device-support.patch │ │ └── profiles │ │ │ └── 00-default.mk │ ├── ppc40x │ │ ├── Makefile │ │ ├── base-files │ │ │ └── lib │ │ │ │ ├── preinit │ │ │ │ └── 01_sysinfo │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-3.18 │ │ ├── image │ │ │ └── Makefile │ │ ├── modules.mk │ │ └── patches-3.18 │ │ │ ├── 003-powerpc-add-EBC_BXCR-defines.patch │ │ │ ├── 004-magicbox.patch │ │ │ ├── 005-openrb.patch │ │ │ ├── 101-pata-magicbox-cf-driver.patch │ │ │ ├── 110-kilauea_openwrt_flashmap.patch │ │ │ ├── 120-usb-isp116x-hcd-add-of-binding.patch │ │ │ └── 121-usb-isp116x-hcd-ppc405-register-access.patch │ ├── ppc44x │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── inittab │ │ ├── config-3.18 │ │ ├── image │ │ │ └── Makefile │ │ └── patches-3.18 │ │ │ ├── 001-crypto-amcc-remove-incorrect-__init-__exit-markups.patch │ │ │ ├── 100-openwrt_flashmap.patch │ │ │ ├── 110-openwrt_dts_cmdline.patch │ │ │ └── 900-bootwrapper-parallel-make-fix.patch │ ├── ramips │ │ ├── Makefile │ │ ├── base-files │ │ │ ├── etc │ │ │ │ ├── board.d │ │ │ │ │ ├── 01_leds │ │ │ │ │ ├── 02_network │ │ │ │ │ └── 03_gpio_switches │ │ │ │ ├── hotplug.d │ │ │ │ │ ├── firmware │ │ │ │ │ │ └── 10-rt2x00-eeprom │ │ │ │ │ └── usb │ │ │ │ │ │ └── 10-motion │ │ │ │ ├── init.d │ │ │ │ │ ├── bootcount │ │ │ │ │ └── set-irq-affinity │ │ │ │ ├── inittab │ │ │ │ └── uci-defaults │ │ │ │ │ └── 09_fix-checksum │ │ │ ├── lib │ │ │ │ ├── preinit │ │ │ │ │ ├── 01_preinit_do_ramips.sh │ │ │ │ │ ├── 04_handle_checksumming │ │ │ │ │ └── 07_set_preinit_iface_ramips │ │ │ │ ├── ramips.sh │ │ │ │ └── upgrade │ │ │ │ │ ├── platform.sh │ │ │ │ │ └── ubnt.sh │ │ │ └── sbin │ │ │ │ └── fixup-mac-address │ │ ├── dts │ │ │ ├── 11ACNAS.dts │ │ │ ├── 3G-6200N.dts │ │ │ ├── 3G-6200NL.dts │ │ │ ├── 3G150B.dts │ │ │ ├── 3G300M.dts │ │ │ ├── A5-V11.dts │ │ │ ├── AC1200RM.dts │ │ │ ├── AI-BR100.dts │ │ │ ├── AIR3GII.dts │ │ │ ├── ALL0256N-4M.dts │ │ │ ├── ALL0256N-8M.dts │ │ │ ├── ALL0256N.dtsi │ │ │ ├── ALL5002.dts │ │ │ ├── ALL5003.dts │ │ │ ├── AP-MT7621A-V60.dts │ │ │ ├── AR670W.dts │ │ │ ├── AR725W.dts │ │ │ ├── ASL26555-16M.dts │ │ │ ├── ASL26555-8M.dts │ │ │ ├── ASL26555.dtsi │ │ │ ├── ATP-52B.dts │ │ │ ├── AWAPN2403.dts │ │ │ ├── AWM002-EVB-4M.dts │ │ │ ├── AWM002-EVB-8M.dts │ │ │ ├── AWM002-EVB.dtsi │ │ │ ├── AWUSFREE1.dts │ │ │ ├── ArcherC2-v1.dts │ │ │ ├── ArcherC20i.dts │ │ │ ├── ArcherC20v1.dts │ │ │ ├── ArcherC20v4.dts │ │ │ ├── ArcherC50.dts │ │ │ ├── ArcherC50V3.dts │ │ │ ├── ArcherC50V4.dts │ │ │ ├── ArcherMR200.dts │ │ │ ├── BC2.dts │ │ │ ├── BDCOM-WAP2100-SK.dts │ │ │ ├── BOCCO.dts │ │ │ ├── BR-6475ND.dts │ │ │ ├── BR-6478AC-V2.dts │ │ │ ├── BROADWAY.dts │ │ │ ├── C108.dts │ │ │ ├── CARAMBOLA.dts │ │ │ ├── CF-WR800N.dts │ │ │ ├── CS-QR10.dts │ │ │ ├── CY-SWR1100.dts │ │ │ ├── CreativeBox-v1.dts │ │ │ ├── D105.dts │ │ │ ├── D240.dts │ │ │ ├── DAP-1350.dts │ │ │ ├── DAP-1522-A1.dts │ │ │ ├── DB-WRT01.dts │ │ │ ├── DCH-M225.dts │ │ │ ├── DCS-930.dts │ │ │ ├── DCS-930L-B1.dts │ │ │ ├── DIR-300-B1.dts │ │ │ ├── DIR-300-B7.dts │ │ │ ├── DIR-320-B1.dts │ │ │ ├── DIR-510L.dts │ │ │ ├── DIR-600-B1.dts │ │ │ ├── DIR-610-A1.dts │ │ │ ├── DIR-615-D.dts │ │ │ ├── DIR-615-H1.dts │ │ │ ├── DIR-620-A1.dts │ │ │ ├── DIR-620-D1.dts │ │ │ ├── DIR-645.dts │ │ │ ├── DIR-810L.dts │ │ │ ├── DIR-860L-B1.dts │ │ │ ├── DUZUN-DM06.dts │ │ │ ├── DWR-116-A1.dts │ │ │ ├── DWR-118-A1.dts │ │ │ ├── DWR-118-A2.dts │ │ │ ├── DWR-512-B.dts │ │ │ ├── DWR-921-C1.dts │ │ │ ├── DWR-922-E2.dts │ │ │ ├── E1700.dts │ │ │ ├── ESR-9753.dts │ │ │ ├── EW1200.dts │ │ │ ├── EX2700.dts │ │ │ ├── EX3700.dts │ │ │ ├── F5D8235_V1.dts │ │ │ ├── F5D8235_V2.dts │ │ │ ├── F7C027.dts │ │ │ ├── F9K1109V1.dts │ │ │ ├── F9K110x.dtsi │ │ │ ├── FIREWRT.dts │ │ │ ├── FONERA20N.dts │ │ │ ├── FREESTATION5.dts │ │ │ ├── GB-PC1.dts │ │ │ ├── GB-PC2.dts │ │ │ ├── GHL-R-001.dts │ │ │ ├── GL-MT300A.dts │ │ │ ├── GL-MT300N-V2.dts │ │ │ ├── GL-MT300N.dts │ │ │ ├── GL-MT750.dts │ │ │ ├── HC5661.dts │ │ │ ├── HC5661A.dts │ │ │ ├── HC5761.dts │ │ │ ├── HC5861.dts │ │ │ ├── HC5861B.dts │ │ │ ├── HC5962.dts │ │ │ ├── HC5X61.dtsi │ │ │ ├── HG255D.dts │ │ │ ├── HLKRM04.dts │ │ │ ├── HPM.dts │ │ │ ├── HT-TM02.dts │ │ │ ├── HW550-3G.dts │ │ │ ├── IP2202.dts │ │ │ ├── JHR-N805R.dts │ │ │ ├── JHR-N825R.dts │ │ │ ├── JHR-N926R.dts │ │ │ ├── K2G.dts │ │ │ ├── K2P.dts │ │ │ ├── LINKIT7688.dts │ │ │ ├── LR-25G001.dts │ │ │ ├── M2M.dts │ │ │ ├── M3.dts │ │ │ ├── M4-4M.dts │ │ │ ├── M4-8M.dts │ │ │ ├── M4.dtsi │ │ │ ├── MAC1200RV2.dts │ │ │ ├── MINIEMBPLUG.dts │ │ │ ├── MINIEMBWIFI.dts │ │ │ ├── MIR3G.dts │ │ │ ├── MIR3P.dts │ │ │ ├── MIWIFI-MINI.dts │ │ │ ├── MIWIFI-NANO.dts │ │ │ ├── MLW221.dts │ │ │ ├── MLWG2.dts │ │ │ ├── MOFI3500-3GN.dts │ │ │ ├── MPRA1.dts │ │ │ ├── MPRA2.dts │ │ │ ├── MR-102N.dts │ │ │ ├── MT7620a.dts │ │ │ ├── MT7620a_MT7530.dts │ │ │ ├── MT7620a_MT7610e.dts │ │ │ ├── MT7620a_V22SG.dts │ │ │ ├── MT7621.dts │ │ │ ├── MT7628.dts │ │ │ ├── MZK-750DHP.dts │ │ │ ├── MZK-DP150N.dts │ │ │ ├── MZK-EX300NP.dts │ │ │ ├── MZK-EX750NP.dts │ │ │ ├── MZK-W300NH2.dts │ │ │ ├── MZK-WDPR.dts │ │ │ ├── MicroWRT.dts │ │ │ ├── NA930.dts │ │ │ ├── NBG-419N.dts │ │ │ ├── NBG-419N2.dts │ │ │ ├── NCS601W.dts │ │ │ ├── NIXCORE-16M.dts │ │ │ ├── NIXCORE-8M.dts │ │ │ ├── NIXCORE.dtsi │ │ │ ├── NW718.dts │ │ │ ├── Newifi-D1.dts │ │ │ ├── Newifi-D2.dts │ │ │ ├── OMEGA2.dts │ │ │ ├── OMEGA2.dtsi │ │ │ ├── OMEGA2P.dts │ │ │ ├── OY-0001.dts │ │ │ ├── PBR-D1.dts │ │ │ ├── PBR-M1.dts │ │ │ ├── PSG1208.dts │ │ │ ├── PSG1218.dtsi │ │ │ ├── PSG1218A.dts │ │ │ ├── PSG1218B.dts │ │ │ ├── PSR-680W.dts │ │ │ ├── PWH2004.dts │ │ │ ├── PX-4885-4M.dts │ │ │ ├── PX-4885-8M.dts │ │ │ ├── PX-4885.dtsi │ │ │ ├── R6120.dts │ │ │ ├── R6220.dts │ │ │ ├── R6350.dts │ │ │ ├── RB750Gr3.dts │ │ │ ├── RBM11G.dts │ │ │ ├── RBM33G.dts │ │ │ ├── RE350.dts │ │ │ ├── RE6500.dts │ │ │ ├── RP-N53.dts │ │ │ ├── RT-AC51U.dts │ │ │ ├── RT-G32-B1.dts │ │ │ ├── RT-N10-PLUS.dts │ │ │ ├── RT-N12-PLUS.dts │ │ │ ├── RT-N13U.dts │ │ │ ├── RT-N14U.dts │ │ │ ├── RT-N15.dts │ │ │ ├── RT-N56U.dts │ │ │ ├── RT5350F-OLINUXINO-EVB.dts │ │ │ ├── RT5350F-OLINUXINO.dts │ │ │ ├── RT5350F-OLINUXINO.dtsi │ │ │ ├── RUT5XX.dts │ │ │ ├── SAP-G3200U3.dts │ │ │ ├── SK-WB8.dts │ │ │ ├── SKW92A.dts │ │ │ ├── SL-R7205.dts │ │ │ ├── TEW-638APB-V2.dts │ │ │ ├── TEW-691GR.dts │ │ │ ├── TEW-692GR.dts │ │ │ ├── TEW-714TRU.dts │ │ │ ├── TINY-AC.dts │ │ │ ├── TL-MR3020V3.dts │ │ │ ├── TL-MR3420V5.dts │ │ │ ├── TL-WA801NDV5.dts │ │ │ ├── TL-WR802NV4.dts │ │ │ ├── TL-WR840NV4.dts │ │ │ ├── TL-WR840NV5.dts │ │ │ ├── TL-WR841NV13.dts │ │ │ ├── TL-WR842NV5.dts │ │ │ ├── TL-WR902ACV3.dts │ │ │ ├── TPLINK-8M-SPLIT-UBOOT.dtsi │ │ │ ├── TPLINK-8M.dtsi │ │ │ ├── TUBE-E4G.dts │ │ │ ├── Timecloud.dts │ │ │ ├── U25AWF-H1.dts │ │ │ ├── U35WF.dts │ │ │ ├── U7621-06-256M-16M.dts │ │ │ ├── U7621-06-512M-64M.dts │ │ │ ├── U7621-06.dtsi │ │ │ ├── U7628-01-128M-16M.dts │ │ │ ├── U7628-01.dtsi │ │ │ ├── UBNT-ER-e50.dtsi │ │ │ ├── UBNT-ERX-SFP.dts │ │ │ ├── UBNT-ERX.dts │ │ │ ├── UR-326N4G.dts │ │ │ ├── UR-336UN.dts │ │ │ ├── V11STFE.dts │ │ │ ├── V22RW-2X2.dts │ │ │ ├── VAR11N-300.dts │ │ │ ├── VOCORE-16M.dts │ │ │ ├── VOCORE-8M.dts │ │ │ ├── VOCORE.dtsi │ │ │ ├── VOCORE2.dts │ │ │ ├── VOCORE2.dtsi │ │ │ ├── VOCORE2LITE.dts │ │ │ ├── VR500.dts │ │ │ ├── W06.dts │ │ │ ├── W150M.dts │ │ │ ├── W2914NSV2.dts │ │ │ ├── W2914NSV2.dtsi │ │ │ ├── W306R_V20.dts │ │ │ ├── W502U.dts │ │ │ ├── WCR-1166DS.dts │ │ │ ├── WCR150GN.dts │ │ │ ├── WD03.dts │ │ │ ├── WE1026-5G-16M.dts │ │ │ ├── WE1026-5G.dtsi │ │ │ ├── WF-2881.dts │ │ │ ├── WHR-1166D.dts │ │ │ ├── WHR-300HP2.dts │ │ │ ├── WHR-600D.dts │ │ │ ├── WHR-G300N.dts │ │ │ ├── WIDORA-NEO-16M.dts │ │ │ ├── WIDORA-NEO-32M.dts │ │ │ ├── WIDORA-NEO.dtsi │ │ │ ├── WITI-256M.dts │ │ │ ├── WITI-512M.dts │ │ │ ├── WITI.dtsi │ │ │ ├── WIZARD8800.dts │ │ │ ├── WIZFI630A.dts │ │ │ ├── WL-330N.dts │ │ │ ├── WL-330N3G.dts │ │ │ ├── WL-351.dts │ │ │ ├── WL-WN570HA1.dts │ │ │ ├── WL-WN575A3.dts │ │ │ ├── WLI-TX4-AG300N.dts │ │ │ ├── WLR-6000.dts │ │ │ ├── WMDR-143N.dts │ │ │ ├── WMR-300.dts │ │ │ ├── WN-AC1167GR.dts │ │ │ ├── WN-AC733GR3.dts │ │ │ ├── WN-AX1167GR.dts │ │ │ ├── WN-GX300GR.dts │ │ │ ├── WN3000RPV3.dts │ │ │ ├── WNCE2001.dts │ │ │ ├── WNDR3700V5.dts │ │ │ ├── WR1200JS.dts │ │ │ ├── WR1201.dts │ │ │ ├── WR512-3GN-4M.dts │ │ │ ├── WR512-3GN-8M.dts │ │ │ ├── WR512-3GN.dtsi │ │ │ ├── WR6202.dts │ │ │ ├── WRC-1167GHBK2-S.dts │ │ │ ├── WRC-1900GST.dts │ │ │ ├── WRC-2533GST.dts │ │ │ ├── WRH-300CR.dts │ │ │ ├── WRTNODE.dts │ │ │ ├── WRTNODE2.dtsi │ │ │ ├── WRTNODE2P.dts │ │ │ ├── WRTNODE2R.dts │ │ │ ├── WSR-1166.dts │ │ │ ├── WSR-600.dts │ │ │ ├── WT1520-4M.dts │ │ │ ├── WT1520-8M.dts │ │ │ ├── WT1520.dtsi │ │ │ ├── WT3020-4M.dts │ │ │ ├── WT3020-8M.dts │ │ │ ├── WT3020.dtsi │ │ │ ├── WZR-AGL300NH.dts │ │ │ ├── X5.dts │ │ │ ├── X8.dts │ │ │ ├── XDXRN502J.dts │ │ │ ├── Y1.dts │ │ │ ├── Y1.dtsi │ │ │ ├── Y1S.dts │ │ │ ├── YOUKU-YK1.dts │ │ │ ├── ZBT-APE522II.dts │ │ │ ├── ZBT-CPE102.dts │ │ │ ├── ZBT-WA05.dts │ │ │ ├── ZBT-WE1226.dts │ │ │ ├── ZBT-WE1326.dts │ │ │ ├── ZBT-WE2026.dts │ │ │ ├── ZBT-WE3526.dts │ │ │ ├── ZBT-WE826-16M.dts │ │ │ ├── ZBT-WE826-32M.dts │ │ │ ├── ZBT-WE826.dtsi │ │ │ ├── ZBT-WG2626.dts │ │ │ ├── ZBT-WG3526-16M.dts │ │ │ ├── ZBT-WG3526-32M.dts │ │ │ ├── ZBT-WG3526.dtsi │ │ │ ├── ZBT-WR8305RT.dts │ │ │ ├── ZL5900V2.dts │ │ │ ├── ZTE-Q7.dts │ │ │ ├── elecom_wrc-gst.dtsi │ │ │ ├── ki_rb.dts │ │ │ ├── kn.dts │ │ │ ├── kn_rc.dts │ │ │ ├── kn_rf.dts │ │ │ ├── kng_rc.dts │ │ │ ├── mt7620a.dtsi │ │ │ ├── mt7620n.dtsi │ │ │ ├── mt7621.dtsi │ │ │ ├── mt7628an.dtsi │ │ │ ├── rt2880.dtsi │ │ │ ├── rt3050.dtsi │ │ │ ├── rt3352.dtsi │ │ │ ├── rt3883.dtsi │ │ │ └── rt5350.dtsi │ │ ├── files-4.14 │ │ │ └── drivers │ │ │ │ ├── mmc │ │ │ │ └── host │ │ │ │ │ └── mtk-mmc │ │ │ │ │ ├── Kconfig │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── board.h │ │ │ │ │ ├── dbg.c │ │ │ │ │ ├── dbg.h │ │ │ │ │ ├── mt6575_sd.h │ │ │ │ │ └── sd.c │ │ │ │ └── net │ │ │ │ └── ethernet │ │ │ │ └── mediatek │ │ │ │ ├── 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 │ │ │ ├── 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 │ │ │ ├── config-4.14 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── mt7621 │ │ │ ├── config-4.14 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ ├── mt76x8 │ │ │ ├── config-4.14 │ │ │ ├── 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 │ │ │ ├── 0032-USB-dwc2-add-device_reset.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 │ │ │ ├── 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 │ │ │ ├── 0100-prom_fixes.patch │ │ │ ├── 0200-linkit_bootstrap.patch │ │ │ ├── 100-mt7621-core-detect-hack.patch │ │ │ ├── 101-mt7621-timer.patch │ │ │ ├── 102-mt7621-fix-cpu-clk-add-clkdev.patch │ │ │ ├── 110-mt7621-perfctr-fix.patch │ │ │ ├── 300-mt7620-export-chip-version-and-pkg.patch │ │ │ ├── 302-spi-nor-add-gd25q512.patch │ │ │ ├── 303-spi-nor-enable-4B-opcodes-for-mx66l51235l.patch │ │ │ ├── 304-spi-nor-enable-4B-opcodes-for-mx25l25635f.patch │ │ │ └── 999-fix-pci-init-mt7620.patch │ │ ├── rt288x │ │ │ ├── config-4.14 │ │ │ └── target.mk │ │ ├── rt305x │ │ │ ├── config-4.14 │ │ │ ├── profiles │ │ │ │ └── 00-default.mk │ │ │ └── target.mk │ │ └── rt3883 │ │ │ ├── config-4.14 │ │ │ ├── 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 │ ├── samsung │ │ ├── Makefile │ │ ├── dts │ │ │ └── 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 │ │ │ │ │ └── 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.14 │ │ ├── config-4.19 │ │ ├── cortexa53 │ │ │ ├── config-4.14 │ │ │ ├── config-4.19 │ │ │ └── target.mk │ │ ├── cortexa7 │ │ │ ├── config-4.14 │ │ │ ├── config-4.19 │ │ │ └── target.mk │ │ ├── cortexa8 │ │ │ ├── config-4.14 │ │ │ ├── config-4.19 │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Config.in │ │ │ ├── Makefile │ │ │ ├── cortex-a53.mk │ │ │ ├── cortex-a7.mk │ │ │ ├── cortex-a8.mk │ │ │ └── gen_sunxi_sdcard_img.sh │ │ ├── modules.mk │ │ ├── patches-4.14 │ │ │ ├── 001-net-stmmac-snps-dwmac-mdio-MDIOs-are-automatically-r.patch │ │ │ ├── 002-net-stmmac-dwmac-sun8i-Handle-integrated-external-MD.patch │ │ │ ├── 003-net-stmmac-sun8i-Restore-the-compatibles.patch │ │ │ ├── 004-net-stmmac-dwmac-sun8i-fix-allwinner-leds-active-low.patch │ │ │ ├── 020-ARM-dts-sunxi-Restore-EMAC-changes-boards.patch │ │ │ ├── 021-arm-dts-sunxi-h3-h5-Restore-EMAC-changes.patch │ │ │ ├── 022-ARM-dts-sunxi-h3-h5-represent-the-mdio-switch-used-b.patch │ │ │ ├── 025-arm64-dts-allwinner-A64-Restore-EMAC-changes.patch │ │ │ ├── 026-arm64-dts-allwinner-add-snps-dwmac-mdio-compatible-t.patch │ │ │ ├── 027-arm64-dts-allwinner-H5-Restore-EMAC-changes.patch │ │ │ ├── 030-arm64-allwinner-a64-add-Ethernet-PHY-regulator-for-s.patch │ │ │ ├── 031-arm64-Implement-arch_counter_get_cntpct-to-read-the-.patch │ │ │ ├── 040-arm64-dts-allwinner-a64-Add-watchdog.patch │ │ │ ├── 060-ARM-dts-sun8i-add-support-for-Orange-Pi-R1.patch │ │ │ ├── 061-arm-dts-sun50i-support-for-nanopi-neo-plus2-board.patch │ │ │ ├── 080-arm64-allwinner-a64-add-SPI-nodes.patch │ │ │ ├── 081-arm64-dts-allwinner-sun50i-a64-Add-spi-flash-node-fo.patch │ │ │ ├── 100-clocksource-drivers-arch_timer-Workaround-for-Allwin.patch │ │ │ ├── 101-arm64-dts-allwinner-a64-Enable-A64-timer-workaround.patch │ │ │ ├── 201-ARM-dts-sun8i-fix-USB-Ethernet-of-Orange-Pi-R1.patch │ │ │ ├── 202-ARM-dts-sun8i-activate-SPI-on-Orange-Pi-R1.patch │ │ │ ├── 220-ARM-dts-orange-pi-zero-plus.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-4.19 │ │ │ ├── 100-clocksource-drivers-arch_timer-Workaround-for-Allwin.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 │ │ └── profiles │ │ │ └── 00-default.mk │ ├── uml │ │ ├── Makefile │ │ ├── README │ │ ├── base-files │ │ │ └── etc │ │ │ │ └── inittab │ │ ├── config │ │ │ ├── i386 │ │ │ └── x86_64 │ │ ├── image │ │ │ └── Makefile │ │ └── patches-4.14 │ │ │ ├── 101-mconsole-exec.patch │ │ │ └── 102-pseudo-random-mac.patch │ ├── x86 │ │ ├── 64 │ │ │ ├── base-files │ │ │ │ └── lib │ │ │ │ │ └── preinit │ │ │ │ │ └── 45_mount_xenfs │ │ │ ├── config-4.14 │ │ │ ├── config-4.19 │ │ │ ├── profiles │ │ │ │ └── 000-Generic.mk │ │ │ └── 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 │ │ │ │ └── upgrade │ │ │ │ └── platform.sh │ │ ├── config-4.14 │ │ ├── config-4.19 │ │ ├── generic │ │ │ ├── base-files │ │ │ │ └── lib │ │ │ │ │ └── preinit │ │ │ │ │ └── 45_mount_xenfs │ │ │ ├── config-4.14 │ │ │ ├── config-4.19 │ │ │ ├── profiles │ │ │ │ └── 000-Generic.mk │ │ │ └── target.mk │ │ ├── geode │ │ │ ├── config-4.14 │ │ │ ├── config-4.19 │ │ │ ├── profiles │ │ │ │ ├── 000-Generic.mk │ │ │ │ └── 100-Geos.mk │ │ │ └── target.mk │ │ ├── image │ │ │ ├── Makefile │ │ │ ├── grub-early.cfg │ │ │ ├── grub-iso.cfg │ │ │ └── grub.cfg │ │ ├── legacy │ │ │ ├── config-4.14 │ │ │ ├── config-4.19 │ │ │ ├── profiles │ │ │ │ └── 000-Generic.mk │ │ │ └── target.mk │ │ ├── modules.mk │ │ ├── patches-4.14 │ │ │ ├── 011-tune_lzma_options.patch │ │ │ ├── 100-fix_cs5535_clockevt.patch │ │ │ ├── 200-pcengines-apu2-reboot.patch │ │ │ └── 800-hwmon-w83627ehf-dont-claim-nct677x.patch │ │ └── 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 │ ├── xburst │ │ ├── Makefile │ │ ├── base-files │ │ │ └── etc │ │ │ │ ├── board.d │ │ │ │ └── 01_system │ │ │ │ └── config │ │ │ │ ├── fstab │ │ │ │ └── network │ │ ├── config-3.18 │ │ ├── image │ │ │ ├── Makefile │ │ │ └── ubinize.cfg │ │ ├── modules.mk │ │ ├── patches-3.18 │ │ │ ├── 001-ubi-Read-only-the-vid-header-instead-of-the-whole-pa.patch │ │ │ ├── 002-NAND-Optimize-NAND_ECC_HW_OOB_FIRST-read.patch │ │ │ ├── 003-NAND-Add-support-for-subpage-reads-for-NAND_ECC_HW_O.patch │ │ │ ├── 004-ASoC-JZ4740-delay-activation-of-the-DAC-to-work-arou.patch │ │ │ ├── 005-RTC-JZ4740-Init-the-regulator-register-on-startup.patch │ │ │ ├── 006-Add-ili8960-lcd-driver.patch │ │ │ └── 007-qi_lb60-Don-t-use-3-wire-spi-mode-for-the-display-fo.patch │ │ └── qi_lb60 │ │ │ ├── config-default │ │ │ └── target.mk │ └── zynq │ │ ├── Makefile │ │ ├── base-files │ │ └── etc │ │ │ ├── board.d │ │ │ └── 02_network │ │ │ └── inittab │ │ ├── config-4.14 │ │ ├── image │ │ ├── Makefile │ │ └── gen_zynq_sdcard_img.sh │ │ └── patches-4.14 │ │ ├── 020-v4.17-add-digilent-zybo-z7-board.patch │ │ ├── 022-v4.19-dts-set-correct-manufacturer-for-ZedBoard-and-MicroZed.patch │ │ └── 025-v4.19-update-digilent-zybo-z7-dts.patch ├── 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 ├── 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.4.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.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 │ │ ├── 800-arm_v5te_no_ldrd_strd.patch │ │ ├── 810-arm-softfloat-libgcc.patch │ │ ├── 820-libgcc_pic.patch │ │ ├── 840-armv4_pass_fix-v4bx_to_ld.patch │ │ ├── 850-use_shared_libgcc.patch │ │ ├── 851-libgcc_no_compat.patch │ │ ├── 870-ppc_no_crtsavres.patch │ │ ├── 881-no_tm_section.patch │ │ ├── 900-bad-mips16-crt.patch │ │ ├── 910-mbsd_multi.patch │ │ ├── 920-specs_nonfatal_getenv.patch │ │ ├── 930-fix-mips-noexecstack.patch │ │ ├── 931-libffi-fix-MIPS-softfloat-build-issue.patch │ │ └── 960-gotools-fix-compilation-when-making-cross-compiler.patch ├── gdb │ ├── Makefile │ ├── patches-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 │ │ ├── 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 │ │ ├── 900-iconv_size_hack.patch │ │ └── 901-crypt_size_hack.patch ├── nasm │ ├── Makefile │ └── patches │ │ └── 100-backport-upstream-GCC8-compatibility-fixes.patch ├── 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 ├── 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 │ └── 200-do-not-override-silent-rules.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 │ ├── 010-intl-stub-compat.patch │ └── 100-fix-gets-removal.patch └── scripts │ └── yacc ├── ccache ├── Makefile ├── files │ ├── ccache_cc │ └── ccache_cxx └── patches │ └── 100-honour-copts.patch ├── cmake ├── Makefile └── patches │ ├── 100-disable_qt_tests.patch │ ├── 110-libarchive-fix-libressl-compat.patch │ ├── 120-curl-fix-libressl-linking.patch │ ├── 130-bootstrap_parallel_make_flag.patch │ ├── 140-libarchive-fix-libressl.patch │ └── 150-C-feature-checks-Match-warnings-more-strictly.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-openbsd-compat.patch │ └── 004-darwin-compat.patch ├── elftosb ├── Makefile └── patches │ ├── 001-libm.patch │ ├── 002-fix-header-path.patch │ └── 003-use-ldflags.patch ├── expat └── Makefile ├── findutils ├── Makefile └── patches │ ├── 100-include_sysmacros.patch │ └── 110-glibc-change-work-around.patch ├── 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 │ ├── 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 │ ├── 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 │ ├── 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-dependency_fix.patch │ └── 200-no_docs_tests.patch ├── gmp └── Makefile ├── include ├── byteswap.h ├── elf.h ├── endian.h └── sys │ └── sysmacros.h ├── isl └── Makefile ├── kernel2minor └── Makefile ├── libelf └── Makefile ├── libressl └── Makefile ├── 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 └── patches │ └── 100-add-ldflags.patch ├── 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 │ ├── 010-freebsd-ulong-fix.patch │ ├── 020-include_compile_fix.patch │ ├── 030-allow-to-use-different-magic.patch │ ├── 050-image_h_portability.patch │ ├── 060-remove_kernel_includes.patch │ ├── 080-remove_compiler_check.patch │ ├── 100-freebsd-compat.patch │ ├── 200-rsa-sign-add-support-for-libressl.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 ├── 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 ├── patchelf └── Makefile ├── pkg-config ├── Makefile └── files │ └── pkg-config ├── qemu └── Makefile ├── quilt ├── Makefile └── patches │ ├── 000-relocatable.patch │ └── 001-fix_compile.patch ├── scons ├── Makefile ├── files │ └── pywrap.sh └── patches │ └── 001-platform_env.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 ├── squashfskit4 ├── Makefile └── patches │ └── 0001-fix-version.sh.patch ├── sstrip ├── Makefile └── src │ └── sstrip.c ├── tar ├── Makefile └── patches │ ├── 100-symlink-force-root-name.patch │ └── 110-symlink-force-permissions.patch ├── upslug2 ├── Makefile └── patches │ ├── 100-libpcap_fix.patch │ └── 110-wrt350nv2_support.patch ├── 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 /.gitattributes: -------------------------------------------------------------------------------- 1 | * -text 2 | -------------------------------------------------------------------------------- /.github/issue_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/.github/issue_template -------------------------------------------------------------------------------- /.github/pull_request_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/.github/pull_request_template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /BSDmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/BSDmakefile -------------------------------------------------------------------------------- /Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/Config.in -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/README.md -------------------------------------------------------------------------------- /README_openwrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/README_openwrt -------------------------------------------------------------------------------- /config/Config-build.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/config/Config-build.in -------------------------------------------------------------------------------- /config/Config-devel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/config/Config-devel.in -------------------------------------------------------------------------------- /config/Config-images.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/config/Config-images.in -------------------------------------------------------------------------------- /config/Config-kernel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/config/Config-kernel.in -------------------------------------------------------------------------------- /crosscompile.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/crosscompile.config -------------------------------------------------------------------------------- /feeds.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/feeds.conf.default -------------------------------------------------------------------------------- /files/etc/hostapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/files/etc/hostapd.conf -------------------------------------------------------------------------------- /files/etc/wpa_supplicant.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/files/etc/wpa_supplicant.conf -------------------------------------------------------------------------------- /files/lib/firmware/wil6210.brd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/files/lib/firmware/wil6210.brd -------------------------------------------------------------------------------- /files/lib/firmware/wil6210.fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/files/lib/firmware/wil6210.fw -------------------------------------------------------------------------------- /include/autotools.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/autotools.mk -------------------------------------------------------------------------------- /include/cmake.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/cmake.mk -------------------------------------------------------------------------------- /include/debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/debug.mk -------------------------------------------------------------------------------- /include/depends.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/depends.mk -------------------------------------------------------------------------------- /include/device_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/device_table.txt -------------------------------------------------------------------------------- /include/download.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/download.mk -------------------------------------------------------------------------------- /include/feeds.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/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/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/hardening.mk -------------------------------------------------------------------------------- /include/host-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/host-build.mk -------------------------------------------------------------------------------- /include/image-commands.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/image-commands.mk -------------------------------------------------------------------------------- /include/image-legacy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/image-legacy.mk -------------------------------------------------------------------------------- /include/image.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/image.mk -------------------------------------------------------------------------------- /include/kernel-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/kernel-build.mk -------------------------------------------------------------------------------- /include/kernel-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/kernel-defaults.mk -------------------------------------------------------------------------------- /include/kernel-version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/kernel-version.mk -------------------------------------------------------------------------------- /include/kernel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/kernel.mk -------------------------------------------------------------------------------- /include/netfilter.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/netfilter.mk -------------------------------------------------------------------------------- /include/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/nls.mk -------------------------------------------------------------------------------- /include/package-bin.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/package-bin.mk -------------------------------------------------------------------------------- /include/package-defaults.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/package-defaults.mk -------------------------------------------------------------------------------- /include/package-dumpinfo.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/package-dumpinfo.mk -------------------------------------------------------------------------------- /include/package-ipkg.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/package-ipkg.mk -------------------------------------------------------------------------------- /include/package-seccomp.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/package-seccomp.mk -------------------------------------------------------------------------------- /include/package.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/package.mk -------------------------------------------------------------------------------- /include/prereq-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/prereq-build.mk -------------------------------------------------------------------------------- /include/prereq.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/prereq.mk -------------------------------------------------------------------------------- /include/quilt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/quilt.mk -------------------------------------------------------------------------------- /include/rootfs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/rootfs.mk -------------------------------------------------------------------------------- /include/scan.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/scan.awk -------------------------------------------------------------------------------- /include/scan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/scan.mk -------------------------------------------------------------------------------- /include/scons.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/scons.mk -------------------------------------------------------------------------------- /include/shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/shell.sh -------------------------------------------------------------------------------- /include/site/aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/site/aarch64 -------------------------------------------------------------------------------- /include/site/aarch64_be: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/site/aarch64_be -------------------------------------------------------------------------------- /include/site/arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/site/arc -------------------------------------------------------------------------------- /include/site/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/site/arm -------------------------------------------------------------------------------- /include/site/armeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/site/armeb -------------------------------------------------------------------------------- /include/site/darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/site/darwin -------------------------------------------------------------------------------- /include/site/i386: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . $TOPDIR/include/site/i486 3 | 4 | -------------------------------------------------------------------------------- /include/site/i486: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/site/i486 -------------------------------------------------------------------------------- /include/site/i686: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . $TOPDIR/include/site/i486 3 | 4 | -------------------------------------------------------------------------------- /include/site/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/site/linux -------------------------------------------------------------------------------- /include/site/m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/site/m68k -------------------------------------------------------------------------------- /include/site/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/site/mips -------------------------------------------------------------------------------- /include/site/mips64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/site/mips64 -------------------------------------------------------------------------------- /include/site/mips64el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/site/mips64el -------------------------------------------------------------------------------- /include/site/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/site/mipsel -------------------------------------------------------------------------------- /include/site/powerpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/site/powerpc -------------------------------------------------------------------------------- /include/site/powerpc64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/site/powerpc64 -------------------------------------------------------------------------------- /include/site/sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/site/sparc -------------------------------------------------------------------------------- /include/site/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/site/x86_64 -------------------------------------------------------------------------------- /include/subdir.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/subdir.mk -------------------------------------------------------------------------------- /include/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/target.mk -------------------------------------------------------------------------------- /include/toolchain-build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/toolchain-build.mk -------------------------------------------------------------------------------- /include/toplevel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/toplevel.mk -------------------------------------------------------------------------------- /include/u-boot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/u-boot.mk -------------------------------------------------------------------------------- /include/uclibc++.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/uclibc++.mk -------------------------------------------------------------------------------- /include/unpack.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/unpack.mk -------------------------------------------------------------------------------- /include/verbose.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/verbose.mk -------------------------------------------------------------------------------- /include/version.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/include/version.mk -------------------------------------------------------------------------------- /mikrotik.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/mikrotik.config -------------------------------------------------------------------------------- /package/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/Makefile -------------------------------------------------------------------------------- /package/base-files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/base-files/Makefile -------------------------------------------------------------------------------- /package/base-files/files/etc/banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/base-files/files/etc/banner -------------------------------------------------------------------------------- /package/base-files/files/etc/ethers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/base-files/files/etc/ethers -------------------------------------------------------------------------------- /package/base-files/files/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/base-files/files/etc/fstab -------------------------------------------------------------------------------- /package/base-files/files/etc/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/base-files/files/etc/group -------------------------------------------------------------------------------- /package/base-files/files/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/base-files/files/etc/hosts -------------------------------------------------------------------------------- /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/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/base-files/files/etc/passwd -------------------------------------------------------------------------------- /package/base-files/files/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/base-files/files/etc/shadow -------------------------------------------------------------------------------- /package/base-files/files/etc/shells: -------------------------------------------------------------------------------- 1 | /bin/ash 2 | -------------------------------------------------------------------------------- /package/base-files/files/rom/note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/base-files/files/rom/note -------------------------------------------------------------------------------- /package/base-files/files/sbin/wifi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/base-files/files/sbin/wifi -------------------------------------------------------------------------------- /package/base-files/image-config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/base-files/image-config.in -------------------------------------------------------------------------------- /package/boot/apex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/apex/Makefile -------------------------------------------------------------------------------- /package/boot/at91bootstrap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/at91bootstrap/Makefile -------------------------------------------------------------------------------- /package/boot/fconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/fconfig/Makefile -------------------------------------------------------------------------------- /package/boot/grub2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/grub2/Makefile -------------------------------------------------------------------------------- /package/boot/imx-bootlets/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/imx-bootlets/Makefile -------------------------------------------------------------------------------- /package/boot/kexec-tools/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/kexec-tools/Config.in -------------------------------------------------------------------------------- /package/boot/kexec-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/kexec-tools/Makefile -------------------------------------------------------------------------------- /package/boot/kobs-ng/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/kobs-ng/Makefile -------------------------------------------------------------------------------- /package/boot/rbcfg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/rbcfg/Makefile -------------------------------------------------------------------------------- /package/boot/rbcfg/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/rbcfg/src/Makefile -------------------------------------------------------------------------------- /package/boot/rbcfg/src/cyg_crc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/rbcfg/src/cyg_crc.h -------------------------------------------------------------------------------- /package/boot/rbcfg/src/cyg_crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/rbcfg/src/cyg_crc32.c -------------------------------------------------------------------------------- /package/boot/rbcfg/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/rbcfg/src/main.c -------------------------------------------------------------------------------- /package/boot/rbcfg/src/rbcfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/rbcfg/src/rbcfg.h -------------------------------------------------------------------------------- /package/boot/uboot-ar71xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/uboot-ar71xx/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-at91/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/uboot-at91/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-imx6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/uboot-imx6/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-lantiq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/uboot-lantiq/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-lantiq/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/uboot-lantiq/README -------------------------------------------------------------------------------- /package/boot/uboot-mvebu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/uboot-mvebu/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-mxs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/uboot-mxs/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-omap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/uboot-omap/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-oxnas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/uboot-oxnas/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/uboot-sunxi/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-xburst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/uboot-xburst/Makefile -------------------------------------------------------------------------------- /package/boot/uboot-zynq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/uboot-zynq/Makefile -------------------------------------------------------------------------------- /package/boot/yamonenv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/boot/yamonenv/Makefile -------------------------------------------------------------------------------- /package/devel/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/devel/binutils/Makefile -------------------------------------------------------------------------------- /package/devel/gdb-arc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/devel/gdb-arc/Makefile -------------------------------------------------------------------------------- /package/devel/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/devel/gdb/Makefile -------------------------------------------------------------------------------- /package/devel/perf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/devel/perf/Makefile -------------------------------------------------------------------------------- /package/devel/strace/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/devel/strace/Makefile -------------------------------------------------------------------------------- /package/devel/trace-cmd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/devel/trace-cmd/Makefile -------------------------------------------------------------------------------- /package/devel/valgrind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/devel/valgrind/Makefile -------------------------------------------------------------------------------- /package/firmware/am33x-cm3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/firmware/am33x-cm3/Makefile -------------------------------------------------------------------------------- /package/firmware/ipq-wifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/firmware/ipq-wifi/Makefile -------------------------------------------------------------------------------- /package/kernel/ar7-atm/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/ar7-atm/Config.in -------------------------------------------------------------------------------- /package/kernel/ar7-atm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/ar7-atm/Makefile -------------------------------------------------------------------------------- /package/kernel/ath10k-ct/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/ath10k-ct/Makefile -------------------------------------------------------------------------------- /package/kernel/avila-wdt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/avila-wdt/Makefile -------------------------------------------------------------------------------- /package/kernel/avila-wdt/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m := avila-wdt.o 2 | -------------------------------------------------------------------------------- /package/kernel/broadcom-wl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/broadcom-wl/Makefile -------------------------------------------------------------------------------- /package/kernel/button-hotplug/src/Kconfig: -------------------------------------------------------------------------------- 1 | config BUTTON_HOTPLUG 2 | tristate "Button Hotplug driver" 3 | -------------------------------------------------------------------------------- /package/kernel/button-hotplug/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_BUTTON_HOTPLUG} += button-hotplug.o -------------------------------------------------------------------------------- /package/kernel/gpio-button-hotplug/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-m += gpio-button-hotplug.o 2 | -------------------------------------------------------------------------------- /package/kernel/hwmon-gsc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/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/IMDEANetworksWNG/Mikrotik-researcher-tools/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/leds-apu2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/leds-apu2/Makefile -------------------------------------------------------------------------------- /package/kernel/leds-apu2/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_LEDS_APU2} += leds-apu2.o 2 | -------------------------------------------------------------------------------- /package/kernel/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/linux/Makefile -------------------------------------------------------------------------------- /package/kernel/linux/modules/can.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/linux/modules/can.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/fs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/linux/modules/fs.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/i2c.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/linux/modules/i2c.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/iio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/linux/modules/iio.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/linux/modules/lib.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/linux/modules/nls.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/spi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/linux/modules/spi.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/usb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/linux/modules/usb.mk -------------------------------------------------------------------------------- /package/kernel/linux/modules/w1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/linux/modules/w1.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/mac80211/Makefile -------------------------------------------------------------------------------- /package/kernel/mac80211/ath.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/mac80211/ath.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/broadcom.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/mac80211/broadcom.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/files/mac80211.hotplug: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | [ "${ACTION}" = "add" ] && { 4 | /sbin/wifi config 5 | } 6 | -------------------------------------------------------------------------------- /package/kernel/mac80211/intel.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/mac80211/intel.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/marvell.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/mac80211/marvell.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/ralink.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/mac80211/ralink.mk -------------------------------------------------------------------------------- /package/kernel/mac80211/realtek.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/mac80211/realtek.mk -------------------------------------------------------------------------------- /package/kernel/mt76/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/mt76/Makefile -------------------------------------------------------------------------------- /package/kernel/mwlwifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/mwlwifi/Makefile -------------------------------------------------------------------------------- /package/kernel/nat46/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/nat46/Makefile -------------------------------------------------------------------------------- /package/kernel/om-watchdog/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/kernel/om-watchdog/Makefile -------------------------------------------------------------------------------- /package/kernel/rotary-gpio-custom/src/Makefile: -------------------------------------------------------------------------------- 1 | obj-${CONFIG_ROTARY_GPIO_CUSTOM} += rotary-gpio-custom.o 2 | -------------------------------------------------------------------------------- /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/IMDEANetworksWNG/Mikrotik-researcher-tools/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/IMDEANetworksWNG/Mikrotik-researcher-tools/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/libs/elfutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/elfutils/Makefile -------------------------------------------------------------------------------- /package/libs/gettext-full/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/gettext-full/Makefile -------------------------------------------------------------------------------- /package/libs/gettext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/gettext/Makefile -------------------------------------------------------------------------------- /package/libs/gettext/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/gettext/src/LICENSE -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/intl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/gettext/src/m4/intl.m4 -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/nls.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/gettext/src/m4/nls.m4 -------------------------------------------------------------------------------- /package/libs/gettext/src/m4/po.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/gettext/src/m4/po.m4 -------------------------------------------------------------------------------- /package/libs/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/gmp/Makefile -------------------------------------------------------------------------------- /package/libs/libbsd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libbsd/Makefile -------------------------------------------------------------------------------- /package/libs/libconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libconfig/Makefile -------------------------------------------------------------------------------- /package/libs/libevent2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libevent2/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv-full/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libiconv-full/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libiconv/COPYING -------------------------------------------------------------------------------- /package/libs/libiconv/COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libiconv/COPYRIGHT -------------------------------------------------------------------------------- /package/libs/libiconv/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libiconv/Makefile -------------------------------------------------------------------------------- /package/libs/libiconv/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libiconv/src/LICENSE -------------------------------------------------------------------------------- /package/libs/libiconv/src/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libiconv/src/iconv.c -------------------------------------------------------------------------------- /package/libs/libjson-c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libjson-c/Makefile -------------------------------------------------------------------------------- /package/libs/libmnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libmnl/Makefile -------------------------------------------------------------------------------- /package/libs/libnfnetlink/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libnfnetlink/Makefile -------------------------------------------------------------------------------- /package/libs/libnftnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libnftnl/Makefile -------------------------------------------------------------------------------- /package/libs/libnl-tiny/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libnl-tiny/Makefile -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libnl-tiny/src/attr.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libnl-tiny/src/cache.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libnl-tiny/src/error.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/genl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libnl-tiny/src/genl.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libnl-tiny/src/msg.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/nl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libnl-tiny/src/nl.c -------------------------------------------------------------------------------- /package/libs/libnl-tiny/src/unl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libnl-tiny/src/unl.c -------------------------------------------------------------------------------- /package/libs/libnl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libnl/Makefile -------------------------------------------------------------------------------- /package/libs/libpcap/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libpcap/Config.in -------------------------------------------------------------------------------- /package/libs/libpcap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libpcap/Makefile -------------------------------------------------------------------------------- /package/libs/libroxml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libroxml/Makefile -------------------------------------------------------------------------------- /package/libs/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libtool/Makefile -------------------------------------------------------------------------------- /package/libs/libubox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libubox/Makefile -------------------------------------------------------------------------------- /package/libs/libunwind/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libunwind/Makefile -------------------------------------------------------------------------------- /package/libs/libusb-compat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libusb-compat/Makefile -------------------------------------------------------------------------------- /package/libs/libusb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/libusb/Makefile -------------------------------------------------------------------------------- /package/libs/lzo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/lzo/Makefile -------------------------------------------------------------------------------- /package/libs/mbedtls/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/mbedtls/Makefile -------------------------------------------------------------------------------- /package/libs/ncurses/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/ncurses/Makefile -------------------------------------------------------------------------------- /package/libs/nettle/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/nettle/Config.in -------------------------------------------------------------------------------- /package/libs/nettle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/nettle/Makefile -------------------------------------------------------------------------------- /package/libs/nghttp2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/nghttp2/Makefile -------------------------------------------------------------------------------- /package/libs/openssl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/openssl/Config.in -------------------------------------------------------------------------------- /package/libs/openssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/openssl/Makefile -------------------------------------------------------------------------------- /package/libs/popt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/popt/Makefile -------------------------------------------------------------------------------- /package/libs/readline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/readline/Makefile -------------------------------------------------------------------------------- /package/libs/sysfsutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/sysfsutils/Makefile -------------------------------------------------------------------------------- /package/libs/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/toolchain/Makefile -------------------------------------------------------------------------------- /package/libs/uclibc++/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/uclibc++/Makefile -------------------------------------------------------------------------------- /package/libs/uclient/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/uclient/Makefile -------------------------------------------------------------------------------- /package/libs/ustream-ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/ustream-ssl/Makefile -------------------------------------------------------------------------------- /package/libs/wolfssl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/wolfssl/Config.in -------------------------------------------------------------------------------- /package/libs/wolfssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/wolfssl/Makefile -------------------------------------------------------------------------------- /package/libs/zlib/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/zlib/Config.in -------------------------------------------------------------------------------- /package/libs/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/libs/zlib/Makefile -------------------------------------------------------------------------------- /package/network/config/gre/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/network/config/gre/Makefile -------------------------------------------------------------------------------- /package/network/config/netifd/files/sbin/ifdown: -------------------------------------------------------------------------------- 1 | ifup -------------------------------------------------------------------------------- /package/network/config/qos-scripts/files/usr/bin/qos-start: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | qos-stop 4 | /usr/lib/qos/generate.sh all | sh 5 | -------------------------------------------------------------------------------- /package/network/config/vti/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/network/config/vti/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6in4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/network/ipv6/6in4/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6rd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/network/ipv6/6rd/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/6to4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/network/ipv6/6to4/Makefile -------------------------------------------------------------------------------- /package/network/ipv6/map/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/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/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/curl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/network/utils/curl/Makefile -------------------------------------------------------------------------------- /package/network/utils/iw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/network/utils/iw/Makefile -------------------------------------------------------------------------------- /package/network/utils/uqmi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/network/utils/uqmi/Makefile -------------------------------------------------------------------------------- /package/network/utils/wwan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/network/utils/wwan/Makefile -------------------------------------------------------------------------------- /package/system/fstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/fstools/Makefile -------------------------------------------------------------------------------- /package/system/fwtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/fwtool/Makefile -------------------------------------------------------------------------------- /package/system/fwtool/src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/fwtool/src/crc32.h -------------------------------------------------------------------------------- /package/system/fwtool/src/fwimage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/fwtool/src/fwimage.h -------------------------------------------------------------------------------- /package/system/fwtool/src/fwtool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/fwtool/src/fwtool.c -------------------------------------------------------------------------------- /package/system/fwtool/src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/fwtool/src/utils.h -------------------------------------------------------------------------------- /package/system/iucode-tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/iucode-tool/Makefile -------------------------------------------------------------------------------- /package/system/mtd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/Makefile -------------------------------------------------------------------------------- /package/system/mtd/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/src/Makefile -------------------------------------------------------------------------------- /package/system/mtd/src/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/src/crc32.c -------------------------------------------------------------------------------- /package/system/mtd/src/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/src/crc32.h -------------------------------------------------------------------------------- /package/system/mtd/src/fis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/src/fis.c -------------------------------------------------------------------------------- /package/system/mtd/src/fis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/src/fis.h -------------------------------------------------------------------------------- /package/system/mtd/src/imagetag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/src/imagetag.c -------------------------------------------------------------------------------- /package/system/mtd/src/jffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/src/jffs2.c -------------------------------------------------------------------------------- /package/system/mtd/src/jffs2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/src/jffs2.h -------------------------------------------------------------------------------- /package/system/mtd/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/src/md5.c -------------------------------------------------------------------------------- /package/system/mtd/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/src/md5.h -------------------------------------------------------------------------------- /package/system/mtd/src/mtd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/src/mtd.c -------------------------------------------------------------------------------- /package/system/mtd/src/mtd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/src/mtd.h -------------------------------------------------------------------------------- /package/system/mtd/src/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/src/seama.c -------------------------------------------------------------------------------- /package/system/mtd/src/seama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/src/seama.h -------------------------------------------------------------------------------- /package/system/mtd/src/trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/src/trx.c -------------------------------------------------------------------------------- /package/system/mtd/src/wrg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/src/wrg.c -------------------------------------------------------------------------------- /package/system/mtd/src/wrgg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/src/wrgg.c -------------------------------------------------------------------------------- /package/system/mtd/src/wrgg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/mtd/src/wrgg.h -------------------------------------------------------------------------------- /package/system/opkg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/opkg/Makefile -------------------------------------------------------------------------------- /package/system/opkg/files/opkg-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/opkg/files/opkg-key -------------------------------------------------------------------------------- /package/system/opkg/files/opkg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/opkg/files/opkg.conf -------------------------------------------------------------------------------- /package/system/procd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/procd/Makefile -------------------------------------------------------------------------------- /package/system/procd/files/procd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/procd/files/procd.sh -------------------------------------------------------------------------------- /package/system/rpcd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/rpcd/Makefile -------------------------------------------------------------------------------- /package/system/rpcd/files/rpcd.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/rpcd/files/rpcd.init -------------------------------------------------------------------------------- /package/system/ubox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/ubox/Makefile -------------------------------------------------------------------------------- /package/system/ubox/files/log.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/ubox/files/log.init -------------------------------------------------------------------------------- /package/system/ubus/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/ubus/Makefile -------------------------------------------------------------------------------- /package/system/ucert/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/ucert/Makefile -------------------------------------------------------------------------------- /package/system/uci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/uci/Makefile -------------------------------------------------------------------------------- /package/system/usign/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/usign/Makefile -------------------------------------------------------------------------------- /package/system/zram-swap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/system/zram-swap/Makefile -------------------------------------------------------------------------------- /package/utils/adb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/adb/Makefile -------------------------------------------------------------------------------- /package/utils/admswconfig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/admswconfig/Makefile -------------------------------------------------------------------------------- /package/utils/bsdiff/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/bsdiff/Makefile -------------------------------------------------------------------------------- /package/utils/busybox/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/busybox/Config.in -------------------------------------------------------------------------------- /package/utils/busybox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/busybox/Makefile -------------------------------------------------------------------------------- /package/utils/busybox/files/cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/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/busybox/files/sysntpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/busybox/files/sysntpd -------------------------------------------------------------------------------- /package/utils/bzip2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/bzip2/Makefile -------------------------------------------------------------------------------- /package/utils/ct-bugcheck/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/ct-bugcheck/Makefile -------------------------------------------------------------------------------- /package/utils/e2fsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/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/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/f2fs-tools/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/fbtest/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/fbtest/src/Makefile -------------------------------------------------------------------------------- /package/utils/fbtest/src/fbtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/fbtest/src/fbtest.c -------------------------------------------------------------------------------- /package/utils/fritz-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/fritz-tools/Makefile -------------------------------------------------------------------------------- /package/utils/fritz-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/fritz-tools/README.md -------------------------------------------------------------------------------- /package/utils/fuse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/fuse/Makefile -------------------------------------------------------------------------------- /package/utils/jboot-tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/jboot-tools/Makefile -------------------------------------------------------------------------------- /package/utils/jboot-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/jboot-tools/README.md -------------------------------------------------------------------------------- /package/utils/jsonfilter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/jsonfilter/Makefile -------------------------------------------------------------------------------- /package/utils/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/lua/Makefile -------------------------------------------------------------------------------- /package/utils/mdadm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/mdadm/Makefile -------------------------------------------------------------------------------- /package/utils/mtd-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/mtd-utils/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/nvram/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/nvram/src/Makefile -------------------------------------------------------------------------------- /package/utils/nvram/src/cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/nvram/src/cli.c -------------------------------------------------------------------------------- /package/utils/nvram/src/crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/nvram/src/crc.c -------------------------------------------------------------------------------- /package/utils/nvram/src/nvram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/nvram/src/nvram.c -------------------------------------------------------------------------------- /package/utils/nvram/src/nvram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/nvram/src/nvram.h -------------------------------------------------------------------------------- /package/utils/osafeloader/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/osafeloader/Makefile -------------------------------------------------------------------------------- /package/utils/osafeloader/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/osafeloader/src/md5.c -------------------------------------------------------------------------------- /package/utils/osafeloader/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/osafeloader/src/md5.h -------------------------------------------------------------------------------- /package/utils/oseama/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/oseama/Makefile -------------------------------------------------------------------------------- /package/utils/oseama/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/oseama/src/Makefile -------------------------------------------------------------------------------- /package/utils/oseama/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/oseama/src/md5.c -------------------------------------------------------------------------------- /package/utils/oseama/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/oseama/src/md5.h -------------------------------------------------------------------------------- /package/utils/oseama/src/oseama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/oseama/src/oseama.c -------------------------------------------------------------------------------- /package/utils/otrx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/otrx/Makefile -------------------------------------------------------------------------------- /package/utils/otrx/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/otrx/src/Makefile -------------------------------------------------------------------------------- /package/utils/otrx/src/otrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/otrx/src/otrx.c -------------------------------------------------------------------------------- /package/utils/px5g/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/px5g/Makefile -------------------------------------------------------------------------------- /package/utils/px5g/px5g.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/px5g/px5g.c -------------------------------------------------------------------------------- /package/utils/spidev_test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/spidev_test/Makefile -------------------------------------------------------------------------------- /package/utils/ugps/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/ugps/Makefile -------------------------------------------------------------------------------- /package/utils/ugps/files/gps.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/ugps/files/gps.config -------------------------------------------------------------------------------- /package/utils/ugps/files/ugps.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/ugps/files/ugps.init -------------------------------------------------------------------------------- /package/utils/usbmode/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/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/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/usbreset/Makefile -------------------------------------------------------------------------------- /package/utils/usbutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/usbutils/Makefile -------------------------------------------------------------------------------- /package/utils/util-linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/util-linux/Makefile -------------------------------------------------------------------------------- /package/utils/xfsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/package/utils/xfsprogs/Makefile -------------------------------------------------------------------------------- /repo_figures/bootp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/repo_figures/bootp.png -------------------------------------------------------------------------------- /repo_figures/tftp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/repo_figures/tftp.png -------------------------------------------------------------------------------- /rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/rules.mk -------------------------------------------------------------------------------- /scripts/arm-magic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/arm-magic.sh -------------------------------------------------------------------------------- /scripts/brcmImage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/brcmImage.pl -------------------------------------------------------------------------------- /scripts/bundle-libraries.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/bundle-libraries.sh -------------------------------------------------------------------------------- /scripts/checkpatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/checkpatch.pl -------------------------------------------------------------------------------- /scripts/clang-gcc-wrapper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/clang-gcc-wrapper -------------------------------------------------------------------------------- /scripts/clean-package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/clean-package.sh -------------------------------------------------------------------------------- /scripts/cleanfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/cleanfile -------------------------------------------------------------------------------- /scripts/cleanpatch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/cleanpatch -------------------------------------------------------------------------------- /scripts/combined-ext-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/combined-ext-image.sh -------------------------------------------------------------------------------- /scripts/combined-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/combined-image.sh -------------------------------------------------------------------------------- /scripts/config.guess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config.guess -------------------------------------------------------------------------------- /scripts/config.rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config.rpath -------------------------------------------------------------------------------- /scripts/config.sub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config.sub -------------------------------------------------------------------------------- /scripts/config/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/.gitignore -------------------------------------------------------------------------------- /scripts/config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/Makefile -------------------------------------------------------------------------------- /scripts/config/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/README -------------------------------------------------------------------------------- /scripts/config/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/conf.c -------------------------------------------------------------------------------- /scripts/config/confdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/confdata.c -------------------------------------------------------------------------------- /scripts/config/expr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/expr.c -------------------------------------------------------------------------------- /scripts/config/expr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/expr.h -------------------------------------------------------------------------------- /scripts/config/images.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/images.c -------------------------------------------------------------------------------- /scripts/config/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/list.h -------------------------------------------------------------------------------- /scripts/config/lkc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/lkc.h -------------------------------------------------------------------------------- /scripts/config/lkc_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/lkc_proto.h -------------------------------------------------------------------------------- /scripts/config/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | lxdialog 2 | *.o 3 | -------------------------------------------------------------------------------- /scripts/config/lxdialog/checklist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/lxdialog/checklist.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/lxdialog/dialog.h -------------------------------------------------------------------------------- /scripts/config/lxdialog/inputbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/lxdialog/inputbox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/menubox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/lxdialog/menubox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/textbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/lxdialog/textbox.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/lxdialog/util.c -------------------------------------------------------------------------------- /scripts/config/lxdialog/yesno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/lxdialog/yesno.c -------------------------------------------------------------------------------- /scripts/config/mconf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/mconf.c -------------------------------------------------------------------------------- /scripts/config/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/menu.c -------------------------------------------------------------------------------- /scripts/config/qconf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/qconf.cc -------------------------------------------------------------------------------- /scripts/config/qconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/qconf.h -------------------------------------------------------------------------------- /scripts/config/symbol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/symbol.c -------------------------------------------------------------------------------- /scripts/config/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/util.c -------------------------------------------------------------------------------- /scripts/config/zconf.gperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/zconf.gperf -------------------------------------------------------------------------------- /scripts/config/zconf.hash.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/zconf.hash.c_shipped -------------------------------------------------------------------------------- /scripts/config/zconf.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/zconf.l -------------------------------------------------------------------------------- /scripts/config/zconf.lex.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/zconf.lex.c_shipped -------------------------------------------------------------------------------- /scripts/config/zconf.tab.c_shipped: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/zconf.tab.c_shipped -------------------------------------------------------------------------------- /scripts/config/zconf.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/config/zconf.y -------------------------------------------------------------------------------- /scripts/deptest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/deptest.sh -------------------------------------------------------------------------------- /scripts/diffconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/diffconfig.sh -------------------------------------------------------------------------------- /scripts/dl_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/dl_cleanup.py -------------------------------------------------------------------------------- /scripts/dl_github_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/dl_github_archive.py -------------------------------------------------------------------------------- /scripts/download.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/download.pl -------------------------------------------------------------------------------- /scripts/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/env -------------------------------------------------------------------------------- /scripts/ext-toolchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/ext-toolchain.sh -------------------------------------------------------------------------------- /scripts/feeds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/feeds -------------------------------------------------------------------------------- /scripts/fixup-makefile.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/fixup-makefile.pl -------------------------------------------------------------------------------- /scripts/flashing/adam2flash-502T.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/flashing/adam2flash-502T.pl -------------------------------------------------------------------------------- /scripts/flashing/adam2flash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/flashing/adam2flash.pl -------------------------------------------------------------------------------- /scripts/flashing/adsl2mue_flash.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/flashing/adsl2mue_flash.pl -------------------------------------------------------------------------------- /scripts/flashing/eva_ramboot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/flashing/eva_ramboot.py -------------------------------------------------------------------------------- /scripts/flashing/flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/flashing/flash.sh -------------------------------------------------------------------------------- /scripts/flashing/jungo-image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/flashing/jungo-image.py -------------------------------------------------------------------------------- /scripts/gen-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/gen-dependencies.sh -------------------------------------------------------------------------------- /scripts/gen_image_generic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/gen_image_generic.sh -------------------------------------------------------------------------------- /scripts/get_source_date_epoch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/get_source_date_epoch.sh -------------------------------------------------------------------------------- /scripts/getver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/getver.sh -------------------------------------------------------------------------------- /scripts/ipkg-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/ipkg-build -------------------------------------------------------------------------------- /scripts/ipkg-make-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/ipkg-make-index.sh -------------------------------------------------------------------------------- /scripts/ipkg-remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/ipkg-remove -------------------------------------------------------------------------------- /scripts/kconfig.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/kconfig.pl -------------------------------------------------------------------------------- /scripts/linksys-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/linksys-image.sh -------------------------------------------------------------------------------- /scripts/make-ipkg-dir.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/make-ipkg-dir.sh -------------------------------------------------------------------------------- /scripts/md5sum: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat "$@" | md5 3 | -------------------------------------------------------------------------------- /scripts/metadata.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/metadata.pm -------------------------------------------------------------------------------- /scripts/mkhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/mkhash.c -------------------------------------------------------------------------------- /scripts/mkits-qsdk-ipq-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/mkits-qsdk-ipq-image.sh -------------------------------------------------------------------------------- /scripts/mkits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/mkits.sh -------------------------------------------------------------------------------- /scripts/om-fwupgradecfg-gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/om-fwupgradecfg-gen.sh -------------------------------------------------------------------------------- /scripts/package-metadata.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/package-metadata.pl -------------------------------------------------------------------------------- /scripts/pad_image: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/pad_image -------------------------------------------------------------------------------- /scripts/patch-kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/patch-kernel.sh -------------------------------------------------------------------------------- /scripts/patch-specs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/patch-specs.sh -------------------------------------------------------------------------------- /scripts/portable_date.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/portable_date.sh -------------------------------------------------------------------------------- /scripts/qemustart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/qemustart -------------------------------------------------------------------------------- /scripts/redboot-script.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/redboot-script.pl -------------------------------------------------------------------------------- /scripts/relink-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/relink-lib.sh -------------------------------------------------------------------------------- /scripts/remote-gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/remote-gdb -------------------------------------------------------------------------------- /scripts/rstrip.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/rstrip.sh -------------------------------------------------------------------------------- /scripts/slugimage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/slugimage.pl -------------------------------------------------------------------------------- /scripts/srecimage.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/srecimage.pl -------------------------------------------------------------------------------- /scripts/strip-kmod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/strip-kmod.sh -------------------------------------------------------------------------------- /scripts/symlink-tree.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/symlink-tree.sh -------------------------------------------------------------------------------- /scripts/sysupgrade-tar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/sysupgrade-tar.sh -------------------------------------------------------------------------------- /scripts/target-metadata.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/target-metadata.pl -------------------------------------------------------------------------------- /scripts/time.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/time.pl -------------------------------------------------------------------------------- /scripts/timestamp.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/timestamp.pl -------------------------------------------------------------------------------- /scripts/ubinize-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/scripts/ubinize-image.sh -------------------------------------------------------------------------------- /target/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/Config.in -------------------------------------------------------------------------------- /target/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/Makefile -------------------------------------------------------------------------------- /target/imagebuilder/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/imagebuilder/Config.in -------------------------------------------------------------------------------- /target/imagebuilder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/imagebuilder/Makefile -------------------------------------------------------------------------------- /target/imagebuilder/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/imagebuilder/files/Makefile -------------------------------------------------------------------------------- /target/linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/Makefile -------------------------------------------------------------------------------- /target/linux/adm5120/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/adm5120/Makefile -------------------------------------------------------------------------------- /target/linux/adm5120/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/adm5120/config-3.18 -------------------------------------------------------------------------------- /target/linux/adm5120/files-3.18/arch/mips/adm5120/generic/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_ADM5120_MACH_EB_214A) += eb-214a.o 2 | -------------------------------------------------------------------------------- /target/linux/adm5120/files-3.18/arch/mips/adm5120/motorola/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_ADM5120_MACH_PMUGW) += pmugw.o 2 | -------------------------------------------------------------------------------- /target/linux/adm5120/files-3.18/arch/mips/adm5120/osbridge/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_ADM5120_MACH_5GXI) += 5gxi.o 2 | -------------------------------------------------------------------------------- /target/linux/adm5120/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/adm5120/image/Makefile -------------------------------------------------------------------------------- /target/linux/adm5120/image/rb1xx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/adm5120/image/rb1xx.mk -------------------------------------------------------------------------------- /target/linux/adm5120/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/adm5120/modules.mk -------------------------------------------------------------------------------- /target/linux/adm5120/router_le/config-3.8: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target/linux/adm8668/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/adm8668/Makefile -------------------------------------------------------------------------------- /target/linux/adm8668/base-files/sbin/hotplug.failsafe: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | case "$1" in 3 | button) kill -USR1 1;; 4 | esac 5 | -------------------------------------------------------------------------------- /target/linux/adm8668/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/adm8668/config-3.18 -------------------------------------------------------------------------------- /target/linux/adm8668/files-3.18/arch/mips/adm8668/Kconfig: -------------------------------------------------------------------------------- 1 | config ARM_AMBA 2 | def_bool y 3 | -------------------------------------------------------------------------------- /target/linux/adm8668/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/adm8668/image/Makefile -------------------------------------------------------------------------------- /target/linux/apm821xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/apm821xx/Makefile -------------------------------------------------------------------------------- /target/linux/apm821xx/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/apm821xx/config-4.14 -------------------------------------------------------------------------------- /target/linux/apm821xx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/apm821xx/config-4.19 -------------------------------------------------------------------------------- /target/linux/ar7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ar7/Makefile -------------------------------------------------------------------------------- /target/linux/ar7/ac49x/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ar7/ac49x/target.mk -------------------------------------------------------------------------------- /target/linux/ar7/base-files.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ar7/base-files.mk -------------------------------------------------------------------------------- /target/linux/ar7/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ar7/config-4.9 -------------------------------------------------------------------------------- /target/linux/ar7/generic/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ar7/generic/target.mk -------------------------------------------------------------------------------- /target/linux/ar7/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ar7/image/Makefile -------------------------------------------------------------------------------- /target/linux/ar7/src/adam2patcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ar7/src/adam2patcher.c -------------------------------------------------------------------------------- /target/linux/ar71xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ar71xx/Makefile -------------------------------------------------------------------------------- /target/linux/ar71xx/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ar71xx/config-4.14 -------------------------------------------------------------------------------- /target/linux/ar71xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ar71xx/image/Makefile -------------------------------------------------------------------------------- /target/linux/ar71xx/image/legacy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ar71xx/image/legacy.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/image/nand.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ar71xx/image/nand.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/image/tiny.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ar71xx/image/tiny.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ar71xx/modules.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/nand/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ar71xx/nand/target.mk -------------------------------------------------------------------------------- /target/linux/ar71xx/tiny/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ar71xx/tiny/target.mk -------------------------------------------------------------------------------- /target/linux/arc770/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/arc770/Makefile -------------------------------------------------------------------------------- /target/linux/arc770/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/arc770/config-4.14 -------------------------------------------------------------------------------- /target/linux/arc770/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/arc770/image/Config.in -------------------------------------------------------------------------------- /target/linux/arc770/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/arc770/image/Makefile -------------------------------------------------------------------------------- /target/linux/arc770/image/uEnv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/arc770/image/uEnv.txt -------------------------------------------------------------------------------- /target/linux/archs38/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/archs38/Makefile -------------------------------------------------------------------------------- /target/linux/archs38/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/archs38/config-4.14 -------------------------------------------------------------------------------- /target/linux/archs38/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/archs38/image/Makefile -------------------------------------------------------------------------------- /target/linux/archs38/image/uEnv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/archs38/image/uEnv.txt -------------------------------------------------------------------------------- /target/linux/armvirt/32/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/armvirt/32/target.mk -------------------------------------------------------------------------------- /target/linux/armvirt/64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/armvirt/64/target.mk -------------------------------------------------------------------------------- /target/linux/armvirt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/armvirt/Makefile -------------------------------------------------------------------------------- /target/linux/armvirt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/armvirt/README -------------------------------------------------------------------------------- /target/linux/armvirt/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/armvirt/config-4.14 -------------------------------------------------------------------------------- /target/linux/armvirt/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/armvirt/image/Makefile -------------------------------------------------------------------------------- /target/linux/at91/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/at91/Makefile -------------------------------------------------------------------------------- /target/linux/at91/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/at91/config-4.9 -------------------------------------------------------------------------------- /target/linux/at91/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/at91/image/Config.in -------------------------------------------------------------------------------- /target/linux/at91/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/at91/image/Makefile -------------------------------------------------------------------------------- /target/linux/at91/image/legacy.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/at91/image/legacy.mk -------------------------------------------------------------------------------- /target/linux/at91/image/sama5d2.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/at91/image/sama5d2.mk -------------------------------------------------------------------------------- /target/linux/at91/image/sama5d3.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/at91/image/sama5d3.mk -------------------------------------------------------------------------------- /target/linux/at91/image/sama5d4.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/at91/image/sama5d4.mk -------------------------------------------------------------------------------- /target/linux/at91/legacy/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/at91/legacy/target.mk -------------------------------------------------------------------------------- /target/linux/at91/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/at91/modules.mk -------------------------------------------------------------------------------- /target/linux/at91/sama5d2/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/at91/sama5d2/target.mk -------------------------------------------------------------------------------- /target/linux/at91/sama5d3/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/at91/sama5d3/target.mk -------------------------------------------------------------------------------- /target/linux/at91/sama5d4/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/at91/sama5d4/target.mk -------------------------------------------------------------------------------- /target/linux/ath25/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath25/Makefile -------------------------------------------------------------------------------- /target/linux/ath25/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath25/config-4.14 -------------------------------------------------------------------------------- /target/linux/ath25/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath25/image/Makefile -------------------------------------------------------------------------------- /target/linux/ath79/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/Makefile -------------------------------------------------------------------------------- /target/linux/ath79/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/config-4.14 -------------------------------------------------------------------------------- /target/linux/ath79/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/config-4.19 -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar7100.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/dts/ar7100.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar7240.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/dts/ar7240.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar7241.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/dts/ar7241.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar7242.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/dts/ar7242.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar724x.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/dts/ar724x.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar9132.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/dts/ar9132.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar9330.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/dts/ar9330.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar9331.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/dts/ar9331.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar9341.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/dts/ar9341.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar9344.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/dts/ar9344.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ar934x.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/dts/ar934x.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/ath79.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/dts/ath79.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/qca953x.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/dts/qca953x.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/qca9557.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/dts/qca9557.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/dts/qca956x.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/dts/qca956x.dtsi -------------------------------------------------------------------------------- /target/linux/ath79/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/image/Makefile -------------------------------------------------------------------------------- /target/linux/ath79/image/generic.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/image/generic.mk -------------------------------------------------------------------------------- /target/linux/ath79/image/nand.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/image/nand.mk -------------------------------------------------------------------------------- /target/linux/ath79/image/tiny.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/image/tiny.mk -------------------------------------------------------------------------------- /target/linux/ath79/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/modules.mk -------------------------------------------------------------------------------- /target/linux/ath79/nand/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/nand/target.mk -------------------------------------------------------------------------------- /target/linux/ath79/tiny/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ath79/tiny/target.mk -------------------------------------------------------------------------------- /target/linux/au1000/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/au1000/Makefile -------------------------------------------------------------------------------- /target/linux/au1000/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/au1000/config-3.18 -------------------------------------------------------------------------------- /target/linux/au1000/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/au1000/image/Makefile -------------------------------------------------------------------------------- /target/linux/au1000/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/au1000/modules.mk -------------------------------------------------------------------------------- /target/linux/bcm53xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/bcm53xx/Makefile -------------------------------------------------------------------------------- /target/linux/bcm53xx/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/bcm53xx/config-4.14 -------------------------------------------------------------------------------- /target/linux/bcm53xx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/bcm53xx/config-4.19 -------------------------------------------------------------------------------- /target/linux/bcm53xx/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/bcm53xx/image/Makefile -------------------------------------------------------------------------------- /target/linux/bcm53xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/bcm53xx/modules.mk -------------------------------------------------------------------------------- /target/linux/brcm2708/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/brcm2708/Makefile -------------------------------------------------------------------------------- /target/linux/brcm2708/base-files/lib/upgrade/keep.d/platform: -------------------------------------------------------------------------------- 1 | /boot/config.txt 2 | -------------------------------------------------------------------------------- /target/linux/brcm2708/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/brcm2708/modules.mk -------------------------------------------------------------------------------- /target/linux/brcm47xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/brcm47xx/Makefile -------------------------------------------------------------------------------- /target/linux/brcm47xx/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/brcm47xx/config-4.14 -------------------------------------------------------------------------------- /target/linux/brcm47xx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/brcm47xx/config-4.19 -------------------------------------------------------------------------------- /target/linux/brcm47xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/brcm47xx/modules.mk -------------------------------------------------------------------------------- /target/linux/brcm63xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/brcm63xx/Makefile -------------------------------------------------------------------------------- /target/linux/brcm63xx/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/brcm63xx/config-4.14 -------------------------------------------------------------------------------- /target/linux/brcm63xx/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/brcm63xx/config-4.9 -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/a226g.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/brcm63xx/dts/a226g.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/a226m.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/brcm63xx/dts/a226m.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/hg553.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/brcm63xx/dts/hg553.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/hg622.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/brcm63xx/dts/hg622.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/dts/magic.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/brcm63xx/dts/magic.dts -------------------------------------------------------------------------------- /target/linux/brcm63xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/brcm63xx/modules.mk -------------------------------------------------------------------------------- /target/linux/cns3xxx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/cns3xxx/Makefile -------------------------------------------------------------------------------- /target/linux/cns3xxx/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/cns3xxx/config-4.14 -------------------------------------------------------------------------------- /target/linux/cns3xxx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/cns3xxx/config-4.19 -------------------------------------------------------------------------------- /target/linux/gemini/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/gemini/Makefile -------------------------------------------------------------------------------- /target/linux/gemini/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/gemini/config-4.14 -------------------------------------------------------------------------------- /target/linux/gemini/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/gemini/config-4.19 -------------------------------------------------------------------------------- /target/linux/generic/PATCHES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/generic/PATCHES -------------------------------------------------------------------------------- /target/linux/generic/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/generic/config-3.18 -------------------------------------------------------------------------------- /target/linux/generic/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/generic/config-4.14 -------------------------------------------------------------------------------- /target/linux/generic/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/generic/config-4.19 -------------------------------------------------------------------------------- /target/linux/generic/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/generic/config-4.9 -------------------------------------------------------------------------------- /target/linux/generic/pending-3.18/650-pppoe_header_pad.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /target/linux/imx6/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/imx6/Makefile -------------------------------------------------------------------------------- /target/linux/imx6/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/imx6/config-4.14 -------------------------------------------------------------------------------- /target/linux/imx6/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/imx6/config-4.19 -------------------------------------------------------------------------------- /target/linux/imx6/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/imx6/image/Makefile -------------------------------------------------------------------------------- /target/linux/ipq40xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ipq40xx/Makefile -------------------------------------------------------------------------------- /target/linux/ipq40xx/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ipq40xx/config-4.14 -------------------------------------------------------------------------------- /target/linux/ipq40xx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ipq40xx/config-4.19 -------------------------------------------------------------------------------- /target/linux/ipq40xx/image/ipq-aux-loader/src/src/Debug.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd ../ 4 | ./Debug.sh $@ 5 | -------------------------------------------------------------------------------- /target/linux/ipq806x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ipq806x/Makefile -------------------------------------------------------------------------------- /target/linux/ipq806x/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ipq806x/config-4.14 -------------------------------------------------------------------------------- /target/linux/ixp4xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ixp4xx/Makefile -------------------------------------------------------------------------------- /target/linux/ixp4xx/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ixp4xx/config-4.9 -------------------------------------------------------------------------------- /target/linux/ixp4xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ixp4xx/modules.mk -------------------------------------------------------------------------------- /target/linux/kirkwood/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/kirkwood/Makefile -------------------------------------------------------------------------------- /target/linux/lantiq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/lantiq/Makefile -------------------------------------------------------------------------------- /target/linux/lantiq/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/lantiq/config-4.14 -------------------------------------------------------------------------------- /target/linux/lantiq/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/lantiq/modules.mk -------------------------------------------------------------------------------- /target/linux/layerscape/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/layerscape/Makefile -------------------------------------------------------------------------------- /target/linux/layerscape/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/layerscape/README -------------------------------------------------------------------------------- /target/linux/malta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/malta/Makefile -------------------------------------------------------------------------------- /target/linux/malta/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/malta/README -------------------------------------------------------------------------------- /target/linux/malta/be/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/malta/be/target.mk -------------------------------------------------------------------------------- /target/linux/malta/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/malta/config-4.14 -------------------------------------------------------------------------------- /target/linux/malta/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/malta/config-4.19 -------------------------------------------------------------------------------- /target/linux/malta/le/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/malta/le/target.mk -------------------------------------------------------------------------------- /target/linux/mcs814x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/mcs814x/Makefile -------------------------------------------------------------------------------- /target/linux/mcs814x/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/mcs814x/config-3.18 -------------------------------------------------------------------------------- /target/linux/mcs814x/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/mcs814x/modules.mk -------------------------------------------------------------------------------- /target/linux/mediatek/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/mediatek/Makefile -------------------------------------------------------------------------------- /target/linux/mediatek/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/mediatek/modules.mk -------------------------------------------------------------------------------- /target/linux/mpc85xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/mpc85xx/Makefile -------------------------------------------------------------------------------- /target/linux/mpc85xx/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/mpc85xx/config-4.14 -------------------------------------------------------------------------------- /target/linux/mpc85xx/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/mpc85xx/config-4.19 -------------------------------------------------------------------------------- /target/linux/mvebu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/mvebu/Makefile -------------------------------------------------------------------------------- /target/linux/mvebu/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/mvebu/config-4.14 -------------------------------------------------------------------------------- /target/linux/mxs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/mxs/Makefile -------------------------------------------------------------------------------- /target/linux/mxs/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/mxs/config-4.14 -------------------------------------------------------------------------------- /target/linux/mxs/image/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/mxs/image/Config.in -------------------------------------------------------------------------------- /target/linux/mxs/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/mxs/image/Makefile -------------------------------------------------------------------------------- /target/linux/octeon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/octeon/Makefile -------------------------------------------------------------------------------- /target/linux/octeon/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/octeon/config-4.14 -------------------------------------------------------------------------------- /target/linux/octeontx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/octeontx/Makefile -------------------------------------------------------------------------------- /target/linux/omap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/omap/Makefile -------------------------------------------------------------------------------- /target/linux/omap/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/omap/config-4.14 -------------------------------------------------------------------------------- /target/linux/omap/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/omap/image/Makefile -------------------------------------------------------------------------------- /target/linux/omap24xx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/omap24xx/Makefile -------------------------------------------------------------------------------- /target/linux/omap24xx/config-4.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/omap24xx/config-4.1 -------------------------------------------------------------------------------- /target/linux/omap24xx/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/omap24xx/modules.mk -------------------------------------------------------------------------------- /target/linux/orion/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/orion/Makefile -------------------------------------------------------------------------------- /target/linux/orion/config-4.9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/orion/config-4.9 -------------------------------------------------------------------------------- /target/linux/oxnas/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/oxnas/Makefile -------------------------------------------------------------------------------- /target/linux/oxnas/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/oxnas/config-4.14 -------------------------------------------------------------------------------- /target/linux/oxnas/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/oxnas/modules.mk -------------------------------------------------------------------------------- /target/linux/pistachio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/pistachio/Makefile -------------------------------------------------------------------------------- /target/linux/ppc40x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ppc40x/Makefile -------------------------------------------------------------------------------- /target/linux/ppc40x/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ppc40x/config-3.18 -------------------------------------------------------------------------------- /target/linux/ppc40x/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ppc40x/modules.mk -------------------------------------------------------------------------------- /target/linux/ppc44x/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ppc44x/Makefile -------------------------------------------------------------------------------- /target/linux/ppc44x/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ppc44x/config-3.18 -------------------------------------------------------------------------------- /target/linux/ramips/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/Makefile -------------------------------------------------------------------------------- /target/linux/ramips/dts/BC2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/dts/BC2.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/C108.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/dts/C108.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/D105.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/dts/D105.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/D240.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/dts/D240.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/HPM.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/dts/HPM.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/K2G.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/dts/K2G.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/K2P.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/dts/K2P.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/M2M.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/dts/M2M.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/M3.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/dts/M3.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/M4.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/dts/M4.dtsi -------------------------------------------------------------------------------- /target/linux/ramips/dts/W06.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/dts/W06.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/WD03.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/dts/WD03.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/X5.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/dts/X5.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/X8.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/dts/X8.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/Y1.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/dts/Y1.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/Y1.dtsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/dts/Y1.dtsi -------------------------------------------------------------------------------- /target/linux/ramips/dts/Y1S.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/dts/Y1S.dts -------------------------------------------------------------------------------- /target/linux/ramips/dts/kn.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/dts/kn.dts -------------------------------------------------------------------------------- /target/linux/ramips/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/ramips/modules.mk -------------------------------------------------------------------------------- /target/linux/rb532/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/rb532/Makefile -------------------------------------------------------------------------------- /target/linux/rb532/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/rb532/config-4.14 -------------------------------------------------------------------------------- /target/linux/rb532/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/rb532/modules.mk -------------------------------------------------------------------------------- /target/linux/samsung/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/samsung/Makefile -------------------------------------------------------------------------------- /target/linux/sunxi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/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.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/sunxi/config-4.14 -------------------------------------------------------------------------------- /target/linux/sunxi/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/sunxi/config-4.19 -------------------------------------------------------------------------------- /target/linux/sunxi/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/sunxi/modules.mk -------------------------------------------------------------------------------- /target/linux/uml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/uml/Makefile -------------------------------------------------------------------------------- /target/linux/uml/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/uml/README -------------------------------------------------------------------------------- /target/linux/uml/config/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/uml/config/i386 -------------------------------------------------------------------------------- /target/linux/uml/config/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/uml/config/x86_64 -------------------------------------------------------------------------------- /target/linux/uml/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/uml/image/Makefile -------------------------------------------------------------------------------- /target/linux/x86/64/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/x86/64/config-4.14 -------------------------------------------------------------------------------- /target/linux/x86/64/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/x86/64/config-4.19 -------------------------------------------------------------------------------- /target/linux/x86/64/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/x86/64/target.mk -------------------------------------------------------------------------------- /target/linux/x86/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/x86/Makefile -------------------------------------------------------------------------------- /target/linux/x86/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/x86/config-4.14 -------------------------------------------------------------------------------- /target/linux/x86/config-4.19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/x86/config-4.19 -------------------------------------------------------------------------------- /target/linux/x86/geode/target.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/x86/geode/target.mk -------------------------------------------------------------------------------- /target/linux/x86/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/x86/image/Makefile -------------------------------------------------------------------------------- /target/linux/x86/image/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/x86/image/grub.cfg -------------------------------------------------------------------------------- /target/linux/x86/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/x86/modules.mk -------------------------------------------------------------------------------- /target/linux/xburst/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/xburst/Makefile -------------------------------------------------------------------------------- /target/linux/xburst/config-3.18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/xburst/config-3.18 -------------------------------------------------------------------------------- /target/linux/xburst/modules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/xburst/modules.mk -------------------------------------------------------------------------------- /target/linux/xburst/qi_lb60/target.mk: -------------------------------------------------------------------------------- 1 | BOARDNAME:=QI Ben Nanonote (qi_lb60) 2 | -------------------------------------------------------------------------------- /target/linux/zynq/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/zynq/Makefile -------------------------------------------------------------------------------- /target/linux/zynq/config-4.14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/zynq/config-4.14 -------------------------------------------------------------------------------- /target/linux/zynq/image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/linux/zynq/image/Makefile -------------------------------------------------------------------------------- /target/sdk/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/sdk/Config.in -------------------------------------------------------------------------------- /target/sdk/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/sdk/Makefile -------------------------------------------------------------------------------- /target/sdk/convert-config.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/sdk/convert-config.pl -------------------------------------------------------------------------------- /target/sdk/files/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/sdk/files/Config.in -------------------------------------------------------------------------------- /target/sdk/files/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/sdk/files/Makefile -------------------------------------------------------------------------------- /target/sdk/files/README.SDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/sdk/files/README.SDK -------------------------------------------------------------------------------- /target/toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/toolchain/Config.in -------------------------------------------------------------------------------- /target/toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/target/toolchain/Makefile -------------------------------------------------------------------------------- /toolchain/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/Config.in -------------------------------------------------------------------------------- /toolchain/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/Makefile -------------------------------------------------------------------------------- /toolchain/binutils/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/binutils/Config.in -------------------------------------------------------------------------------- /toolchain/binutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/binutils/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/gcc/Config.in -------------------------------------------------------------------------------- /toolchain/gcc/Config.version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/gcc/Config.version -------------------------------------------------------------------------------- /toolchain/gcc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/gcc/common.mk -------------------------------------------------------------------------------- /toolchain/gcc/exclude-testsuite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/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/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/gcc/final/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/initial/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/gcc/initial/Makefile -------------------------------------------------------------------------------- /toolchain/gcc/minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/gcc/minimal/Makefile -------------------------------------------------------------------------------- /toolchain/gdb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/gdb/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/glibc/Makefile -------------------------------------------------------------------------------- /toolchain/glibc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/glibc/common.mk -------------------------------------------------------------------------------- /toolchain/glibc/headers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/glibc/headers/Makefile -------------------------------------------------------------------------------- /toolchain/info.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/info.mk -------------------------------------------------------------------------------- /toolchain/musl/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/musl/Config.in -------------------------------------------------------------------------------- /toolchain/musl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/musl/Makefile -------------------------------------------------------------------------------- /toolchain/musl/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/musl/common.mk -------------------------------------------------------------------------------- /toolchain/musl/include/bits/wordsize.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /toolchain/musl/include/sgidefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/musl/include/sgidefs.h -------------------------------------------------------------------------------- /toolchain/nasm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/nasm/Makefile -------------------------------------------------------------------------------- /toolchain/uClibc/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/Config.in -------------------------------------------------------------------------------- /toolchain/uClibc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/Makefile -------------------------------------------------------------------------------- /toolchain/uClibc/common.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/common.mk -------------------------------------------------------------------------------- /toolchain/uClibc/config/arc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/config/arc -------------------------------------------------------------------------------- /toolchain/uClibc/config/archs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/config/archs -------------------------------------------------------------------------------- /toolchain/uClibc/config/arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/config/arm -------------------------------------------------------------------------------- /toolchain/uClibc/config/armeb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/config/armeb -------------------------------------------------------------------------------- /toolchain/uClibc/config/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/config/common -------------------------------------------------------------------------------- /toolchain/uClibc/config/debug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/config/debug -------------------------------------------------------------------------------- /toolchain/uClibc/config/i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/config/i386 -------------------------------------------------------------------------------- /toolchain/uClibc/config/i686: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/config/i686 -------------------------------------------------------------------------------- /toolchain/uClibc/config/m68k: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/config/m68k -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/config/mips -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/config/mips64 -------------------------------------------------------------------------------- /toolchain/uClibc/config/mips64el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/config/mips64el -------------------------------------------------------------------------------- /toolchain/uClibc/config/mipsel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/config/mipsel -------------------------------------------------------------------------------- /toolchain/uClibc/config/powerpc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/config/powerpc -------------------------------------------------------------------------------- /toolchain/uClibc/config/sparc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/config/sparc -------------------------------------------------------------------------------- /toolchain/uClibc/config/x86_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/config/x86_64 -------------------------------------------------------------------------------- /toolchain/uClibc/utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/uClibc/utils/Makefile -------------------------------------------------------------------------------- /toolchain/wrapper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/toolchain/wrapper/Makefile -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/autoconf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/autoconf/Makefile -------------------------------------------------------------------------------- /tools/automake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/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/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/b43-tools/Makefile -------------------------------------------------------------------------------- /tools/bc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/bc/Makefile -------------------------------------------------------------------------------- /tools/bison/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/bison/Makefile -------------------------------------------------------------------------------- /tools/bison/scripts/yacc: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec bison -y "$@" 3 | -------------------------------------------------------------------------------- /tools/ccache/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/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/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/cmake/Makefile -------------------------------------------------------------------------------- /tools/coreutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/coreutils/Makefile -------------------------------------------------------------------------------- /tools/dosfstools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/dosfstools/Makefile -------------------------------------------------------------------------------- /tools/e2fsprogs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/e2fsprogs/Makefile -------------------------------------------------------------------------------- /tools/elftosb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/elftosb/Makefile -------------------------------------------------------------------------------- /tools/expat/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/expat/Makefile -------------------------------------------------------------------------------- /tools/findutils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/findutils/Makefile -------------------------------------------------------------------------------- /tools/firmware-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/firmware-utils/Makefile -------------------------------------------------------------------------------- /tools/firmware-utils/src/fw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/firmware-utils/src/fw.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/firmware-utils/src/md5.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/firmware-utils/src/md5.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/otrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/firmware-utils/src/otrx.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/ptgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/firmware-utils/src/ptgen.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/seama.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/firmware-utils/src/seama.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/seama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/firmware-utils/src/seama.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/firmware-utils/src/sha1.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/firmware-utils/src/sha1.h -------------------------------------------------------------------------------- /tools/firmware-utils/src/trx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/firmware-utils/src/trx.c -------------------------------------------------------------------------------- /tools/firmware-utils/src/zynos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/firmware-utils/src/zynos.h -------------------------------------------------------------------------------- /tools/flex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/flex/Makefile -------------------------------------------------------------------------------- /tools/flock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/flock/Makefile -------------------------------------------------------------------------------- /tools/flock/src/flock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/flock/src/flock.c -------------------------------------------------------------------------------- /tools/genext2fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/genext2fs/Makefile -------------------------------------------------------------------------------- /tools/gengetopt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/gengetopt/Makefile -------------------------------------------------------------------------------- /tools/gmp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/gmp/Makefile -------------------------------------------------------------------------------- /tools/include/byteswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/include/byteswap.h -------------------------------------------------------------------------------- /tools/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/include/elf.h -------------------------------------------------------------------------------- /tools/include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/include/endian.h -------------------------------------------------------------------------------- /tools/include/sys/sysmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/include/sys/sysmacros.h -------------------------------------------------------------------------------- /tools/isl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/isl/Makefile -------------------------------------------------------------------------------- /tools/kernel2minor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/kernel2minor/Makefile -------------------------------------------------------------------------------- /tools/libelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/libelf/Makefile -------------------------------------------------------------------------------- /tools/libressl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/libressl/Makefile -------------------------------------------------------------------------------- /tools/libtool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/libtool/Makefile -------------------------------------------------------------------------------- /tools/lzma-old/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/lzma-old/Makefile -------------------------------------------------------------------------------- /tools/lzma/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/lzma/Makefile -------------------------------------------------------------------------------- /tools/m4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/m4/Makefile -------------------------------------------------------------------------------- /tools/make-ext4fs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/make-ext4fs/Makefile -------------------------------------------------------------------------------- /tools/missing-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/missing-macros/Makefile -------------------------------------------------------------------------------- /tools/missing-macros/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/missing-macros/src/README -------------------------------------------------------------------------------- /tools/mkimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/mkimage/Makefile -------------------------------------------------------------------------------- /tools/mklibs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/mklibs/Makefile -------------------------------------------------------------------------------- /tools/mklibs/include/elf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/mklibs/include/elf.h -------------------------------------------------------------------------------- /tools/mm-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/mm-macros/Makefile -------------------------------------------------------------------------------- /tools/mpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/mpc/Makefile -------------------------------------------------------------------------------- /tools/mpfr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/mpfr/Makefile -------------------------------------------------------------------------------- /tools/mtd-utils/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/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/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/mtools/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/padjffs2/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/padjffs2/src/Makefile -------------------------------------------------------------------------------- /tools/padjffs2/src/padjffs2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/padjffs2/src/padjffs2.c -------------------------------------------------------------------------------- /tools/patch-image/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/patch-image/Makefile -------------------------------------------------------------------------------- /tools/patch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/patch/Makefile -------------------------------------------------------------------------------- /tools/patchelf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/patchelf/Makefile -------------------------------------------------------------------------------- /tools/pkg-config/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/pkg-config/Makefile -------------------------------------------------------------------------------- /tools/qemu/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/qemu/Makefile -------------------------------------------------------------------------------- /tools/quilt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/quilt/Makefile -------------------------------------------------------------------------------- /tools/scons/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/scons/Makefile -------------------------------------------------------------------------------- /tools/scons/files/pywrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/scons/files/pywrap.sh -------------------------------------------------------------------------------- /tools/sdimage/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/sdimage/Makefile -------------------------------------------------------------------------------- /tools/sed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/sed/Makefile -------------------------------------------------------------------------------- /tools/sparse/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/sparse/Makefile -------------------------------------------------------------------------------- /tools/squashfs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/squashfs/Makefile -------------------------------------------------------------------------------- /tools/squashfskit4/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/squashfskit4/Makefile -------------------------------------------------------------------------------- /tools/sstrip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/sstrip/Makefile -------------------------------------------------------------------------------- /tools/sstrip/src/sstrip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/sstrip/src/sstrip.c -------------------------------------------------------------------------------- /tools/tar/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/tar/Makefile -------------------------------------------------------------------------------- /tools/upslug2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/upslug2/Makefile -------------------------------------------------------------------------------- /tools/wrt350nv2-builder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/wrt350nv2-builder/Makefile -------------------------------------------------------------------------------- /tools/xz/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/xz/Makefile -------------------------------------------------------------------------------- /tools/zip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/zip/Makefile -------------------------------------------------------------------------------- /tools/zlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IMDEANetworksWNG/Mikrotik-researcher-tools/HEAD/tools/zlib/Makefile --------------------------------------------------------------------------------